+ className="w-full rounded-xl overflow-hidden border dark:border-slate-600 flex flex-col items-stretch">
diff --git a/bskyembed/src/components/post.tsx b/bskyembed/src/components/post.tsx
index 26945eb69d..68292f5156 100644
--- a/bskyembed/src/components/post.tsx
+++ b/bskyembed/src/components/post.tsx
@@ -173,7 +173,7 @@ function PostContent({record}: {record: AppBskyFeedPost.Record | null}) {
}
return (
-
+
{richText}
)
diff --git a/bskylink/package.json b/bskylink/package.json
index 5fdee206b4..21fe123aba 100644
--- a/bskylink/package.json
+++ b/bskylink/package.json
@@ -9,8 +9,10 @@
},
"dependencies": {
"@atproto/common": "^0.4.0",
+ "@types/escape-html": "^1.0.4",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
+ "escape-html": "^1.0.3",
"express": "^4.19.2",
"http-terminator": "^3.2.0",
"kysely": "^0.27.3",
diff --git a/bskylink/src/routes/index.ts b/bskylink/src/routes/index.ts
index cfdaf3eaa9..d0122ff8bf 100644
--- a/bskylink/src/routes/index.ts
+++ b/bskylink/src/routes/index.ts
@@ -1,9 +1,10 @@
-import {Express} from 'express'
+import {type Express} from 'express'
-import {AppContext} from '../context.js'
+import {type AppContext} from '../context.js'
import {default as createShortLink} from './createShortLink.js'
import {default as health} from './health.js'
import {default as redirect} from './redirect.js'
+import {default as root} from './root.js'
import {default as shortLink} from './shortLink.js'
import {default as siteAssociation} from './siteAssociation.js'
@@ -14,6 +15,7 @@ export default function (ctx: AppContext, app: Express) {
app = siteAssociation(ctx, app) // GET /.well-known/apple-app-site-association
app = redirect(ctx, app) // GET /redirect
app = createShortLink(ctx, app) // POST /link
+ app = root(ctx, app) // GET / (redirect to bsky.app on root)
app = shortLink(ctx, app) // GET /:linkId (should go last due to permissive matching)
return app
}
diff --git a/bskylink/src/routes/redirect.ts b/bskylink/src/routes/redirect.ts
index 4e7052af71..7d68e4245d 100644
--- a/bskylink/src/routes/redirect.ts
+++ b/bskylink/src/routes/redirect.ts
@@ -1,9 +1,10 @@
import assert from 'node:assert'
import {DAY, SECOND} from '@atproto/common'
-import {Express} from 'express'
+import escapeHTML from 'escape-html'
+import {type Express} from 'express'
-import {AppContext} from '../context.js'
+import {type AppContext} from '../context.js'
import {handler} from './util.js'
const INTERNAL_IP_REGEX = new RegExp(
@@ -20,7 +21,6 @@ export default function (ctx: AppContext, app: Express) {
typeof link === 'string',
'express guarantees link query parameter is a string',
)
- link = decodeURIComponent(link)
let url: URL | undefined
try {
@@ -40,8 +40,13 @@ export default function (ctx: AppContext, app: Express) {
}
res.setHeader('Cache-Control', `max-age=${(7 * DAY) / SECOND}`)
- res.setHeader('Location', url.href)
- return res.status(301).end()
+ res.type('html')
+ res.status(200)
+
+ const escaped = escapeHTML(url.href)
+ return res.send(
+ `
`,
+ )
}),
)
}
diff --git a/bskylink/src/routes/root.ts b/bskylink/src/routes/root.ts
new file mode 100644
index 0000000000..8c6c4afc3b
--- /dev/null
+++ b/bskylink/src/routes/root.ts
@@ -0,0 +1,14 @@
+import {type Express} from 'express'
+
+import {type AppContext} from '../context.js'
+import {handler} from './util.js'
+
+export default function (ctx: AppContext, app: Express) {
+ return app.get(
+ '/',
+ handler(async (_req, res) => {
+ res.setHeader('Location', `https://${ctx.cfg.service.appHostname}`)
+ return res.status(301).end()
+ }),
+ )
+}
diff --git a/bskylink/yarn.lock b/bskylink/yarn.lock
index d2fa31456b..e72fea0b9b 100644
--- a/bskylink/yarn.lock
+++ b/bskylink/yarn.lock
@@ -69,6 +69,11 @@
dependencies:
"@types/node" "*"
+"@types/escape-html@^1.0.4":
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/@types/escape-html/-/escape-html-1.0.4.tgz#dc7c166b76c7b03b27e32f80edf01d91eb5d9af2"
+ integrity sha512-qZ72SFTgUAZ5a7Tj6kf2SHLetiH5S6f8G5frB2SPQ3EyF02kxdyBFf4Tz4banE3xCgGnKgWLt//a6VuYHKYJTg==
+
"@types/node@*":
version "20.14.2"
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.14.2.tgz#a5f4d2bcb4b6a87bffcaa717718c5a0f208f4a18"
@@ -276,7 +281,7 @@ es-errors@^1.3.0:
resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f"
integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==
-escape-html@~1.0.3:
+escape-html@^1.0.3, escape-html@~1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==
diff --git a/bskyweb/cmd/bskyweb/rss.go b/bskyweb/cmd/bskyweb/rss.go
index 204cb26a83..368b911eb9 100644
--- a/bskyweb/cmd/bskyweb/rss.go
+++ b/bskyweb/cmd/bskyweb/rss.go
@@ -82,7 +82,7 @@ func (srv *Server) WebProfileRSS(c echo.Context) error {
}
}
- af, err := appbsky.FeedGetAuthorFeed(ctx, srv.xrpcc, did.String(), "", "posts_no_replies", 30)
+ af, err := appbsky.FeedGetAuthorFeed(ctx, srv.xrpcc, did.String(), "", "posts_no_replies", false, 30)
if err != nil {
log.Warn("failed to fetch author feed", "did", did, "err", err)
return err
diff --git a/bskyweb/cmd/bskyweb/server.go b/bskyweb/cmd/bskyweb/server.go
index 73fa710195..f419212cc9 100644
--- a/bskyweb/cmd/bskyweb/server.go
+++ b/bskyweb/cmd/bskyweb/server.go
@@ -263,6 +263,7 @@ func serve(cctx *cli.Context) error {
e.GET("/moderation/modlists", server.WebGeneric)
e.GET("/moderation/muted-accounts", server.WebGeneric)
e.GET("/moderation/blocked-accounts", server.WebGeneric)
+ e.GET("/moderation/verification-settings", server.WebGeneric)
e.GET("/settings", server.WebGeneric)
e.GET("/settings/language", server.WebGeneric)
e.GET("/settings/app-passwords", server.WebGeneric)
@@ -275,6 +276,7 @@ func serve(cctx *cli.Context) error {
e.GET("/settings/account", server.WebGeneric)
e.GET("/settings/privacy-and-security", server.WebGeneric)
e.GET("/settings/content-and-media", server.WebGeneric)
+ e.GET("/settings/interests", server.WebGeneric)
e.GET("/settings/about", server.WebGeneric)
e.GET("/settings/app-icon", server.WebGeneric)
e.GET("/sys/debug", server.WebGeneric)
diff --git a/bskyweb/go.mod b/bskyweb/go.mod
index 90a205d0c1..630d5d256b 100644
--- a/bskyweb/go.mod
+++ b/bskyweb/go.mod
@@ -5,7 +5,7 @@ go 1.23
toolchain go1.23.4
require (
- github.com/bluesky-social/indigo v0.0.0-20240624223826-fd66f93ce141
+ github.com/bluesky-social/indigo v0.0.0-20250605010711-db9bb60025dc
github.com/flosch/pongo2/v6 v6.0.0
github.com/ipfs/go-log v1.0.5
github.com/joho/godotenv v1.5.1
@@ -16,6 +16,7 @@ require (
require (
github.com/beorn7/perks v1.0.1 // indirect
+ github.com/bradfitz/gomemcache v0.0.0-20230905024940-24af94b03874 // indirect
github.com/carlmjohnson/versioninfo v0.22.5 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
@@ -81,7 +82,7 @@ require (
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
- github.com/whyrusleeping/cbor-gen v0.1.1-0.20240311221002-68b9f235c302 // indirect
+ github.com/whyrusleeping/cbor-gen v0.2.1-0.20241030202151-b7a6831be65e // indirect
github.com/whyrusleeping/go-did v0.0.0-20230824162731-404d1707d5d6 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
gitlab.com/yawning/secp256k1-voi v0.0.0-20230925100816-f2616030848b // indirect
@@ -94,13 +95,13 @@ require (
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.26.0 // indirect
golang.org/x/crypto v0.21.0 // indirect
- golang.org/x/net v0.21.0 // indirect
- golang.org/x/sync v0.5.0 // indirect
- golang.org/x/sys v0.18.0 // indirect
+ golang.org/x/net v0.23.0 // indirect
+ golang.org/x/sync v0.7.0 // indirect
+ golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
- google.golang.org/protobuf v1.31.0 // indirect
+ google.golang.org/protobuf v1.33.0 // indirect
gorm.io/driver/postgres v1.5.7 // indirect
gorm.io/driver/sqlite v1.5.5 // indirect
gorm.io/gorm v1.25.9 // indirect
diff --git a/bskyweb/go.sum b/bskyweb/go.sum
index 57b127b863..c0ba4f6cc1 100644
--- a/bskyweb/go.sum
+++ b/bskyweb/go.sum
@@ -2,8 +2,10 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03
github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
-github.com/bluesky-social/indigo v0.0.0-20240624223826-fd66f93ce141 h1:F3ZceqS82fFfVV3ychWRLNDRFaFlbOwrPic0qJiUVqw=
-github.com/bluesky-social/indigo v0.0.0-20240624223826-fd66f93ce141/go.mod h1:dBIOGhsiK0rgEETnxiGiuEyrSx6DKxEotHIPbiKD6WU=
+github.com/bluesky-social/indigo v0.0.0-20250605010711-db9bb60025dc h1:chbGD59Cn1mw07kbq9Uvb8WUFIr1dcoL5TOhT+I9bV4=
+github.com/bluesky-social/indigo v0.0.0-20250605010711-db9bb60025dc/go.mod h1:ovyxp8AMO1Hoe838vMJUbqHTZaAR8ABM3g3TXu+A5Ng=
+github.com/bradfitz/gomemcache v0.0.0-20230905024940-24af94b03874 h1:N7oVaKyGp8bttX0bfZGmcGkjz7DLQXhAn3DNd3T0ous=
+github.com/bradfitz/gomemcache v0.0.0-20230905024940-24af94b03874/go.mod h1:r5xuitiExdLAJ09PR7vBVENGvp4ZuTBeWTGtxuX3K+c=
github.com/carlmjohnson/versioninfo v0.22.5 h1:O00sjOLUAFxYQjlN/bzYTuZiS0y6fWDQjMRvwtKgwwc=
github.com/carlmjohnson/versioninfo v0.22.5/go.mod h1:QT9mph3wcVfISUKd0i9sZfVrPviHuSF+cUtLjm2WSf8=
github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=
@@ -33,8 +35,6 @@ github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY=
github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I=
-github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
-github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
@@ -208,8 +208,8 @@ github.com/valyala/fasttemplate v1.2.2 h1:lxLXG0uE3Qnshl9QyaK6XJxMXlQZELvChBOCmQ
github.com/valyala/fasttemplate v1.2.2/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ=
github.com/warpfork/go-wish v0.0.0-20220906213052-39a1cc7a02d0 h1:GDDkbFiaK8jsSDJfjId/PEGEShv6ugrt4kYsC5UIDaQ=
github.com/warpfork/go-wish v0.0.0-20220906213052-39a1cc7a02d0/go.mod h1:x6AKhvSSexNrVSrViXSHUEbICjmGXhtgABaHIySUSGw=
-github.com/whyrusleeping/cbor-gen v0.1.1-0.20240311221002-68b9f235c302 h1:MhInbXe4SzcImAKktUvWBCWZgcw6MYf5NfumTj1BhAw=
-github.com/whyrusleeping/cbor-gen v0.1.1-0.20240311221002-68b9f235c302/go.mod h1:pM99HXyEbSQHcosHc0iW7YFmwnscr+t9Te4ibko05so=
+github.com/whyrusleeping/cbor-gen v0.2.1-0.20241030202151-b7a6831be65e h1:28X54ciEwwUxyHn9yrZfl5ojgF4CBNLWX7LR0rvBkf4=
+github.com/whyrusleeping/cbor-gen v0.2.1-0.20241030202151-b7a6831be65e/go.mod h1:pM99HXyEbSQHcosHc0iW7YFmwnscr+t9Te4ibko05so=
github.com/whyrusleeping/go-did v0.0.0-20230824162731-404d1707d5d6 h1:yJ9/LwIGIk/c0CdoavpC9RNSGSruIspSZtxG3Nnldic=
github.com/whyrusleeping/go-did v0.0.0-20230824162731-404d1707d5d6/go.mod h1:39U9RRVr4CKbXpXYopWn+FSH5s+vWu6+RmguSPWAq5s=
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 h1:bAn7/zixMGCfxrRTfdpNzjtPYqr8smhKouy9mxVdGPU=
@@ -271,16 +271,16 @@ golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96b
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
-golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4=
-golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44=
+golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs=
+golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.5.0 h1:60k92dhOjHxJkrqnwsfl8KuaHbn/5dl0lUPUklKo3qE=
-golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
+golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M=
+golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
@@ -297,8 +297,8 @@ golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4=
-golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
+golang.org/x/sys v0.22.0 h1:RI27ohtqKCnwULzJLqkv897zojh5/DwS/ENaMzUOaWI=
+golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
@@ -332,9 +332,8 @@ golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8T
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 h1:+cNy6SZtPcJQH3LJVLOSmiC7MMxXNOb3PU/VUEz+EhU=
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028/go.mod h1:NDW/Ps6MPRej6fsCIbMTohpP40sJ/P/vI1MoTEGwX90=
-google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
-google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8=
-google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
+google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=
+google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
diff --git a/crowdin.yml b/crowdin.yml
index 5701ca0552..e1f07515d1 100644
--- a/crowdin.yml
+++ b/crowdin.yml
@@ -9,6 +9,7 @@
"translation": "/src/locale/locales/%two_letters_code%/messages.po",
"languages_mapping": {
"two_letters_code": {
+ "pt": "pt-PT",
"pt-BR": "pt-BR",
"en-GB": "en-GB",
"zh-CN": "zh-CN",
diff --git a/docs/build.md b/docs/build.md
index 7a29ab3553..7817dd0957 100644
--- a/docs/build.md
+++ b/docs/build.md
@@ -15,7 +15,7 @@ This is NOT required when developing for web.
- Set up your environment [using the expo instructions](https://docs.expo.dev/guides/local-app-development/).
- make sure that the JAVA_HOME points to the zulu-17 directory in your `.zshrc` or `.bashrc` file: `export JAVA_HOME=/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home`. DO NOT use another JDK or you will encounter build errors.
-- If you're running macOS, make sure you are running the correct versions of Ruby and Cocoapods:-
+- If you're running macOS, make sure you are running the correct versions of Ruby and Cocoapods:-
- If you are using Apple Silicon and this is the first time you are building for RN 0.74+, you may need to run:
- `arch -arm64 brew install llvm`
- `sudo gem install ffi`
@@ -33,7 +33,7 @@ This is NOT required when developing for web.
- After initial setup:
- Copy `google-services.json.example` to `google-services.json` or provide your own `google-services.json`. (A real firebase project is NOT required)
- `npx expo prebuild` -> you will also need to run this anytime `app.json` or native `package.json` deps change
-
+
### Running the Native App
- iOS: `yarn ios`
@@ -162,6 +162,9 @@ See [testing.md](./testing.md).
`./platform/polyfills.*.ts` adds polyfills to the environment. Currently, this includes:
- TextEncoder / TextDecoder
+- react-native-url-polyfill
+- Array#findLast (on web)
+- atob (on native)
### Sentry sourcemaps
diff --git a/docs/deploy-ota.md b/docs/deploy-ota.md
index 391a6bf6bf..e75ac1b3a3 100644
--- a/docs/deploy-ota.md
+++ b/docs/deploy-ota.md
@@ -1,95 +1,138 @@
# OTA Deployments
-## Overview
+## Automatic internal OTAs
-
-
-## Internal Deployments
-
-Internal OTA deployments should be performed automatically upon all merges into main. In cases where the fingerprint
-diff results in incompatible native changes, a new client build will automatically be ran and deployed to TestFlight
+OTA deployments to TestFlight/APK installs happen automatically upon all merges
+into main. In cases where the fingerprint diff shows incompatible native
+changes, a new client build will automatically be ran and deployed to TestFlight
(iOS) or delivered in Slack (Android).
-## Production Deployments
+## Production OTAs
-### Prerequisites
+Production OTAs can only update the JavaScript bundle. Changes to native modules
+must be done as a full release cycle through the app stores.
-- Find the latest production build number for both iOS and Android in Slack. These are listed in #client-builds
- - Production builds always send the Version Number and Build Number in the Slack message. Search for the latest
- production version number, and you should find the correct information.
-
- 
+> [!TIP]
+> If you're using a TestFlight build, in order to reference the correct build
+> number and to verify the success of an OTA, you will need to delete the
+> TestFlight app itself, delete the Bluesky app entirely, and re-install from
+> the App Store.
-- It may also be useful to check the current production clients for these values. This will also help for testing. Note
-that you will need to _fully_ remove the existing internal client build from your device, otherwise the given values in
-the app may differ from the actual production values.
+### 1. Find the build numbers
- 
+Find the latest production build numbers for iOS and Android in Slack. These are
+spit out into `#bot-client-builds` after each release. You can also find this
+information under the `About` section in app settings.
-- You should have signed in to EAS locally through npx eas login. You will need to modify the build number in a
-subsequent step.
-- Ensure that the commit the initial client was cut from is properly tagged in git. The tag should be in the format of 1.X.0
- - Note: If the commit is not properly tagged, then the OTA deployment will simply fail since the GitHub Action will
- not be able to find a commit to fingerprint and diff against.
+| Slack | In app |
+| ----- | ------ |
+|  |  |
-### Preparation
+### 2. Ensure the release is tagged
-- Create a new branch from the git tag that the initial release was cut from if no OTA deployment has been made yet for this
-client. Name this branch `1.X.0-ota-1`
-- If a deployment has been made previously for this release, increment the branch name, i.e. `1.x.0-ota-2`
-- If necessary, cherry-pick the commit(s) that you wish to deploy
-- Ensure that the package.json’s version field is set to the appropriate value. As long as used the correct git tag
-to create your branch from, this should be properly set.
+You need to ensure that the latest release was properly tagged using the format
+`1.X.0`. If the commit is not properly tagged, then the OTA deployment will
+simply fail since the GitHub Action will not be able to find a commit to
+fingerprint and diff against.
-### Deployment
+### 3. Create an OTA branch
-- Update the build number through EAS to match the build numbers of the
- production iOS/Android apps
- - Note: This isn’t strictly necessary, but having a step that takes you off of GitHub and into the terminal provides
- a little “friction” to avoid fat fingering a release. Since there are legitimate reasons to just “click and deploy”
- for internal builds, I felt it useful to make sure it doesn’t accidentally become a prod deployment.
- - Set the build numbers to the values found in the prerequisite steps. Again, this should be the
- build number for the current production release you want to deploy for.
- - `npx eas build:version:set -p ios`
- - `npx eas build:version:set -p android`
- - These steps should spit out what the current build number is, save those values
- for later too
-- Run the deployment
- - Navigate to https://github.com/bluesky-social/social-app/actions/workflows/bundle-deploy-eas-update.yml
- - Select the “Run Workflow” dropdown
-
- 
-
- - Select the branch for the deployment you are releasing.
-
- 
-
- - Double check the branch selection.
- - Select the production channel
- - Enter the version for the client you are releasing to, i.e. 1.80.0
- - Note: If you do enter an incorrect version here, the deployment will either:
- - Fail because the action cannot find a commit with your misentered version
- - Succeed - but with no users receiving the update. This is because the version you entered will not properly
- correlate to a _build number_ as well, so no clients in the wild will be able to receive the update.
-
- 
-
- - Triple check the branch selection.
- - You selected the correct branch
- - You selected the "Production" channel
- - You entered the correct version in the format of `1.X.0`.
- - Press “Run Workflow”
+Create a branch based off the last commit that was deployed in the most recent
+release. This could be the commit that was tagged `1.x.0`, or a later commit,
+but it **needs to be the tip of the latest production release** in any case.
+Double check yourself by ensuring that the `version` in `package.json` matches
+what's in the latest release.
-In about five minutes, the new deployment should be available for download. To test:
+This new OTA branch should follow the format `1.X.0-ota-1`. If one or more OTAs
+have already been deployed for this release, incremement the branch name e.g.
+`1.x.0-ota-2`.
-- Remove the internal build of the app from your device
-- Download the app from the App Store/Google Play
-- Launch the app once and wait approximately 15 seconds
-- Relaunch the app
-- Check the Settings page and scroll to the bottom. The commit hash should now be the latest commit on your deployed branch.
+### 4. Add commits to the OTA branch
-### Post Deployment
+Cherry pick in the commits that need to be deployed on top of the most recent
+release or OTA.
-- Reset both platforms build numbers to what they were before the OTA
- deployment. These values should have been logged by the EAS CLI when you
- reset them to the production values prior to OTA.
+### 5. Manually set build numbers
+
+Log in to the EAS CLI with `eas login` and manually set the build numbers to the
+values you found in **Step 1**.
+
+```sh
+> npx eas build:version:set -p ios
+>
+> Project @blueskysocial/bluesky with bundle identifier "xyz.blueskyweb.app" is configured with buildNumber 1011.
+> ✔ What version would you like to set? … 1009
+>
+> npx eas build:version:set -p android
+>
+> Project @blueskysocial/bluesky with application ID "xyz.blueskyweb.app" is configured with versionCode 641.
+> ✔ What version would you like to set? … 639
+```
+
+👉 **Save the previous values,** in this case `1011` and `641`, so you can reset
+them after the OTA completes.
+
+### 6. Run the GitHub actions
+You'll need to run two separate actions: one to deploy the iOS/Android OTA
+itself, and one to build the web Docker container.
+
+**For the iOS/Android OTA,** head to [Actions > Bundle and Deploy EAS
+Update](https://github.com/bluesky-social/social-app/actions/workflows/bundle-deploy-eas-update.yml)
+and run the action.
+
+| Steps | |
+| ----- | --- |
+| Select your OTA branch `1.x.0-ota-x`, select `production` in the dropdown, enter the git tag of the latest release `1.x.0`, and click "Run workflow" |  |
+
+> [!NOTE]
+> If you do enter an incorrect version here, the deployment will either:
+> - Fail, because the action cannot find a commit with your misentered version
+> - Succeed, but with no users receiving the update. This is because the version
+> you entered will not properly correlate to a _build number_ as well, so no
+> clients in the wild will be able to receive the update.
+
+**For web,** head to [Actions >
+build-and-push-bskyweb-aws](https://github.com/bluesky-social/social-app/actions/workflows/build-and-push-bskyweb-aws.yaml)
+and run the action.
+
+| Steps | |
+| ----- | --- |
+| Select your OTA branch `1.x.0-ota-x` and click "Run workflow" |  |
+
+### 7. Deploy web
+
+Once the web Docker container build finishes, go to your `1.x.0-ota-x` branch,
+copy the most recent commit hash. Post this hash in `#ops-deploys` and request
+someone with web deploy access deploy the built container.
+
+### 8. Confirm successful deployment
+
+In about five minutes, the new deployment should be deployed and devices will
+begin downloading and installing in the background.
+
+To confirm this, as mentioned above, you must completely clear the TestFlight
+build from your device and re-install from the App Store. Then, you'll need to:
+- Launch the app (or quit and reopen) and wait ~15s for the download to complete
+- Quit and reopen the app
+- Check the `Settings > About` page and confirm the has matches the most recent has on your OTA branch
+
+### 9. Reset build numbers
+
+Grab the build numbers you saved in **Step 5** and reverse the EAS CLI commands
+to reset the build numbers.
+
+```sh
+> npx eas build:version:set -p ios
+>
+> Project @blueskysocial/bluesky with bundle identifier "xyz.blueskyweb.app" is configured with buildNumber 1009.
+> ✔ What version would you like to set? … 1011
+>
+> npx eas build:version:set -p android
+>
+> Project @blueskysocial/bluesky with application ID "xyz.blueskyweb.app" is configured with versionCode 639.
+> ✔ What version would you like to set? … 641
+```
+
+## Overview diagram
+
+
diff --git a/docs/img/ios_settings_about.jpeg b/docs/img/ios_settings_about.jpeg
new file mode 100644
index 0000000000..ff2db71199
Binary files /dev/null and b/docs/img/ios_settings_about.jpeg differ
diff --git a/docs/img/ota_action.png b/docs/img/ota_action.png
new file mode 100644
index 0000000000..56911400aa
Binary files /dev/null and b/docs/img/ota_action.png differ
diff --git a/docs/img/slack_client_builds.jpeg b/docs/img/slack_client_builds.jpeg
new file mode 100644
index 0000000000..4973a2ca71
Binary files /dev/null and b/docs/img/slack_client_builds.jpeg differ
diff --git a/docs/img/web_action.png b/docs/img/web_action.png
new file mode 100644
index 0000000000..f02c0aa6d8
Binary files /dev/null and b/docs/img/web_action.png differ
diff --git a/docs/localization.md b/docs/localization.md
index 5ca732b792..6cb75c1721 100644
--- a/docs/localization.md
+++ b/docs/localization.md
@@ -1,11 +1,11 @@
# Internationalization
-We want the official Bluesky app to be supported in as many languages as possible. If you want to help us translate the app, please get involved on [Crowdin](https://bluesky.crowdin.com/u/projects/1) or open an issue on the [Bluesky app repo on GitHub](https://github.com/bluesky-social/social-app).
+We want the official Bluesky app to be supported in as many languages as possible. If you want to help us translate the app, please get involved on [Crowdin](https://bluesky.crowdin.com/bluesky-social) or open an issue on the [Bluesky app repo on GitHub](https://github.com/bluesky-social/social-app).
## Tools
- We use Crowdin to manage translations.
- - Bluesky Crowdin: https://bluesky.crowdin.com/u/projects/1
+ - Bluesky Crowdin: https://bluesky.crowdin.com/bluesky-social
- Introduction to Crowdin: https://support.crowdin.com/for-translators/
- We use Lingui to implement translations. You can find the documentation [here](https://lingui.dev/).
@@ -15,7 +15,7 @@ Much of the app is translated by community contributions. (We <3 our translators
### Using Crowdin
-[Crowdin](https://bluesky.crowdin.com/u/projects/1) is our primary tool for managing translations. There are two roles:
+[Crowdin](https://bluesky.crowdin.com/bluesky-social) is our primary tool for managing translations. There are two roles:
- **Proof-readers**. Can create new translations and approve submitted translations.
- **Translators**. Can create new translations.
@@ -32,7 +32,7 @@ Please treat everyone with respect. Proof-readers are given final say on transla
### Adding a new language
-You can request a new language be added to the project by clicking **Request New Language** on Crowdin or you can create a [GitHub issue](https://github.com/bluesky-social/social-app/issues).
+You can request a new language be added to the project by clicking **Request New Language** on [Crowdin](https://bluesky.crowdin.com/bluesky-social) or you can create a [GitHub issue](https://github.com/bluesky-social/social-app/issues).
Please only request a new language when you are certain you will be able to contribute a substantive portion of translations for the language.
diff --git a/lingui.config.js b/lingui.config.js
index b786bea25c..46950e8723 100644
--- a/lingui.config.js
+++ b/lingui.config.js
@@ -15,6 +15,7 @@ module.exports = {
'eu',
'fi',
'fr',
+ 'fy',
'ga',
'gd',
'gl',
@@ -30,6 +31,7 @@ module.exports = {
'nl',
'pl',
'pt-BR',
+ 'pt-PT',
'ro',
'ru',
'sv',
diff --git a/metro.config.js b/metro.config.js
index b180813363..dcdead3f5d 100644
--- a/metro.config.js
+++ b/metro.config.js
@@ -16,22 +16,21 @@ if (process.env.BSKY_PROFILE) {
cfg.resolver.assetExts = [...cfg.resolver.assetExts, 'woff2']
+// Enabled by default in RN 0.79+, but this breaks Lingui + others
+cfg.resolver.unstable_enablePackageExports = false
+
cfg.resolver.resolveRequest = (context, moduleName, platform) => {
// HACK: manually resolve a few packages that use `exports` in `package.json`.
// A proper solution is to enable `unstable_enablePackageExports` but this needs careful testing.
if (moduleName.startsWith('multiformats/hashes/hasher')) {
return context.resolveRequest(
context,
- 'multiformats/dist/src/hashes/hasher',
+ 'multiformats/cjs/src/hashes/hasher',
platform,
)
}
if (moduleName.startsWith('multiformats/cid')) {
- return context.resolveRequest(
- context,
- 'multiformats/dist/src/cid',
- platform,
- )
+ return context.resolveRequest(context, 'multiformats/cjs/src/cid', platform)
}
if (moduleName === '@ipld/dag-cbor') {
return context.resolveRequest(context, '@ipld/dag-cbor/src', platform)
diff --git a/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetView.kt b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetView.kt
index 5df163b640..31eb739a66 100644
--- a/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetView.kt
+++ b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetView.kt
@@ -317,6 +317,9 @@ class BottomSheetView(
// View overrides to pass to DialogRootViewGroup instead
override fun dispatchProvideStructure(structure: ViewStructure?) {
+ if (structure == null) {
+ return
+ }
dialogRootViewGroup.dispatchProvideStructure(structure)
}
diff --git a/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/DialogRootViewGroup.kt b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/DialogRootViewGroup.kt
index c022924e99..4b02bae9f8 100644
--- a/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/DialogRootViewGroup.kt
+++ b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/DialogRootViewGroup.kt
@@ -139,19 +139,7 @@ class DialogRootViewGroup(
return super.onHoverEvent(event)
}
- @Deprecated("Deprecated in Java")
- override fun onChildStartedNativeGesture(ev: MotionEvent?) {
- eventDispatcher?.let {
- if (ev != null) {
- jSTouchDispatcher.onChildStartedNativeGesture(ev, it)
- }
- }
- }
-
- override fun onChildStartedNativeGesture(
- childView: View,
- ev: MotionEvent,
- ) {
+ override fun onChildStartedNativeGesture(childView: View?, ev: MotionEvent) {
eventDispatcher?.let { jSTouchDispatcher.onChildStartedNativeGesture(ev, it) }
jSPointerDispatcher?.onChildStartedNativeGesture(childView, ev, eventDispatcher)
}
diff --git a/modules/bottom-sheet/ios/SheetView.swift b/modules/bottom-sheet/ios/SheetView.swift
index 2223a5a8ca..710c3c866f 100644
--- a/modules/bottom-sheet/ios/SheetView.swift
+++ b/modules/bottom-sheet/ios/SheetView.swift
@@ -144,7 +144,8 @@ class SheetView: ExpoView, UISheetPresentationControllerDelegate {
}
func updateLayout() {
- if self.prevLayoutDetentIdentifier == self.selectedDetentIdentifier,
+ // Allow updates either when identifiers match OR when prevLayoutDetentIdentifier is nil (first real content update)
+ if self.prevLayoutDetentIdentifier == self.selectedDetentIdentifier || self.prevLayoutDetentIdentifier == nil,
let contentHeight = self.innerView?.subviews.first?.frame.size.height {
self.sheetVc?.updateDetents(contentHeight: self.clampHeight(contentHeight),
preventExpansion: self.preventExpansion)
@@ -154,9 +155,15 @@ class SheetView: ExpoView, UISheetPresentationControllerDelegate {
}
func dismiss() {
+ guard let sheetVc = self.sheetVc else {
+ return
+ }
+
self.isClosing = true
- self.sheetVc?.dismiss(animated: true) { [weak self] in
- self?.destroy()
+ DispatchQueue.main.async {
+ sheetVc.dismiss(animated: true) { [weak self] in
+ self?.destroy()
+ }
}
}
diff --git a/modules/bottom-sheet/src/BottomSheetNativeComponent.tsx b/modules/bottom-sheet/src/BottomSheetNativeComponent.tsx
index 1fe592aa27..d367ac300c 100644
--- a/modules/bottom-sheet/src/BottomSheetNativeComponent.tsx
+++ b/modules/bottom-sheet/src/BottomSheetNativeComponent.tsx
@@ -1,18 +1,21 @@
import * as React from 'react'
import {
Dimensions,
- LayoutChangeEvent,
- NativeSyntheticEvent,
+ type LayoutChangeEvent,
+ type NativeSyntheticEvent,
Platform,
- StyleProp,
+ type StyleProp,
View,
- ViewStyle,
+ type ViewStyle,
} from 'react-native'
import {useSafeAreaInsets} from 'react-native-safe-area-context'
import {requireNativeModule, requireNativeViewManager} from 'expo-modules-core'
import {isIOS} from '#/platform/detection'
-import {BottomSheetState, BottomSheetViewProps} from './BottomSheet.types'
+import {
+ type BottomSheetState,
+ type BottomSheetViewProps,
+} from './BottomSheet.types'
import {BottomSheetPortalProvider} from './BottomSheetPortal'
import {Context as PortalContext} from './BottomSheetPortal'
@@ -27,7 +30,10 @@ const NativeView: React.ComponentType<
const NativeModule = requireNativeModule('BottomSheet')
-const isIOS15 = Platform.OS === 'ios' && Number(Platform.Version) < 16
+const isIOS15 =
+ Platform.OS === 'ios' &&
+ // semvar - can be 3 segments, so can't use Number(Platform.Version)
+ Number(Platform.Version.split('.').at(0)) < 16
export class BottomSheetNativeComponent extends React.Component<
BottomSheetViewProps,
diff --git a/modules/bottom-sheet/src/BottomSheetNativeComponent.web.tsx b/modules/bottom-sheet/src/BottomSheetNativeComponent.web.tsx
index f1a77cf33d..8149561a3a 100644
--- a/modules/bottom-sheet/src/BottomSheetNativeComponent.web.tsx
+++ b/modules/bottom-sheet/src/BottomSheetNativeComponent.web.tsx
@@ -1,4 +1,4 @@
-import {BottomSheetViewProps} from './BottomSheet.types'
+import {type BottomSheetViewProps} from './BottomSheet.types'
export function BottomSheetNativeComponent(_: BottomSheetViewProps) {
throw new Error('BottomSheetNativeComponent is not available on web')
diff --git a/modules/expo-bluesky-gif-view/ios/ExpoBlueskyGifView.podspec b/modules/expo-bluesky-gif-view/ios/ExpoBlueskyGifView.podspec
index 352812640b..7640a5fc7c 100644
--- a/modules/expo-bluesky-gif-view/ios/ExpoBlueskyGifView.podspec
+++ b/modules/expo-bluesky-gif-view/ios/ExpoBlueskyGifView.podspec
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
s.static_framework = true
s.dependency 'ExpoModulesCore'
- s.dependency 'SDWebImage', '~> 5.19.1'
+ s.dependency 'SDWebImage', '~> 5.21.0'
s.dependency 'SDWebImageWebPCoder', '~> 0.14.6'
# Swift/Objective-C compatibility
diff --git a/modules/expo-emoji-picker/LICENSE b/modules/expo-emoji-picker/LICENSE
new file mode 100644
index 0000000000..aa0254ccbe
--- /dev/null
+++ b/modules/expo-emoji-picker/LICENSE
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) 2025 Alan Hughes
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/modules/expo-emoji-picker/README.md b/modules/expo-emoji-picker/README.md
new file mode 100644
index 0000000000..d2fb3ae050
--- /dev/null
+++ b/modules/expo-emoji-picker/README.md
@@ -0,0 +1,3 @@
+# expo-emoji-picker
+
+Based on [react-native-emoji-popup](https://github.com/okwasniewski/react-native-emoji-popup) and [expo-emoji-picker](https://github.com/alanjhughes/expo-emoji-picker)
diff --git a/modules/expo-emoji-picker/android/build.gradle b/modules/expo-emoji-picker/android/build.gradle
new file mode 100644
index 0000000000..d34288dc79
--- /dev/null
+++ b/modules/expo-emoji-picker/android/build.gradle
@@ -0,0 +1,46 @@
+apply plugin: 'com.android.library'
+
+group = 'expo.community.modules.emojipicker'
+version = '0.1.0'
+
+def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
+apply from: expoModulesCorePlugin
+applyKotlinExpoModulesCorePlugin()
+useCoreDependencies()
+useExpoPublishing()
+
+// If you want to use the managed Android SDK versions from expo-modules-core, set this to true.
+// The Android SDK versions will be bumped from time to time in SDK releases and may introduce breaking changes in your module code.
+// Most of the time, you may like to manage the Android SDK versions yourself.
+def useManagedAndroidSdkVersions = false
+if (useManagedAndroidSdkVersions) {
+ useDefaultAndroidSdkVersions()
+} else {
+ buildscript {
+ // Simple helper that allows the root project to override versions declared by this library.
+ ext.safeExtGet = { prop, fallback ->
+ rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
+ }
+ }
+ project.android {
+ compileSdkVersion safeExtGet("compileSdkVersion", 34)
+ defaultConfig {
+ minSdkVersion safeExtGet("minSdkVersion", 21)
+ targetSdkVersion safeExtGet("targetSdkVersion", 34)
+ }
+ }
+}
+
+android {
+ namespace "expo.community.modules.emojipicker"
+ defaultConfig {
+ versionCode 1
+ versionName "0.1.0"
+ }
+ lintOptions {
+ abortOnError false
+ }
+ dependencies {
+ implementation "androidx.emoji2:emoji2-emojipicker:1.5.0"
+ }
+}
diff --git a/modules/expo-emoji-picker/android/src/main/AndroidManifest.xml b/modules/expo-emoji-picker/android/src/main/AndroidManifest.xml
new file mode 100644
index 0000000000..bdae66c8f5
--- /dev/null
+++ b/modules/expo-emoji-picker/android/src/main/AndroidManifest.xml
@@ -0,0 +1,2 @@
+
+
diff --git a/modules/expo-emoji-picker/android/src/main/java/expo/community/modules/emojipicker/EmojiPickerModule.kt b/modules/expo-emoji-picker/android/src/main/java/expo/community/modules/emojipicker/EmojiPickerModule.kt
new file mode 100644
index 0000000000..ebdc7a35e4
--- /dev/null
+++ b/modules/expo-emoji-picker/android/src/main/java/expo/community/modules/emojipicker/EmojiPickerModule.kt
@@ -0,0 +1,15 @@
+package expo.community.modules.emojipicker
+
+import expo.modules.kotlin.modules.Module
+import expo.modules.kotlin.modules.ModuleDefinition
+import java.net.URL
+
+class EmojiPickerModule : Module() {
+ override fun definition() = ModuleDefinition {
+ Name("EmojiPicker")
+
+ View(EmojiPickerModuleView::class) {
+ Events("onEmojiSelected")
+ }
+ }
+}
diff --git a/modules/expo-emoji-picker/android/src/main/java/expo/community/modules/emojipicker/EmojiPickerModuleView.kt b/modules/expo-emoji-picker/android/src/main/java/expo/community/modules/emojipicker/EmojiPickerModuleView.kt
new file mode 100644
index 0000000000..a6e5a066fe
--- /dev/null
+++ b/modules/expo-emoji-picker/android/src/main/java/expo/community/modules/emojipicker/EmojiPickerModuleView.kt
@@ -0,0 +1,40 @@
+package expo.community.modules.emojipicker
+
+import android.annotation.SuppressLint
+import android.content.Context
+import android.content.res.Configuration
+import androidx.emoji2.emojipicker.EmojiPickerView
+import expo.modules.kotlin.AppContext
+import expo.modules.kotlin.viewevent.EventDispatcher
+import expo.modules.kotlin.views.ExpoView
+
+
+@SuppressLint("ViewConstructor")
+class EmojiPickerModuleView(context: Context, appContext: AppContext) :
+ ExpoView(context, appContext) {
+ private var emojiView: EmojiPickerView = EmojiPickerView(context)
+ private val onEmojiSelected by EventDispatcher()
+
+ init {
+ setupView()
+ }
+
+ private fun setupView() {
+ addView(
+ emojiView, LayoutParams(
+ LayoutParams.MATCH_PARENT,
+ LayoutParams.MATCH_PARENT
+ )
+ )
+
+ emojiView.setOnEmojiPickedListener { emoji ->
+ onEmojiSelected(mapOf("emoji" to emoji.emoji))
+ }
+ }
+
+ override fun onConfigurationChanged(newConfig: Configuration?) {
+ super.onConfigurationChanged(newConfig)
+ removeView(emojiView)
+ setupView()
+ }
+}
diff --git a/modules/expo-emoji-picker/expo-module.config.json b/modules/expo-emoji-picker/expo-module.config.json
new file mode 100644
index 0000000000..7576240d10
--- /dev/null
+++ b/modules/expo-emoji-picker/expo-module.config.json
@@ -0,0 +1,9 @@
+{
+ "platforms": ["apple", "android"],
+ "apple": {
+ "modules": ["EmojiPickerModule"]
+ },
+ "android": {
+ "modules": ["expo.community.modules.emojipicker.EmojiPickerModule"]
+ }
+}
diff --git a/modules/expo-emoji-picker/index.ts b/modules/expo-emoji-picker/index.ts
new file mode 100644
index 0000000000..a555b730ab
--- /dev/null
+++ b/modules/expo-emoji-picker/index.ts
@@ -0,0 +1,3 @@
+export {default as EmojiPicker} from './src/EmojiPicker'
+export {default} from './src/EmojiPickerModule'
+export * from './src/EmojiPickerModule.types'
diff --git a/modules/expo-emoji-picker/ios/EmojiPickerModule.podspec b/modules/expo-emoji-picker/ios/EmojiPickerModule.podspec
new file mode 100644
index 0000000000..e6a982a70e
--- /dev/null
+++ b/modules/expo-emoji-picker/ios/EmojiPickerModule.podspec
@@ -0,0 +1,25 @@
+Pod::Spec.new do |s|
+ s.name = 'EmojiPickerModule'
+ s.version = '1.0.0'
+ s.summary = 'An emoji picker for use in Bluesky'
+ s.description = 'An emoji picker for use in Bluesky'
+ s.author = 'alanjhughes'
+ s.homepage = 'https://github.com/bluesky-social/social-app'
+ s.platforms = {
+ :ios => '15.1',
+ :tvos => '15.1'
+ }
+ s.source = { git: '' }
+ s.swift_version = '5.4'
+ s.static_framework = true
+
+ s.dependency 'ExpoModulesCore'
+ s.dependency 'MCEmojiPicker'
+
+ # Swift/Objective-C compatibility
+ s.pod_target_xcconfig = {
+ 'DEFINES_MODULE' => 'YES',
+ }
+
+ s.source_files = "**/*.{h,m,mm,swift,hpp,cpp}"
+end
diff --git a/modules/expo-emoji-picker/ios/EmojiPickerModule.swift b/modules/expo-emoji-picker/ios/EmojiPickerModule.swift
new file mode 100644
index 0000000000..57b6f959a9
--- /dev/null
+++ b/modules/expo-emoji-picker/ios/EmojiPickerModule.swift
@@ -0,0 +1,11 @@
+import ExpoModulesCore
+
+public class EmojiPickerModule: Module {
+ public func definition() -> ModuleDefinition {
+ Name("EmojiPicker")
+
+ View(EmojiPickerView.self) {
+ Events("onEmojiSelected")
+ }
+ }
+}
diff --git a/modules/expo-emoji-picker/ios/EmojiPickerView.swift b/modules/expo-emoji-picker/ios/EmojiPickerView.swift
new file mode 100644
index 0000000000..65089a2af6
--- /dev/null
+++ b/modules/expo-emoji-picker/ios/EmojiPickerView.swift
@@ -0,0 +1,30 @@
+import ExpoModulesCore
+import WebKit
+import MCEmojiPicker
+
+class EmojiPickerView: ExpoView, MCEmojiPickerDelegate {
+ let onEmojiSelected = EventDispatcher()
+
+ override func layoutSubviews() {
+ let tapGesture = UITapGestureRecognizer(target: self, action: #selector(handleTap(_:)))
+ self.addGestureRecognizer(tapGesture)
+ }
+
+ @objc func handleTap(_ gesture: UITapGestureRecognizer) {
+ presentEmojiPicker()
+ }
+
+ func presentEmojiPicker() {
+ let emojiPicker = MCEmojiPickerViewController()
+ let reactRootVC = reactViewController()
+ emojiPicker.sourceView = self
+ emojiPicker.delegate = self
+ reactRootVC?.present(emojiPicker, animated: true)
+ }
+
+ func didGetEmoji(emoji: String) {
+ onEmojiSelected([
+ "emoji": emoji
+ ])
+ }
+}
diff --git a/modules/expo-emoji-picker/src/EmojiPicker.android.tsx b/modules/expo-emoji-picker/src/EmojiPicker.android.tsx
new file mode 100644
index 0000000000..d8493b72e3
--- /dev/null
+++ b/modules/expo-emoji-picker/src/EmojiPicker.android.tsx
@@ -0,0 +1,28 @@
+import {useMemo} from 'react'
+import {useColorScheme} from 'react-native'
+
+import {type EmojiPickerViewProps} from './EmojiPickerModule.types'
+import EmojiPickerNativeView from './EmojiPickerView'
+
+const EmojiPicker = ({onEmojiSelected}: EmojiPickerViewProps) => {
+ const scheme = useColorScheme()
+ const styles = useMemo(
+ () =>
+ ({
+ flex: 1,
+ width: '100%',
+ backgroundColor: scheme === 'dark' ? '#000' : '#fff',
+ } as const),
+ [scheme],
+ )
+
+ return (
+
{
+ onEmojiSelected(emoji)
+ }}
+ style={styles}
+ />
+ )
+}
+export default EmojiPicker
diff --git a/modules/expo-emoji-picker/src/EmojiPicker.tsx b/modules/expo-emoji-picker/src/EmojiPicker.tsx
new file mode 100644
index 0000000000..8fee11df78
--- /dev/null
+++ b/modules/expo-emoji-picker/src/EmojiPicker.tsx
@@ -0,0 +1,15 @@
+import {type EmojiPickerViewProps} from './EmojiPickerModule.types'
+import EmojiPickerNativeView from './EmojiPickerView'
+
+const EmojiPicker = ({children, onEmojiSelected}: EmojiPickerViewProps) => {
+ return (
+ {
+ onEmojiSelected(emoji)
+ }}>
+ {children}
+
+ )
+}
+
+export default EmojiPicker
diff --git a/modules/expo-emoji-picker/src/EmojiPickerModule.ts b/modules/expo-emoji-picker/src/EmojiPickerModule.ts
new file mode 100644
index 0000000000..a5b04e662a
--- /dev/null
+++ b/modules/expo-emoji-picker/src/EmojiPickerModule.ts
@@ -0,0 +1,5 @@
+import {NativeModule, requireNativeModule} from 'expo'
+
+declare class EmojiPickerModule extends NativeModule {}
+
+export default requireNativeModule('EmojiPicker')
diff --git a/modules/expo-emoji-picker/src/EmojiPickerModule.types.ts b/modules/expo-emoji-picker/src/EmojiPickerModule.types.ts
new file mode 100644
index 0000000000..14690a38a6
--- /dev/null
+++ b/modules/expo-emoji-picker/src/EmojiPickerModule.types.ts
@@ -0,0 +1,20 @@
+import {type ViewProps} from 'react-native'
+
+export type EmojiSelectionListener = (event: {
+ nativeEvent: SelectionEvent
+}) => void
+
+export type SelectionEvent = {
+ emoji: string
+}
+
+export type EmojiPickerViewProps = ViewProps & {
+ /*
+ * Callback that will be called when an emoji is selected.
+ */
+ onEmojiSelected: (emoji: string) => void
+}
+
+export type EmojiPickerNativeViewProps = ViewProps & {
+ onEmojiSelected: EmojiSelectionListener
+}
diff --git a/modules/expo-emoji-picker/src/EmojiPickerView.tsx b/modules/expo-emoji-picker/src/EmojiPickerView.tsx
new file mode 100644
index 0000000000..0dff25fb55
--- /dev/null
+++ b/modules/expo-emoji-picker/src/EmojiPickerView.tsx
@@ -0,0 +1,21 @@
+import {requireNativeView} from 'expo'
+import type * as React from 'react'
+
+import {
+ type EmojiPickerNativeViewProps,
+ type EmojiPickerViewProps,
+} from './EmojiPickerModule.types'
+
+const NativeView: React.ComponentType =
+ requireNativeView('EmojiPicker')
+
+export default function EmojiPicker(props: EmojiPickerViewProps) {
+ return (
+ {
+ props.onEmojiSelected(nativeEvent.emoji)
+ }}
+ />
+ )
+}
diff --git a/modules/expo-scroll-forwarder/src/ExpoScrollForwarder.types.ts b/modules/expo-scroll-forwarder/src/ExpoScrollForwarder.types.ts
index 26b9e7553a..3f1e4a63da 100644
--- a/modules/expo-scroll-forwarder/src/ExpoScrollForwarder.types.ts
+++ b/modules/expo-scroll-forwarder/src/ExpoScrollForwarder.types.ts
@@ -1,5 +1,3 @@
-import React from 'react'
-
export interface ExpoScrollForwarderViewProps {
scrollViewTag: number | null
children: React.ReactNode
diff --git a/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.ios.tsx b/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.ios.tsx
index 21a2b9fb26..18bdb25c8a 100644
--- a/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.ios.tsx
+++ b/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.ios.tsx
@@ -1,7 +1,6 @@
-import * as React from 'react'
import {requireNativeViewManager} from 'expo-modules-core'
-import {ExpoScrollForwarderViewProps} from './ExpoScrollForwarder.types'
+import {type ExpoScrollForwarderViewProps} from './ExpoScrollForwarder.types'
const NativeView: React.ComponentType =
requireNativeViewManager('ExpoScrollForwarder')
diff --git a/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx b/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx
index 0f5d01c130..d66eef7cbd 100644
--- a/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx
+++ b/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx
@@ -1,6 +1,4 @@
-import React from 'react'
-
-import {ExpoScrollForwarderViewProps} from './ExpoScrollForwarder.types'
+import {type ExpoScrollForwarderViewProps} from './ExpoScrollForwarder.types'
export function ExpoScrollForwarderView({
children,
diff --git a/package.json b/package.json
index c8ca1cdf3f..ac2171a220 100644
--- a/package.json
+++ b/package.json
@@ -1,11 +1,22 @@
{
"name": "bsky.app",
- "version": "1.99.0",
+ "version": "1.104.0",
"private": true,
"engines": {
"node": ">=20"
},
"packageManager": "yarn@1.22.22",
+ "expo": {
+ "autolinking": {
+ "android": {
+ "buildFromSource": [
+ "expo-notifications",
+ "expo-haptics",
+ "expo-media-library"
+ ]
+ }
+ }
+ },
"scripts": {
"prepare": "is-ci || husky install",
"postinstall": "patch-package && yarn intl:compile",
@@ -58,13 +69,13 @@
"icons:optimize": "svgo -f ./assets/icons"
},
"dependencies": {
- "@atproto/api": "^0.14.7",
+ "@atproto/api": "^0.15.9",
"@bitdrift/react-native": "^0.6.8",
"@braintree/sanitize-url": "^6.0.2",
"@discord/bottom-sheet": "bluesky-social/react-native-bottom-sheet",
"@emoji-mart/react": "^1.1.1",
- "@expo/html-elements": "^0.4.2",
- "@expo/webpack-config": "^19.0.0",
+ "@expo/html-elements": "^0.12.4",
+ "@expo/webpack-config": "^19.0.1",
"@floating-ui/dom": "^1.6.3",
"@floating-ui/react-dom": "^2.0.8",
"@formatjs/intl-locale": "^4.2.8",
@@ -80,18 +91,14 @@
"@mattermost/react-native-paste-input": "^0.7.1",
"@miblanchard/react-native-slider": "^2.3.1",
"@mozzius/expo-dynamic-app-icon": "^1.5.0",
- "@radix-ui/react-dismissable-layer": "^1.1.5",
- "@radix-ui/react-dropdown-menu": "2.1.6",
- "@radix-ui/react-focus-guards": "^1.1.1",
- "@radix-ui/react-focus-scope": "^1.1.2",
- "@react-native-async-storage/async-storage": "1.23.1",
- "@react-native-menu/menu": "^1.1.7",
- "@react-native-picker/picker": "2.10.2",
- "@react-navigation/bottom-tabs": "^6.5.20",
- "@react-navigation/drawer": "^6.6.15",
- "@react-navigation/native": "^6.1.17",
- "@react-navigation/native-stack": "^6.9.26",
- "@sentry/react-native": "6.9.1",
+ "@react-native-async-storage/async-storage": "2.1.2",
+ "@react-native-menu/menu": "^1.2.3",
+ "@react-native-picker/picker": "2.11.0",
+ "@react-navigation/bottom-tabs": "^7.3.13",
+ "@react-navigation/drawer": "^7.3.12",
+ "@react-navigation/native": "^7.1.9",
+ "@react-navigation/native-stack": "^7.3.13",
+ "@sentry/react-native": "~6.10.0",
"@tanstack/query-async-storage-persister": "^5.25.0",
"@tanstack/react-query": "^5.8.1",
"@tanstack/react-query-persist-client": "^5.25.0",
@@ -123,38 +130,37 @@
"emoji-mart": "^5.5.2",
"emoji-regex": "^10.4.0",
"eventemitter3": "^5.0.1",
- "expo": "~52.0.19",
- "expo-application": "^6.0.1",
- "expo-blur": "^14.0.3",
- "expo-build-properties": "^0.13.1",
- "expo-camera": "~16.0.7",
- "expo-clipboard": "^7.0.0",
- "expo-dev-client": "^5.0.4",
- "expo-device": "~7.0.1",
- "expo-file-system": "^18.0.6",
- "expo-font": "~13.0.1",
- "expo-haptics": "^14.0.0",
- "expo-image": "~2.0.3",
- "expo-image-manipulator": "^13.0.5",
- "expo-image-picker": "~16.0.3",
- "expo-linear-gradient": "^14.0.1",
- "expo-linking": "^7.0.3",
- "expo-localization": "~16.0.0",
- "expo-media-library": "~17.0.3",
- "expo-navigation-bar": "~4.0.4",
- "expo-notifications": "~0.29.11",
- "expo-screen-orientation": "^8.0.2",
- "expo-sharing": "^13.0.0",
- "expo-splash-screen": "~0.29.18",
- "expo-status-bar": "~2.0.0",
- "expo-system-ui": "^4.0.4",
- "expo-task-manager": "~12.0.3",
- "expo-updates": "~0.26.10",
- "expo-video": "^2.0.5",
- "expo-web-browser": "~14.0.1",
+ "expo": "^53.0.5",
+ "expo-application": "~6.1.4",
+ "expo-blur": "~14.1.4",
+ "expo-build-properties": "~0.14.6",
+ "expo-camera": "~16.1.6",
+ "expo-clipboard": "~7.1.4",
+ "expo-dev-client": "~5.1.7",
+ "expo-device": "~7.1.4",
+ "expo-file-system": "~18.1.8",
+ "expo-font": "~13.3.0",
+ "expo-haptics": "~14.1.4",
+ "expo-image": "~2.1.6",
+ "expo-image-crop-tool": "^0.1.8",
+ "expo-image-manipulator": "~13.1.5",
+ "expo-image-picker": "~16.1.4",
+ "expo-linear-gradient": "~14.1.4",
+ "expo-linking": "~7.1.4",
+ "expo-localization": "~16.1.5",
+ "expo-media-library": "~17.1.6",
+ "expo-notifications": "~0.31.1",
+ "expo-screen-orientation": "~8.1.5",
+ "expo-sharing": "~13.1.5",
+ "expo-splash-screen": "~0.30.8",
+ "expo-system-ui": "~5.0.7",
+ "expo-task-manager": "~13.1.5",
+ "expo-updates": "~0.28.12",
+ "expo-video": "~2.1.8",
+ "expo-web-browser": "~14.1.6",
"fast-text-encoding": "^1.0.6",
"history": "^5.3.0",
- "hls.js": "^1.5.11",
+ "hls.js": "^1.6.2",
"js-sha256": "^0.9.0",
"jwt-decode": "^4.0.0",
"lande": "^1.0.10",
@@ -163,45 +169,45 @@
"lodash.isequal": "^4.5.0",
"lodash.shuffle": "^4.2.0",
"lodash.throttle": "^4.1.1",
- "multiformats": "^13.1.0",
+ "multiformats": "9.9.0",
"nanoid": "^5.0.5",
"normalize-url": "^8.0.0",
"patch-package": "^6.5.1",
"postinstall-postinstall": "^2.1.0",
"psl": "^1.9.0",
- "react": "18.2.0",
- "react-compiler-runtime": "19.0.0-beta-a7bf2bd-20241110",
- "react-dom": "^18.2.0",
+ "radix-ui": "^1.2.0",
+ "react": "19.0.0",
+ "react-compiler-runtime": "^19.1.0-rc.1",
+ "react-dom": "19.0.0",
"react-image-crop": "^11.0.7",
- "react-keyed-flatten-children": "^3.0.0",
- "react-native": "0.76.6",
- "react-native-compressor": "1.10.3",
- "react-native-date-picker": "^5.0.7",
- "react-native-drawer-layout": "^4.1.1",
- "react-native-gesture-handler": "2.20.2",
+ "react-is": "19",
+ "react-keyed-flatten-children": "^5.0.0",
+ "react-native": "0.79.2",
+ "react-native-compressor": "1.11.0",
+ "react-native-date-picker": "^5.0.12",
+ "react-native-drawer-layout": "^4.1.6",
+ "react-native-edge-to-edge": "^1.6.0",
+ "react-native-gesture-handler": "2.25.0",
"react-native-get-random-values": "~1.11.0",
- "react-native-image-crop-picker": "^0.41.6",
"react-native-ios-context-menu": "^1.15.3",
- "react-native-keyboard-controller": "^1.14.5",
+ "react-native-keyboard-controller": "^1.17.1",
"react-native-mmkv": "^2.12.2",
- "react-native-pager-view": "6.7.0",
- "react-native-picker-select": "^9.3.1",
+ "react-native-pager-view": "6.7.1",
"react-native-progress": "bluesky-social/react-native-progress",
"react-native-qrcode-styled": "^0.3.3",
- "react-native-reanimated": "3.17.0-nightly-20241211-17e89ca24",
+ "react-native-reanimated": "~3.17.5",
"react-native-root-siblings": "^4.1.1",
- "react-native-safe-area-context": "4.14.0",
- "react-native-screens": "~4.3.0",
- "react-native-svg": "^15.8.0",
+ "react-native-safe-area-context": "5.4.0",
+ "react-native-screens": "^4.11.1",
+ "react-native-svg": "15.11.2",
"react-native-uitextview": "^1.4.0",
"react-native-url-polyfill": "^1.3.0",
- "react-native-uuid": "^2.0.2",
+ "react-native-uuid": "^2.0.3",
"react-native-view-shot": "^4.0.3",
- "react-native-vision-camera": "^4.6.3",
- "react-native-web": "~0.19.13",
+ "react-native-web": "~0.20.0",
"react-native-web-webview": "^1.0.2",
- "react-native-webview": "13.12.3",
- "react-remove-scroll-bar": "^2.3.6",
+ "react-native-webview": "13.13.5",
+ "react-remove-scroll-bar": "^2.3.8",
"react-responsive": "^9.0.2",
"react-textarea-autosize": "^8.5.3",
"rn-fetch-blob": "^0.12.0",
@@ -213,76 +219,74 @@
"zod": "^3.20.2"
},
"devDependencies": {
- "@atproto/dev-env": "^0.3.87",
+ "@atproto/dev-env": "^0.3.133",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/runtime": "^7.26.0",
- "@did-plc/server": "^0.0.1",
- "@expo/config-plugins": "9.0.10",
+ "@expo/config-plugins": "~10.0.2",
"@lingui/cli": "^4.14.1",
"@lingui/macro": "^4.14.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
- "@react-native/eslint-config": "^0.76.2",
- "@react-native/typescript-config": "^0.76.1",
+ "@react-native/eslint-config": "^0.79.2",
+ "@react-native/typescript-config": "^0.79.2",
"@sentry/webpack-plugin": "^3.2.2",
"@testing-library/jest-native": "^5.4.3",
- "@testing-library/react-native": "^12.8.1",
+ "@testing-library/react-native": "^13.2.0",
"@types/jest": "^29.4.0",
"@types/lodash.chunk": "^4.2.7",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.shuffle": "^4.2.7",
"@types/psl": "^1.1.1",
- "@types/react-dom": "^18.3.1",
+ "@types/react-dom": "^19.1.2",
"@types/react-responsive": "^8.0.5",
- "@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-jest": "^29.7.0",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-module-resolver": "^5.0.2",
- "babel-plugin-react-compiler": "19.0.0-beta-a7bf2bd-20241110",
- "babel-preset-expo": "^12.0.2",
+ "babel-plugin-react-compiler": "^19.1.0-rc.1",
+ "babel-preset-expo": "~13.1.11",
"eslint": "^8.19.0",
"eslint-plugin-bsky-internal": "link:./eslint",
"eslint-plugin-ft-flow": "^2.0.3",
+ "eslint-plugin-import": "^2.31.0",
"eslint-plugin-lingui": "^0.2.0",
"eslint-plugin-react": "^7.33.2",
- "eslint-plugin-react-compiler": "19.0.0-beta-a7bf2bd-20241110",
+ "eslint-plugin-react-compiler": "^19.1.0-rc.1",
"eslint-plugin-react-native-a11y": "^3.3.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"file-loader": "6.2.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
- "jest-expo": "^52.0.2",
+ "jest-expo": "~53.0.3",
"jest-junit": "^16.0.0",
"lint-staged": "^13.2.3",
"lockfile-lint": "^4.14.0",
- "metro-react-native-babel-preset": "^0.76.9",
+ "metro-react-native-babel-preset": "^0.77.0",
"prettier": "^2.8.3",
"react-native-dotenv": "^3.4.11",
"react-refresh": "^0.14.0",
- "react-test-renderer": "18.2.0",
"svgo": "^3.3.2",
"ts-node": "^10.9.1",
- "typescript": "^5.7.2",
+ "typescript": "~5.8.3",
"webpack-bundle-analyzer": "^4.10.1"
},
"resolutions": {
"@expo/image-utils": "0.6.3",
- "@react-native/babel-preset": "0.76.1",
- "@react-native/normalize-colors": "0.76.1",
+ "@react-native/babel-preset": "0.79.2",
+ "@react-native/normalize-colors": "0.79.2",
"@types/react": "^18",
"**/expo-constants": "17.0.3",
"**/expo-device": "7.0.1",
- "**/zod": "3.23.8"
+ "**/zod": "3.23.8",
+ "**/multiformats": "9.9.0"
},
"jest": {
"preset": "jest-expo/ios",
"setupFilesAfterEnv": [
- "./jest/jestSetup.js",
- "@testing-library/jest-native/extend-expect"
+ "./jest/jestSetup.js"
],
"moduleFileExtensions": [
"ts",
diff --git a/patches/@sentry+react-native+6.9.1.patch b/patches/@sentry+react-native+6.10.0.patch
similarity index 100%
rename from patches/@sentry+react-native+6.9.1.patch
rename to patches/@sentry+react-native+6.10.0.patch
diff --git a/patches/expo-haptics+14.0.0.patch b/patches/expo-haptics+14.1.4.patch
similarity index 100%
rename from patches/expo-haptics+14.0.0.patch
rename to patches/expo-haptics+14.1.4.patch
diff --git a/patches/expo-haptics+14.0.0.md b/patches/expo-haptics+14.1.4.patch.md
similarity index 100%
rename from patches/expo-haptics+14.0.0.md
rename to patches/expo-haptics+14.1.4.patch.md
diff --git a/patches/expo-image-manipulator+13.0.5.patch b/patches/expo-image-manipulator+13.0.5.patch
deleted file mode 100644
index 02d4d5fb9a..0000000000
--- a/patches/expo-image-manipulator+13.0.5.patch
+++ /dev/null
@@ -1,101 +0,0 @@
-diff --git a/node_modules/expo-image-manipulator/src/ImageManipulator.web.ts b/node_modules/expo-image-manipulator/src/ImageManipulator.web.ts
-new file mode 100644
-index 0000000..babbb3b
---- /dev/null
-+++ b/node_modules/expo-image-manipulator/src/ImageManipulator.web.ts
-@@ -0,0 +1,60 @@
-+import { useReleasingSharedObject } from 'expo-modules-core';
-+import { SharedRef } from 'expo-modules-core/types';
-+
-+import { Action, ImageResult, SaveFormat, SaveOptions } from './ImageManipulator.types';
-+import { ImageManipulatorContext } from './ImageManipulatorContext';
-+import ExpoImageManipulator from './NativeImageManipulatorModule';
-+import { validateArguments } from './validators';
-+
-+// @needsAudit
-+/**
-+ * Manipulate the image provided via `uri`. Available modifications are rotating, flipping (mirroring),
-+ * resizing and cropping. Each invocation results in a new file. With one invocation you can provide
-+ * a set of actions to perform over the image. Overwriting the source file would not have an effect
-+ * in displaying the result as images are cached.
-+ * @param uri URI of the file to manipulate. Should be on the local file system or a base64 data URI.
-+ * @param actions An array of objects representing manipulation options. Each object should have
-+ * __only one__ of the keys that corresponds to specific transformation.
-+ * @param saveOptions A map defining how modified image should be saved.
-+ * @return Promise which fulfils with [`ImageResult`](#imageresult) object.
-+ * @deprecated It has been replaced by the new, contextual and object-oriented API.
-+ * Use [`ImageManipulator.manipulate`](#manipulateuri) or [`useImageManipulator`](#useimagemanipulatoruri) instead.
-+ */
-+export async function manipulateAsync(
-+ uri: string,
-+ actions: Action[] = [],
-+ saveOptions: SaveOptions = {}
-+): Promise {
-+ validateArguments(uri, actions, saveOptions);
-+
-+ const { format = SaveFormat.JPEG, ...rest } = saveOptions;
-+ const context = ExpoImageManipulator.manipulate(uri);
-+
-+ for (const action of actions) {
-+ if ('resize' in action) {
-+ context.resize(action.resize);
-+ } else if ('rotate' in action) {
-+ context.rotate(action.rotate);
-+ } else if ('flip' in action) {
-+ context.flip(action.flip);
-+ } else if ('crop' in action) {
-+ context.crop(action.crop);
-+ } else if ('extent' in action && context.extent) {
-+ context.extent(action.extent);
-+ }
-+ }
-+ const image = await context.renderAsync(saveOptions.compress);
-+ const result = await image.saveAsync({ format, ...rest });
-+
-+ // These shared objects will not be used anymore, so free up some memory.
-+ context.release();
-+ image.release();
-+
-+ return result;
-+}
-+
-+export function useImageManipulator(source: string | SharedRef<'image'>): ImageManipulatorContext {
-+ return useReleasingSharedObject(() => ExpoImageManipulator.manipulate(source), [source]);
-+}
-+
-+export { ExpoImageManipulator as ImageManipulator };
-diff --git a/node_modules/expo-image-manipulator/src/ImageManipulatorContext.ts b/node_modules/expo-image-manipulator/src/ImageManipulatorContext.ts
-index 120d8d3..f8aa49c 100644
---- a/node_modules/expo-image-manipulator/src/ImageManipulatorContext.ts
-+++ b/node_modules/expo-image-manipulator/src/ImageManipulatorContext.ts
-@@ -52,7 +52,7 @@ export declare class ImageManipulatorContext extends SharedObject {
- /**
- * Awaits for all manipulation tasks to finish and resolves with a reference to the resulted native image.
- */
-- renderAsync(): Promise;
-+ renderAsync(compress?: number): Promise;
- }
-
- export default ExpoImageManipulator.Context as typeof ImageManipulatorContext;
-diff --git a/node_modules/expo-image-manipulator/src/web/ImageManipulatorContext.web.ts b/node_modules/expo-image-manipulator/src/web/ImageManipulatorContext.web.ts
-index 428848c..363a57a 100644
---- a/node_modules/expo-image-manipulator/src/web/ImageManipulatorContext.web.ts
-+++ b/node_modules/expo-image-manipulator/src/web/ImageManipulatorContext.web.ts
-@@ -41,7 +41,7 @@ export default class ImageManipulatorContext extends SharedObject {
- return this;
- }
-
-- async renderAsync(): Promise {
-+ async renderAsync(compress?: number): Promise {
- const canvas = await this.currentTask;
-
- return new Promise((resolve) => {
-@@ -49,7 +49,7 @@ export default class ImageManipulatorContext extends SharedObject {
- const url = blob ? URL.createObjectURL(blob) : canvas.toDataURL();
-
- resolve(new ImageManipulatorImageRef(url, canvas.width, canvas.height));
-- });
-+ }, typeof compress === 'number' ? 'image/jpeg' : undefined, compress);
- });
- }
-
diff --git a/patches/expo-media-library+17.0.3.patch b/patches/expo-media-library+17.1.6.patch
similarity index 50%
rename from patches/expo-media-library+17.0.3.patch
rename to patches/expo-media-library+17.1.6.patch
index c7bb6b000c..4fa853ec3a 100644
--- a/patches/expo-media-library+17.0.3.patch
+++ b/patches/expo-media-library+17.1.6.patch
@@ -1,19 +1,19 @@
diff --git a/node_modules/expo-media-library/android/src/main/java/expo/modules/medialibrary/MediaLibraryModule.kt b/node_modules/expo-media-library/android/src/main/java/expo/modules/medialibrary/MediaLibraryModule.kt
-index b928b8f..7175cf6 100644
+index f1255e8..a9b49e5 100644
--- a/node_modules/expo-media-library/android/src/main/java/expo/modules/medialibrary/MediaLibraryModule.kt
+++ b/node_modules/expo-media-library/android/src/main/java/expo/modules/medialibrary/MediaLibraryModule.kt
-@@ -99,12 +99,12 @@ class MediaLibraryModule : Module() {
+@@ -112,11 +112,9 @@ class MediaLibraryModule : Module() {
}
- AsyncFunction("createAssetAsync") { localUri: String, promise: Promise ->
+ AsyncFunction("createAssetAsync") { localUri: String, albumId: String?, promise: Promise ->
- throwUnlessPermissionsGranted {
-+ //throwUnlessPermissionsGranted {
- withModuleScope(promise) {
- CreateAsset(context, localUri, promise)
- .execute()
- }
-- }
-+ //}
+- withModuleScope(promise) {
+- CreateAssetWithAlbumId(context, localUri, promise, true, albumId)
+- .execute()
+- }
++ withModuleScope(promise) {
++ CreateAssetWithAlbumId(context, localUri, promise, true, albumId)
++ .execute()
+ }
}
- AsyncFunction("addAssetsToAlbumAsync") { assetsId: List, albumId: String, copyToAlbum: Boolean, promise: Promise ->
diff --git a/patches/expo-modules-core+2.1.2.patch b/patches/expo-modules-core+2.3.12.patch
similarity index 100%
rename from patches/expo-modules-core+2.1.2.patch
rename to patches/expo-modules-core+2.3.12.patch
diff --git a/patches/expo-modules-core+2.1.2.md b/patches/expo-modules-core+2.3.12.patch.md
similarity index 100%
rename from patches/expo-modules-core+2.1.2.md
rename to patches/expo-modules-core+2.3.12.patch.md
diff --git a/patches/expo-notifications+0.29.11.patch b/patches/expo-notifications+0.29.11.patch
deleted file mode 100644
index a781d5f1a9..0000000000
--- a/patches/expo-notifications+0.29.11.patch
+++ /dev/null
@@ -1,169 +0,0 @@
-diff --git a/node_modules/expo-notifications/android/build.gradle b/node_modules/expo-notifications/android/build.gradle
-index 5dd0c61..bf536dd 100644
---- a/node_modules/expo-notifications/android/build.gradle
-+++ b/node_modules/expo-notifications/android/build.gradle
-@@ -46,6 +46,7 @@ dependencies {
- implementation 'com.google.firebase:firebase-messaging:24.0.1'
-
- implementation 'me.leolin:ShortcutBadger:1.1.22@aar'
-+ implementation project(':expo-background-notification-handler')
-
- if (project.findProject(':expo-modules-test-core')) {
- testImplementation project(':expo-modules-test-core')
-diff --git a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/interfaces/INotificationContent.kt b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/interfaces/INotificationContent.kt
-index 7b99e6c..45a450d 100644
---- a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/interfaces/INotificationContent.kt
-+++ b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/interfaces/INotificationContent.kt
-@@ -15,6 +15,7 @@ import org.json.JSONObject
- * This interface exists to provide a common API for both classes.
- * */
- interface INotificationContent : Parcelable {
-+ val channelId: String?
- val title: String?
- val text: String?
- val subText: String?
-diff --git a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationContent.java b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationContent.java
-index 191b64e..fe8b3c5 100644
---- a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationContent.java
-+++ b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationContent.java
-@@ -35,6 +35,7 @@ import kotlin.coroutines.Continuation;
- * Refactoring this class may require a migration strategy for the data stored in SharedPreferences.
- */
- public class NotificationContent implements Parcelable, Serializable, INotificationContent {
-+ private String mChannelId;
- private String mTitle;
- private String mText;
- private String mSubtitle;
-@@ -65,6 +66,11 @@ public class NotificationContent implements Parcelable, Serializable, INotificat
- }
- };
-
-+ @Nullable
-+ public String getChannelId() {
-+ return mChannelId;
-+ }
-+
- @Nullable
- public String getTitle() {
- return mTitle;
-@@ -158,6 +164,7 @@ public class NotificationContent implements Parcelable, Serializable, INotificat
- }
-
- protected NotificationContent(Parcel in) {
-+ mChannelId = in.readString();
- mTitle = in.readString();
- mText = in.readString();
- mSubtitle = in.readString();
-@@ -183,6 +190,7 @@ public class NotificationContent implements Parcelable, Serializable, INotificat
-
- @Override
- public void writeToParcel(Parcel dest, int flags) {
-+ dest.writeString(mChannelId);
- dest.writeString(mTitle);
- dest.writeString(mText);
- dest.writeString(mSubtitle);
-@@ -203,6 +211,7 @@ public class NotificationContent implements Parcelable, Serializable, INotificat
- private static final long serialVersionUID = 397666843266836802L;
-
- private void writeObject(java.io.ObjectOutputStream out) throws IOException {
-+ out.writeObject(mChannelId);
- out.writeObject(mTitle);
- out.writeObject(mText);
- out.writeObject(mSubtitle);
-@@ -285,6 +294,11 @@ public class NotificationContent implements Parcelable, Serializable, INotificat
- useDefaultVibrationPattern();
- }
-
-+ public Builder setChannelId(String channelId) {
-+ content.mChannelId = channelId;
-+ return this;
-+ }
-+
- public Builder setTitle(String title) {
- content.mTitle = title;
- return this;
-diff --git a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationData.kt b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationData.kt
-index 39b5aad..e50797d 100644
---- a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationData.kt
-+++ b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationData.kt
-@@ -11,6 +11,9 @@ import org.json.JSONObject
- * */
- @JvmInline
- value class NotificationData(private val data: Map) {
-+ val channelId: String?
-+ get() = data["channelId"]
-+
- val title: String?
- get() = data["title"]
-
-diff --git a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/RemoteNotificationContent.kt b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/RemoteNotificationContent.kt
-index d2cc6cf..6a48ff2 100644
---- a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/RemoteNotificationContent.kt
-+++ b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/RemoteNotificationContent.kt
-@@ -31,6 +31,8 @@ class RemoteNotificationContent(private val remoteMessage: RemoteMessage) : INot
- return remoteMessage.notification?.imageUrl != null
- }
-
-+ override val channelId = remoteMessage.notification?.channelId ?: notificationData.channelId
-+
- override val title = remoteMessage.notification?.title ?: notificationData.title
-
- override val text = remoteMessage.notification?.body ?: notificationData.message
-diff --git a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/presentation/builders/ExpoNotificationBuilder.kt b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/presentation/builders/ExpoNotificationBuilder.kt
-index 8ca6ec5..57c3599 100644
---- a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/presentation/builders/ExpoNotificationBuilder.kt
-+++ b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/presentation/builders/ExpoNotificationBuilder.kt
-@@ -101,6 +101,9 @@ open class ExpoNotificationBuilder(
- builder.setOngoing(content.isSticky)
-
- // see "Notification anatomy" https://developer.android.com/develop/ui/views/notifications#Templates
-+ content.channelId?.let {
-+ builder.setChannelId(it)
-+ }
- builder.setContentTitle(content.title)
- builder.setContentText(content.text)
- builder.setSubText(content.subText)
-diff --git a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/service/delegates/FirebaseMessagingDelegate.kt b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/service/delegates/FirebaseMessagingDelegate.kt
-index 9f22441..5f92f80 100644
---- a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/service/delegates/FirebaseMessagingDelegate.kt
-+++ b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/service/delegates/FirebaseMessagingDelegate.kt
-@@ -2,6 +2,9 @@ package expo.modules.notifications.service.delegates
-
- import android.content.Context
- import com.google.firebase.messaging.RemoteMessage
-+import expo.modules.backgroundnotificationhandler.BackgroundNotificationHandler
-+import expo.modules.backgroundnotificationhandler.BackgroundNotificationHandlerInterface
-+import expo.modules.backgroundnotificationhandler.ExpoBackgroundNotificationHandlerModule
- import expo.modules.interfaces.taskManager.TaskServiceProviderHelper
- import expo.modules.notifications.notifications.RemoteMessageSerializer
- import expo.modules.notifications.notifications.background.BackgroundRemoteNotificationTaskConsumer
-@@ -17,7 +20,8 @@ import expo.modules.notifications.tokens.interfaces.FirebaseTokenListener
- import java.lang.ref.WeakReference
- import java.util.*
-
--open class FirebaseMessagingDelegate(protected val context: Context) : FirebaseMessagingDelegate {
-+open class FirebaseMessagingDelegate(protected val context: Context) : FirebaseMessagingDelegate,
-+ BackgroundNotificationHandlerInterface {
- companion object {
- // Unfortunately we cannot save state between instances of a service other way
- // than by static properties. Fortunately, using weak references we can
-@@ -94,8 +98,17 @@ open class FirebaseMessagingDelegate(protected val context: Context) : FirebaseM
- DebugLogging.logRemoteMessage("FirebaseMessagingDelegate.onMessageReceived: message", remoteMessage)
- val notification = createNotification(remoteMessage)
- DebugLogging.logNotification("FirebaseMessagingDelegate.onMessageReceived: notification", notification)
-- NotificationsService.receive(context, notification)
-- runTaskManagerTasks(remoteMessage)
-+
-+ if (!ExpoBackgroundNotificationHandlerModule.isForegrounded) {
-+ BackgroundNotificationHandler(context, this).handleMessage(remoteMessage)
-+ } else {
-+ showMessage(remoteMessage)
-+ runTaskManagerTasks(remoteMessage)
-+ }
-+ }
-+
-+ override fun showMessage(remoteMessage: RemoteMessage) {
-+ NotificationsService.receive(context, createNotification(remoteMessage))
- }
-
- private fun runTaskManagerTasks(remoteMessage: RemoteMessage) {
diff --git a/patches/expo-notifications+0.31.1.patch b/patches/expo-notifications+0.31.1.patch
new file mode 100644
index 0000000000..56e639a261
--- /dev/null
+++ b/patches/expo-notifications+0.31.1.patch
@@ -0,0 +1,992 @@
+diff --git a/node_modules/expo-notifications/android/.gradle/8.10/checksums/checksums.lock b/node_modules/expo-notifications/android/.gradle/8.10/checksums/checksums.lock
+new file mode 100644
+index 0000000..883ef6a
+Binary files /dev/null and b/node_modules/expo-notifications/android/.gradle/8.10/checksums/checksums.lock differ
+diff --git a/node_modules/expo-notifications/android/.gradle/8.10/dependencies-accessors/gc.properties b/node_modules/expo-notifications/android/.gradle/8.10/dependencies-accessors/gc.properties
+new file mode 100644
+index 0000000..e69de29
+diff --git a/node_modules/expo-notifications/android/.gradle/8.10/fileChanges/last-build.bin b/node_modules/expo-notifications/android/.gradle/8.10/fileChanges/last-build.bin
+new file mode 100644
+index 0000000..f76dd23
+Binary files /dev/null and b/node_modules/expo-notifications/android/.gradle/8.10/fileChanges/last-build.bin differ
+diff --git a/node_modules/expo-notifications/android/.gradle/8.10/fileHashes/fileHashes.lock b/node_modules/expo-notifications/android/.gradle/8.10/fileHashes/fileHashes.lock
+new file mode 100644
+index 0000000..774caf7
+Binary files /dev/null and b/node_modules/expo-notifications/android/.gradle/8.10/fileHashes/fileHashes.lock differ
+diff --git a/node_modules/expo-notifications/android/.gradle/8.10/gc.properties b/node_modules/expo-notifications/android/.gradle/8.10/gc.properties
+new file mode 100644
+index 0000000..e69de29
+diff --git a/node_modules/expo-notifications/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/node_modules/expo-notifications/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock
+new file mode 100644
+index 0000000..a3c1514
+Binary files /dev/null and b/node_modules/expo-notifications/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ
+diff --git a/node_modules/expo-notifications/android/.gradle/buildOutputCleanup/cache.properties b/node_modules/expo-notifications/android/.gradle/buildOutputCleanup/cache.properties
+new file mode 100644
+index 0000000..0e5b4da
+--- /dev/null
++++ b/node_modules/expo-notifications/android/.gradle/buildOutputCleanup/cache.properties
+@@ -0,0 +1,2 @@
++#Thu Apr 24 20:44:36 PDT 2025
++gradle.version=8.10
+diff --git a/node_modules/expo-notifications/android/.gradle/config.properties b/node_modules/expo-notifications/android/.gradle/config.properties
+new file mode 100644
+index 0000000..0bd71c6
+--- /dev/null
++++ b/node_modules/expo-notifications/android/.gradle/config.properties
+@@ -0,0 +1,2 @@
++#Thu Apr 24 20:44:32 PDT 2025
++java.home=/Applications/Android Studio.app/Contents/jbr/Contents/Home
+diff --git a/node_modules/expo-notifications/android/.gradle/vcs-1/gc.properties b/node_modules/expo-notifications/android/.gradle/vcs-1/gc.properties
+new file mode 100644
+index 0000000..e69de29
+diff --git a/node_modules/expo-notifications/android/.idea/.gitignore b/node_modules/expo-notifications/android/.idea/.gitignore
+new file mode 100644
+index 0000000..26d3352
+--- /dev/null
++++ b/node_modules/expo-notifications/android/.idea/.gitignore
+@@ -0,0 +1,3 @@
++# Default ignored files
++/shelf/
++/workspace.xml
+diff --git a/node_modules/expo-notifications/android/.idea/AndroidProjectSystem.xml b/node_modules/expo-notifications/android/.idea/AndroidProjectSystem.xml
+new file mode 100644
+index 0000000..4a53bee
+--- /dev/null
++++ b/node_modules/expo-notifications/android/.idea/AndroidProjectSystem.xml
+@@ -0,0 +1,6 @@
++
++
++
++
++
++
+\ No newline at end of file
+diff --git a/node_modules/expo-notifications/android/.idea/caches/deviceStreaming.xml b/node_modules/expo-notifications/android/.idea/caches/deviceStreaming.xml
+new file mode 100644
+index 0000000..9e9ba09
+--- /dev/null
++++ b/node_modules/expo-notifications/android/.idea/caches/deviceStreaming.xml
+@@ -0,0 +1,607 @@
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
+\ No newline at end of file
+diff --git a/node_modules/expo-notifications/android/.idea/gradle.xml b/node_modules/expo-notifications/android/.idea/gradle.xml
+new file mode 100644
+index 0000000..b838237
+--- /dev/null
++++ b/node_modules/expo-notifications/android/.idea/gradle.xml
+@@ -0,0 +1,12 @@
++
++
++
++
++
++
++
++
++
++
++
++
+\ No newline at end of file
+diff --git a/node_modules/expo-notifications/android/.idea/migrations.xml b/node_modules/expo-notifications/android/.idea/migrations.xml
+new file mode 100644
+index 0000000..f8051a6
+--- /dev/null
++++ b/node_modules/expo-notifications/android/.idea/migrations.xml
+@@ -0,0 +1,10 @@
++
++
++
++
++
++
++
++
++
++
+\ No newline at end of file
+diff --git a/node_modules/expo-notifications/android/.idea/misc.xml b/node_modules/expo-notifications/android/.idea/misc.xml
+new file mode 100644
+index 0000000..3040d03
+--- /dev/null
++++ b/node_modules/expo-notifications/android/.idea/misc.xml
+@@ -0,0 +1,10 @@
++
++
++
++
++
++
++
++
++
++
+\ No newline at end of file
+diff --git a/node_modules/expo-notifications/android/.idea/runConfigurations.xml b/node_modules/expo-notifications/android/.idea/runConfigurations.xml
+new file mode 100644
+index 0000000..16660f1
+--- /dev/null
++++ b/node_modules/expo-notifications/android/.idea/runConfigurations.xml
+@@ -0,0 +1,17 @@
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
+\ No newline at end of file
+diff --git a/node_modules/expo-notifications/android/.idea/workspace.xml b/node_modules/expo-notifications/android/.idea/workspace.xml
+new file mode 100644
+index 0000000..df26928
+--- /dev/null
++++ b/node_modules/expo-notifications/android/.idea/workspace.xml
+@@ -0,0 +1,47 @@
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++ 1745552672693
++
++
++ 1745552672693
++
++
++
++
+\ No newline at end of file
+diff --git a/node_modules/expo-notifications/android/build.gradle b/node_modules/expo-notifications/android/build.gradle
+index bc479ee..1ebfa00 100644
+--- a/node_modules/expo-notifications/android/build.gradle
++++ b/node_modules/expo-notifications/android/build.gradle
+@@ -42,6 +42,7 @@ dependencies {
+ implementation 'com.google.firebase:firebase-messaging:24.0.1'
+
+ implementation 'me.leolin:ShortcutBadger:1.1.22@aar'
++ implementation project(':expo-background-notification-handler')
+
+ if (project.findProject(':expo-modules-test-core')) {
+ testImplementation project(':expo-modules-test-core')
+diff --git a/node_modules/expo-notifications/android/local.properties b/node_modules/expo-notifications/android/local.properties
+new file mode 100644
+index 0000000..ab4c86d
+--- /dev/null
++++ b/node_modules/expo-notifications/android/local.properties
+@@ -0,0 +1,8 @@
++## This file must *NOT* be checked into Version Control Systems,
++# as it contains information specific to your local configuration.
++#
++# Location of the SDK. This is only used by Gradle.
++# For customization when using a Version Control System, please read the
++# header note.
++#Thu Apr 24 20:44:32 PDT 2025
++sdk.dir=/Users/hailey/Library/Android/sdk
+diff --git a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/interfaces/INotificationContent.kt b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/interfaces/INotificationContent.kt
+index 7b99e6c..45a450d 100644
+--- a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/interfaces/INotificationContent.kt
++++ b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/interfaces/INotificationContent.kt
+@@ -15,6 +15,7 @@ import org.json.JSONObject
+ * This interface exists to provide a common API for both classes.
+ * */
+ interface INotificationContent : Parcelable {
++ val channelId: String?
+ val title: String?
+ val text: String?
+ val subText: String?
+diff --git a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationContent.java b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationContent.java
+index 191b64e..fe8b3c5 100644
+--- a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationContent.java
++++ b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationContent.java
+@@ -35,6 +35,7 @@ import kotlin.coroutines.Continuation;
+ * Refactoring this class may require a migration strategy for the data stored in SharedPreferences.
+ */
+ public class NotificationContent implements Parcelable, Serializable, INotificationContent {
++ private String mChannelId;
+ private String mTitle;
+ private String mText;
+ private String mSubtitle;
+@@ -65,6 +66,11 @@ public class NotificationContent implements Parcelable, Serializable, INotificat
+ }
+ };
+
++ @Nullable
++ public String getChannelId() {
++ return mChannelId;
++ }
++
+ @Nullable
+ public String getTitle() {
+ return mTitle;
+@@ -158,6 +164,7 @@ public class NotificationContent implements Parcelable, Serializable, INotificat
+ }
+
+ protected NotificationContent(Parcel in) {
++ mChannelId = in.readString();
+ mTitle = in.readString();
+ mText = in.readString();
+ mSubtitle = in.readString();
+@@ -183,6 +190,7 @@ public class NotificationContent implements Parcelable, Serializable, INotificat
+
+ @Override
+ public void writeToParcel(Parcel dest, int flags) {
++ dest.writeString(mChannelId);
+ dest.writeString(mTitle);
+ dest.writeString(mText);
+ dest.writeString(mSubtitle);
+@@ -203,6 +211,7 @@ public class NotificationContent implements Parcelable, Serializable, INotificat
+ private static final long serialVersionUID = 397666843266836802L;
+
+ private void writeObject(java.io.ObjectOutputStream out) throws IOException {
++ out.writeObject(mChannelId);
+ out.writeObject(mTitle);
+ out.writeObject(mText);
+ out.writeObject(mSubtitle);
+@@ -285,6 +294,11 @@ public class NotificationContent implements Parcelable, Serializable, INotificat
+ useDefaultVibrationPattern();
+ }
+
++ public Builder setChannelId(String channelId) {
++ content.mChannelId = channelId;
++ return this;
++ }
++
+ public Builder setTitle(String title) {
+ content.mTitle = title;
+ return this;
+diff --git a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationData.kt b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationData.kt
+index 3af254c..3c77e9d 100644
+--- a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationData.kt
++++ b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationData.kt
+@@ -11,6 +11,9 @@ import org.json.JSONObject
+ * */
+ @JvmInline
+ value class NotificationData(private val data: Map) {
++ val channelId: String?
++ get() = data["channelId"]
++
+ val title: String?
+ get() = data["title"]
+
+diff --git a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/RemoteNotificationContent.kt b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/RemoteNotificationContent.kt
+index d2cc6cf..6a48ff2 100644
+--- a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/RemoteNotificationContent.kt
++++ b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/RemoteNotificationContent.kt
+@@ -31,6 +31,8 @@ class RemoteNotificationContent(private val remoteMessage: RemoteMessage) : INot
+ return remoteMessage.notification?.imageUrl != null
+ }
+
++ override val channelId = remoteMessage.notification?.channelId ?: notificationData.channelId
++
+ override val title = remoteMessage.notification?.title ?: notificationData.title
+
+ override val text = remoteMessage.notification?.body ?: notificationData.message
+diff --git a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/presentation/builders/ExpoNotificationBuilder.kt b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/presentation/builders/ExpoNotificationBuilder.kt
+index 98f003f..2f745e8 100644
+--- a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/presentation/builders/ExpoNotificationBuilder.kt
++++ b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/presentation/builders/ExpoNotificationBuilder.kt
+@@ -101,6 +101,9 @@ open class ExpoNotificationBuilder(
+ builder.setOngoing(content.isSticky)
+
+ // see "Notification anatomy" https://developer.android.com/develop/ui/views/notifications#Templates
++ content.channelId?.let {
++ builder.setChannelId(it)
++ }
+ builder.setContentTitle(content.title)
+ builder.setContentText(content.text)
+ builder.setSubText(content.subText)
+diff --git a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/service/delegates/FirebaseMessagingDelegate.kt b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/service/delegates/FirebaseMessagingDelegate.kt
+index 90ca4ff..9d4cb09 100644
+--- a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/service/delegates/FirebaseMessagingDelegate.kt
++++ b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/service/delegates/FirebaseMessagingDelegate.kt
+@@ -3,6 +3,9 @@ package expo.modules.notifications.service.delegates
+ import android.content.Context
+ import android.os.Bundle
+ import com.google.firebase.messaging.RemoteMessage
++import expo.modules.backgroundnotificationhandler.BackgroundNotificationHandler
++import expo.modules.backgroundnotificationhandler.BackgroundNotificationHandlerInterface
++import expo.modules.backgroundnotificationhandler.ExpoBackgroundNotificationHandlerModule
+ import expo.modules.interfaces.taskManager.TaskServiceProviderHelper
+ import expo.modules.notifications.notifications.RemoteMessageSerializer
+ import expo.modules.notifications.notifications.background.BackgroundRemoteNotificationTaskConsumer
+@@ -18,7 +21,7 @@ import expo.modules.notifications.tokens.interfaces.FirebaseTokenListener
+ import java.lang.ref.WeakReference
+ import java.util.*
+
+-open class FirebaseMessagingDelegate(protected val context: Context) : FirebaseMessagingDelegate {
++open class FirebaseMessagingDelegate(protected val context: Context) : FirebaseMessagingDelegate, BackgroundNotificationHandlerInterface{
+ companion object {
+ // Unfortunately we cannot save state between instances of a service other way
+ // than by static properties. Fortunately, using weak references we can
+@@ -105,8 +108,19 @@ open class FirebaseMessagingDelegate(protected val context: Context) : FirebaseM
+ DebugLogging.logRemoteMessage("FirebaseMessagingDelegate.onMessageReceived: message", remoteMessage)
+ val notification = createNotification(remoteMessage)
+ DebugLogging.logNotification("FirebaseMessagingDelegate.onMessageReceived: notification", notification)
+- NotificationsService.receive(context, notification)
+- runTaskManagerTasks(context.applicationContext, RemoteMessageSerializer.toBundle(remoteMessage))
++ if (!ExpoBackgroundNotificationHandlerModule.isForegrounded) {
++ BackgroundNotificationHandler(context, this).handleMessage(remoteMessage)
++ } else {
++ NotificationsService.receive(context, notification)
++ runTaskManagerTasks(
++ context.applicationContext,
++ RemoteMessageSerializer.toBundle(remoteMessage)
++ )
++ }
++ }
++
++ override fun showMessage(remoteMessage: RemoteMessage) {
++ NotificationsService.receive(context, createNotification(remoteMessage))
+ }
+
+ protected fun createNotification(remoteMessage: RemoteMessage): Notification {
diff --git a/patches/expo-notifications+0.29.11.patch.md b/patches/expo-notifications+0.31.1.patch.md
similarity index 100%
rename from patches/expo-notifications+0.29.11.patch.md
rename to patches/expo-notifications+0.31.1.patch.md
diff --git a/patches/expo-updates+0.26.10.patch b/patches/expo-updates+0.28.12.patch
similarity index 100%
rename from patches/expo-updates+0.26.10.patch
rename to patches/expo-updates+0.28.12.patch
diff --git a/patches/expo-updates+0.26.10.patch.md b/patches/expo-updates+0.28.12.patch.md
similarity index 100%
rename from patches/expo-updates+0.26.10.patch.md
rename to patches/expo-updates+0.28.12.patch.md
diff --git a/patches/react-native+0.76.6.patch b/patches/react-native+0.76.6.patch
deleted file mode 100644
index 5af24a372b..0000000000
--- a/patches/react-native+0.76.6.patch
+++ /dev/null
@@ -1,366 +0,0 @@
-diff --git a/node_modules/react-native/Libraries/StyleSheet/StyleSheetTypes.d.ts b/node_modules/react-native/Libraries/StyleSheet/StyleSheetTypes.d.ts
-index 62f52a7..ca30165 100644
---- a/node_modules/react-native/Libraries/StyleSheet/StyleSheetTypes.d.ts
-+++ b/node_modules/react-native/Libraries/StyleSheet/StyleSheetTypes.d.ts
-@@ -426,9 +426,10 @@ export interface ViewStyle extends FlexStyle, ShadowStyleIOS, TransformsStyle {
- */
- pointerEvents?: 'box-none' | 'none' | 'box-only' | 'auto' | undefined;
- isolation?: 'auto' | 'isolate' | undefined;
-- cursor?: CursorValue | undefined;
-+ cursor?: CursorValue | string | undefined;
- boxShadow?: ReadonlyArray | string | undefined;
- filter?: ReadonlyArray | string | undefined;
-+ transformOrigin?: string | (string | number)[] | undefined;
- }
-
- export type FontVariant =
-@@ -536,7 +537,11 @@ export interface TextStyle extends TextStyleIOS, TextStyleAndroid, ViewStyle {
- textShadowOffset?: {width: number; height: number} | undefined;
- textShadowRadius?: number | undefined;
- textTransform?: 'none' | 'capitalize' | 'uppercase' | 'lowercase' | undefined;
-- userSelect?: 'auto' | 'none' | 'text' | 'contain' | 'all' | undefined;
-+ userSelect?: 'auto' | 'none' | 'text' | 'contain' | 'all' | string | undefined;
-+ cursor?: CursorValue | string | undefined;
-+ boxShadow?: ReadonlyArray | string | undefined;
-+ filter?: ReadonlyArray | string | undefined;
-+ transformOrigin?: string | (string | number)[] | undefined;
- }
-
- /**
-@@ -558,5 +563,8 @@ export interface ImageStyle extends FlexStyle, ShadowStyleIOS, TransformsStyle {
- tintColor?: ColorValue | undefined;
- opacity?: AnimatableNumericValue | undefined;
- objectFit?: 'cover' | 'contain' | 'fill' | 'scale-down' | undefined;
-- cursor?: CursorValue | undefined;
-+ cursor?: CursorValue | string | undefined;
-+ boxShadow?: ReadonlyArray | string | undefined;
-+ filter?: ReadonlyArray | string | undefined;
-+ transformOrigin?: string | (string | number)[] | undefined;
- }
-diff --git a/node_modules/react-native/React/Fabric/Mounting/ComponentViews/ScrollView/RCTEnhancedScrollView.mm b/node_modules/react-native/React/Fabric/Mounting/ComponentViews/ScrollView/RCTEnhancedScrollView.mm
-index 93af874..106f8ec 100644
---- a/node_modules/react-native/React/Fabric/Mounting/ComponentViews/ScrollView/RCTEnhancedScrollView.mm
-+++ b/node_modules/react-native/React/Fabric/Mounting/ComponentViews/ScrollView/RCTEnhancedScrollView.mm
-@@ -66,28 +66,51 @@ - (void)preserveContentOffsetWithBlock:(void (^)())block
- * ScrollView, we force it to be centered, but when you zoom or the content otherwise
- * becomes larger than the ScrollView, there is no padding around the content but it
- * can still fill the whole view.
-+ * This implementation is based on https://petersteinberger.com/blog/2013/how-to-center-uiscrollview/.
- */
--- (void)setContentOffset:(CGPoint)contentOffset
-+-(void)centerContentIfNeeded
- {
-- if (_isSetContentOffsetDisabled) {
-+ if (!_centerContent) {
- return;
- }
-
-- if (_centerContent && !CGSizeEqualToSize(self.contentSize, CGSizeZero)) {
-- CGSize scrollViewSize = self.bounds.size;
-- if (self.contentSize.width <= scrollViewSize.width) {
-- contentOffset.x = -(scrollViewSize.width - self.contentSize.width) / 2.0;
-- }
-- if (self.contentSize.height <= scrollViewSize.height) {
-- contentOffset.y = -(scrollViewSize.height - self.contentSize.height) / 2.0;
-- }
-+ CGSize contentSize = self.contentSize;
-+ CGSize boundsSize = self.bounds.size;
-+ if (CGSizeEqualToSize(contentSize, CGSizeZero) ||
-+ CGSizeEqualToSize(boundsSize, CGSizeZero)) {
-+ return;
- }
-
-+ CGFloat top = 0, left = 0;
-+ if (contentSize.width < boundsSize.width) {
-+ left = (boundsSize.width - contentSize.width) * 0.5f;
-+ }
-+ if (contentSize.height < boundsSize.height) {
-+ top = (boundsSize.height - contentSize.height) * 0.5f;
-+ }
-+ self.contentInset = UIEdgeInsetsMake(top, left, top, left);
-+}
-+
-+- (void)setContentOffset:(CGPoint)contentOffset
-+{
-+ if (_isSetContentOffsetDisabled) {
-+ return;
-+ }
- super.contentOffset = CGPointMake(
- RCTSanitizeNaNValue(contentOffset.x, @"scrollView.contentOffset.x"),
- RCTSanitizeNaNValue(contentOffset.y, @"scrollView.contentOffset.y"));
- }
-
-+- (void)setFrame:(CGRect)frame {
-+ [super setFrame:frame];
-+ [self centerContentIfNeeded];
-+}
-+
-+- (void)didAddSubview:(UIView *)subview {
-+ [super didAddSubview:subview];
-+ [self centerContentIfNeeded];
-+}
-+
- - (BOOL)touchesShouldCancelInContentView:(UIView *)view
- {
- if ([_overridingDelegate respondsToSelector:@selector(touchesShouldCancelInContentView:)]) {
-@@ -257,6 +280,10 @@ - (void)scrollViewWillEndDragging:(UIScrollView *)scrollView
- }
- }
-
-+- (void)scrollViewDidZoom:(__unused UIScrollView *)scrollView {
-+ [self centerContentIfNeeded];
-+}
-+
- #pragma mark -
-
- - (BOOL)isHorizontal:(UIScrollView *)scrollView
-diff --git a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.h b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.h
-index e9b330f..ec5f58c 100644
---- a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.h
-+++ b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.h
-@@ -15,5 +15,8 @@
- @property (nonatomic, copy) NSString *title;
- @property (nonatomic, copy) RCTDirectEventBlock onRefresh;
- @property (nonatomic, weak) UIScrollView *scrollView;
-+@property (nonatomic, copy) UIColor *customTintColor;
-+
-+- (void)forwarderBeginRefreshing;
-
- @end
-diff --git a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.m b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.m
-index 53bfd04..ff1b1ed 100644
---- a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.m
-+++ b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.m
-@@ -23,6 +23,7 @@ @implementation RCTRefreshControl {
- UIColor *_titleColor;
- CGFloat _progressViewOffset;
- BOOL _hasMovedToWindow;
-+ UIColor *_customTintColor;
- }
-
- - (instancetype)init
-@@ -58,6 +59,12 @@ - (void)layoutSubviews
- _isInitialRender = false;
- }
-
-+- (void)didMoveToSuperview
-+{
-+ [super didMoveToSuperview];
-+ [self setTintColor:_customTintColor];
-+}
-+
- - (void)didMoveToWindow
- {
- [super didMoveToWindow];
-@@ -221,4 +228,50 @@ - (void)refreshControlValueChanged
- }
- }
-
-+// Fix for https://github.com/facebook/react-native/issues/43388
-+// A bug in iOS 17.4 causes the haptic to not play when refreshing if the tintColor
-+// is set before the refresh control gets added to the scrollview. We'll call this
-+// function whenever the superview changes. We'll also call it if the value of customTintColor
-+// changes.
-+- (void)setTintColor:(UIColor *)tintColor
-+{
-+ if ([self.superview isKindOfClass:[UIScrollView class]] && self.tintColor != tintColor) {
-+ [super setTintColor:tintColor];
-+ }
-+}
-+
-+// This method is used by Bluesky's ExpoScrollForwarder. This allows other React Native
-+// libraries to perform a refresh of a scrollview and access the refresh control's onRefresh
-+// function.
-+- (void)forwarderBeginRefreshing
-+{
-+ _refreshingProgrammatically = NO;
-+
-+ [self sizeToFit];
-+
-+ if (!self.scrollView) {
-+ return;
-+ }
-+
-+ UIScrollView *scrollView = (UIScrollView *)self.scrollView;
-+
-+ [UIView animateWithDuration:0.3
-+ delay:0
-+ options:UIViewAnimationOptionBeginFromCurrentState
-+ animations:^(void) {
-+ // Whenever we call this method, the scrollview will always be at a position of
-+ // -130 or less. Scrolling back to -65 simulates the default behavior of RCTRefreshControl
-+ [scrollView setContentOffset:CGPointMake(0, -65)];
-+ }
-+ completion:^(__unused BOOL finished) {
-+ [super beginRefreshing];
-+ [self setCurrentRefreshingState:super.refreshing];
-+
-+ if (self->_onRefresh) {
-+ self->_onRefresh(nil);
-+ }
-+ }
-+ ];
-+}
-+
- @end
-diff --git a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControlManager.m b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControlManager.m
-index 40aaf9c..1c60164 100644
---- a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControlManager.m
-+++ b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControlManager.m
-@@ -22,11 +22,12 @@ - (UIView *)view
-
- RCT_EXPORT_VIEW_PROPERTY(onRefresh, RCTDirectEventBlock)
- RCT_EXPORT_VIEW_PROPERTY(refreshing, BOOL)
--RCT_EXPORT_VIEW_PROPERTY(tintColor, UIColor)
- RCT_EXPORT_VIEW_PROPERTY(title, NSString)
- RCT_EXPORT_VIEW_PROPERTY(titleColor, UIColor)
- RCT_EXPORT_VIEW_PROPERTY(progressViewOffset, CGFloat)
-
-+RCT_REMAP_VIEW_PROPERTY(tintColor, customTintColor, UIColor)
-+
- RCT_EXPORT_METHOD(setNativeRefreshing : (nonnull NSNumber *)viewTag toRefreshing : (BOOL)refreshing)
- {
- [self.bridge.uiManager addUIBlock:^(RCTUIManager *uiManager, NSDictionary *viewRegistry) {
-diff --git a/node_modules/react-native/React/Views/ScrollView/RCTScrollView.m b/node_modules/react-native/React/Views/ScrollView/RCTScrollView.m
-index e9ce48c..84a6fca 100644
---- a/node_modules/react-native/React/Views/ScrollView/RCTScrollView.m
-+++ b/node_modules/react-native/React/Views/ScrollView/RCTScrollView.m
-@@ -159,26 +159,8 @@ - (BOOL)touchesShouldCancelInContentView:(__unused UIView *)view
- return !shouldDisableScrollInteraction;
- }
-
--/*
-- * Automatically centers the content such that if the content is smaller than the
-- * ScrollView, we force it to be centered, but when you zoom or the content otherwise
-- * becomes larger than the ScrollView, there is no padding around the content but it
-- * can still fill the whole view.
-- */
- - (void)setContentOffset:(CGPoint)contentOffset
- {
-- UIView *contentView = [self contentView];
-- if (contentView && _centerContent && !CGSizeEqualToSize(contentView.frame.size, CGSizeZero)) {
-- CGSize subviewSize = contentView.frame.size;
-- CGSize scrollViewSize = self.bounds.size;
-- if (subviewSize.width <= scrollViewSize.width) {
-- contentOffset.x = -(scrollViewSize.width - subviewSize.width) / 2.0;
-- }
-- if (subviewSize.height <= scrollViewSize.height) {
-- contentOffset.y = -(scrollViewSize.height - subviewSize.height) / 2.0;
-- }
-- }
--
- super.contentOffset = CGPointMake(
- RCTSanitizeNaNValue(contentOffset.x, @"scrollView.contentOffset.x"),
- RCTSanitizeNaNValue(contentOffset.y, @"scrollView.contentOffset.y"));
-@@ -427,6 +409,11 @@ - (void)setRemoveClippedSubviews:(__unused BOOL)removeClippedSubviews
- // Does nothing
- }
-
-+- (void)setFrame:(CGRect)frame {
-+ [super setFrame:frame];
-+ [self centerContentIfNeeded];
-+}
-+
- - (void)insertReactSubview:(UIView *)view atIndex:(NSInteger)atIndex
- {
- [super insertReactSubview:view atIndex:atIndex];
-@@ -443,6 +430,8 @@ - (void)insertReactSubview:(UIView *)view atIndex:(NSInteger)atIndex
- _contentView = view;
- RCTApplyTransformationAccordingLayoutDirection(_contentView, self.reactLayoutDirection);
- [_scrollView addSubview:view];
-+
-+ [self centerContentIfNeeded];
- }
- }
-
-@@ -652,9 +641,46 @@ -(void)delegateMethod : (UIScrollView *)scrollView \
- }
-
- RCT_SCROLL_EVENT_HANDLER(scrollViewWillBeginDecelerating, onMomentumScrollBegin)
--RCT_SCROLL_EVENT_HANDLER(scrollViewDidZoom, onScroll)
- RCT_SCROLL_EVENT_HANDLER(scrollViewDidScrollToTop, onScrollToTop)
-
-+-(void)scrollViewDidZoom : (UIScrollView *)scrollView
-+{
-+ [self centerContentIfNeeded];
-+
-+ RCT_SEND_SCROLL_EVENT(onScroll, nil);
-+ RCT_FORWARD_SCROLL_EVENT(scrollViewDidZoom : scrollView);
-+}
-+
-+/*
-+ * Automatically centers the content such that if the content is smaller than the
-+ * ScrollView, we force it to be centered, but when you zoom or the content otherwise
-+ * becomes larger than the ScrollView, there is no padding around the content but it
-+ * can still fill the whole view.
-+ * This implementation is based on https://petersteinberger.com/blog/2013/how-to-center-uiscrollview/.
-+ */
-+-(void)centerContentIfNeeded
-+{
-+ if (!_scrollView.centerContent) {
-+ return;
-+ }
-+
-+ CGSize contentSize = self.contentSize;
-+ CGSize boundsSize = self.bounds.size;
-+ if (CGSizeEqualToSize(contentSize, CGSizeZero) ||
-+ CGSizeEqualToSize(boundsSize, CGSizeZero)) {
-+ return;
-+ }
-+
-+ CGFloat top = 0, left = 0;
-+ if (contentSize.width < boundsSize.width) {
-+ left = (boundsSize.width - contentSize.width) * 0.5f;
-+ }
-+ if (contentSize.height < boundsSize.height) {
-+ top = (boundsSize.height - contentSize.height) * 0.5f;
-+ }
-+ _scrollView.contentInset = UIEdgeInsetsMake(top, left, top, left);
-+}
-+
- - (void)addScrollListener:(NSObject *)scrollListener
- {
- [_scrollListeners addObject:scrollListener];
-@@ -933,6 +959,7 @@ - (void)updateContentSizeIfNeeded
- CGSize contentSize = self.contentSize;
- if (!CGSizeEqualToSize(_scrollView.contentSize, contentSize)) {
- _scrollView.contentSize = contentSize;
-+ [self centerContentIfNeeded];
- }
- }
-
-@@ -1055,6 +1082,22 @@ -(type)getter \
- RCT_SET_AND_PRESERVE_OFFSET(setShowsVerticalScrollIndicator, showsVerticalScrollIndicator, BOOL)
- RCT_SET_AND_PRESERVE_OFFSET(setZoomScale, zoomScale, CGFloat);
-
-+- (void)setScrollIndicatorInsets:(UIEdgeInsets)value
-+{
-+ [_scrollView setScrollIndicatorInsets:value];
-+}
-+
-+- (UIEdgeInsets)scrollIndicatorInsets
-+{
-+ UIEdgeInsets verticalScrollIndicatorInsets = [_scrollView verticalScrollIndicatorInsets];
-+ UIEdgeInsets horizontalScrollIndicatorInsets = [_scrollView horizontalScrollIndicatorInsets];
-+ return UIEdgeInsetsMake(
-+ verticalScrollIndicatorInsets.top,
-+ horizontalScrollIndicatorInsets.left,
-+ verticalScrollIndicatorInsets.bottom,
-+ horizontalScrollIndicatorInsets.right);
-+}
-+
- - (void)setAutomaticallyAdjustsScrollIndicatorInsets:(BOOL)automaticallyAdjusts API_AVAILABLE(ios(13.0))
- {
- // `automaticallyAdjustsScrollIndicatorInsets` is available since iOS 13.
-diff --git a/node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.m b/node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.m
-index cd1e7eb..c1d0172 100644
---- a/node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.m
-+++ b/node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.m
-@@ -83,6 +83,7 @@ - (UIView *)view
- RCT_EXPORT_VIEW_PROPERTY(scrollEventThrottle, NSTimeInterval)
- RCT_EXPORT_VIEW_PROPERTY(zoomScale, CGFloat)
- RCT_EXPORT_VIEW_PROPERTY(contentInset, UIEdgeInsets)
-+RCT_EXPORT_VIEW_PROPERTY(scrollIndicatorInsets, UIEdgeInsets)
- RCT_EXPORT_VIEW_PROPERTY(verticalScrollIndicatorInsets, UIEdgeInsets)
- RCT_EXPORT_VIEW_PROPERTY(scrollToOverflowEnabled, BOOL)
- RCT_EXPORT_VIEW_PROPERTY(snapToInterval, int)
diff --git a/patches/react-native+0.79.2.patch b/patches/react-native+0.79.2.patch
new file mode 100644
index 0000000000..609ae66178
--- /dev/null
+++ b/patches/react-native+0.79.2.patch
@@ -0,0 +1,119 @@
+diff --git a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.h b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.h
+index e9b330f..ec5f58c 100644
+--- a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.h
++++ b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.h
+@@ -15,5 +15,8 @@
+ @property (nonatomic, copy) NSString *title;
+ @property (nonatomic, copy) RCTDirectEventBlock onRefresh;
+ @property (nonatomic, weak) UIScrollView *scrollView;
++@property (nonatomic, copy) UIColor *customTintColor;
++
++- (void)forwarderBeginRefreshing;
+
+ @end
+diff --git a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.m b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.m
+index 53bfd04..ff1b1ed 100644
+--- a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.m
++++ b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControl.m
+@@ -23,6 +23,7 @@
+ UIColor *_titleColor;
+ CGFloat _progressViewOffset;
+ BOOL _hasMovedToWindow;
++ UIColor *_customTintColor;
+ }
+
+ - (instancetype)init
+@@ -58,6 +59,12 @@ RCT_NOT_IMPLEMENTED(-(instancetype)initWithCoder : (NSCoder *)aDecoder)
+ _isInitialRender = false;
+ }
+
++- (void)didMoveToSuperview
++{
++ [super didMoveToSuperview];
++ [self setTintColor:_customTintColor];
++}
++
+ - (void)didMoveToWindow
+ {
+ [super didMoveToWindow];
+@@ -221,4 +228,50 @@ RCT_NOT_IMPLEMENTED(-(instancetype)initWithCoder : (NSCoder *)aDecoder)
+ }
+ }
+
++// Fix for https://github.com/facebook/react-native/issues/43388
++// A bug in iOS 17.4 causes the haptic to not play when refreshing if the tintColor
++// is set before the refresh control gets added to the scrollview. We'll call this
++// function whenever the superview changes. We'll also call it if the value of customTintColor
++// changes.
++- (void)setTintColor:(UIColor *)tintColor
++{
++ if ([self.superview isKindOfClass:[UIScrollView class]] && self.tintColor != tintColor) {
++ [super setTintColor:tintColor];
++ }
++}
++
++// This method is used by Bluesky's ExpoScrollForwarder. This allows other React Native
++// libraries to perform a refresh of a scrollview and access the refresh control's onRefresh
++// function.
++- (void)forwarderBeginRefreshing
++{
++ _refreshingProgrammatically = NO;
++
++ [self sizeToFit];
++
++ if (!self.scrollView) {
++ return;
++ }
++
++ UIScrollView *scrollView = (UIScrollView *)self.scrollView;
++
++ [UIView animateWithDuration:0.3
++ delay:0
++ options:UIViewAnimationOptionBeginFromCurrentState
++ animations:^(void) {
++ // Whenever we call this method, the scrollview will always be at a position of
++ // -130 or less. Scrolling back to -65 simulates the default behavior of RCTRefreshControl
++ [scrollView setContentOffset:CGPointMake(0, -65)];
++ }
++ completion:^(__unused BOOL finished) {
++ [super beginRefreshing];
++ [self setCurrentRefreshingState:super.refreshing];
++
++ if (self->_onRefresh) {
++ self->_onRefresh(nil);
++ }
++ }
++ ];
++}
++
+ @end
+diff --git a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControlManager.m b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControlManager.m
+index 40aaf9c..1c60164 100644
+--- a/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControlManager.m
++++ b/node_modules/react-native/React/Views/RefreshControl/RCTRefreshControlManager.m
+@@ -22,11 +22,12 @@ RCT_EXPORT_MODULE()
+
+ RCT_EXPORT_VIEW_PROPERTY(onRefresh, RCTDirectEventBlock)
+ RCT_EXPORT_VIEW_PROPERTY(refreshing, BOOL)
+-RCT_EXPORT_VIEW_PROPERTY(tintColor, UIColor)
+ RCT_EXPORT_VIEW_PROPERTY(title, NSString)
+ RCT_EXPORT_VIEW_PROPERTY(titleColor, UIColor)
+ RCT_EXPORT_VIEW_PROPERTY(progressViewOffset, CGFloat)
+
++RCT_REMAP_VIEW_PROPERTY(tintColor, customTintColor, UIColor)
++
+ RCT_EXPORT_METHOD(setNativeRefreshing : (nonnull NSNumber *)viewTag toRefreshing : (BOOL)refreshing)
+ {
+ [self.bridge.uiManager addUIBlock:^(RCTUIManager *uiManager, NSDictionary *viewRegistry) {
+diff --git a/node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.m b/node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.m
+index cd1e7eb..c1d0172 100644
+--- a/node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.m
++++ b/node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.m
+@@ -83,6 +83,7 @@ RCT_EXPORT_VIEW_PROPERTY(showsVerticalScrollIndicator, BOOL)
+ RCT_EXPORT_VIEW_PROPERTY(scrollEventThrottle, NSTimeInterval)
+ RCT_EXPORT_VIEW_PROPERTY(zoomScale, CGFloat)
+ RCT_EXPORT_VIEW_PROPERTY(contentInset, UIEdgeInsets)
++RCT_EXPORT_VIEW_PROPERTY(scrollIndicatorInsets, UIEdgeInsets)
+ RCT_EXPORT_VIEW_PROPERTY(verticalScrollIndicatorInsets, UIEdgeInsets)
+ RCT_EXPORT_VIEW_PROPERTY(scrollToOverflowEnabled, BOOL)
+ RCT_EXPORT_VIEW_PROPERTY(snapToInterval, int)
diff --git a/patches/react-native+0.76.6.patch.md b/patches/react-native+0.79.2.patch.md
similarity index 84%
rename from patches/react-native+0.76.6.patch.md
rename to patches/react-native+0.79.2.patch.md
index eacb9f267c..9c93aee5cb 100644
--- a/patches/react-native+0.76.6.patch.md
+++ b/patches/react-native+0.79.2.patch.md
@@ -11,7 +11,3 @@ in the RN repo: https://github.com/facebook/react-native/issues/43388
Patching `RCTRefreshControl.m` and `RCTRefreshControl.h` to add a new `forwarderBeginRefreshing` method to the class.
This method is used by `ExpoScrollForwarder` to initiate a refresh of the underlying `UIScrollView` from inside that
module.
-
-## ScrollView centerContent fix
-
-Includes https://github.com/facebook/react-native/pull/47591 early. Delete when it's in a release.
diff --git a/patches/react-native-gesture-handler+2.20.2.patch b/patches/react-native-gesture-handler+2.25.0.patch
similarity index 100%
rename from patches/react-native-gesture-handler+2.20.2.patch
rename to patches/react-native-gesture-handler+2.25.0.patch
diff --git a/patches/react-native-image-crop-picker+0.41.6.patch b/patches/react-native-image-crop-picker+0.41.6.patch
deleted file mode 100644
index 57589931a3..0000000000
--- a/patches/react-native-image-crop-picker+0.41.6.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-diff --git a/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml b/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
-index 391f303..8e2c3db 100644
---- a/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
-+++ b/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
-@@ -24,7 +24,7 @@
-
-
-+ android:theme="@style/Theme.UCropNoEdgeToEdge" />
-
-
-
-diff --git a/node_modules/react-native-image-crop-picker/android/src/main/res/values-v35/styles.xml b/node_modules/react-native-image-crop-picker/android/src/main/res/values-v35/styles.xml
-new file mode 100644
-index 0000000..396d5a8
---- /dev/null
-+++ b/node_modules/react-native-image-crop-picker/android/src/main/res/values-v35/styles.xml
-@@ -0,0 +1,5 @@
-+
-+
-+
-diff --git a/node_modules/react-native-image-crop-picker/android/src/main/res/values/styles.xml b/node_modules/react-native-image-crop-picker/android/src/main/res/values/styles.xml
-new file mode 100644
-index 0000000..50129b6
---- /dev/null
-+++ b/node_modules/react-native-image-crop-picker/android/src/main/res/values/styles.xml
-@@ -0,0 +1,3 @@
-+
-+
-+
-diff --git a/node_modules/react-native-image-crop-picker/ios/src/ImageCropPicker.m b/node_modules/react-native-image-crop-picker/ios/src/ImageCropPicker.m
-index 9f20973..68d4766 100644
---- a/node_modules/react-native-image-crop-picker/ios/src/ImageCropPicker.m
-+++ b/node_modules/react-native-image-crop-picker/ios/src/ImageCropPicker.m
-@@ -126,7 +126,8 @@ - (void) setConfiguration:(NSDictionary *)options
-
- - (UIViewController*) getRootVC {
- UIViewController *root = [[[[UIApplication sharedApplication] delegate] window] rootViewController];
-- while (root.presentedViewController != nil) {
-+ while (root.presentedViewController != nil &&
-+ !root.presentedViewController.isBeingDismissed) {
- root = root.presentedViewController;
- }
-
diff --git a/patches/react-native-reanimated+3.17.5.patch b/patches/react-native-reanimated+3.17.5.patch
new file mode 100644
index 0000000000..81cedee7e7
--- /dev/null
+++ b/patches/react-native-reanimated+3.17.5.patch
@@ -0,0 +1,44 @@
+diff --git a/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp b/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp
+index eae3989..432745a 100644
+--- a/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp
++++ b/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp
+@@ -416,6 +416,10 @@ void NativeProxy::progressLayoutAnimation(
+ tag, newPropsJNI, isSharedTransition);
+ }
+
++void NativeProxy::endLayoutAnimation(int tag, bool shouldRemove) {
++ layoutAnimations_->cthis()->endLayoutAnimation(tag, shouldRemove);
++}
++
+ PlatformDepMethodsHolder NativeProxy::getPlatformDependentMethods() {
+ #ifdef RCT_NEW_ARCH_ENABLED
+ // nothing
+@@ -455,14 +459,7 @@ PlatformDepMethodsHolder NativeProxy::getPlatformDependentMethods() {
+ auto progressLayoutAnimation =
+ bindThis(&NativeProxy::progressLayoutAnimation);
+
+- auto endLayoutAnimation = [weakThis = weak_from_this()](
+- int tag, bool removeView) {
+- auto strongThis = weakThis.lock();
+- if (!strongThis) {
+- return;
+- }
+- strongThis->layoutAnimations_->cthis()->endLayoutAnimation(tag, removeView);
+- };
++ auto endLayoutAnimation = bindThis(&NativeProxy::endLayoutAnimation);
+
+ auto maybeFlushUiUpdatesQueueFunction =
+ bindThis(&NativeProxy::maybeFlushUIUpdatesQueue);
+diff --git a/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.h b/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.h
+index 2ee2cc8..2edb5c9 100644
+--- a/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.h
++++ b/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.h
+@@ -234,6 +234,8 @@ class NativeProxy : public jni::HybridClass,
+ const jsi::Object &newProps,
+ bool isSharedTransition);
+
++ void endLayoutAnimation(int tag, bool shouldRemove);
++
+ /***
+ * Wraps a method of `NativeProxy` in a function object capturing `this`
+ * @tparam TReturn return type of passed method
diff --git a/patches/react-native-svg+15.9.0.patch b/patches/react-native-svg+15.11.2.patch
similarity index 100%
rename from patches/react-native-svg+15.9.0.patch
rename to patches/react-native-svg+15.11.2.patch
diff --git a/patches/react-native-view-shot+4.0.3.md b/patches/react-native-view-shot+4.0.3.md
new file mode 100644
index 0000000000..4fcb1f4c9b
--- /dev/null
+++ b/patches/react-native-view-shot+4.0.3.md
@@ -0,0 +1,3 @@
+## react-native-view-shot patch
+
+Temporary patch for web, where `view`'s type has changed.
diff --git a/patches/react-native-view-shot+4.0.3.patch b/patches/react-native-view-shot+4.0.3.patch
new file mode 100644
index 0000000000..6c13a1f2ad
--- /dev/null
+++ b/patches/react-native-view-shot+4.0.3.patch
@@ -0,0 +1,28 @@
+diff --git a/node_modules/react-native-view-shot/src/index.js b/node_modules/react-native-view-shot/src/index.js
+index fa76d7e..018b686 100644
+--- a/node_modules/react-native-view-shot/src/index.js
++++ b/node_modules/react-native-view-shot/src/index.js
+@@ -125,13 +125,17 @@ export function captureRef(
+ }
+ }
+ if (typeof view !== "number") {
+- const node = findNodeHandle(view);
+- if (!node) {
+- return Promise.reject(
+- new Error("findNodeHandle failed to resolve view=" + String(view))
+- );
++ if (Platform.OS == 'web') {
++ view = view;
++ } else {
++ const node = findNodeHandle(view);
++ if (!node) {
++ return Promise.reject(
++ new Error("findNodeHandle failed to resolve view=" + String(view))
++ );
++ }
++ view = node;
+ }
+- view = node;
+ }
+ const { options, errors } = validateOptions(optionsObject);
+ if (__DEV__ && errors.length > 0) {
diff --git a/plugins/withAndroidDayNightThemePlugin.js b/plugins/withAndroidDayNightThemePlugin.js
new file mode 100644
index 0000000000..d9bc1b2114
--- /dev/null
+++ b/plugins/withAndroidDayNightThemePlugin.js
@@ -0,0 +1,27 @@
+// Based on https://github.com/expo/expo/pull/33957
+// Could be removed once the app has been updated to Expo 53
+const {withAndroidStyles} = require('@expo/config-plugins')
+
+module.exports = function withAndroidDayNightThemePlugin(appConfig) {
+ const cleanupList = new Set([
+ 'colorPrimary',
+ 'android:editTextBackground',
+ 'android:textColor',
+ 'android:editTextStyle',
+ ])
+
+ return withAndroidStyles(appConfig, config => {
+ config.modResults.resources.style = config.modResults.resources.style
+ ?.map(style => {
+ if (style.$.name === 'AppTheme' && style.item != null) {
+ style.item = style.item.filter(item => !cleanupList.has(item.$.name))
+ }
+ return style
+ })
+ .filter(style => {
+ return style.$.name !== 'ResetEditText'
+ })
+
+ return config
+ })
+}
diff --git a/plugins/withAndroidSplashScreenStatusBarTranslucentPlugin.js b/plugins/withAndroidSplashScreenStatusBarTranslucentPlugin.js
deleted file mode 100644
index 704ead054b..0000000000
--- a/plugins/withAndroidSplashScreenStatusBarTranslucentPlugin.js
+++ /dev/null
@@ -1,28 +0,0 @@
-const {withStringsXml, AndroidConfig} = require('@expo/config-plugins')
-
-module.exports = function withAndroidSplashScreenStatusBarTranslucentPlugin(
- appConfig,
-) {
- return withStringsXml(appConfig, function (decoratedAppConfig) {
- try {
- decoratedAppConfig.modResults = AndroidConfig.Strings.setStringItem(
- [
- {
- _: 'true',
- $: {
- name: 'expo_splash_screen_status_bar_translucent',
- translatable: 'false',
- },
- },
- ],
- decoratedAppConfig.modResults,
- )
- } catch (e) {
- console.error(
- `withAndroidSplashScreenStatusBarTranslucentPlugin failed`,
- e,
- )
- }
- return decoratedAppConfig
- })
-}
diff --git a/plugins/withAndroidStylesAccentColorPlugin.js b/plugins/withAndroidStylesAccentColorPlugin.js
index c455537886..51dd44f358 100644
--- a/plugins/withAndroidStylesAccentColorPlugin.js
+++ b/plugins/withAndroidStylesAccentColorPlugin.js
@@ -12,7 +12,7 @@ module.exports = function withAndroidStylesAccentColorPlugin(appConfig) {
decoratedAppConfig.modResults,
{
add: true,
- parent: AndroidConfig.Styles.getAppThemeLightNoActionBarGroup(),
+ parent: AndroidConfig.Styles.getAppThemeGroup(),
name: 'colorAccent',
value: '@color/colorPrimary',
},
diff --git a/plugins/withAppDelegateReferrer.js b/plugins/withAppDelegateReferrer.js
index de773df075..69feec57d7 100644
--- a/plugins/withAppDelegateReferrer.js
+++ b/plugins/withAppDelegateReferrer.js
@@ -1,41 +1,41 @@
const {withAppDelegate} = require('@expo/config-plugins')
const {mergeContents} = require('@expo/config-plugins/build/utils/generateCode')
-const path = require('path')
-const fs = require('fs')
-module.exports = config => {
- // eslint-disable-next-line no-shadow
- return withAppDelegate(config, async config => {
- const delegatePath = path.join(
- config.modRequest.platformProjectRoot,
- 'AppDelegate.mm',
- )
+module.exports = config =>
+ withAppDelegate(config, config => {
+ let contents = config.modResults.contents
- let newContents = config.modResults.contents
- newContents = mergeContents({
- src: newContents,
+ contents = mergeContents({
+ src: contents,
anchor: '// Linking API',
newSrc: `
- NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
- [defaults setObject:options[UIApplicationOpenURLOptionsSourceApplicationKey] forKey:@"referrerApp"];\n`,
- offset: 2,
+ // @generated begin referrer info – deep links
+ let defaults = UserDefaults.standard
+ defaults.set(
+ options[.sourceApplication] as? String,
+ forKey: "referrerApp"
+ )
+ // @generated end referrer info – deep links
+`,
+ offset: 6,
tag: 'referrer info - deep links',
comment: '//',
}).contents
- newContents = mergeContents({
- src: newContents,
+ contents = mergeContents({
+ src: contents,
anchor: '// Universal Links',
newSrc: `
- NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
- [defaults setURL:userActivity.referrerURL forKey:@"referrer"];\n`,
- offset: 2,
+ // @generated begin referrer info – universal links
+ let defaults = UserDefaults.standard
+ defaults.set(userActivity.referrerURL, forKey: "referrer")
+ // @generated end referrer info – universal links
+`,
+ offset: 6,
tag: 'referrer info - universal links',
comment: '//',
}).contents
- config.modResults.contents = newContents
-
+ config.modResults.contents = contents
return config
})
-}
diff --git a/plugins/withNoBundleCompression.js b/plugins/withNoBundleCompression.js
deleted file mode 100644
index 73e5716334..0000000000
--- a/plugins/withNoBundleCompression.js
+++ /dev/null
@@ -1,70 +0,0 @@
-const {withAppBuildGradle} = require('@expo/config-plugins')
-
-/**
- * A Config Plugin to disable bundle compression in Android build.gradle.
- * @param {import('@expo/config-plugins').ConfigPlugin} config
- * @returns {import('@expo/config-plugins').ConfigPlugin}
- */
-module.exports = function withNoBundleCompression(config) {
- return withAppBuildGradle(config, androidConfig => {
- let buildGradle = androidConfig.modResults.contents
-
- const hasAndroidResources = buildGradle.includes('androidResources {')
- const hasNoCompress = buildGradle.includes('noCompress')
-
- if (hasAndroidResources) {
- if (hasNoCompress) {
- if (
- buildGradle.includes('noCompress += ["bundle"]') ||
- buildGradle.includes("noCompress += 'bundle'") ||
- buildGradle.includes('noCompress += "bundle"')
- ) {
- return androidConfig
- }
-
- const lines = buildGradle.split('\n')
- const modifiedLines = lines.map(line => {
- if (line.trim().startsWith('noCompress')) {
- if (line.includes('+=')) {
- return line.replace(/\]/, ', "bundle"]')
- } else if (line.includes('=')) {
- return line.replace('=', '+= ["bundle",') + ']'
- }
- }
- return line
- })
- androidConfig.modResults.contents = modifiedLines.join('\n')
- } else {
- const androidResources = buildGradle.indexOf('androidResources {')
- if (androidResources === -1) {
- throw new Error(
- `Cannot find androidResources { block in build.gradle!`,
- )
- }
- const insertPosition = buildGradle.indexOf('\n', androidResources) + 1
- const newContent =
- buildGradle.slice(0, insertPosition) +
- ' noCompress += ["bundle"]\n' +
- buildGradle.slice(insertPosition)
-
- androidConfig.modResults.contents = newContent
- }
- } else {
- const androidBlock = buildGradle.indexOf('android {')
- if (androidBlock === -1) {
- throw new Error(`Cannot find android { block in build.gradle!`)
- }
- const insertPosition = buildGradle.indexOf('\n', androidBlock) + 1
- const newContent =
- buildGradle.slice(0, insertPosition) +
- ' androidResources {\n' +
- ' noCompress += ["bundle"]\n' +
- ' }\n' +
- buildGradle.slice(insertPosition)
-
- androidConfig.modResults.contents = newContent
- }
-
- return androidConfig
- })
-}
diff --git a/src/App.native.tsx b/src/App.native.tsx
index 1b86943227..eddf5fb586 100644
--- a/src/App.native.tsx
+++ b/src/App.native.tsx
@@ -1,4 +1,3 @@
-import 'react-native-url-polyfill/auto'
import '#/logger/sentry/setup'
import '#/logger/bitdrift/setup'
import '#/view/icons'
@@ -44,27 +43,28 @@ import {Provider as PrefsStateProvider} from '#/state/preferences'
import {Provider as LabelDefsProvider} from '#/state/preferences/label-defs'
import {Provider as ModerationOptsProvider} from '#/state/preferences/moderation-opts'
import {Provider as UnreadNotifsProvider} from '#/state/queries/notifications/unread'
+import {Provider as ServiceAccountManager} from '#/state/service-config'
import {
Provider as SessionProvider,
- SessionAccount,
+ type SessionAccount,
useSession,
useSessionApi,
} from '#/state/session'
import {readLastActiveAccount} from '#/state/session/util'
import {Provider as ShellStateProvider} from '#/state/shell'
import {Provider as ComposerProvider} from '#/state/shell/composer'
-import {Provider as LightStatusBarProvider} from '#/state/shell/light-status-bar'
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 {Provider as TrendingConfigProvider} from '#/state/trending-config'
+import {Provider as UnstablePostSourceProvider} from '#/state/unstable-post-source'
import {TestCtrls} from '#/view/com/testing/TestCtrls'
import * as Toast from '#/view/com/util/Toast'
import {Shell} from '#/view/shell'
import {ThemeProvider as Alf} from '#/alf'
import {useColorModeTheme} from '#/alf/util/useColorModeTheme'
+import {Provider as ContextMenuProvider} from '#/components/ContextMenu'
import {NuxDialogs} from '#/components/dialogs/nuxs'
import {useStarterPackEntry} from '#/components/hooks/useStarterPackEntry'
import {Provider as IntentDialogProvider} from '#/components/intents/IntentDialogs'
@@ -128,55 +128,59 @@ function InnerApp() {
return (
-
-
-
-
-
-
-
-
- {/* LabelDefsProvider MUST come before ModerationOptsProvider */}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+ {/* LabelDefsProvider MUST come before ModerationOptsProvider */}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
)
@@ -216,9 +220,7 @@ function App() {
-
-
-
+
diff --git a/src/App.web.tsx b/src/App.web.tsx
index 9e98871a5c..701e580b0e 100644
--- a/src/App.web.tsx
+++ b/src/App.web.tsx
@@ -33,27 +33,28 @@ import {Provider as PrefsStateProvider} from '#/state/preferences'
import {Provider as LabelDefsProvider} from '#/state/preferences/label-defs'
import {Provider as ModerationOptsProvider} from '#/state/preferences/moderation-opts'
import {Provider as UnreadNotifsProvider} from '#/state/queries/notifications/unread'
+import {Provider as ServiceConfigProvider} from '#/state/service-config'
import {
Provider as SessionProvider,
- SessionAccount,
+ type SessionAccount,
useSession,
useSessionApi,
} from '#/state/session'
import {readLastActiveAccount} from '#/state/session/util'
import {Provider as ShellStateProvider} from '#/state/shell'
import {Provider as ComposerProvider} from '#/state/shell/composer'
-import {Provider as LightStatusBarProvider} from '#/state/shell/light-status-bar'
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 {Provider as TrendingConfigProvider} from '#/state/trending-config'
+import {Provider as UnstablePostSourceProvider} from '#/state/unstable-post-source'
import * as Toast from '#/view/com/util/Toast'
import {ToastContainer} from '#/view/com/util/Toast.web'
import {Shell} from '#/view/shell/index'
import {ThemeProvider as Alf} from '#/alf'
import {useColorModeTheme} from '#/alf/util/useColorModeTheme'
+import {Provider as ContextMenuProvider} from '#/components/ContextMenu'
import {NuxDialogs} from '#/components/dialogs/nuxs'
import {useStarterPackEntry} from '#/components/hooks/useStarterPackEntry'
import {Provider as IntentDialogProvider} from '#/components/intents/IntentDialogs'
@@ -107,54 +108,58 @@ function InnerApp() {
return (
-
-
-
-
-
-
-
-
- {/* LabelDefsProvider MUST come before ModerationOptsProvider */}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+ {/* LabelDefsProvider MUST come before ModerationOptsProvider */}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
)
@@ -190,9 +195,7 @@ function App() {
-
-
-
+
diff --git a/src/Navigation.tsx b/src/Navigation.tsx
index 807fd92e5b..2f26c09711 100644
--- a/src/Navigation.tsx
+++ b/src/Navigation.tsx
@@ -1,9 +1,8 @@
import * as React from 'react'
-import {JSX} from 'react/jsx-runtime'
-import {i18n, MessageDescriptor} from '@lingui/core'
+import {i18n, type MessageDescriptor} from '@lingui/core'
import {msg} from '@lingui/macro'
import {
- BottomTabBarProps,
+ type BottomTabBarProps,
createBottomTabNavigator,
} from '@react-navigation/bottom-tabs'
import {
@@ -20,21 +19,20 @@ import {useColorSchemeStyle} from '#/lib/hooks/useColorSchemeStyle'
import {useWebScrollRestoration} from '#/lib/hooks/useWebScrollRestoration'
import {buildStateObject} from '#/lib/routes/helpers'
import {
- AllNavigatorParams,
- BottomTabNavigatorParams,
- FlatNavigatorParams,
- HomeTabNavigatorParams,
- MessagesTabNavigatorParams,
- MyProfileTabNavigatorParams,
- NotificationsTabNavigatorParams,
- SearchTabNavigatorParams,
+ type AllNavigatorParams,
+ type BottomTabNavigatorParams,
+ type FlatNavigatorParams,
+ type HomeTabNavigatorParams,
+ type MessagesTabNavigatorParams,
+ type MyProfileTabNavigatorParams,
+ type NotificationsTabNavigatorParams,
+ type SearchTabNavigatorParams,
} from '#/lib/routes/types'
-import {RouteParams, State} from '#/lib/routes/types'
+import {type RouteParams, type State} from '#/lib/routes/types'
import {attachRouteToLogEvents, logEvent} from '#/lib/statsig/statsig'
import {bskyTitle} from '#/lib/strings/headings'
import {logger} from '#/logger'
import {isNative, isWeb} from '#/platform/detection'
-import {useModalControls} from '#/state/modals'
import {useUnreadNotifications} from '#/state/queries/notifications/unread'
import {useSession} from '#/state/session'
import {
@@ -59,7 +57,6 @@ import {ProfileScreen} from '#/view/screens/Profile'
import {ProfileFeedLikedByScreen} from '#/view/screens/ProfileFeedLikedBy'
import {ProfileListScreen} from '#/view/screens/ProfileList'
import {SavedFeeds} from '#/view/screens/SavedFeeds'
-import {SearchScreen} from '#/view/screens/Search'
import {Storybook} from '#/view/screens/Storybook'
import {SupportScreen} from '#/view/screens/Support'
import {TermsOfServiceScreen} from '#/view/screens/TermsOfService'
@@ -72,6 +69,7 @@ import {MessagesConversationScreen} from '#/screens/Messages/Conversation'
import {MessagesInboxScreen} from '#/screens/Messages/Inbox'
import {MessagesSettingsScreen} from '#/screens/Messages/Settings'
import {ModerationScreen} from '#/screens/Moderation'
+import {Screen as ModerationVerificationSettings} from '#/screens/Moderation/VerificationSettings'
import {Screen as ModerationInteractionSettings} from '#/screens/ModerationInteractionSettings'
import {PostLikedByScreen} from '#/screens/Post/PostLikedBy'
import {PostQuotesScreen} from '#/screens/Post/PostQuotes'
@@ -81,31 +79,37 @@ import {ProfileFeedScreen} from '#/screens/Profile/ProfileFeed'
import {ProfileFollowersScreen} from '#/screens/Profile/ProfileFollowers'
import {ProfileFollowsScreen} from '#/screens/Profile/ProfileFollows'
import {ProfileLabelerLikedByScreen} from '#/screens/Profile/ProfileLabelerLikedBy'
+import {ProfileSearchScreen} from '#/screens/Profile/ProfileSearch'
+import {SearchScreen} from '#/screens/Search'
+import {AboutSettingsScreen} from '#/screens/Settings/AboutSettings'
+import {AccessibilitySettingsScreen} from '#/screens/Settings/AccessibilitySettings'
+import {AccountSettingsScreen} from '#/screens/Settings/AccountSettings'
import {AppearanceSettingsScreen} from '#/screens/Settings/AppearanceSettings'
import {AppIconSettingsScreen} from '#/screens/Settings/AppIconSettings'
+import {AppPasswordsScreen} from '#/screens/Settings/AppPasswords'
+import {ContentAndMediaSettingsScreen} from '#/screens/Settings/ContentAndMediaSettings'
+import {ExternalMediaPreferencesScreen} from '#/screens/Settings/ExternalMediaPreferences'
+import {FollowingFeedPreferencesScreen} from '#/screens/Settings/FollowingFeedPreferences'
+import {LanguageSettingsScreen} from '#/screens/Settings/LanguageSettings'
import {NotificationSettingsScreen} from '#/screens/Settings/NotificationSettings'
+import {PrivacyAndSecuritySettingsScreen} from '#/screens/Settings/PrivacyAndSecuritySettings'
+import {SettingsScreen} from '#/screens/Settings/Settings'
+import {SettingsInterests} from '#/screens/Settings/SettingsInterests'
+import {ThreadPreferencesScreen} from '#/screens/Settings/ThreadPreferences'
import {
StarterPackScreen,
StarterPackScreenShort,
} from '#/screens/StarterPack/StarterPackScreen'
import {Wizard} from '#/screens/StarterPack/Wizard'
+import TopicScreen from '#/screens/Topic'
import {VideoFeed} from '#/screens/VideoFeed'
-import {useTheme} from '#/alf'
+import {type Theme, useTheme} from '#/alf'
+import {
+ EmailDialogScreenID,
+ useEmailDialogControl,
+} from '#/components/dialogs/EmailDialog'
import {router} from '#/routes'
import {Referrer} from '../modules/expo-bluesky-swiss-army'
-import {ProfileSearchScreen} from './screens/Profile/ProfileSearch'
-import {AboutSettingsScreen} from './screens/Settings/AboutSettings'
-import {AccessibilitySettingsScreen} from './screens/Settings/AccessibilitySettings'
-import {AccountSettingsScreen} from './screens/Settings/AccountSettings'
-import {AppPasswordsScreen} from './screens/Settings/AppPasswords'
-import {ContentAndMediaSettingsScreen} from './screens/Settings/ContentAndMediaSettings'
-import {ExternalMediaPreferencesScreen} from './screens/Settings/ExternalMediaPreferences'
-import {FollowingFeedPreferencesScreen} from './screens/Settings/FollowingFeedPreferences'
-import {LanguageSettingsScreen} from './screens/Settings/LanguageSettings'
-import {PrivacyAndSecuritySettingsScreen} from './screens/Settings/PrivacyAndSecuritySettings'
-import {SettingsScreen} from './screens/Settings/Settings'
-import {ThreadPreferencesScreen} from './screens/Settings/ThreadPreferences'
-import TopicScreen from './screens/Topic'
const navigationRef = createNavigationContainerRef()
@@ -123,7 +127,7 @@ const Tab = createBottomTabNavigator()
/**
* These "common screens" are reused across stacks.
*/
-function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) {
+function commonScreens(Stack: typeof Flat, unreadCountLabel?: string) {
const title = (page: MessageDescriptor) =>
bskyTitle(i18n._(page), unreadCountLabel)
@@ -167,6 +171,14 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) {
requireAuth: true,
}}
/>
+ ModerationVerificationSettings}
+ options={{
+ title: title(msg`Verification Settings`),
+ requireAuth: true,
+ }}
+ />
SettingsScreen}
@@ -376,6 +388,14 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) {
requireAuth: true,
}}
/>
+ SettingsInterests}
+ options={{
+ title: title(msg`Your interests`),
+ requireAuth: true,
+ }}
+ />
AboutSettingsScreen}
@@ -479,6 +499,10 @@ function TabsNavigator() {
tabBar={tabBar}>
HomeTabNavigator} />
SearchTabNavigator} />
+ MessagesTabNavigator}
+ />
NotificationsTabNavigator}
@@ -487,29 +511,26 @@ function TabsNavigator() {
name="MyProfileTab"
getComponent={() => MyProfileTabNavigator}
/>
- MessagesTabNavigator}
- />
)
}
+function screenOptions(t: Theme) {
+ return {
+ fullScreenGestureEnabled: true,
+ headerShown: false,
+ contentStyle: t.atoms.bg,
+ } as const
+}
+
function HomeTabNavigator() {
const t = useTheme()
return (
-
+
HomeScreen} />
HomeScreen} />
- {commonScreens(HomeTab)}
+ {commonScreens(HomeTab as typeof Flat)}
)
}
@@ -518,15 +539,10 @@ function SearchTabNavigator() {
const t = useTheme()
return (
+ screenOptions={screenOptions(t)}
+ initialRouteName="Search">
SearchScreen} />
- {commonScreens(SearchTab as typeof HomeTab)}
+ {commonScreens(SearchTab as typeof Flat)}
)
}
@@ -535,19 +551,14 @@ function NotificationsTabNavigator() {
const t = useTheme()
return (
+ screenOptions={screenOptions(t)}
+ initialRouteName="Notifications">
NotificationsScreen}
options={{requireAuth: true}}
/>
- {commonScreens(NotificationsTab as typeof HomeTab)}
+ {commonScreens(NotificationsTab as typeof Flat)}
)
}
@@ -556,23 +567,16 @@ function MyProfileTabNavigator() {
const t = useTheme()
return (
+ screenOptions={screenOptions(t)}
+ initialRouteName="MyProfile">
ProfileScreen}
- initialParams={{
- name: 'me',
- hideBackButton: true,
- }}
+ initialParams={{name: 'me', hideBackButton: true}}
/>
- {commonScreens(MyProfileTab as typeof HomeTab)}
+ {commonScreens(MyProfileTab as unknown as typeof Flat)}
)
}
@@ -581,13 +585,8 @@ function MessagesTabNavigator() {
const t = useTheme()
return (
+ screenOptions={screenOptions(t)}
+ initialRouteName="Messages">
MessagesScreen}
@@ -596,7 +595,7 @@ function MessagesTabNavigator() {
animationTypeForReplace: route.params?.animation ?? 'push',
})}
/>
- {commonScreens(MessagesTab as typeof HomeTab)}
+ {commonScreens(MessagesTab as typeof Flat)}
)
}
@@ -614,13 +613,7 @@ const FlatNavigator = () => {
return (
+ screenOptions={screenOptions(t)}>
HomeScreen}
@@ -629,7 +622,7 @@ const FlatNavigator = () => {
SearchScreen}
- options={{title: title(msg`Search`)}}
+ options={{title: title(msg`Explore`)}}
/>
{
getComponent={() => HomeScreen}
options={{title: title(msg`Home`)}}
/>
- {commonScreens(Flat as typeof HomeTab, numUnread)}
+ {commonScreens(Flat, numUnread)}
)
}
@@ -719,36 +712,51 @@ const LINKING = {
function RoutesContainer({children}: React.PropsWithChildren<{}>) {
const theme = useColorSchemeStyle(DefaultTheme, DarkTheme)
const {currentAccount} = useSession()
- const {openModal} = useModalControls()
const prevLoggedRouteName = React.useRef(undefined)
+ const emailDialogControl = useEmailDialogControl()
function onReady() {
prevLoggedRouteName.current = getCurrentRouteName()
if (currentAccount && shouldRequestEmailConfirmation(currentAccount)) {
- openModal({name: 'verify-email', showReminder: true})
+ emailDialogControl.open({
+ id: EmailDialogScreenID.VerificationReminder,
+ })
snoozeEmailConfirmationPrompt()
}
}
return (
- {
- logger.metric('router:navigate', {
- from: prevLoggedRouteName.current,
- })
- prevLoggedRouteName.current = getCurrentRouteName()
- }}
- onReady={() => {
- attachRouteToLogEvents(getCurrentRouteName)
- logModuleInitTime()
- onReady()
- logger.metric('router:navigate', {})
- }}>
- {children}
-
+ <>
+ {
+ logger.metric(
+ 'router:navigate',
+ {
+ from: prevLoggedRouteName.current,
+ },
+ {statsig: false},
+ )
+ prevLoggedRouteName.current = getCurrentRouteName()
+ }}
+ onReady={() => {
+ attachRouteToLogEvents(getCurrentRouteName)
+ logModuleInitTime()
+ onReady()
+ logger.metric('router:navigate', {}, {statsig: false})
+ }}
+ // WARNING: Implicit navigation to nested navigators is depreciated in React Navigation 7.x
+ // However, there's a fair amount of places we do that, especially in when popping to the top of stacks.
+ // See BottomBar.tsx for an example of how to handle nested navigators in the tabs correctly.
+ // I'm scared of missing a spot (esp. with push notifications etc) so let's enable this legacy behaviour for now.
+ // We will need to confirm we handle nested navigators correctly by the time we migrate to React Navigation 8.x
+ // -sfn
+ navigationInChildEnabled>
+ {children}
+
+ >
)
}
diff --git a/src/alf/atoms.ts b/src/alf/atoms.ts
index 69ac0c0575..02ad98c5f0 100644
--- a/src/alf/atoms.ts
+++ b/src/alf/atoms.ts
@@ -1,4 +1,9 @@
-import {Platform, StyleProp, StyleSheet, ViewStyle} from 'react-native'
+import {
+ Platform,
+ type StyleProp,
+ StyleSheet,
+ type ViewStyle,
+} from 'react-native'
import * as tokens from '#/alf/tokens'
import {ios, native, platform, web} from '#/alf/util/platform'
@@ -22,6 +27,9 @@ export const atoms = {
relative: {
position: 'relative',
},
+ static: {
+ position: 'static',
+ },
sticky: web({
position: 'sticky',
}),
@@ -126,6 +134,9 @@ export const atoms = {
rounded_md: {
borderRadius: tokens.borderRadius.md,
},
+ rounded_lg: {
+ borderRadius: tokens.borderRadius.lg,
+ },
rounded_full: {
borderRadius: tokens.borderRadius.full,
},
@@ -196,6 +207,9 @@ export const atoms = {
flex_grow: {
flexGrow: 1,
},
+ flex_grow_0: {
+ flexGrow: 0,
+ },
flex_shrink: {
flexShrink: 1,
},
@@ -358,6 +372,9 @@ export const atoms = {
border_r: {
borderRightWidth: StyleSheet.hairlineWidth,
},
+ border_transparent: {
+ borderColor: 'transparent',
+ },
curve_circular: ios({
borderCurve: 'circular',
}),
@@ -940,8 +957,8 @@ export const atoms = {
userSelect: 'all',
},
outline_inset_1: {
- outlineOffset: '-1px',
- } as StyleProp,
+ outlineOffset: -1,
+ },
/*
* Text decoration
diff --git a/src/alf/breakpoints.ts b/src/alf/breakpoints.ts
index f30a4b4895..c9f66a77f5 100644
--- a/src/alf/breakpoints.ts
+++ b/src/alf/breakpoints.ts
@@ -31,8 +31,8 @@ export function useBreakpoints(): Record & {
* Fine-tuned breakpoints for the shell layout
*/
export function useLayoutBreakpoints() {
- const rightNavVisible = useMediaQuery({minWidth: 1075})
- const centerColumnOffset = useMediaQuery({minWidth: 1075, maxWidth: 1300})
+ const rightNavVisible = useMediaQuery({minWidth: 1100})
+ const centerColumnOffset = useMediaQuery({minWidth: 1100, maxWidth: 1300})
const leftNavMinimal = useMediaQuery({maxWidth: 1300})
return {
diff --git a/src/alf/tokens.ts b/src/alf/tokens.ts
index 1d99e5e572..576aafe956 100644
--- a/src/alf/tokens.ts
+++ b/src/alf/tokens.ts
@@ -44,6 +44,7 @@ export const borderRadius = {
xs: 4,
sm: 8,
md: 12,
+ lg: 16,
full: 999,
} as const
diff --git a/src/alf/typography.tsx b/src/alf/typography.tsx
index 4f6947e0e6..a3bed4e4c8 100644
--- a/src/alf/typography.tsx
+++ b/src/alf/typography.tsx
@@ -1,12 +1,13 @@
-import React, {Children} from 'react'
-import {TextProps as RNTextProps} from 'react-native'
-import {StyleProp, TextStyle} from 'react-native'
+import {Children} from 'react'
+import {type TextProps as RNTextProps} from 'react-native'
+import {type StyleProp, type TextStyle} from 'react-native'
import {UITextView} from 'react-native-uitextview'
import createEmojiRegex from 'emoji-regex'
+import type React from 'react'
import {isNative} from '#/platform/detection'
import {isIOS} from '#/platform/detection'
-import {Alf, applyFonts, atoms, flatten} from '#/alf'
+import {type Alf, applyFonts, atoms, flatten} from '#/alf'
/**
* Util to calculate lineHeight from a text size atom and a leading atom
@@ -110,7 +111,10 @@ export function renderChildrenWithEmoji(
return child.split(EMOJI).map((stringPart, index) => [
stringPart,
emojis[index] ? (
-
+
{emojis[index]}
) : null,
diff --git a/src/alf/util/navigationBar.ts b/src/alf/util/navigationBar.ts
deleted file mode 100644
index cb315f70a2..0000000000
--- a/src/alf/util/navigationBar.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-import * as NavigationBar from 'expo-navigation-bar'
-import * as SystemUI from 'expo-system-ui'
-
-import {isAndroid} from '#/platform/detection'
-import {Theme} from '../types'
-
-export function setNavigationBar(themeType: 'theme' | 'lightbox', t: Theme) {
- if (isAndroid) {
- if (themeType === 'theme') {
- NavigationBar.setBackgroundColorAsync(t.atoms.bg.backgroundColor)
- NavigationBar.setBorderColorAsync(t.atoms.bg.backgroundColor)
- NavigationBar.setButtonStyleAsync(t.name !== 'light' ? 'light' : 'dark')
- SystemUI.setBackgroundColorAsync(t.atoms.bg.backgroundColor)
- } else {
- NavigationBar.setBackgroundColorAsync('black')
- NavigationBar.setBorderColorAsync('black')
- NavigationBar.setButtonStyleAsync('light')
- SystemUI.setBackgroundColorAsync('black')
- }
- }
-}
diff --git a/src/alf/util/systemUI.ts b/src/alf/util/systemUI.ts
new file mode 100644
index 0000000000..9e5769c4c6
--- /dev/null
+++ b/src/alf/util/systemUI.ts
@@ -0,0 +1,14 @@
+import * as SystemUI from 'expo-system-ui'
+
+import {isAndroid} from '#/platform/detection'
+import {type Theme} from '../types'
+
+export function setSystemUITheme(themeType: 'theme' | 'lightbox', t: Theme) {
+ if (isAndroid) {
+ if (themeType === 'theme') {
+ SystemUI.setBackgroundColorAsync(t.atoms.bg.backgroundColor)
+ } else {
+ SystemUI.setBackgroundColorAsync('black')
+ }
+ }
+}
diff --git a/src/components/AccountList.tsx b/src/components/AccountList.tsx
index 52d149eb5a..eb770eeca7 100644
--- a/src/components/AccountList.tsx
+++ b/src/components/AccountList.tsx
@@ -1,9 +1,10 @@
import React, {useCallback} from 'react'
import {View} from 'react-native'
-import {AppBskyActorDefs} from '@atproto/api'
+import {type AppBskyActorDefs} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
+import {useActorStatus} from '#/lib/actor-status'
import {sanitizeDisplayName} from '#/lib/strings/display-names'
import {sanitizeHandle} from '#/lib/strings/handles'
import {useProfilesQuery} from '#/state/queries/profile'
@@ -12,6 +13,8 @@ import {UserAvatar} from '#/view/com/util/UserAvatar'
import {atoms as a, useTheme} from '#/alf'
import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check'
import {ChevronRight_Stroke2_Corner0_Rounded as Chevron} from '#/components/icons/Chevron'
+import {useSimpleVerificationState} from '#/components/verification'
+import {VerificationCheck} from '#/components/verification/VerificationCheck'
import {Button} from './Button'
import {Text} from './Typography'
@@ -74,11 +77,13 @@ export function AccountList({
]}>
{otherLabel ?? Other account }
@@ -105,6 +110,8 @@ function AccountItem({
}) {
const t = useTheme()
const {_} = useLingui()
+ const verification = useSimpleVerificationState({profile})
+ const {isActive: live} = useActorStatus(profile)
const onPress = useCallback(() => {
onSelect(account)
@@ -114,7 +121,7 @@ function AccountItem({
-
-
-
-
-
- {sanitizeDisplayName(
- profile?.displayName || profile?.handle || account.handle,
+
+
+
+
+
+ {sanitizeDisplayName(
+ profile?.displayName || profile?.handle || account.handle,
+ )}
+
+ {verification.showBadge && (
+
+
+
)}
- {' '}
-
- {sanitizeHandle(account.handle)}
+
+
+ {sanitizeHandle(account.handle, '@')}
-
+
+
{isCurrentAccount ? (
-
+
) : (
-
+
)}
)}
diff --git a/src/components/Admonition.tsx b/src/components/Admonition.tsx
index 8df4934bea..cdb1f0b8b1 100644
--- a/src/components/Admonition.tsx
+++ b/src/components/Admonition.tsx
@@ -1,13 +1,13 @@
-import React from 'react'
-import {StyleProp, View, ViewStyle} from 'react-native'
+import {createContext, useContext} from 'react'
+import {type StyleProp, View, type ViewStyle} from 'react-native'
import {atoms as a, useBreakpoints, useTheme} from '#/alf'
-import {Button as BaseButton, ButtonProps} from '#/components/Button'
+import {Button as BaseButton, type ButtonProps} from '#/components/Button'
import {CircleInfo_Stroke2_Corner0_Rounded as ErrorIcon} from '#/components/icons/CircleInfo'
import {Eye_Stroke2_Corner0_Rounded as InfoIcon} from '#/components/icons/Eye'
import {Leaf_Stroke2_Corner0_Rounded as TipIcon} from '#/components/icons/Leaf'
import {Warning_Stroke2_Corner0_Rounded as WarningIcon} from '#/components/icons/Warning'
-import {Text as BaseText, TextProps} from '#/components/Typography'
+import {Text as BaseText, type TextProps} from '#/components/Typography'
export const colors = {
warning: {
@@ -20,13 +20,13 @@ type Context = {
type: 'info' | 'tip' | 'warning' | 'error'
}
-const Context = React.createContext({
+const Context = createContext({
type: 'info',
})
export function Icon() {
const t = useTheme()
- const {type} = React.useContext(Context)
+ const {type} = useContext(Context)
const Icon = {
info: InfoIcon,
tip: TipIcon,
diff --git a/src/components/AppLanguageDropdown.tsx b/src/components/AppLanguageDropdown.tsx
index de2e50fc8c..9837ce5ced 100644
--- a/src/components/AppLanguageDropdown.tsx
+++ b/src/components/AppLanguageDropdown.tsx
@@ -1,17 +1,19 @@
import React from 'react'
-import {View} from 'react-native'
-import RNPickerSelect, {PickerSelectProps} from 'react-native-picker-select'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
import {useQueryClient} from '@tanstack/react-query'
import {sanitizeAppLanguageSetting} from '#/locale/helpers'
import {APP_LANGUAGES} from '#/locale/languages'
import {useLanguagePrefs, useLanguagePrefsApi} from '#/state/preferences'
import {resetPostsFeedQueries} from '#/state/queries/post-feed'
-import {atoms as a, useTheme, ViewStyleProp} from '#/alf'
-import {ChevronBottom_Stroke2_Corner0_Rounded as ChevronDown} from '#/components/icons/Chevron'
+import {atoms as a, platform, useTheme} from '#/alf'
+import * as Select from '#/components/Select'
+import {Button} from './Button'
-export function AppLanguageDropdown(_props: ViewStyleProp) {
+export function AppLanguageDropdown() {
const t = useTheme()
+ const {_} = useLingui()
const queryClient = useQueryClient()
const langPrefs = useLanguagePrefs()
@@ -19,7 +21,7 @@ export function AppLanguageDropdown(_props: ViewStyleProp) {
const sanitizedLang = sanitizeAppLanguageSetting(langPrefs.appLanguage)
const onChangeAppLanguage = React.useCallback(
- (value: Parameters[0]) => {
+ (value: string) => {
if (!value) return
if (sanitizedLang !== value) {
setLangPrefs.setAppLanguage(sanitizeAppLanguageSetting(value))
@@ -32,43 +34,48 @@ export function AppLanguageDropdown(_props: ViewStyleProp) {
)
return (
-
- Boolean(l.code2)).map(l => ({
+
+
+ {({props}) => (
+
+
+
+
+ )}
+
+ (
+
+
+ {label}
+
+ )}
+ items={APP_LANGUAGES.map(l => ({
label: l.name,
value: l.code2,
- key: l.code2,
}))}
- useNativeAndroidPickerStyle={false}
- style={{
- inputAndroid: {
- color: t.atoms.text_contrast_medium.color,
- fontSize: 16,
- paddingRight: 12 + 4,
- },
- inputIOS: {
- color: t.atoms.text.color,
- fontSize: 16,
- paddingRight: 12 + 4,
- },
- }}
/>
-
-
-
-
-
+
)
}
diff --git a/src/components/AppLanguageDropdown.web.tsx b/src/components/AppLanguageDropdown.web.tsx
deleted file mode 100644
index d51b53ac07..0000000000
--- a/src/components/AppLanguageDropdown.web.tsx
+++ /dev/null
@@ -1,83 +0,0 @@
-import React from 'react'
-import {View} from 'react-native'
-import {useQueryClient} from '@tanstack/react-query'
-
-import {sanitizeAppLanguageSetting} from '#/locale/helpers'
-import {APP_LANGUAGES} from '#/locale/languages'
-import {useLanguagePrefs, useLanguagePrefsApi} from '#/state/preferences'
-import {resetPostsFeedQueries} from '#/state/queries/post-feed'
-import {atoms as a, useTheme, ViewStyleProp} from '#/alf'
-import {ChevronBottom_Stroke2_Corner0_Rounded as ChevronDown} from '#/components/icons/Chevron'
-import {Text} from '#/components/Typography'
-
-export function AppLanguageDropdown({style}: ViewStyleProp) {
- const t = useTheme()
-
- const queryClient = useQueryClient()
- const langPrefs = useLanguagePrefs()
- const setLangPrefs = useLanguagePrefsApi()
-
- const sanitizedLang = sanitizeAppLanguageSetting(langPrefs.appLanguage)
-
- const onChangeAppLanguage = React.useCallback(
- (ev: React.ChangeEvent) => {
- const value = ev.target.value
-
- if (!value) return
- if (sanitizedLang !== value) {
- setLangPrefs.setAppLanguage(sanitizeAppLanguageSetting(value))
- }
-
- // reset feeds to refetch content
- resetPostsFeedQueries(queryClient)
- },
- [sanitizedLang, setLangPrefs, queryClient],
- )
-
- return (
-
-
-
- {APP_LANGUAGES.find(l => l.code2 === sanitizedLang)?.name}
-
-
-
-
-
- {APP_LANGUAGES.filter(l => Boolean(l.code2)).map(l => (
-
- {l.name}
-
- ))}
-
-
- )
-}
diff --git a/src/components/AvatarStack.tsx b/src/components/AvatarStack.tsx
index 63f5ed77a0..ae42a7470b 100644
--- a/src/components/AvatarStack.tsx
+++ b/src/components/AvatarStack.tsx
@@ -6,7 +6,7 @@ import {useModerationOpts} from '#/state/preferences/moderation-opts'
import {useProfilesQuery} from '#/state/queries/profile'
import {UserAvatar} from '#/view/com/util/UserAvatar'
import {atoms as a, useTheme} from '#/alf'
-import * as bsky from '#/types/bsky'
+import type * as bsky from '#/types/bsky'
export function AvatarStack({
profiles,
@@ -19,7 +19,7 @@ export function AvatarStack({
numPending?: number
backgroundColor?: string
}) {
- const halfSize = size / 2
+ const translation = size / 3 // overlap by 1/3
const t = useTheme()
const moderationOpts = useModerationOpts()
@@ -43,7 +43,7 @@ export function AvatarStack({
a.flex_row,
a.align_center,
a.relative,
- {width: size + (items.length - 1) * halfSize},
+ {width: size + (items.length - 1) * (size - translation)},
]}>
{items.map((item, i) => (
(
borderWidth: 1,
})
+ if (!disabled) {
+ baseStyles.push(a.border, {
+ borderColor: t.palette.negative_500,
+ })
+ hoverStyles.push(a.border, {
+ backgroundColor: t.palette.negative_50,
+ })
+ } else {
+ baseStyles.push(a.border, {
+ borderColor: t.palette.negative_200,
+ })
+ }
+ } else if (variant === 'ghost') {
+ if (!disabled) {
+ baseStyles.push(t.atoms.bg)
+ hoverStyles.push({
+ backgroundColor: t.palette.negative_100,
+ })
+ }
+ }
+ } else if (color === 'negative_secondary') {
+ if (variant === 'solid') {
+ if (!disabled) {
+ baseStyles.push({
+ backgroundColor: select(t.name, {
+ light: t.palette.negative_50,
+ dim: t.palette.negative_100,
+ dark: t.palette.negative_100,
+ }),
+ })
+ hoverStyles.push({
+ backgroundColor: select(t.name, {
+ light: t.palette.negative_100,
+ dim: t.palette.negative_200,
+ dark: t.palette.negative_200,
+ }),
+ })
+ } else {
+ baseStyles.push({
+ backgroundColor: select(t.name, {
+ light: t.palette.negative_100,
+ dim: t.palette.negative_50,
+ dark: t.palette.negative_50,
+ }),
+ })
+ }
+ } else if (variant === 'outline') {
+ baseStyles.push(a.border, t.atoms.bg, {
+ borderWidth: 1,
+ })
+
if (!disabled) {
baseStyles.push(a.border, {
borderColor: t.palette.negative_500,
@@ -425,6 +477,7 @@ export const Button = React.forwardRef(
secondary: tokens.gradients.sky,
secondary_inverted: tokens.gradients.sky,
negative: tokens.gradients.sky,
+ negative_secondary: tokens.gradients.sky,
gradient_primary: tokens.gradients.primary,
gradient_sky: tokens.gradients.sky,
gradient_midnight: tokens.gradients.midnight,
@@ -597,7 +650,7 @@ export function useSharedButtonTextStyles() {
if (variant === 'solid' || variant === 'gradient') {
if (!disabled) {
baseStyles.push({
- color: t.palette.contrast_100,
+ color: t.palette.contrast_50,
})
} else {
baseStyles.push({
@@ -645,6 +698,39 @@ export function useSharedButtonTextStyles() {
baseStyles.push({color: t.palette.negative_400, opacity: 0.5})
}
}
+ } else if (color === 'negative_secondary') {
+ if (variant === 'solid' || variant === 'gradient') {
+ if (!disabled) {
+ baseStyles.push({
+ color: select(t.name, {
+ light: t.palette.negative_500,
+ dim: t.palette.negative_950,
+ dark: t.palette.negative_900,
+ }),
+ })
+ } else {
+ baseStyles.push({
+ color: select(t.name, {
+ light: t.palette.negative_500,
+ dim: t.palette.negative_700,
+ dark: t.palette.negative_700,
+ }),
+ opacity: 0.5,
+ })
+ }
+ } else if (variant === 'outline') {
+ if (!disabled) {
+ baseStyles.push({color: t.palette.negative_400})
+ } else {
+ baseStyles.push({color: t.palette.negative_400, opacity: 0.5})
+ }
+ } else if (variant === 'ghost') {
+ if (!disabled) {
+ baseStyles.push({color: t.palette.negative_400})
+ } else {
+ baseStyles.push({color: t.palette.negative_400, opacity: 0.5})
+ }
+ }
} else {
if (!disabled) {
baseStyles.push({color: t.palette.white})
diff --git a/src/components/ContextMenu/Backdrop.ios.tsx b/src/components/ContextMenu/Backdrop.ios.tsx
new file mode 100644
index 0000000000..60a8fda44a
--- /dev/null
+++ b/src/components/ContextMenu/Backdrop.ios.tsx
@@ -0,0 +1,85 @@
+import {Pressable} from 'react-native'
+import Animated, {
+ Extrapolation,
+ interpolate,
+ type SharedValue,
+ useAnimatedProps,
+ useAnimatedStyle,
+} from 'react-native-reanimated'
+import {BlurView} from 'expo-blur'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {atoms as a, useTheme} from '#/alf'
+import {useContextMenuContext} from './context'
+
+const AnimatedBlurView = Animated.createAnimatedComponent(BlurView)
+
+type Props = {
+ animation: SharedValue
+ intensity?: number
+ onPress?: () => void
+}
+
+export function Backdrop(props: Props) {
+ const {mode} = useContextMenuContext()
+ switch (mode) {
+ case 'full':
+ return
+ case 'auxiliary-only':
+ return
+ }
+}
+
+function BlurredBackdrop({animation, intensity = 50, onPress}: Props) {
+ const {_} = useLingui()
+
+ const animatedProps = useAnimatedProps(() => ({
+ intensity: interpolate(
+ animation.get(),
+ [0, 1],
+ [0, intensity],
+ Extrapolation.CLAMP,
+ ),
+ }))
+
+ return (
+
+
+
+ )
+}
+
+function OpacityBackdrop({animation, onPress}: Props) {
+ const t = useTheme()
+ const {_} = useLingui()
+
+ const animatedStyle = useAnimatedStyle(() => ({
+ opacity: interpolate(
+ animation.get(),
+ [0, 1],
+ [0, 0.05],
+ Extrapolation.CLAMP,
+ ),
+ }))
+
+ return (
+
+
+
+ )
+}
diff --git a/src/components/ContextMenu/Backdrop.tsx b/src/components/ContextMenu/Backdrop.tsx
new file mode 100644
index 0000000000..37fcebf493
--- /dev/null
+++ b/src/components/ContextMenu/Backdrop.tsx
@@ -0,0 +1,51 @@
+import {Pressable} from 'react-native'
+import Animated, {
+ Extrapolation,
+ interpolate,
+ type SharedValue,
+ useAnimatedStyle,
+} from 'react-native-reanimated'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {atoms as a, useTheme} from '#/alf'
+import {useContextMenuContext} from './context'
+
+export function Backdrop({
+ animation,
+ intensity = 50,
+ onPress,
+}: {
+ animation: SharedValue
+ intensity?: number
+ onPress?: () => void
+}) {
+ const t = useTheme()
+ const {_} = useLingui()
+ const {mode} = useContextMenuContext()
+
+ const reduced = mode === 'auxiliary-only'
+
+ const target = reduced ? 0.05 : intensity / 100
+
+ const animatedStyle = useAnimatedStyle(() => ({
+ opacity: interpolate(
+ animation.get(),
+ [0, 1],
+ [0, target],
+ Extrapolation.CLAMP,
+ ),
+ }))
+
+ return (
+
+
+
+ )
+}
diff --git a/src/components/ContextMenu/context.tsx b/src/components/ContextMenu/context.tsx
new file mode 100644
index 0000000000..cecb6a18d9
--- /dev/null
+++ b/src/components/ContextMenu/context.tsx
@@ -0,0 +1,49 @@
+import React from 'react'
+
+import {
+ type ContextType,
+ type ItemContextType,
+ type MenuContextType,
+} from '#/components/ContextMenu/types'
+
+export const Context = React.createContext(null)
+
+export const MenuContext = React.createContext(null)
+
+export const ItemContext = React.createContext(null)
+
+export function useContextMenuContext() {
+ const context = React.useContext(Context)
+
+ if (!context) {
+ throw new Error(
+ 'useContextMenuContext must be used within a Context.Provider',
+ )
+ }
+
+ return context
+}
+
+export function useContextMenuMenuContext() {
+ const context = React.useContext(MenuContext)
+
+ if (!context) {
+ throw new Error(
+ 'useContextMenuMenuContext must be used within a Context.Provider',
+ )
+ }
+
+ return context
+}
+
+export function useContextMenuItemContext() {
+ const context = React.useContext(ItemContext)
+
+ if (!context) {
+ throw new Error(
+ 'useContextMenuItemContext must be used within a Context.Provider',
+ )
+ }
+
+ return context
+}
diff --git a/src/components/ContextMenu/index.tsx b/src/components/ContextMenu/index.tsx
new file mode 100644
index 0000000000..4a0814dfe3
--- /dev/null
+++ b/src/components/ContextMenu/index.tsx
@@ -0,0 +1,904 @@
+import React, {
+ useCallback,
+ useEffect,
+ useId,
+ useMemo,
+ useRef,
+ useState,
+} from 'react'
+import {
+ BackHandler,
+ Keyboard,
+ type LayoutChangeEvent,
+ Pressable,
+ type StyleProp,
+ useWindowDimensions,
+ View,
+ type ViewStyle,
+} from 'react-native'
+import {
+ Gesture,
+ GestureDetector,
+ type GestureStateChangeEvent,
+ type GestureUpdateEvent,
+ type PanGestureHandlerEventPayload,
+} from 'react-native-gesture-handler'
+import Animated, {
+ clamp,
+ interpolate,
+ runOnJS,
+ type SharedValue,
+ useAnimatedReaction,
+ useAnimatedStyle,
+ useSharedValue,
+ withSpring,
+ type WithSpringConfig,
+} from 'react-native-reanimated'
+import {
+ useSafeAreaFrame,
+ useSafeAreaInsets,
+} from 'react-native-safe-area-context'
+import {captureRef} from 'react-native-view-shot'
+import {Image, type ImageErrorEventData} from 'expo-image'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+import {useIsFocused} from '@react-navigation/native'
+import flattenReactChildren from 'react-keyed-flatten-children'
+
+import {HITSLOP_10} from '#/lib/constants'
+import {useHaptics} from '#/lib/haptics'
+import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback'
+import {logger} from '#/logger'
+import {isAndroid, isIOS} from '#/platform/detection'
+import {atoms as a, platform, tokens, useTheme} from '#/alf'
+import {
+ Context,
+ ItemContext,
+ MenuContext,
+ useContextMenuContext,
+ useContextMenuItemContext,
+ useContextMenuMenuContext,
+} from '#/components/ContextMenu/context'
+import {
+ type AuxiliaryViewProps,
+ type ContextType,
+ type ItemIconProps,
+ type ItemProps,
+ type ItemTextProps,
+ type Measurement,
+ type TriggerProps,
+} from '#/components/ContextMenu/types'
+import {useInteractionState} from '#/components/hooks/useInteractionState'
+import {createPortalGroup} from '#/components/Portal'
+import {Text} from '#/components/Typography'
+import {Backdrop} from './Backdrop'
+
+export {
+ type DialogControlProps as ContextMenuControlProps,
+ useDialogControl as useContextMenuControl,
+} from '#/components/Dialog'
+
+const {Provider: PortalProvider, Outlet, Portal} = createPortalGroup()
+
+const SPRING_IN: WithSpringConfig = {
+ mass: isIOS ? 1.25 : 0.75,
+ damping: 50,
+ stiffness: 1100,
+ restDisplacementThreshold: 0.01,
+}
+
+const SPRING_OUT: WithSpringConfig = {
+ mass: isIOS ? 1.25 : 0.75,
+ damping: 150,
+ stiffness: 1000,
+ restDisplacementThreshold: 0.01,
+}
+
+/**
+ * Needs placing near the top of the provider stack, but BELOW the theme provider.
+ */
+export function Provider({children}: {children: React.ReactNode}) {
+ return (
+
+ {children}
+
+
+ )
+}
+
+export function Root({children}: {children: React.ReactNode}) {
+ const playHaptic = useHaptics()
+ const [mode, setMode] = useState<'full' | 'auxiliary-only'>('full')
+ const [measurement, setMeasurement] = useState(null)
+ const animationSV = useSharedValue(0)
+ const translationSV = useSharedValue(0)
+ const isFocused = useIsFocused()
+ const hoverables = useRef<
+ Map void}>
+ >(new Map())
+ const hoverablesSV = useSharedValue<
+ Record
+ >({})
+ const syncHoverablesThrottleRef = useRef>()
+ const [hoveredMenuItem, setHoveredMenuItem] = useState(null)
+
+ const onHoverableTouchUp = useCallback((id: string) => {
+ const hoverable = hoverables.current.get(id)
+ if (!hoverable) {
+ logger.warn(`No such hoverable with id ${id}`)
+ return
+ }
+ hoverable.onTouchUp()
+ }, [])
+
+ const onCompletedClose = useCallback(() => {
+ hoverables.current.clear()
+ setMeasurement(null)
+ }, [])
+
+ const context = useMemo(
+ () =>
+ ({
+ isOpen: !!measurement && isFocused,
+ measurement,
+ animationSV,
+ translationSV,
+ mode,
+ open: (evt: Measurement, mode: 'full' | 'auxiliary-only') => {
+ setMeasurement(evt)
+ setMode(mode)
+ animationSV.set(withSpring(1, SPRING_IN))
+ },
+ close: () => {
+ animationSV.set(
+ withSpring(0, SPRING_OUT, finished => {
+ if (finished) {
+ hoverablesSV.set({})
+ translationSV.set(0)
+ runOnJS(onCompletedClose)()
+ }
+ }),
+ )
+ },
+ registerHoverable: (
+ id: string,
+ rect: Measurement,
+ onTouchUp: () => void,
+ ) => {
+ hoverables.current.set(id, {id, rect, onTouchUp})
+ // we need this data on the UI thread, but we want to limit cross-thread communication
+ // and this function will be called in quick succession, so we need to throttle it
+ if (syncHoverablesThrottleRef.current)
+ clearTimeout(syncHoverablesThrottleRef.current)
+ syncHoverablesThrottleRef.current = setTimeout(() => {
+ syncHoverablesThrottleRef.current = undefined
+ hoverablesSV.set(
+ Object.fromEntries(
+ // eslint-ignore
+ [...hoverables.current.entries()].map(([id, {rect}]) => [
+ id,
+ {id, rect},
+ ]),
+ ),
+ )
+ }, 1)
+ },
+ hoverablesSV,
+ onTouchUpMenuItem: onHoverableTouchUp,
+ hoveredMenuItem,
+ setHoveredMenuItem: item => {
+ if (item) playHaptic('Light')
+ setHoveredMenuItem(item)
+ },
+ } satisfies ContextType),
+ [
+ measurement,
+ setMeasurement,
+ onCompletedClose,
+ isFocused,
+ animationSV,
+ translationSV,
+ hoverablesSV,
+ onHoverableTouchUp,
+ hoveredMenuItem,
+ setHoveredMenuItem,
+ playHaptic,
+ mode,
+ ],
+ )
+
+ useEffect(() => {
+ if (isAndroid && context.isOpen) {
+ const listener = BackHandler.addEventListener('hardwareBackPress', () => {
+ context.close()
+ return true
+ })
+
+ return () => listener.remove()
+ }
+ }, [context])
+
+ return {children}
+}
+
+export function Trigger({children, label, contentLabel, style}: TriggerProps) {
+ const context = useContextMenuContext()
+ const playHaptic = useHaptics()
+ const {top: topInset} = useSafeAreaInsets()
+ const ref = useRef(null)
+ const isFocused = useIsFocused()
+ const [image, setImage] = useState(null)
+ const [pendingMeasurement, setPendingMeasurement] = useState<{
+ measurement: Measurement
+ mode: 'full' | 'auxiliary-only'
+ } | null>(null)
+
+ const open = useNonReactiveCallback(
+ async (mode: 'full' | 'auxiliary-only') => {
+ playHaptic()
+ Keyboard.dismiss()
+ const [measurement, capture] = await Promise.all([
+ new Promise(resolve => {
+ ref.current?.measureInWindow((x, y, width, height) =>
+ resolve({
+ x,
+ y:
+ y +
+ platform({
+ default: 0,
+ android: topInset, // not included in measurement
+ }),
+ width,
+ height,
+ }),
+ )
+ }),
+ captureRef(ref, {result: 'data-uri'}).catch(err => {
+ logger.error(err instanceof Error ? err : String(err), {
+ message: 'Failed to capture image of context menu trigger',
+ })
+ // will cause the image to fail to load, but it will get handled gracefully
+ return ''
+ }),
+ ])
+ setImage(capture)
+ setPendingMeasurement({measurement, mode})
+ },
+ )
+
+ const doubleTapGesture = useMemo(() => {
+ return Gesture.Tap()
+ .numberOfTaps(2)
+ .hitSlop(HITSLOP_10)
+ .onEnd(() => open('auxiliary-only'))
+ .runOnJS(true)
+ }, [open])
+
+ const {
+ hoverablesSV,
+ setHoveredMenuItem,
+ onTouchUpMenuItem,
+ translationSV,
+ animationSV,
+ } = context
+ const hoveredItemSV = useSharedValue(null)
+
+ useAnimatedReaction(
+ () => hoveredItemSV.get(),
+ (hovered, prev) => {
+ if (hovered !== prev) {
+ runOnJS(setHoveredMenuItem)(hovered)
+ }
+ },
+ )
+
+ const pressAndHoldGesture = useMemo(() => {
+ return Gesture.Pan()
+ .activateAfterLongPress(500)
+ .cancelsTouchesInView(false)
+ .averageTouches(true)
+ .onStart(() => {
+ 'worklet'
+ runOnJS(open)('full')
+ })
+ .onUpdate(evt => {
+ 'worklet'
+ const item = getHoveredHoverable(evt, hoverablesSV, translationSV)
+ hoveredItemSV.set(item)
+ })
+ .onEnd(() => {
+ 'worklet'
+ // don't recalculate hovered item - if they haven't moved their finger from
+ // the initial press, it's jarring to then select the item underneath
+ // as the menu may have slid into place beneath their finger
+ const item = hoveredItemSV.get()
+ if (item) {
+ runOnJS(onTouchUpMenuItem)(item)
+ }
+ })
+ }, [open, hoverablesSV, onTouchUpMenuItem, hoveredItemSV, translationSV])
+
+ const composedGestures = Gesture.Exclusive(
+ doubleTapGesture,
+ pressAndHoldGesture,
+ )
+
+ const measurement = context.measurement || pendingMeasurement?.measurement
+
+ return (
+ <>
+
+
+ {children({
+ isNative: true,
+ control: {isOpen: context.isOpen, open},
+ state: {
+ pressed: false,
+ hovered: false,
+ focused: false,
+ },
+ props: {
+ ref: null,
+ onPress: null,
+ onFocus: null,
+ onBlur: null,
+ onPressIn: null,
+ onPressOut: null,
+ accessibilityHint: null,
+ accessibilityLabel: label,
+ accessibilityRole: null,
+ },
+ })}
+
+
+ {isFocused && image && measurement && (
+
+ {
+ if (pendingMeasurement) {
+ context.open(
+ pendingMeasurement.measurement,
+ pendingMeasurement.mode,
+ )
+ setPendingMeasurement(null)
+ }
+ }}
+ />
+
+ )}
+ >
+ )
+}
+
+/**
+ * an image of the underlying trigger with a grow animation
+ */
+function TriggerClone({
+ translation,
+ animation,
+ image,
+ measurement,
+ onDisplay,
+ label,
+}: {
+ translation: SharedValue
+ animation: SharedValue
+ image: string
+ measurement: Measurement
+ onDisplay: () => void
+ label: string
+}) {
+ const {_} = useLingui()
+
+ const animatedStyles = useAnimatedStyle(() => ({
+ transform: [{translateY: translation.get() * animation.get()}],
+ }))
+
+ const handleError = useCallback(
+ (evt: ImageErrorEventData) => {
+ logger.error('Context menu image load error', {message: evt.error})
+ onDisplay()
+ },
+ [onDisplay],
+ )
+
+ return (
+
+
+
+ )
+}
+
+export function AuxiliaryView({children, align = 'left'}: AuxiliaryViewProps) {
+ const context = useContextMenuContext()
+ const {width: screenWidth} = useWindowDimensions()
+ const {top: topInset} = useSafeAreaInsets()
+ const ensureOnScreenTranslationSV = useSharedValue(0)
+
+ const {isOpen, mode, measurement, translationSV, animationSV} = context
+
+ const animatedStyle = useAnimatedStyle(() => {
+ return {
+ opacity: clamp(animationSV.get(), 0, 1),
+ transform: [
+ {
+ translateY:
+ (ensureOnScreenTranslationSV.get() || translationSV.get()) *
+ animationSV.get(),
+ },
+ {scale: interpolate(animationSV.get(), [0, 1], [0.2, 1])},
+ ],
+ }
+ })
+
+ const menuContext = useMemo(() => ({align}), [align])
+
+ const onLayout = useCallback(() => {
+ if (!measurement) return
+
+ let translation = 0
+
+ // vibes based, just assuming it'll fit within this space. revisit if we use
+ // AuxiliaryView for something tall
+ const TOP_INSET = topInset + 80
+
+ const distanceMessageFromTop = measurement.y - TOP_INSET
+ if (distanceMessageFromTop < 0) {
+ translation = -distanceMessageFromTop
+ }
+
+ // normally, the context menu is responsible for measuring itself and moving everything into the right place
+ // however, in auxiliary-only mode, that doesn't happen, so we need to do it ourselves here
+ if (mode === 'auxiliary-only') {
+ translationSV.set(translation)
+ ensureOnScreenTranslationSV.set(0)
+ }
+ // however, we also need to make sure that for super tall triggers, we don't go off the screen
+ // so we have an additional cap on the standard transform every other element has
+ // note: this breaks the press-and-hold gesture for the reaction items. unfortunately I think
+ // we'll just have to live with it for now, fixing it would be possible but be a large complexity
+ // increase for an edge case
+ else {
+ ensureOnScreenTranslationSV.set(translation)
+ }
+ }, [mode, measurement, translationSV, topInset, ensureOnScreenTranslationSV])
+
+ if (!isOpen || !measurement) return null
+
+ return (
+
+
+
+
+ {children}
+
+
+
+
+ )
+}
+
+const MENU_WIDTH = 240
+
+export function Outer({
+ children,
+ style,
+ align = 'left',
+}: {
+ children: React.ReactNode
+ style?: StyleProp
+ align?: 'left' | 'right'
+}) {
+ const t = useTheme()
+ const context = useContextMenuContext()
+ const insets = useSafeAreaInsets()
+ const frame = useSafeAreaFrame()
+ const {width: screenWidth} = useWindowDimensions()
+
+ const {animationSV, translationSV} = context
+
+ const animatedContainerStyle = useAnimatedStyle(() => ({
+ transform: [{translateY: translationSV.get() * animationSV.get()}],
+ }))
+
+ const animatedStyle = useAnimatedStyle(() => ({
+ opacity: clamp(animationSV.get(), 0, 1),
+ transform: [{scale: interpolate(animationSV.get(), [0, 1], [0.2, 1])}],
+ }))
+
+ const onLayout = useCallback(
+ (evt: LayoutChangeEvent) => {
+ if (!context.measurement) return // should not happen
+ let translation = 0
+
+ // pure vibes based
+ const TOP_INSET = insets.top + 80
+ const BOTTOM_INSET_IOS = insets.bottom + 20
+ const BOTTOM_INSET_ANDROID = insets.bottom + 12
+
+ const {height} = evt.nativeEvent.layout
+ const topPosition =
+ context.measurement.y + context.measurement.height + tokens.space.xs
+ const bottomPosition = topPosition + height
+ const safeAreaBottomLimit =
+ frame.height -
+ platform({
+ ios: BOTTOM_INSET_IOS,
+ android: BOTTOM_INSET_ANDROID,
+ default: 0,
+ })
+ const diff = bottomPosition - safeAreaBottomLimit
+ if (diff > 0) {
+ translation = -diff
+ } else {
+ const distanceMessageFromTop = context.measurement.y - TOP_INSET
+ if (distanceMessageFromTop < 0) {
+ translation = -Math.max(distanceMessageFromTop, diff)
+ }
+ }
+
+ if (translation !== 0) {
+ translationSV.set(translation)
+ }
+ },
+ [context.measurement, frame.height, insets, translationSV],
+ )
+
+ const menuContext = useMemo(() => ({align}), [align])
+
+ if (!context.isOpen || !context.measurement) return null
+
+ return (
+
+
+
+
+ {context.mode === 'full' && (
+ /* containing element - stays the same size, so we measure it
+ to determine if a translation is necessary. also has the positioning */
+
+ {/* scaling element - has the scale/fade animation on it */}
+
+ {/* innermost element - needs an overflow: hidden for children, but we also need a shadow,
+ so put the shadow on the scaling element and the overflow on the innermost element */}
+
+ {flattenReactChildren(children).map((child, i) => {
+ return React.isValidElement(child) &&
+ (child.type === Item || child.type === Divider) ? (
+
+ {i > 0 ? (
+
+ ) : null}
+ {React.cloneElement(child, {
+ // @ts-expect-error not typed
+ style: {
+ borderRadius: 0,
+ borderWidth: 0,
+ },
+ })}
+
+ ) : null
+ })}
+
+
+
+ )}
+
+
+
+ )
+}
+
+export function Item({
+ children,
+ label,
+ unstyled,
+ style,
+ onPress,
+ position,
+ ...rest
+}: ItemProps) {
+ const t = useTheme()
+ const context = useContextMenuContext()
+ const playHaptic = useHaptics()
+ const {state: focused, onIn: onFocus, onOut: onBlur} = useInteractionState()
+ const {
+ state: pressed,
+ onIn: onPressIn,
+ onOut: onPressOut,
+ } = useInteractionState()
+ const id = useId()
+ const {align} = useContextMenuMenuContext()
+
+ const {close, measurement, registerHoverable} = context
+
+ const handleLayout = useCallback(
+ (evt: LayoutChangeEvent) => {
+ if (!measurement) return // should be impossible
+
+ const layout = evt.nativeEvent.layout
+
+ const yOffset = position
+ ? position.y
+ : measurement.y + measurement.height + tokens.space.xs
+ const xOffset = position
+ ? position.x
+ : align === 'left'
+ ? measurement.x
+ : measurement.x + measurement.width - layout.width
+
+ registerHoverable(
+ id,
+ {
+ width: layout.width,
+ height: layout.height,
+ y: yOffset + layout.y,
+ x: xOffset + layout.x,
+ },
+ () => {
+ close()
+ onPress()
+ },
+ )
+ },
+ [id, measurement, registerHoverable, close, onPress, align, position],
+ )
+
+ const itemContext = useMemo(
+ () => ({disabled: Boolean(rest.disabled)}),
+ [rest.disabled],
+ )
+
+ return (
+ {
+ close()
+ onPress?.(e)
+ }}
+ onPressIn={e => {
+ onPressIn()
+ rest.onPressIn?.(e)
+ playHaptic('Light')
+ }}
+ onPressOut={e => {
+ onPressOut()
+ rest.onPressOut?.(e)
+ }}
+ style={[
+ !unstyled && [
+ a.flex_row,
+ a.align_center,
+ a.gap_sm,
+ a.px_md,
+ a.rounded_md,
+ a.border,
+ t.atoms.bg_contrast_25,
+ t.atoms.border_contrast_low,
+ {minHeight: 44, paddingVertical: 10},
+ (focused || pressed || context.hoveredMenuItem === id) &&
+ !rest.disabled &&
+ t.atoms.bg_contrast_50,
+ ],
+ style,
+ ]}>
+
+ {typeof children === 'function'
+ ? children(
+ (focused || pressed || context.hoveredMenuItem === id) &&
+ !rest.disabled,
+ )
+ : children}
+
+
+ )
+}
+
+export function ItemText({children, style}: ItemTextProps) {
+ const t = useTheme()
+ const {disabled} = useContextMenuItemContext()
+ return (
+
+ {children}
+
+ )
+}
+
+export function ItemIcon({icon: Comp}: ItemIconProps) {
+ const t = useTheme()
+ const {disabled} = useContextMenuItemContext()
+ return (
+
+ )
+}
+
+export function ItemRadio({selected}: {selected: boolean}) {
+ const t = useTheme()
+ return (
+
+ {selected ? (
+
+ ) : null}
+
+ )
+}
+
+export function LabelText({children}: {children: React.ReactNode}) {
+ const t = useTheme()
+ return (
+
+ {children}
+
+ )
+}
+
+export function Divider() {
+ const t = useTheme()
+ return (
+
+ )
+}
+
+function getHoveredHoverable(
+ evt:
+ | GestureStateChangeEvent
+ | GestureUpdateEvent,
+ hoverables: SharedValue>,
+ translation: SharedValue,
+) {
+ 'worklet'
+
+ const x = evt.absoluteX
+ const y = evt.absoluteY
+ const yOffset = translation.get()
+
+ const rects = Object.values(hoverables.get())
+
+ for (const {id, rect} of rects) {
+ const isWithinLeftBound = x >= rect.x
+ const isWithinRightBound = x <= rect.x + rect.width
+ const isWithinTopBound = y >= rect.y + yOffset
+ const isWithinBottomBound = y <= rect.y + rect.height + yOffset
+
+ if (
+ isWithinLeftBound &&
+ isWithinRightBound &&
+ isWithinTopBound &&
+ isWithinBottomBound
+ ) {
+ return id
+ }
+ }
+
+ return null
+}
diff --git a/src/components/ContextMenu/index.web.tsx b/src/components/ContextMenu/index.web.tsx
new file mode 100644
index 0000000000..41fa62474b
--- /dev/null
+++ b/src/components/ContextMenu/index.web.tsx
@@ -0,0 +1,12 @@
+import {type AuxiliaryViewProps} from './types'
+
+export * from '#/components/Menu'
+
+export function Provider({children}: {children: React.ReactNode}) {
+ return children
+}
+
+// native only
+export function AuxiliaryView({}: AuxiliaryViewProps) {
+ return null
+}
diff --git a/src/components/ContextMenu/types.ts b/src/components/ContextMenu/types.ts
new file mode 100644
index 0000000000..265a746ca4
--- /dev/null
+++ b/src/components/ContextMenu/types.ts
@@ -0,0 +1,136 @@
+import {
+ type AccessibilityRole,
+ type GestureResponderEvent,
+ type StyleProp,
+ type ViewStyle,
+} from 'react-native'
+import {type SharedValue} from 'react-native-reanimated'
+import type React from 'react'
+
+import type * as Dialog from '#/components/Dialog'
+import {
+ type ItemProps as MenuItemProps,
+ type RadixPassThroughTriggerProps,
+} from '#/components/Menu/types'
+
+export type {
+ GroupProps,
+ ItemIconProps,
+ ItemTextProps,
+} from '#/components/Menu/types'
+
+export type AuxiliaryViewProps = {
+ children?: React.ReactNode
+ align?: 'left' | 'right'
+}
+
+export type ItemProps = Omit & {
+ // remove default styles (i.e. for emoji reactions)
+ unstyled?: boolean
+ onPress: (evt?: GestureResponderEvent) => void
+ children?: React.ReactNode | ((hovered: boolean) => React.ReactNode)
+ // absolute position of the parent element. if undefined, assumed to
+ // be in the context menu. use this if using AuxiliaryView
+ position?: Measurement
+}
+
+export type Measurement = {
+ x: number
+ y: number
+ width: number
+ height: number
+}
+
+export type ContextType = {
+ isOpen: boolean
+ measurement: Measurement | null
+ /* Spring animation between 0 and 1 */
+ animationSV: SharedValue
+ /* Translation in Y axis to ensure everything's onscreen */
+ translationSV: SharedValue
+ mode: 'full' | 'auxiliary-only'
+ open: (evt: Measurement, mode: 'full' | 'auxiliary-only') => void
+ close: () => void
+ registerHoverable: (
+ id: string,
+ rect: Measurement,
+ onTouchUp: () => void,
+ ) => void
+ hoverablesSV: SharedValue>
+ hoveredMenuItem: string | null
+ setHoveredMenuItem: React.Dispatch>
+ onTouchUpMenuItem: (id: string) => void
+}
+
+export type MenuContextType = {
+ align: 'left' | 'right'
+}
+
+export type ItemContextType = {
+ disabled: boolean
+}
+
+export type TriggerProps = {
+ children(props: TriggerChildProps): React.ReactNode
+ label: string
+ /**
+ * When activated, this is the accessibility label for the entire thing that has been triggered.
+ * For example, if the trigger is a message bubble, use the message content.
+ *
+ * @platform ios, android
+ */
+ contentLabel: string
+ hint?: string
+ role?: AccessibilityRole
+ style?: StyleProp
+}
+export type TriggerChildProps =
+ | {
+ isNative: true
+ control: {
+ isOpen: boolean
+ open: (mode: 'full' | 'auxiliary-only') => void
+ }
+ state: {
+ hovered: false
+ focused: false
+ pressed: false
+ }
+ /**
+ * We don't necessarily know what these will be spread on to, so we
+ * should add props one-by-one.
+ *
+ * On web, these properties are applied to a parent `Pressable`, so this
+ * object is empty.
+ */
+ props: {
+ ref: null
+ onPress: null
+ onFocus: null
+ onBlur: null
+ onPressIn: null
+ onPressOut: null
+ accessibilityHint: null
+ accessibilityLabel: string
+ accessibilityRole: null
+ }
+ }
+ | {
+ isNative: false
+ control: Dialog.DialogOuterProps['control']
+ state: {
+ hovered: false
+ focused: false
+ pressed: false
+ }
+ props: RadixPassThroughTriggerProps & {
+ onPress: () => void
+ onFocus: () => void
+ onBlur: () => void
+ onMouseEnter: () => void
+ onMouseLeave: () => void
+ accessibilityHint?: string
+ accessibilityLabel: string
+ accessibilityRole: AccessibilityRole
+ }
+ }
diff --git a/src/components/Dialog/context.ts b/src/components/Dialog/context.ts
index 331ff3f33a..2ecf5ba618 100644
--- a/src/components/Dialog/context.ts
+++ b/src/components/Dialog/context.ts
@@ -1,14 +1,21 @@
-import React from 'react'
+import {
+ createContext,
+ useContext,
+ useEffect,
+ useId,
+ useMemo,
+ useRef,
+} from 'react'
import {useDialogStateContext} from '#/state/dialogs'
import {
- DialogContextProps,
- DialogControlRefProps,
- DialogOuterProps,
+ type DialogContextProps,
+ type DialogControlRefProps,
+ type DialogOuterProps,
} from '#/components/Dialog/types'
import {BottomSheetSnapPoint} from '../../../modules/bottom-sheet/src/BottomSheet.types'
-export const Context = React.createContext({
+export const Context = createContext({
close: () => {},
isNativeDialog: false,
nativeSnapPoint: BottomSheetSnapPoint.Hidden,
@@ -18,18 +25,18 @@ export const Context = React.createContext({
})
export function useDialogContext() {
- return React.useContext(Context)
+ return useContext(Context)
}
export function useDialogControl(): DialogOuterProps['control'] {
- const id = React.useId()
- const control = React.useRef({
+ const id = useId()
+ const control = useRef({
open: () => {},
close: () => {},
})
const {activeDialogs} = useDialogStateContext()
- React.useEffect(() => {
+ useEffect(() => {
activeDialogs.current.set(id, control)
return () => {
// eslint-disable-next-line react-hooks/exhaustive-deps
@@ -37,7 +44,7 @@ export function useDialogControl(): DialogOuterProps['control'] {
}
}, [id, activeDialogs])
- return React.useMemo(
+ return useMemo(
() => ({
id,
ref: control,
diff --git a/src/components/Dialog/index.tsx b/src/components/Dialog/index.tsx
index 463cadf3c8..4795385eec 100644
--- a/src/components/Dialog/index.tsx
+++ b/src/components/Dialog/index.tsx
@@ -1,20 +1,20 @@
import React, {useImperativeHandle} from 'react'
import {
- NativeScrollEvent,
- NativeSyntheticEvent,
+ type NativeScrollEvent,
+ type NativeSyntheticEvent,
Pressable,
- ScrollView,
- StyleProp,
+ type ScrollView,
+ type StyleProp,
TextInput,
View,
- ViewStyle,
+ type ViewStyle,
} from 'react-native'
import {
KeyboardAwareScrollView,
useKeyboardHandler,
} from 'react-native-keyboard-controller'
import {runOnJS} from 'react-native-reanimated'
-import {ReanimatedScrollEvent} from 'react-native-reanimated/lib/typescript/hook/commonTypes'
+import {type ReanimatedScrollEvent} from 'react-native-reanimated/lib/typescript/hook/commonTypes'
import {useSafeAreaInsets} from 'react-native-safe-area-context'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
@@ -25,22 +25,22 @@ import {logger} from '#/logger'
import {isAndroid, isIOS} from '#/platform/detection'
import {useA11y} from '#/state/a11y'
import {useDialogStateControlContext} from '#/state/dialogs'
-import {List, ListMethods, ListProps} from '#/view/com/util/List'
+import {List, type ListMethods, type ListProps} from '#/view/com/util/List'
import {atoms as a, tokens, useTheme} from '#/alf'
import {useThemeName} from '#/alf/util/useColorModeTheme'
import {Context, useDialogContext} from '#/components/Dialog/context'
import {
- DialogControlProps,
- DialogInnerProps,
- DialogOuterProps,
+ type DialogControlProps,
+ type DialogInnerProps,
+ type DialogOuterProps,
} from '#/components/Dialog/types'
import {createInput} from '#/components/forms/TextField'
import {BottomSheet, BottomSheetSnapPoint} from '../../../modules/bottom-sheet'
import {
- BottomSheetSnapPointChangeEvent,
- BottomSheetStateChangeEvent,
+ type BottomSheetSnapPointChangeEvent,
+ type BottomSheetStateChangeEvent,
} from '../../../modules/bottom-sheet/src/BottomSheet.types'
-import {BottomSheetNativeComponent} from '../../../modules/bottom-sheet/src/BottomSheetNativeComponent'
+import {type BottomSheetNativeComponent} from '../../../modules/bottom-sheet/src/BottomSheetNativeComponent'
export {useDialogContext, useDialogControl} from '#/components/Dialog/context'
export * from '#/components/Dialog/shared'
@@ -298,9 +298,7 @@ export const InnerFlatList = React.forwardRef<
- }
+ ListFooterComponent={ }
ref={ref}
{...props}
style={[style]}
@@ -309,7 +307,7 @@ export const InnerFlatList = React.forwardRef<
)
})
-export function Handle() {
+export function Handle({difference = false}: {difference?: boolean}) {
const t = useTheme()
const {_} = useLingui()
const {screenReaderEnabled} = useA11y()
@@ -330,9 +328,19 @@ export function Handle() {
width: 35,
height: 5,
alignSelf: 'center',
- backgroundColor: t.palette.contrast_975,
- opacity: 0.5,
},
+ difference
+ ? {
+ // TODO: mixBlendMode is only available on the new architecture -sfn
+ // backgroundColor: t.palette.white,
+ // mixBlendMode: 'difference',
+ backgroundColor: t.palette.white,
+ opacity: 0.75,
+ }
+ : {
+ backgroundColor: t.palette.contrast_975,
+ opacity: 0.5,
+ },
]}
/>
diff --git a/src/components/Dialog/index.web.tsx b/src/components/Dialog/index.web.tsx
index 1539546910..12bd8819b1 100644
--- a/src/components/Dialog/index.web.tsx
+++ b/src/components/Dialog/index.web.tsx
@@ -1,17 +1,15 @@
import React, {useImperativeHandle} from 'react'
import {
FlatList,
- FlatListProps,
- StyleProp,
+ type FlatListProps,
+ type StyleProp,
TouchableWithoutFeedback,
View,
- ViewStyle,
+ type ViewStyle,
} from 'react-native'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
-import {DismissableLayer} from '@radix-ui/react-dismissable-layer'
-import {useFocusGuards} from '@radix-ui/react-focus-guards'
-import {FocusScope} from '@radix-ui/react-focus-scope'
+import {DismissableLayer, FocusGuards, FocusScope} from 'radix-ui/internal'
import {RemoveScrollBar} from 'react-remove-scroll-bar'
import {logger} from '#/logger'
@@ -21,9 +19,9 @@ import {atoms as a, flatten, useBreakpoints, useTheme, web} from '#/alf'
import {Button, ButtonIcon} from '#/components/Button'
import {Context} from '#/components/Dialog/context'
import {
- DialogControlProps,
- DialogInnerProps,
- DialogOuterProps,
+ type DialogControlProps,
+ type DialogInnerProps,
+ type DialogOuterProps,
} from '#/components/Dialog/types'
import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times'
import {Portal} from '#/components/Portal'
@@ -162,9 +160,9 @@ export function Inner({
const {close} = React.useContext(Context)
const {gtMobile} = useBreakpoints()
const {reduceMotionEnabled} = useA11y()
- useFocusGuards()
+ FocusGuards.useFocusGuards()
return (
-
+
-
{children}
-
+
-
+
)
}
diff --git a/src/components/Dialog/shared.tsx b/src/components/Dialog/shared.tsx
index 44a4f6b0bb..40d0408788 100644
--- a/src/components/Dialog/shared.tsx
+++ b/src/components/Dialog/shared.tsx
@@ -1,5 +1,11 @@
-import React from 'react'
-import {StyleProp, TextStyle, View, ViewStyle} from 'react-native'
+import {
+ type LayoutChangeEvent,
+ type StyleProp,
+ type TextStyle,
+ View,
+ type ViewStyle,
+} from 'react-native'
+import type React from 'react'
import {atoms as a, useTheme} from '#/alf'
import {Text} from '#/components/Typography'
@@ -9,15 +15,18 @@ export function Header({
renderRight,
children,
style,
+ onLayout,
}: {
renderLeft?: () => React.ReactNode
renderRight?: () => React.ReactNode
children?: React.ReactNode
style?: StyleProp
+ onLayout?: (event: LayoutChangeEvent) => void
}) {
const t = useTheme()
return (
(promise: Promise): Promise => {
- setFullyExpandedCount(c => c + 1)
+ return useCallback(async (promise: Promise): Promise => {
+ if (isIOS) {
+ const entry = SystemBars.pushStackEntry({
+ style: {
+ statusBar: 'light',
+ },
+ })
const res = await promise
- setFullyExpandedCount(c => c - 1)
+ SystemBars.popStackEntry(entry)
return res
- },
- [setFullyExpandedCount],
- )
+ } else {
+ return await promise
+ }
+ }, [])
}
diff --git a/src/components/FeedCard.tsx b/src/components/FeedCard.tsx
index f20e517d43..f94692e5bd 100644
--- a/src/components/FeedCard.tsx
+++ b/src/components/FeedCard.tsx
@@ -1,8 +1,8 @@
import React from 'react'
-import {GestureResponderEvent, View} from 'react-native'
+import {type GestureResponderEvent, View} from 'react-native'
import {
- AppBskyFeedDefs,
- AppBskyGraphDefs,
+ type AppBskyFeedDefs,
+ type AppBskyGraphDefs,
AtUri,
RichText as RichTextApi,
} from '@atproto/api'
@@ -21,20 +21,25 @@ import {
import {useSession} from '#/state/session'
import * as Toast from '#/view/com/util/Toast'
import {UserAvatar} from '#/view/com/util/UserAvatar'
-import {useTheme} from '#/alf'
-import {atoms as a} from '#/alf'
-import {Button, ButtonIcon} from '#/components/Button'
-import {PlusLarge_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus'
-import {Trash_Stroke2_Corner0_Rounded as Trash} from '#/components/icons/Trash'
-import {Link as InternalLink, LinkProps} from '#/components/Link'
+import {atoms as a, useTheme} from '#/alf'
+import {
+ Button,
+ ButtonIcon,
+ type ButtonProps,
+ ButtonText,
+} from '#/components/Button'
+import {Pin_Stroke2_Corner0_Rounded as PinIcon} from '#/components/icons/Pin'
+import {Link as InternalLink, type LinkProps} from '#/components/Link'
import {Loader} from '#/components/Loader'
import * as Prompt from '#/components/Prompt'
-import {RichText, RichTextProps} from '#/components/RichText'
+import {RichText, type RichTextProps} from '#/components/RichText'
import {Text} from '#/components/Typography'
-import * as bsky from '#/types/bsky'
+import type * as bsky from '#/types/bsky'
+import {Trash_Stroke2_Corner0_Rounded as TrashIcon} from './icons/Trash'
type Props = {
view: AppBskyFeedDefs.GeneratorView
+ onPress?: () => void
}
export function Default(props: Props) {
@@ -81,11 +86,11 @@ export function Link({
}
export function Outer({children}: {children: React.ReactNode}) {
- return {children}
+ return {children}
}
export function Header({children}: {children: React.ReactNode}) {
- return {children}
+ return {children}
}
export type AvatarProps = {src: string | undefined; size?: number}
@@ -220,22 +225,27 @@ export function Likes({count}: {count: number}) {
export function SaveButton({
view,
pin,
+ ...props
}: {
view: AppBskyFeedDefs.GeneratorView | AppBskyGraphDefs.ListView
pin?: boolean
-}) {
+ text?: boolean
+} & Partial) {
const {hasSession} = useSession()
if (!hasSession) return null
- return
+ return
}
function SaveButtonInner({
view,
pin,
+ text = true,
+ ...buttonProps
}: {
view: AppBskyFeedDefs.GeneratorView | AppBskyGraphDefs.ListView
pin?: boolean
-}) {
+ text?: boolean
+} & Partial) {
const {_} = useLingui()
const {data: preferences} = usePreferencesQuery()
const {isPending: isAddSavedFeedPending, mutateAsync: saveFeeds} =
@@ -294,14 +304,32 @@ function SaveButtonInner({
disabled={isPending}
label={_(msg`Add this feed to your feeds`)}
size="small"
- variant="ghost"
- color="secondary"
- shape="square"
- onPress={savedFeedConfig ? onPrompRemoveFeed : toggleSave}>
+ variant="solid"
+ color={savedFeedConfig ? 'secondary' : 'primary'}
+ onPress={savedFeedConfig ? onPrompRemoveFeed : toggleSave}
+ {...buttonProps}>
{savedFeedConfig ? (
-
+ <>
+ {isPending ? (
+
+ ) : (
+ !text &&
+ )}
+ {text && (
+
+ Unpin Feed
+
+ )}
+ >
) : (
-
+ <>
+
+ {text && (
+
+ Pin Feed
+
+ )}
+ >
)}
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx
index eafed25e50..5f533aa2f6 100644
--- a/src/components/FeedInterstitials.tsx
+++ b/src/components/FeedInterstitials.tsx
@@ -1,24 +1,24 @@
import React from 'react'
import {View} from 'react-native'
import {ScrollView} from 'react-native-gesture-handler'
-import {AppBskyFeedDefs, AtUri} from '@atproto/api'
+import {type AppBskyFeedDefs, AtUri} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useNavigation} from '@react-navigation/native'
-import {NavigationProp} from '#/lib/routes/types'
+import {type NavigationProp} from '#/lib/routes/types'
import {logEvent} from '#/lib/statsig/statsig'
import {logger} from '#/logger'
import {useModerationOpts} from '#/state/preferences/moderation-opts'
import {useGetPopularFeedsQuery} from '#/state/queries/feed'
-import {FeedDescriptor} from '#/state/queries/post-feed'
+import {type FeedDescriptor} from '#/state/queries/post-feed'
import {useProfilesQuery} from '#/state/queries/profile'
import {useSuggestedFollowsByActorQuery} from '#/state/queries/suggested-follows'
import {useSession} from '#/state/session'
import * as userActionHistory from '#/state/userActionHistory'
-import {SeenPost} from '#/state/userActionHistory'
+import {type SeenPost} from '#/state/userActionHistory'
import {BlockDrawerGesture} from '#/view/shell/BlockDrawerGesture'
-import {atoms as a, useBreakpoints, useTheme, ViewStyleProp, web} from '#/alf'
+import {atoms as a, useBreakpoints, useTheme, type ViewStyleProp, web} from '#/alf'
import {Button} from '#/components/Button'
import * as FeedCard from '#/components/FeedCard'
import {ArrowRight_Stroke2_Corner0_Rounded as Arrow} from '#/components/icons/Arrow'
@@ -27,7 +27,7 @@ import {PersonPlus_Stroke2_Corner0_Rounded as Person} from '#/components/icons/P
import {InlineLinkText} from '#/components/Link'
import * as ProfileCard from '#/components/ProfileCard'
import {Text} from '#/components/Typography'
-import * as bsky from '#/types/bsky'
+import type * as bsky from '#/types/bsky'
import {ProgressGuideList} from './ProgressGuide/List'
const MOBILE_CARD_WIDTH = 300
@@ -360,35 +360,37 @@ export function ProfileGrid({
) : (
-
-
- {content}
+
+
+
+ {content}
- {
- navigation.navigate('SearchTab')
- }}>
-
-
-
-
-
- Browse more suggestions on the Explore page
-
-
+ {
+ navigation.navigate('SearchTab')
+ }}>
+
+
+
+
+
+ Browse more suggestions on the Explore page
+
+
-
+
+
-
-
-
-
-
+
+
+
+
+
)}
diff --git a/src/components/Layout/Header/index.tsx b/src/components/Layout/Header/index.tsx
index 8ef114b442..d68f4bd1d2 100644
--- a/src/components/Layout/Header/index.tsx
+++ b/src/components/Layout/Header/index.tsx
@@ -1,28 +1,29 @@
import {createContext, useCallback, useContext} from 'react'
-import {GestureResponderEvent, Keyboard, View} from 'react-native'
+import {type GestureResponderEvent, Keyboard, View} from 'react-native'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useNavigation} from '@react-navigation/native'
import {HITSLOP_30} from '#/lib/constants'
-import {NavigationProp} from '#/lib/routes/types'
+import {type NavigationProp} from '#/lib/routes/types'
import {isIOS} from '#/platform/detection'
import {useSetDrawerOpen} from '#/state/shell'
import {
atoms as a,
platform,
- TextStyleProp,
+ type TextStyleProp,
useBreakpoints,
useGutters,
useLayoutBreakpoints,
useTheme,
web,
} from '#/alf'
-import {Button, ButtonIcon, ButtonProps} from '#/components/Button'
+import {Button, ButtonIcon, type ButtonProps} from '#/components/Button'
import {ArrowLeft_Stroke2_Corner0_Rounded as ArrowLeft} from '#/components/icons/Arrow'
import {Menu_Stroke2_Corner0_Rounded as Menu} from '#/components/icons/Menu'
import {
BUTTON_VISUAL_ALIGNMENT_OFFSET,
+ CENTER_COLUMN_OFFSET,
HEADER_SLOT_SIZE,
SCROLLBAR_OFFSET,
} from '#/components/Layout/const'
@@ -65,7 +66,7 @@ export function Outer({
gtMobile && [a.mx_auto, {maxWidth: 600}],
!isWithinOffsetView && {
transform: [
- {translateX: centerColumnOffset ? -150 : 0},
+ {translateX: centerColumnOffset ? CENTER_COLUMN_OFFSET : 0},
{translateX: web(SCROLLBAR_OFFSET) ?? 0},
],
},
diff --git a/src/components/Layout/const.ts b/src/components/Layout/const.ts
index 11825d323c..2b5d3a1fc8 100644
--- a/src/components/Layout/const.ts
+++ b/src/components/Layout/const.ts
@@ -14,3 +14,8 @@ export const BUTTON_VISUAL_ALIGNMENT_OFFSET = 3
* Corresponds to the width of a small square or round button
*/
export const HEADER_SLOT_SIZE = 34
+
+/**
+ * How far to shift the center column when in the tablet breakpoint
+ */
+export const CENTER_COLUMN_OFFSET = -105
diff --git a/src/components/Layout/index.tsx b/src/components/Layout/index.tsx
index 623478a6ac..5891ca863a 100644
--- a/src/components/Layout/index.tsx
+++ b/src/components/Layout/index.tsx
@@ -1,12 +1,12 @@
-import React, {useContext, useMemo} from 'react'
-import {StyleSheet, View, ViewProps, ViewStyle} from 'react-native'
-import {StyleProp} from 'react-native'
+import {forwardRef, memo, useContext, useMemo} from 'react'
+import {StyleSheet, View, type ViewProps, type ViewStyle} from 'react-native'
+import {type StyleProp} from 'react-native'
import {
KeyboardAwareScrollView,
- KeyboardAwareScrollViewProps,
+ type KeyboardAwareScrollViewProps,
} from 'react-native-keyboard-controller'
import Animated, {
- AnimatedScrollViewProps,
+ type AnimatedScrollViewProps,
useAnimatedProps,
} from 'react-native-reanimated'
import {useSafeAreaInsets} from 'react-native-safe-area-context'
@@ -21,7 +21,7 @@ import {
web,
} from '#/alf'
import {useDialogContext} from '#/components/Dialog'
-import {SCROLLBAR_OFFSET} from '#/components/Layout/const'
+import {CENTER_COLUMN_OFFSET, SCROLLBAR_OFFSET} from '#/components/Layout/const'
import {ScrollbarOffsetContext} from '#/components/Layout/context'
export * from '#/components/Layout/const'
@@ -35,7 +35,7 @@ export type ScreenProps = React.ComponentProps & {
/**
* Outermost component of every screen
*/
-export const Screen = React.memo(function Screen({
+export const Screen = memo(function Screen({
style,
noInsetTop,
...props
@@ -61,49 +61,55 @@ export type ContentProps = AnimatedScrollViewProps & {
/**
* Default scroll view for simple pages
*/
-export const Content = React.memo(function Content({
- children,
- style,
- contentContainerStyle,
- ignoreTabletLayoutOffset,
- ...props
-}: ContentProps) {
- const t = useTheme()
- const {footerHeight} = useShellLayout()
- const animatedProps = useAnimatedProps(() => {
- return {
- scrollIndicatorInsets: {
- bottom: footerHeight.get(),
- top: 0,
- right: 1,
- },
- } satisfies AnimatedScrollViewProps
- })
+export const Content = memo(
+ forwardRef(function Content(
+ {
+ children,
+ style,
+ contentContainerStyle,
+ ignoreTabletLayoutOffset,
+ ...props
+ },
+ ref,
+ ) {
+ const t = useTheme()
+ const {footerHeight} = useShellLayout()
+ const animatedProps = useAnimatedProps(() => {
+ return {
+ scrollIndicatorInsets: {
+ bottom: footerHeight.get(),
+ top: 0,
+ right: 1,
+ },
+ } satisfies AnimatedScrollViewProps
+ })
- return (
-
- {isWeb ? (
-
- {/* @ts-expect-error web only -esb */}
- {children}
-
- ) : (
- children
- )}
-
- )
-})
+ return (
+
+ {isWeb ? (
+
+ {/* @ts-expect-error web only -esb */}
+ {children}
+
+ ) : (
+ children
+ )}
+
+ )
+ }),
+)
const scrollViewStyles = StyleSheet.create({
common: {
@@ -124,7 +130,7 @@ export type KeyboardAwareContentProps = KeyboardAwareScrollViewProps & {
*
* BE SURE TO TEST THIS WHEN USING, it's untested as of writing this comment.
*/
-export const KeyboardAwareContent = React.memo(function LayoutScrollView({
+export const KeyboardAwareContent = memo(function LayoutKeyboardAwareContent({
children,
style,
contentContainerStyle,
@@ -147,7 +153,7 @@ export const KeyboardAwareContent = React.memo(function LayoutScrollView({
/**
* Utility component to center content within the screen
*/
-export const Center = React.memo(function LayoutContent({
+export const Center = memo(function LayoutCenter({
children,
style,
ignoreTabletLayoutOffset,
@@ -173,7 +179,7 @@ export const Center = React.memo(function LayoutContent({
centerColumnOffset &&
!ignoreTabletLayoutOffset &&
!isWithinDialog
- ? -150
+ ? CENTER_COLUMN_OFFSET
: 0,
},
{translateX: web(SCROLLBAR_OFFSET) ?? 0},
@@ -192,7 +198,7 @@ export const Center = React.memo(function LayoutContent({
/**
* Only used within `Layout.Screen`, not for reuse
*/
-const WebCenterBorders = React.memo(function LayoutContent() {
+const WebCenterBorders = memo(function LayoutWebCenterBorders() {
const t = useTheme()
const {gtMobile} = useBreakpoints()
const {centerColumnOffset} = useLayoutBreakpoints()
@@ -209,7 +215,7 @@ const WebCenterBorders = React.memo(function LayoutContent() {
left: '50%',
transform: [
{translateX: '-50%'},
- {translateX: centerColumnOffset ? -150 : 0},
+ {translateX: centerColumnOffset ? CENTER_COLUMN_OFFSET : 0},
...a.scrollbar_offset.transform,
],
}),
diff --git a/src/components/LikesDialog.tsx b/src/components/LikesDialog.tsx
deleted file mode 100644
index cb000b4337..0000000000
--- a/src/components/LikesDialog.tsx
+++ /dev/null
@@ -1,129 +0,0 @@
-import {useCallback, useMemo} from 'react'
-import {ActivityIndicator, FlatList, View} from 'react-native'
-import {AppBskyFeedGetLikes as GetLikes} from '@atproto/api'
-import {msg, Trans} from '@lingui/macro'
-import {useLingui} from '@lingui/react'
-
-import {cleanError} from '#/lib/strings/errors'
-import {logger} from '#/logger'
-import {useLikedByQuery} from '#/state/queries/post-liked-by'
-import {useResolveUriQuery} from '#/state/queries/resolve-uri'
-import {ProfileCardWithFollowBtn} from '#/view/com/profile/ProfileCard'
-import {ErrorMessage} from '#/view/com/util/error/ErrorMessage'
-import {atoms as a, useTheme} from '#/alf'
-import * as Dialog from '#/components/Dialog'
-import {Loader} from '#/components/Loader'
-import {Text} from '#/components/Typography'
-
-interface LikesDialogProps {
- control: Dialog.DialogOuterProps['control']
- uri: string
-}
-
-export function LikesDialog(props: LikesDialogProps) {
- return (
-
-
-
-
- )
-}
-
-export function LikesDialogInner({control, uri}: LikesDialogProps) {
- const {_} = useLingui()
- const t = useTheme()
-
- const {
- data: resolvedUri,
- error: resolveError,
- isFetched: hasFetchedResolvedUri,
- } = useResolveUriQuery(uri)
- const {
- data,
- isFetching: isFetchingLikedBy,
- isFetched: hasFetchedLikedBy,
- isFetchingNextPage,
- hasNextPage,
- fetchNextPage,
- isError,
- error: likedByError,
- } = useLikedByQuery(resolvedUri?.uri)
-
- const isLoading = !hasFetchedResolvedUri || !hasFetchedLikedBy
- const likes = useMemo(() => {
- if (data?.pages) {
- return data.pages.flatMap(page => page.likes)
- }
- return []
- }, [data])
-
- const onEndReached = useCallback(async () => {
- if (isFetchingLikedBy || !hasNextPage || isError) return
- try {
- await fetchNextPage()
- } catch (err) {
- logger.error('Failed to load more likes', {message: err})
- }
- }, [isFetchingLikedBy, hasNextPage, isError, fetchNextPage])
-
- const renderItem = useCallback(
- ({item}: {item: GetLikes.Like}) => {
- return (
- control.close()}
- />
- )
- },
- [control],
- )
-
- return (
-
-
- Liked by
-
-
- {isLoading ? (
-
-
-
- ) : resolveError || likedByError || !data ? (
-
- ) : likes.length === 0 ? (
-
-
-
- Nobody has liked this yet. Maybe you should be the first!
-
-
-
- ) : (
- item.actor.did}
- onEndReached={onEndReached}
- renderItem={renderItem}
- initialNumToRender={15}
- ListFooterComponent={
-
- }
- />
- )}
-
-
-
- )
-}
-
-function ListFooterComponent({isFetching}: {isFetching: boolean}) {
- if (isFetching) {
- return (
-
-
-
- )
- }
- return null
-}
diff --git a/src/components/Link.tsx b/src/components/Link.tsx
index 8bebecbc87..d73a3db4ae 100644
--- a/src/components/Link.tsx
+++ b/src/components/Link.tsx
@@ -1,12 +1,16 @@
-import React from 'react'
-import {GestureResponderEvent} from 'react-native'
+import React, {useMemo} from 'react'
+import {type GestureResponderEvent} from 'react-native'
import {sanitizeUrl} from '@braintree/sanitize-url'
-import {StackActions, useLinkProps} from '@react-navigation/native'
+import {
+ type LinkProps as RNLinkProps,
+ StackActions,
+ useLinkBuilder,
+} from '@react-navigation/native'
import {BSKY_DOWNLOAD_URL} from '#/lib/constants'
import {useNavigationDeduped} from '#/lib/hooks/useNavigationDeduped'
import {useOpenLink} from '#/lib/hooks/useOpenLink'
-import {AllNavigatorParams} from '#/lib/routes/types'
+import {type AllNavigatorParams} from '#/lib/routes/types'
import {shareUrl} from '#/lib/sharing'
import {
convertBskyAppUrlIfNeeded,
@@ -16,10 +20,10 @@ import {
} from '#/lib/strings/url-helpers'
import {isNative, isWeb} from '#/platform/detection'
import {useModalControls} from '#/state/modals'
-import {atoms as a, flatten, TextStyleProp, useTheme, web} from '#/alf'
-import {Button, ButtonProps} from '#/components/Button'
+import {atoms as a, flatten, type TextStyleProp, useTheme, web} from '#/alf'
+import {Button, type ButtonProps} from '#/components/Button'
import {useInteractionState} from '#/components/hooks/useInteractionState'
-import {Text, TextProps} from '#/components/Typography'
+import {Text, type TextProps} from '#/components/Typography'
import {router} from '#/routes'
/**
@@ -28,12 +32,11 @@ import {router} from '#/routes'
*/
export {useButtonContext as useLinkContext} from '#/components/Button'
-type BaseLinkProps = Pick<
- Parameters>[0],
- 'to'
-> & {
+type BaseLinkProps = {
testID?: string
+ to: RNLinkProps | string
+
/**
* The React Navigation `StackAction` to perform when the link is pressed.
*/
@@ -92,10 +95,23 @@ export function useLink({
shouldProxy?: boolean
}) {
const navigation = useNavigationDeduped()
- const {href} = useLinkProps({
- to:
- typeof to === 'string' ? convertBskyAppUrlIfNeeded(sanitizeUrl(to)) : to,
- })
+ const {buildHref} = useLinkBuilder()
+ const href = useMemo(() => {
+ return typeof to === 'string'
+ ? convertBskyAppUrlIfNeeded(sanitizeUrl(to))
+ : to.screen
+ ? buildHref(to.screen, to.params)
+ : to.href
+ ? convertBskyAppUrlIfNeeded(sanitizeUrl(to.href))
+ : undefined
+ }, [to, buildHref])
+
+ if (!href) {
+ throw new Error(
+ 'Link `to` prop must be a string or an object with `screen` and `params` properties',
+ )
+ }
+
const isExternal = isExternalUrl(href)
const {openModal, closeModal} = useModalControls()
const openLink = useOpenLink()
@@ -210,7 +226,9 @@ export function useLink({
}
export type LinkProps = Omit &
- Omit
+ Omit & {
+ overridePresentation?: boolean
+ }
/**
* A interactive element that renders as a `` tag on the web. On mobile it
@@ -228,6 +246,7 @@ export function Link({
onLongPress: outerOnLongPress,
download,
shouldProxy,
+ overridePresentation,
...rest
}: LinkProps) {
const {href, isExternal, onPress, onLongPress} = useLink({
@@ -237,6 +256,7 @@ export function Link({
onPress: outerOnPress,
onLongPress: outerOnLongPress,
shouldProxy: shouldProxy,
+ overridePresentation,
})
return (
@@ -267,7 +287,7 @@ export function Link({
export type InlineLinkProps = React.PropsWithChildren<
BaseLinkProps &
TextStyleProp &
- Pick &
+ Pick &
Pick & {
disableUnderline?: boolean
title?: TextProps['title']
diff --git a/src/components/Menu/context.tsx b/src/components/Menu/context.tsx
index 908ad352ea..5144c69318 100644
--- a/src/components/Menu/context.tsx
+++ b/src/components/Menu/context.tsx
@@ -1,15 +1,10 @@
import React from 'react'
-import type {ContextType, ItemContextType} from '#/components/Menu/types'
+import {type ContextType, type ItemContextType} from '#/components/Menu/types'
-export const Context = React.createContext({
- // @ts-ignore
- control: null,
-})
+export const Context = React.createContext(null)
-export const ItemContext = React.createContext({
- disabled: false,
-})
+export const ItemContext = React.createContext(null)
export function useMenuContext() {
const context = React.useContext(Context)
diff --git a/src/components/Menu/index.tsx b/src/components/Menu/index.tsx
index 06b9e7e557..94438724c8 100644
--- a/src/components/Menu/index.tsx
+++ b/src/components/Menu/index.tsx
@@ -1,5 +1,11 @@
-import React from 'react'
-import {Pressable, StyleProp, View, ViewStyle} from 'react-native'
+import {cloneElement, Fragment, isValidElement, useMemo} from 'react'
+import {
+ Pressable,
+ type StyleProp,
+ type TextStyle,
+ View,
+ type ViewStyle,
+} from 'react-native'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import flattenReactChildren from 'react-keyed-flatten-children'
@@ -16,12 +22,12 @@ import {
useMenuItemContext,
} from '#/components/Menu/context'
import {
- ContextType,
- GroupProps,
- ItemIconProps,
- ItemProps,
- ItemTextProps,
- TriggerProps,
+ type ContextType,
+ type GroupProps,
+ type ItemIconProps,
+ type ItemProps,
+ type ItemTextProps,
+ type TriggerProps,
} from '#/components/Menu/types'
import {Text} from '#/components/Typography'
@@ -30,14 +36,16 @@ export {
useDialogControl as useMenuControl,
} from '#/components/Dialog'
+export {useMenuContext}
+
export function Root({
children,
control,
}: React.PropsWithChildren<{
- control?: Dialog.DialogOuterProps['control']
+ control?: Dialog.DialogControlProps
}>) {
const defaultControl = Dialog.useDialogControl()
- const context = React.useMemo(
+ const context = useMemo(
() => ({
control: control || defaultControl,
}),
@@ -242,16 +250,53 @@ export function ItemRadio({selected}: {selected: boolean}) {
)
}
-export function LabelText({children}: {children: React.ReactNode}) {
+/**
+ * NATIVE ONLY - for adding non-pressable items to the menu
+ *
+ * @platform ios, android
+ */
+export function ContainerItem({
+ children,
+ style,
+}: {
+ children: React.ReactNode
+ style?: StyleProp
+}) {
+ const t = useTheme()
+ return (
+
+ {children}
+
+ )
+}
+
+export function LabelText({
+ children,
+ style,
+}: {
+ children: React.ReactNode
+ style?: StyleProp
+}) {
const t = useTheme()
return (
{children}
@@ -270,19 +315,20 @@ export function Group({children, style}: GroupProps) {
style,
]}>
{flattenReactChildren(children).map((child, i) => {
- return React.isValidElement(child) && child.type === Item ? (
-
+ return isValidElement(child) &&
+ (child.type === Item || child.type === ContainerItem) ? (
+
{i > 0 ? (
) : null}
- {React.cloneElement(child, {
- // @ts-ignore
+ {cloneElement(child, {
+ // @ts-expect-error cloneElement is not aware of the types
style: {
borderRadius: 0,
borderWidth: 0,
},
})}
-
+
) : null
})}
diff --git a/src/components/Menu/index.web.tsx b/src/components/Menu/index.web.tsx
index 7bf4dde181..8d26c8f035 100644
--- a/src/components/Menu/index.web.tsx
+++ b/src/components/Menu/index.web.tsx
@@ -1,12 +1,18 @@
-import React from 'react'
-import {Pressable, StyleProp, View, ViewStyle} from 'react-native'
+import {forwardRef, useCallback, useId, useMemo, useState} from 'react'
+import {
+ Pressable,
+ type StyleProp,
+ type TextStyle,
+ View,
+ type ViewStyle,
+} from 'react-native'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
-import * as DropdownMenu from '@radix-ui/react-dropdown-menu'
+import {DropdownMenu} from 'radix-ui'
import {useA11y} from '#/state/a11y'
import {atoms as a, flatten, useTheme, web} from '#/alf'
-import * as Dialog from '#/components/Dialog'
+import type * as Dialog from '#/components/Dialog'
import {useInteractionState} from '#/components/hooks/useInteractionState'
import {
Context,
@@ -15,22 +21,24 @@ import {
useMenuItemContext,
} from '#/components/Menu/context'
import {
- ContextType,
- GroupProps,
- ItemIconProps,
- ItemProps,
- ItemTextProps,
- RadixPassThroughTriggerProps,
- TriggerProps,
+ type ContextType,
+ type GroupProps,
+ type ItemIconProps,
+ type ItemProps,
+ type ItemTextProps,
+ type RadixPassThroughTriggerProps,
+ type TriggerProps,
} from '#/components/Menu/types'
import {Portal} from '#/components/Portal'
import {Text} from '#/components/Typography'
-export function useMenuControl(): Dialog.DialogControlProps {
- const id = React.useId()
- const [isOpen, setIsOpen] = React.useState(false)
+export {useMenuContext}
- return React.useMemo(
+export function useMenuControl(): Dialog.DialogControlProps {
+ const id = useId()
+ const [isOpen, setIsOpen] = useState(false)
+
+ return useMemo(
() => ({
id,
ref: {current: null},
@@ -50,17 +58,17 @@ export function Root({
children,
control,
}: React.PropsWithChildren<{
- control?: Dialog.DialogOuterProps['control']
+ control?: Dialog.DialogControlProps
}>) {
const {_} = useLingui()
const defaultControl = useMenuControl()
- const context = React.useMemo(
+ const context = useMemo(
() => ({
control: control || defaultControl,
}),
[control, defaultControl],
)
- const onOpenChange = React.useCallback(
+ const onOpenChange = useCallback(
(open: boolean) => {
if (context.control.isOpen && !open) {
context.control.close()
@@ -94,7 +102,7 @@ export function Root({
)
}
-const RadixTriggerPassThrough = React.forwardRef(
+const RadixTriggerPassThrough = forwardRef(
(
props: {
children: (
@@ -353,18 +361,23 @@ export function ItemRadio({selected}: {selected: boolean}) {
)
}
-export function LabelText({children}: {children: React.ReactNode}) {
+export function LabelText({
+ children,
+ style,
+}: {
+ children: React.ReactNode
+ style?: StyleProp
+}) {
const t = useTheme()
return (
{children}
@@ -388,3 +401,7 @@ export function Divider() {
/>
)
}
+
+export function ContainerItem() {
+ return null
+}
diff --git a/src/components/Portal.tsx b/src/components/Portal.tsx
index 03b397b2b8..4e03d6b089 100644
--- a/src/components/Portal.tsx
+++ b/src/components/Portal.tsx
@@ -1,4 +1,14 @@
-import React from 'react'
+import {
+ createContext,
+ Fragment,
+ useCallback,
+ useContext,
+ useEffect,
+ useId,
+ useMemo,
+ useRef,
+ useState,
+} from 'react'
type Component = React.ReactElement
@@ -9,32 +19,32 @@ type ContextType = {
}
type ComponentMap = {
- [id: string]: Component
+ [id: string]: Component | null
}
export function createPortalGroup() {
- const Context = React.createContext({
+ const Context = createContext({
outlet: null,
append: () => {},
remove: () => {},
})
function Provider(props: React.PropsWithChildren<{}>) {
- const map = React.useRef({})
- const [outlet, setOutlet] = React.useState(null)
+ const map = useRef({})
+ const [outlet, setOutlet] = useState(null)
- const append = React.useCallback((id, component) => {
+ const append = useCallback((id, component) => {
if (map.current[id]) return
- map.current[id] = {component}
+ map.current[id] = {component}
setOutlet(<>{Object.values(map.current)}>)
}, [])
- const remove = React.useCallback(id => {
- delete map.current[id]
+ const remove = useCallback(id => {
+ map.current[id] = null
setOutlet(<>{Object.values(map.current)}>)
}, [])
- const contextValue = React.useMemo(
+ const contextValue = useMemo(
() => ({
outlet,
append,
@@ -49,14 +59,14 @@ export function createPortalGroup() {
}
function Outlet() {
- const ctx = React.useContext(Context)
+ const ctx = useContext(Context)
return ctx.outlet
}
function Portal({children}: React.PropsWithChildren<{}>) {
- const {append, remove} = React.useContext(Context)
- const id = React.useId()
- React.useEffect(() => {
+ const {append, remove} = useContext(Context)
+ const id = useId()
+ useEffect(() => {
append(id, children as Component)
return () => remove(id)
}, [id, children, append, remove])
diff --git a/src/components/Post/Embed/ExternalEmbed/index.tsx b/src/components/Post/Embed/ExternalEmbed/index.tsx
index e94a394461..714eaecd63 100644
--- a/src/components/Post/Embed/ExternalEmbed/index.tsx
+++ b/src/components/Post/Embed/ExternalEmbed/index.tsx
@@ -1,11 +1,12 @@
import React, {useCallback} from 'react'
-import {StyleProp, View, ViewStyle} from 'react-native'
+import {type StyleProp, View, type ViewStyle} from 'react-native'
import {Image} from 'expo-image'
-import {AppBskyEmbedExternal} from '@atproto/api'
+import {type AppBskyEmbedExternal} from '@atproto/api'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {parseAltFromGIFDescription} from '#/lib/gif-alt-text'
+import {useHaptics} from '#/lib/haptics'
import {shareUrl} from '#/lib/sharing'
import {parseEmbedPlayerFromUrl} from '#/lib/strings/embed-player'
import {toNiceDomain} from '#/lib/strings/url-helpers'
@@ -33,6 +34,7 @@ export const ExternalEmbed = ({
}) => {
const {_} = useLingui()
const t = useTheme()
+ const playHaptic = useHaptics()
const externalEmbedPrefs = useExternalEmbedsPrefs()
const niceUrl = toNiceDomain(link.uri)
const imageUri = link.thumb
@@ -45,11 +47,17 @@ export const ExternalEmbed = ({
}, [link.uri, externalEmbedPrefs])
const hasMedia = Boolean(imageUri || embedPlayerParams)
+ const onPress = useCallback(() => {
+ playHaptic('Light')
+ onOpen?.()
+ }, [playHaptic, onOpen])
+
const onShareExternal = useCallback(() => {
if (link.uri && isNative) {
+ playHaptic('Heavy')
shareUrl(link.uri)
}
- }, [link.uri])
+ }, [link.uri, playHaptic])
if (embedPlayerParams?.source === 'tenor') {
const parsedAlt = parseAltFromGIFDescription(link.description)
@@ -71,7 +79,7 @@ export const ExternalEmbed = ({
label={link.title || _(msg`Open link to ${niceUrl}`)}
to={link.uri}
shouldProxy={true}
- onPress={onOpen}
+ onPress={onPress}
onLongPress={onShareExternal}>
{({hovered}) => (
{
+ BandwidthEstimate.set(hls.bandwidthEstimate)
+ })
+
hls.on(Hls.Events.SUBTITLE_TRACKS_UPDATED, (_event, data) => {
if (data.subtitleTracks.length > 0) {
setHasSubtitleTrack(true)
diff --git a/src/components/PostControls/DiscoverDebug.tsx b/src/components/PostControls/DiscoverDebug.tsx
new file mode 100644
index 0000000000..796981f0c2
--- /dev/null
+++ b/src/components/PostControls/DiscoverDebug.tsx
@@ -0,0 +1,54 @@
+import {Pressable} from 'react-native'
+import * as Clipboard from 'expo-clipboard'
+import {t} from '@lingui/macro'
+
+import {IS_INTERNAL} from '#/lib/app-info'
+import {DISCOVER_DEBUG_DIDS} from '#/lib/constants'
+import {useGate} from '#/lib/statsig/statsig'
+import {useSession} from '#/state/session'
+import * as Toast from '#/view/com/util/Toast'
+import {atoms as a, useBreakpoints, useTheme} from '#/alf'
+import {Text} from '#/components/Typography'
+
+export function DiscoverDebug({
+ feedContext,
+}: {
+ feedContext: string | undefined
+}) {
+ const {currentAccount} = useSession()
+ const {gtMobile} = useBreakpoints()
+ const gate = useGate()
+ const isDiscoverDebugUser =
+ IS_INTERNAL ||
+ DISCOVER_DEBUG_DIDS[currentAccount?.did || ''] ||
+ gate('debug_show_feedcontext')
+ const theme = useTheme()
+
+ return (
+ isDiscoverDebugUser &&
+ feedContext && (
+ {
+ e.stopPropagation()
+ Clipboard.setStringAsync(feedContext)
+ Toast.show(t`Copied to clipboard`, 'clipboard-check')
+ }}>
+
+ {feedContext}
+
+
+ )
+ )
+}
diff --git a/src/components/PostControls/PostControlButton.tsx b/src/components/PostControls/PostControlButton.tsx
new file mode 100644
index 0000000000..f41f950494
--- /dev/null
+++ b/src/components/PostControls/PostControlButton.tsx
@@ -0,0 +1,121 @@
+import {createContext, useContext, useMemo} from 'react'
+import {type GestureResponderEvent, type View} from 'react-native'
+
+import {POST_CTRL_HITSLOP} from '#/lib/constants'
+import {useHaptics} from '#/lib/haptics'
+import {atoms as a, useTheme} from '#/alf'
+import {Button, type ButtonProps} from '#/components/Button'
+import {type Props as SVGIconProps} from '#/components/icons/common'
+import {Text, type TextProps} from '#/components/Typography'
+
+const PostControlContext = createContext<{
+ big?: boolean
+ active?: boolean
+ color?: {color: string}
+}>({})
+
+// Base button style, which the the other ones extend
+export function PostControlButton({
+ ref,
+ onPress,
+ onLongPress,
+ children,
+ big,
+ active,
+ activeColor,
+ ...props
+}: ButtonProps & {
+ ref?: React.Ref
+ active?: boolean
+ big?: boolean
+ color?: string
+ activeColor?: string
+}) {
+ const t = useTheme()
+ const playHaptic = useHaptics()
+
+ const ctx = useMemo(
+ () => ({
+ big,
+ active,
+ color: {
+ color: activeColor && active ? activeColor : t.palette.contrast_500,
+ },
+ }),
+ [big, active, activeColor, t.palette.contrast_500],
+ )
+
+ const style = useMemo(
+ () => [
+ a.flex_row,
+ a.align_center,
+ a.gap_xs,
+ a.bg_transparent,
+ {padding: 5},
+ ],
+ [],
+ )
+
+ const handlePress = useMemo(() => {
+ if (!onPress) return
+ return (evt: GestureResponderEvent) => {
+ playHaptic('Light')
+ onPress(evt)
+ }
+ }, [onPress, playHaptic])
+
+ const handleLongPress = useMemo(() => {
+ if (!onLongPress) return
+ return (evt: GestureResponderEvent) => {
+ playHaptic('Heavy')
+ onLongPress(evt)
+ }
+ }, [onLongPress, playHaptic])
+
+ return (
+
+ {typeof children === 'function' ? (
+ args => (
+
+ {children(args)}
+
+ )
+ ) : (
+
+ {children}
+
+ )}
+
+ )
+}
+
+export function PostControlButtonIcon({
+ icon: Comp,
+}: {
+ icon: React.ComponentType
+}) {
+ const {big, color} = useContext(PostControlContext)
+
+ return
+}
+
+export function PostControlButtonText({style, ...props}: TextProps) {
+ const {big, active, color} = useContext(PostControlContext)
+
+ return (
+
+ )
+}
diff --git a/src/view/com/util/forms/PostDropdownBtnMenuItems.tsx b/src/components/PostControls/PostMenu/PostMenuItems.tsx
similarity index 77%
rename from src/view/com/util/forms/PostDropdownBtnMenuItems.tsx
rename to src/components/PostControls/PostMenu/PostMenuItems.tsx
index 59077dd647..01ddd0bcfc 100644
--- a/src/view/com/util/forms/PostDropdownBtnMenuItems.tsx
+++ b/src/components/PostControls/PostMenu/PostMenuItems.tsx
@@ -1,4 +1,4 @@
-import React, {memo, useCallback} from 'react'
+import {memo, useMemo} from 'react'
import {
Platform,
type PressableProps,
@@ -7,33 +7,35 @@ import {
} from 'react-native'
import * as Clipboard from 'expo-clipboard'
import {
- AppBskyFeedDefs,
+ type AppBskyFeedDefs,
AppBskyFeedPost,
- AppBskyFeedThreadgate,
+ type AppBskyFeedThreadgate,
AtUri,
- RichText as RichTextAPI,
+ type RichText as RichTextAPI,
} from '@atproto/api'
-import {msg, Trans} from '@lingui/macro'
+import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useNavigation} from '@react-navigation/native'
+import {IS_INTERNAL} from '#/lib/app-info'
+import {DISCOVER_DEBUG_DIDS} from '#/lib/constants'
import {useOpenLink} from '#/lib/hooks/useOpenLink'
import {getCurrentRoute} from '#/lib/routes/helpers'
import {makeProfileLink} from '#/lib/routes/links'
-import {CommonNavigatorParams, NavigationProp} from '#/lib/routes/types'
-import {shareText, shareUrl} from '#/lib/sharing'
-import {logEvent} from '#/lib/statsig/statsig'
+import {
+ type CommonNavigatorParams,
+ type NavigationProp,
+} from '#/lib/routes/types'
+import {logEvent, useGate} from '#/lib/statsig/statsig'
import {richTextToString} from '#/lib/strings/rich-text-helpers'
import {toShareUrl} from '#/lib/strings/url-helpers'
import {getTranslatorLink} from '#/locale/helpers'
import {logger} from '#/logger'
-import {isWeb} from '#/platform/detection'
-import {Shadow} from '#/state/cache/post-shadow'
+import {type Shadow} from '#/state/cache/post-shadow'
import {useProfileShadow} from '#/state/cache/profile-shadow'
import {useFeedFeedbackContext} from '#/state/feed-feedback'
import {useLanguagePrefs} from '#/state/preferences'
import {useHiddenPosts, useHiddenPostsApi} from '#/state/preferences'
-import {useDevModeEnabled} from '#/state/preferences/dev-mode'
import {usePinnedPostMutation} from '#/state/queries/pinned-post'
import {
usePostDeleteMutation,
@@ -46,21 +48,18 @@ import {
useProfileMuteMutationQueue,
} from '#/state/queries/profile'
import {useToggleReplyVisibilityMutation} from '#/state/queries/threadgate'
-import {useSession} from '#/state/session'
+import {useRequireAuth, useSession} from '#/state/session'
import {useMergedThreadgateHiddenReplies} from '#/state/threadgate-hidden-replies'
-import {useBreakpoints} from '#/alf'
+import * as Toast from '#/view/com/util/Toast'
import {useDialogControl} from '#/components/Dialog'
import {useGlobalDialogsControlContext} from '#/components/dialogs/Context'
-import {EmbedDialog} from '#/components/dialogs/Embed'
import {
PostInteractionSettingsDialog,
usePrefetchPostInteractionSettings,
} from '#/components/dialogs/PostInteractionSettingsDialog'
-import {SendViaChatDialog} from '#/components/dms/dialogs/ShareViaChatDialog'
-import {ArrowOutOfBox_Stroke2_Corner0_Rounded as Share} from '#/components/icons/ArrowOutOfBox'
+import {Atom_Stroke2_Corner0_Rounded as AtomIcon} from '#/components/icons/Atom'
import {BubbleQuestion_Stroke2_Corner0_Rounded as Translate} from '#/components/icons/Bubble'
import {Clipboard_Stroke2_Corner2_Rounded as ClipboardIcon} from '#/components/icons/Clipboard'
-import {CodeBrackets_Stroke2_Corner0_Rounded as CodeBrackets} from '#/components/icons/CodeBrackets'
import {
EmojiSad_Stroke2_Corner0_Rounded as EmojiSad,
EmojiSmile_Stroke2_Corner0_Rounded as EmojiSmile,
@@ -70,7 +69,6 @@ import {EyeSlash_Stroke2_Corner0_Rounded as EyeSlash} from '#/components/icons/E
import {Filter_Stroke2_Corner0_Rounded as Filter} from '#/components/icons/Filter'
import {Mute_Stroke2_Corner0_Rounded as MuteIcon} from '#/components/icons/Mute'
import {Mute_Stroke2_Corner0_Rounded as Mute} from '#/components/icons/Mute'
-import {PaperPlane_Stroke2_Corner0_Rounded as Send} from '#/components/icons/PaperPlane'
import {PersonX_Stroke2_Corner0_Rounded as PersonX} from '#/components/icons/Person'
import {Pin_Stroke2_Corner0_Rounded as PinIcon} from '#/components/icons/Pin'
import {SettingsGear2_Stroke2_Corner0_Rounded as Gear} from '#/components/icons/SettingsGear2'
@@ -85,19 +83,21 @@ import {
useReportDialogControl,
} from '#/components/moderation/ReportDialog'
import * as Prompt from '#/components/Prompt'
-import * as Toast from '../Toast'
+import * as bsky from '#/types/bsky'
-let PostDropdownMenuItems = ({
+let PostMenuItems = ({
post,
postFeedContext,
+ postReqId,
record,
richText,
- timestamp,
threadgateRecord,
+ onShowLess,
}: {
testID: string
post: Shadow
postFeedContext: string | undefined
+ postReqId: string | undefined
record: AppBskyFeedPost.Record
richText: RichTextAPI
style?: StyleProp
@@ -105,14 +105,15 @@ let PostDropdownMenuItems = ({
size?: 'lg' | 'md' | 'sm'
timestamp: string
threadgateRecord?: AppBskyFeedThreadgate.Record
+ onShowLess?: (interaction: AppBskyFeedDefs.Interaction) => void
}): React.ReactNode => {
const {hasSession, currentAccount} = useSession()
- const {gtMobile} = useBreakpoints()
const {_} = useLingui()
const langPrefs = useLanguagePrefs()
const {mutateAsync: deletePostMutate} = usePostDeleteMutation()
const {mutateAsync: pinPostMutate, isPending: isPinPending} =
usePinnedPostMutation()
+ const requireSignIn = useRequireAuth()
const hiddenPosts = useHiddenPosts()
const {hidePost} = useHiddenPostsApi()
const feedFeedback = useFeedFeedbackContext()
@@ -123,20 +124,16 @@ let PostDropdownMenuItems = ({
const reportDialogControl = useReportDialogControl()
const deletePromptControl = useDialogControl()
const hidePromptControl = useDialogControl()
- const loggedOutWarningPromptControl = useDialogControl()
- const embedPostControl = useDialogControl()
- const sendViaChatControl = useDialogControl()
const postInteractionSettingsDialogControl = useDialogControl()
const quotePostDetachConfirmControl = useDialogControl()
const hideReplyConfirmControl = useDialogControl()
const {mutateAsync: toggleReplyVisibility} =
useToggleReplyVisibilityMutation()
- const [devModeEnabled] = useDevModeEnabled()
const postUri = post.uri
const postCid = post.cid
const postAuthor = useProfileShadow(post.author)
- const quoteEmbed = React.useMemo(() => {
+ const quoteEmbed = useMemo(() => {
if (!currentAccount || !post.embed) return
return getMaybeDetachedQuoteEmbed({
viewerDid: currentAccount.did,
@@ -170,7 +167,7 @@ let PostDropdownMenuItems = ({
rootPostUri: rootUri,
})
- const href = React.useMemo(() => {
+ const href = useMemo(() => {
const urip = new AtUri(postUri)
return makeProfileLink(postAuthor, 'post', urip.rkey)
}, [postUri, postAuthor])
@@ -180,7 +177,7 @@ let PostDropdownMenuItems = ({
langPrefs.primaryLanguage,
)
- const onDeletePost = React.useCallback(() => {
+ const onDeletePost = () => {
deletePostMutate({uri: postUri}).then(
() => {
Toast.show(_(msg({message: 'Post deleted', context: 'toast'})))
@@ -206,18 +203,9 @@ let PostDropdownMenuItems = ({
Toast.show(_(msg`Failed to delete post, please try again`), 'xmark')
},
)
- }, [
- navigation,
- postUri,
- deletePostMutate,
- postAuthor,
- currentAccount,
- isAuthor,
- href,
- _,
- ])
+ }
- const onToggleThreadMute = React.useCallback(() => {
+ const onToggleThreadMute = () => {
try {
if (isThreadMuted) {
unmuteThread()
@@ -237,66 +225,72 @@ let PostDropdownMenuItems = ({
)
}
}
- }, [isThreadMuted, unmuteThread, _, muteThread])
+ }
- const onCopyPostText = React.useCallback(() => {
+ const onCopyPostText = () => {
const str = richTextToString(richText, true)
Clipboard.setStringAsync(str)
Toast.show(_(msg`Copied to clipboard`), 'clipboard-check')
- }, [_, richText])
+ }
- const onPressTranslate = React.useCallback(async () => {
+ const onPressTranslate = async () => {
await openLink(translatorUrl, true)
- }, [openLink, translatorUrl])
- const onHidePost = React.useCallback(() => {
+ if (
+ bsky.dangerousIsType(
+ post.record,
+ AppBskyFeedPost.isRecord,
+ )
+ ) {
+ logger.metric(
+ 'translate',
+ {
+ sourceLanguages: post.record.langs ?? [],
+ targetLanguage: langPrefs.primaryLanguage,
+ textLength: post.record.text.length,
+ },
+ {statsig: false},
+ )
+ }
+ }
+
+ const onHidePost = () => {
hidePost({uri: postUri})
- }, [postUri, hidePost])
+ }
- const hideInPWI = React.useMemo(() => {
- return !!postAuthor.labels?.find(
- label => label.val === '!no-unauthenticated',
- )
- }, [postAuthor])
+ const hideInPWI = !!postAuthor.labels?.find(
+ label => label.val === '!no-unauthenticated',
+ )
- const showLoggedOutWarning =
- postAuthor.did !== currentAccount?.did && hideInPWI
-
- const onSharePost = React.useCallback(() => {
- const url = toShareUrl(href)
- shareUrl(url)
- }, [href])
-
- const onPressShowMore = React.useCallback(() => {
+ const onPressShowMore = () => {
feedFeedback.sendInteraction({
event: 'app.bsky.feed.defs#requestMore',
item: postUri,
feedContext: postFeedContext,
+ reqId: postReqId,
})
Toast.show(_(msg({message: 'Feedback sent!', context: 'toast'})))
- }, [feedFeedback, postUri, postFeedContext, _])
+ }
- const onPressShowLess = React.useCallback(() => {
+ const onPressShowLess = () => {
feedFeedback.sendInteraction({
event: 'app.bsky.feed.defs#requestLess',
item: postUri,
feedContext: postFeedContext,
+ reqId: postReqId,
})
- Toast.show(_(msg({message: 'Feedback sent!', context: 'toast'})))
- }, [feedFeedback, postUri, postFeedContext, _])
-
- const onSelectChatToShareTo = React.useCallback(
- (conversation: string) => {
- navigation.navigate('MessagesConversation', {
- conversation,
- embed: postUri,
+ if (onShowLess) {
+ onShowLess({
+ item: postUri,
+ feedContext: postFeedContext,
})
- },
- [navigation, postUri],
- )
+ } else {
+ Toast.show(_(msg({message: 'Feedback sent!', context: 'toast'})))
+ }
+ }
- const onToggleQuotePostAttachment = React.useCallback(async () => {
+ const onToggleQuotePostAttachment = async () => {
if (!quoteEmbed) return
const action = quoteEmbed.isDetached ? 'reattach' : 'detach'
@@ -319,15 +313,14 @@ let PostDropdownMenuItems = ({
)
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 () => {
+ const onToggleReplyVisibility = async () => {
// TODO no threadgate?
if (!canHideReplyForEveryone) return
@@ -351,25 +344,18 @@ let PostDropdownMenuItems = ({
)
logger.error(`Failed to ${action} reply`, {safeMessage: e.message})
}
- }, [
- _,
- isReplyHiddenByThreadgate,
- rootUri,
- postUri,
- canHideReplyForEveryone,
- toggleReplyVisibility,
- ])
+ }
- const onPressPin = useCallback(() => {
+ const onPressPin = () => {
logEvent(isPinned ? 'post:unpin' : 'post:pin', {})
pinPostMutate({
postUri,
postCid,
action: isPinned ? 'unpin' : 'pin',
})
- }, [isPinned, pinPostMutate, postCid, postUri])
+ }
- const onBlockAuthor = useCallback(async () => {
+ const onBlockAuthor = async () => {
try {
await queueBlock()
Toast.show(_(msg({message: 'Account blocked', context: 'toast'})))
@@ -379,9 +365,9 @@ let PostDropdownMenuItems = ({
Toast.show(_(msg`There was an issue! ${e.toString()}`), 'xmark')
}
}
- }, [_, queueBlock])
+ }
- const onMuteAuthor = useCallback(async () => {
+ const onMuteAuthor = async () => {
if (postAuthor.viewer?.muted) {
try {
await queueUnmute()
@@ -403,15 +389,22 @@ let PostDropdownMenuItems = ({
}
}
}
- }, [_, queueMute, queueUnmute, postAuthor.viewer?.muted])
+ }
- const onShareATURI = useCallback(() => {
- shareText(postUri)
- }, [postUri])
+ const onReportMisclassification = () => {
+ const url = `https://docs.google.com/forms/d/e/1FAIpQLSd0QPqhNFksDQf1YyOos7r1ofCLvmrKAH1lU042TaS3GAZaWQ/viewform?entry.1756031717=${toShareUrl(
+ href,
+ )}`
+ openLink(url)
+ }
- const onShareAuthorDID = useCallback(() => {
- shareText(postAuthor.did)
- }, [postAuthor.did])
+ const onSignIn = () => requireSignIn(() => {})
+
+ const gate = useGate()
+ const isDiscoverDebugUser =
+ IS_INTERNAL ||
+ DISCOVER_DEBUG_DIDS[currentAccount?.did || ''] ||
+ gate('debug_show_feedcontext')
return (
<>
@@ -444,7 +437,7 @@ let PostDropdownMenuItems = ({
)}
- {(!hideInPWI || hasSession) && (
+ {!hideInPWI || hasSession ? (
<>
>
- )}
-
- {hasSession && (
+ ) : (
sendViaChatControl.open()}>
-
- Send via direct message
-
-
-
- )}
-
- {
- if (showLoggedOutWarning) {
- loggedOutWarningPromptControl.open()
- } else {
- onSharePost()
- }
- }}>
-
- {isWeb ? _(msg`Copy link to post`) : _(msg`Share`)}
-
-
-
-
- {canEmbed && (
- embedPostControl.open()}>
- {_(msg`Embed post`)}
-
+ testID="postDropdownSignInBtn"
+ label={_(msg`Sign in to view post`)}
+ onPress={onSignIn}>
+ {_(msg`Sign in to view post`)}
+
)}
@@ -526,6 +489,16 @@ let PostDropdownMenuItems = ({
>
)}
+ {isDiscoverDebugUser && (
+
+ {_(msg`Assign topic for algo`)}
+
+
+ )}
+
{hasSession && (
<>
@@ -714,28 +687,6 @@ let PostDropdownMenuItems = ({
>
)}
-
- {devModeEnabled ? (
- <>
-
-
-
- {_(msg`Copy post at:// URI`)}
-
-
-
- {_(msg`Copy author DID`)}
-
-
-
- >
- ) : null}
>
)}
@@ -769,32 +720,6 @@ let PostDropdownMenuItems = ({
}}
/>
-
-
- {canEmbed && (
-
- )}
-
-
-
)
}
-PostDropdownMenuItems = memo(PostDropdownMenuItems)
-export {PostDropdownMenuItems}
+PostMenuItems = memo(PostMenuItems)
+export {PostMenuItems}
diff --git a/src/view/com/util/forms/PostDropdownBtn.tsx b/src/components/PostControls/PostMenu/index.tsx
similarity index 54%
rename from src/view/com/util/forms/PostDropdownBtn.tsx
rename to src/components/PostControls/PostMenu/index.tsx
index fd577605a9..63aa460fbd 100644
--- a/src/view/com/util/forms/PostDropdownBtn.tsx
+++ b/src/components/PostControls/PostMenu/index.tsx
@@ -1,55 +1,47 @@
-import React, {memo, useMemo, useState} from 'react'
+import {memo, useMemo, useState} from 'react'
import {
- Pressable,
- type PressableProps,
- type StyleProp,
- type ViewStyle,
-} from 'react-native'
-import {
- AppBskyFeedDefs,
- AppBskyFeedPost,
- AppBskyFeedThreadgate,
- RichText as RichTextAPI,
+ type AppBskyFeedDefs,
+ type AppBskyFeedPost,
+ type AppBskyFeedThreadgate,
+ type RichText as RichTextAPI,
} from '@atproto/api'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
+import type React from 'react'
-import {useTheme} from '#/lib/ThemeContext'
-import {Shadow} from '#/state/cache/post-shadow'
-import {atoms as a, useTheme as useAlf} from '#/alf'
+import {type Shadow} from '#/state/cache/post-shadow'
+import {EventStopper} from '#/view/com/util/EventStopper'
import {DotGrid_Stroke2_Corner0_Rounded as DotsHorizontal} from '#/components/icons/DotGrid'
import {useMenuControl} from '#/components/Menu'
import * as Menu from '#/components/Menu'
-import {EventStopper} from '../EventStopper'
-import {PostDropdownMenuItems} from './PostDropdownBtnMenuItems'
+import {PostControlButton, PostControlButtonIcon} from '../PostControlButton'
+import {PostMenuItems} from './PostMenuItems'
-let PostDropdownBtn = ({
+let PostMenuButton = ({
testID,
post,
postFeedContext,
+ postReqId,
+ big,
record,
richText,
- style,
- hitSlop,
- size,
timestamp,
threadgateRecord,
+ onShowLess,
}: {
testID: string
post: Shadow
postFeedContext: string | undefined
+ postReqId: string | undefined
+ big?: boolean
record: AppBskyFeedPost.Record
richText: RichTextAPI
- style?: StyleProp
- hitSlop?: PressableProps['hitSlop']
- size?: 'lg' | 'md' | 'sm'
timestamp: string
threadgateRecord?: AppBskyFeedThreadgate.Record
+ onShowLess?: (interaction: AppBskyFeedDefs.Interaction) => void
}): React.ReactNode => {
- const theme = useTheme()
- const alf = useAlf()
const {_} = useLingui()
- const defaultCtrlColor = theme.palette.default.postCtrl
+
const menuControl = useMenuControl()
const [hasBeenOpen, setHasBeenOpen] = useState(false)
const lazyMenuControl = useMemo(
@@ -68,38 +60,30 @@ let PostDropdownBtn = ({
- {({props, state}) => {
+ {({props}) => {
return (
-
-
-
+
+
+
)
}}
{hasBeenOpen && (
// Lazily initialized. Once mounted, they stay mounted.
-
)}
@@ -107,5 +91,5 @@ let PostDropdownBtn = ({
)
}
-PostDropdownBtn = memo(PostDropdownBtn)
-export {PostDropdownBtn}
+PostMenuButton = memo(PostMenuButton)
+export {PostMenuButton}
diff --git a/src/view/com/util/post-ctrls/RepostButton.tsx b/src/components/PostControls/RepostButton.tsx
similarity index 74%
rename from src/view/com/util/post-ctrls/RepostButton.tsx
rename to src/components/PostControls/RepostButton.tsx
index ca1647a991..db63a7383a 100644
--- a/src/view/com/util/post-ctrls/RepostButton.tsx
+++ b/src/components/PostControls/RepostButton.tsx
@@ -1,18 +1,22 @@
-import React, {memo, useCallback} from 'react'
+import {memo, useCallback} from 'react'
import {View} from 'react-native'
import {msg, plural, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
-import {POST_CTRL_HITSLOP} from '#/lib/constants'
import {useHaptics} from '#/lib/haptics'
import {useRequireAuth} from '#/state/session'
+import {formatCount} from '#/view/com/util/numeric/format'
import {atoms as a, useTheme} from '#/alf'
import {Button, ButtonText} from '#/components/Button'
import * as Dialog from '#/components/Dialog'
import {CloseQuote_Stroke2_Corner1_Rounded as Quote} from '#/components/icons/Quote'
import {Repost_Stroke2_Corner2_Rounded as Repost} from '#/components/icons/Repost'
import {Text} from '#/components/Typography'
-import {formatCount} from '../numeric/format'
+import {
+ PostControlButton,
+ PostControlButtonIcon,
+ PostControlButtonText,
+} from './PostControlButton'
interface Props {
isReposted: boolean
@@ -35,65 +39,46 @@ let RepostButton = ({
const {_, i18n} = useLingui()
const requireAuth = useRequireAuth()
const dialogControl = Dialog.useDialogControl()
- const playHaptic = useHaptics()
- const color = React.useMemo(
- () => ({
- color: isReposted ? t.palette.positive_600 : t.palette.contrast_500,
- }),
- [t, isReposted],
- )
+
return (
<>
- {
- playHaptic('Light')
- requireAuth(() => dialogControl.open())
- }}
- onLongPress={() => {
- playHaptic('Heavy')
- requireAuth(() => onQuote())
- }}
- style={[
- a.flex_row,
- a.align_center,
- a.gap_xs,
- a.bg_transparent,
- {padding: 5},
- ]}
- hoverStyle={t.atoms.bg_contrast_25}
+ active={isReposted}
+ activeColor={t.palette.positive_600}
+ big={big}
+ onPress={() => requireAuth(() => dialogControl.open())}
+ onLongPress={() => requireAuth(() => onQuote())}
label={
isReposted
? _(
- msg`Undo repost (${plural(repostCount || 0, {
- one: '# repost',
- other: '# reposts',
- })})`,
+ msg({
+ message: `Undo repost (${plural(repostCount || 0, {
+ one: '# repost',
+ other: '# reposts',
+ })})`,
+ comment:
+ 'Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun',
+ }),
)
: _(
- msg`Repost (${plural(repostCount || 0, {
- one: '# repost',
- other: '# reposts',
- })})`,
+ msg({
+ message: `Repost (${plural(repostCount || 0, {
+ one: '# repost',
+ other: '# reposts',
+ })})`,
+ comment:
+ 'Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form',
+ }),
)
- }
- shape="round"
- variant="ghost"
- color="secondary"
- hitSlop={POST_CTRL_HITSLOP}>
-
- {typeof repostCount !== 'undefined' && repostCount > 0 ? (
-
+ }>
+
+ {typeof repostCount !== 'undefined' && repostCount > 0 && (
+
{formatCount(i18n, repostCount)}
-
- ) : undefined}
-
+
+ )}
+
diff --git a/src/view/com/util/post-ctrls/RepostButton.web.tsx b/src/components/PostControls/RepostButton.web.tsx
similarity index 51%
rename from src/view/com/util/post-ctrls/RepostButton.web.tsx
rename to src/components/PostControls/RepostButton.web.tsx
index 54119b532d..48720b753b 100644
--- a/src/view/com/util/post-ctrls/RepostButton.web.tsx
+++ b/src/components/PostControls/RepostButton.web.tsx
@@ -1,18 +1,19 @@
-import React from 'react'
-import {Pressable, View} from 'react-native'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useRequireAuth} from '#/state/session'
import {useSession} from '#/state/session'
-import {atoms as a, useTheme} from '#/alf'
-import {Button} from '#/components/Button'
+import {EventStopper} from '#/view/com/util/EventStopper'
+import {formatCount} from '#/view/com/util/numeric/format'
+import {useTheme} from '#/alf'
import {CloseQuote_Stroke2_Corner1_Rounded as Quote} from '#/components/icons/Quote'
import {Repost_Stroke2_Corner2_Rounded as Repost} from '#/components/icons/Repost'
import * as Menu from '#/components/Menu'
-import {Text} from '#/components/Typography'
-import {EventStopper} from '../EventStopper'
-import {formatCount} from '../numeric/format'
+import {
+ PostControlButton,
+ PostControlButtonIcon,
+ PostControlButtonText,
+} from './PostControlButton'
interface Props {
isReposted: boolean
@@ -32,38 +33,30 @@ export const RepostButton = ({
embeddingDisabled,
}: Props) => {
const t = useTheme()
- const {_} = useLingui()
+ const {_, i18n} = useLingui()
const {hasSession} = useSession()
const requireAuth = useRequireAuth()
- const color = React.useMemo(
- () => ({
- color: isReposted ? t.palette.positive_600 : t.palette.contrast_500,
- }),
- [t, isReposted],
- )
-
return hasSession ? (
- {({props, state}) => {
+ {({props}) => {
return (
-
-
-
+
+
+ {typeof repostCount !== 'undefined' && repostCount > 0 && (
+
+ {formatCount(i18n, repostCount)}
+
+ )}
+
)
}}
@@ -97,51 +90,18 @@ export const RepostButton = ({
) : (
- {
- requireAuth(() => {})
- }}
+ requireAuth(() => {})}
+ active={isReposted}
+ activeColor={t.palette.positive_600}
label={_(msg`Repost or quote post`)}
- style={{padding: 0}}
- hoverStyle={t.atoms.bg_contrast_25}
- shape="round">
-
-
- )
-}
-
-const RepostInner = ({
- isReposted,
- color,
- repostCount,
- big,
-}: {
- isReposted: boolean
- color: {color: string}
- repostCount?: number
- big?: boolean
-}) => {
- const {i18n} = useLingui()
- return (
-
-
- {typeof repostCount !== 'undefined' && repostCount > 0 ? (
-
+ big={big}>
+
+ {typeof repostCount !== 'undefined' && repostCount > 0 && (
+
{formatCount(i18n, repostCount)}
-
- ) : undefined}
-
+
+ )}
+
)
}
diff --git a/src/components/PostControls/ShareMenu/RecentChats.tsx b/src/components/PostControls/ShareMenu/RecentChats.tsx
new file mode 100644
index 0000000000..ca5d0029ec
--- /dev/null
+++ b/src/components/PostControls/ShareMenu/RecentChats.tsx
@@ -0,0 +1,200 @@
+import {ScrollView, View} from 'react-native'
+import {moderateProfile, type ModerationOpts} from '@atproto/api'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+import {useNavigation} from '@react-navigation/native'
+
+import {type NavigationProp} from '#/lib/routes/types'
+import {sanitizeDisplayName} from '#/lib/strings/display-names'
+import {sanitizeHandle} from '#/lib/strings/handles'
+import {logger} from '#/logger'
+import {useModerationOpts} from '#/state/preferences/moderation-opts'
+import {useListConvosQuery} from '#/state/queries/messages/list-conversations'
+import {useSession} from '#/state/session'
+import {UserAvatar} from '#/view/com/util/UserAvatar'
+import {atoms as a, tokens, useTheme} from '#/alf'
+import {Button} from '#/components/Button'
+import {useDialogContext} from '#/components/Dialog'
+import {Text} from '#/components/Typography'
+import {useSimpleVerificationState} from '#/components/verification'
+import {VerificationCheck} from '#/components/verification/VerificationCheck'
+import type * as bsky from '#/types/bsky'
+
+export function RecentChats({postUri}: {postUri: string}) {
+ const control = useDialogContext()
+ const {_} = useLingui()
+ const {currentAccount} = useSession()
+ const {data} = useListConvosQuery({status: 'accepted'})
+ const convos = data?.pages[0]?.convos?.slice(0, 10)
+ const moderationOpts = useModerationOpts()
+ const navigation = useNavigation()
+
+ const onSelectChat = (convoId: string) => {
+ control.close(() => {
+ logger.metric('share:press:recentDm', {}, {statsig: true})
+ navigation.navigate('MessagesConversation', {
+ conversation: convoId,
+ embed: postUri,
+ })
+ })
+ }
+
+ if (!moderationOpts) return null
+
+ return (
+
+
+ {convos && convos.length > 0 ? (
+ convos.map(convo => {
+ const otherMember = convo.members.find(
+ member => member.did !== currentAccount?.did,
+ )
+
+ if (!otherMember || otherMember.handle === 'missing.invalid')
+ return null
+
+ return (
+ onSelectChat(convo.id)}
+ moderationOpts={moderationOpts}
+ />
+ )
+ })
+ ) : (
+ <>
+
+
+
+
+
+ >
+ )}
+
+ {convos && convos.length === 0 && }
+
+ )
+}
+
+const WIDTH = 80
+
+function RecentChatItem({
+ profile,
+ onPress,
+ moderationOpts,
+}: {
+ profile: bsky.profile.AnyProfileView
+ onPress: () => void
+ moderationOpts: ModerationOpts
+}) {
+ const {_} = useLingui()
+ const t = useTheme()
+
+ const moderation = moderateProfile(profile, moderationOpts)
+ const name = sanitizeDisplayName(
+ profile.displayName || sanitizeHandle(profile.handle),
+ moderation.ui('displayName'),
+ )
+ const verification = useSimpleVerificationState({profile})
+
+ return (
+
+
+
+
+ {name}
+
+ {verification.showBadge && (
+
+
+
+ )}
+
+
+ )
+}
+
+function ConvoSkeleton() {
+ const t = useTheme()
+ return (
+
+
+
+
+ )
+}
+
+function NoConvos() {
+ const t = useTheme()
+
+ return (
+
+
+
+ Start a conversation, and it will appear here.
+
+
+ )
+}
diff --git a/src/components/PostControls/ShareMenu/ShareMenuItems.tsx b/src/components/PostControls/ShareMenu/ShareMenuItems.tsx
new file mode 100644
index 0000000000..1c04f3174c
--- /dev/null
+++ b/src/components/PostControls/ShareMenu/ShareMenuItems.tsx
@@ -0,0 +1,176 @@
+import {memo, useMemo} from 'react'
+import * as ExpoClipboard from 'expo-clipboard'
+import {AtUri} from '@atproto/api'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+import {useNavigation} from '@react-navigation/native'
+
+import {makeProfileLink} from '#/lib/routes/links'
+import {type NavigationProp} from '#/lib/routes/types'
+import {shareText, shareUrl} from '#/lib/sharing'
+import {toShareUrl} from '#/lib/strings/url-helpers'
+import {logger} from '#/logger'
+import {isIOS} from '#/platform/detection'
+import {useProfileShadow} from '#/state/cache/profile-shadow'
+import {useSession} from '#/state/session'
+import * as Toast from '#/view/com/util/Toast'
+import {atoms as a} from '#/alf'
+import {Admonition} from '#/components/Admonition'
+import {useDialogControl} from '#/components/Dialog'
+import {SendViaChatDialog} from '#/components/dms/dialogs/ShareViaChatDialog'
+import {ArrowOutOfBoxModified_Stroke2_Corner2_Rounded as ArrowOutOfBoxIcon} from '#/components/icons/ArrowOutOfBox'
+import {ChainLink_Stroke2_Corner0_Rounded as ChainLinkIcon} from '#/components/icons/ChainLink'
+import {Clipboard_Stroke2_Corner2_Rounded as ClipboardIcon} from '#/components/icons/Clipboard'
+import {PaperPlane_Stroke2_Corner0_Rounded as PaperPlaneIcon} from '#/components/icons/PaperPlane'
+import * as Menu from '#/components/Menu'
+import {useDevMode} from '#/storage/hooks/dev-mode'
+import {RecentChats} from './RecentChats'
+import {type ShareMenuItemsProps} from './ShareMenuItems.types'
+
+let ShareMenuItems = ({
+ post,
+ onShare: onShareProp,
+}: ShareMenuItemsProps): React.ReactNode => {
+ const {hasSession} = useSession()
+ const {_} = useLingui()
+ const navigation = useNavigation()
+ const sendViaChatControl = useDialogControl()
+ const [devModeEnabled] = useDevMode()
+
+ const postUri = post.uri
+ const postAuthor = useProfileShadow(post.author)
+
+ const href = useMemo(() => {
+ const urip = new AtUri(postUri)
+ return makeProfileLink(postAuthor, 'post', urip.rkey)
+ }, [postUri, postAuthor])
+
+ const hideInPWI = useMemo(() => {
+ return !!postAuthor.labels?.find(
+ label => label.val === '!no-unauthenticated',
+ )
+ }, [postAuthor])
+
+ const onSharePost = () => {
+ logger.metric('share:press:nativeShare', {}, {statsig: true})
+ const url = toShareUrl(href)
+ shareUrl(url)
+ onShareProp()
+ }
+
+ const onCopyLink = async () => {
+ logger.metric('share:press:copyLink', {}, {statsig: true})
+ const url = toShareUrl(href)
+ if (isIOS) {
+ // iOS only
+ await ExpoClipboard.setUrlAsync(url)
+ } else {
+ await ExpoClipboard.setStringAsync(url)
+ }
+ Toast.show(_(msg`Copied to clipboard`), 'clipboard-check')
+ onShareProp()
+ }
+
+ const onSelectChatToShareTo = (conversation: string) => {
+ navigation.navigate('MessagesConversation', {
+ conversation,
+ embed: postUri,
+ })
+ }
+
+ const onShareATURI = () => {
+ shareText(postUri)
+ }
+
+ const onShareAuthorDID = () => {
+ shareText(postAuthor.did)
+ }
+
+ return (
+ <>
+
+ {hasSession && (
+
+
+
+
+ {
+ logger.metric('share:press:openDmSearch', {}, {statsig: true})
+ sendViaChatControl.open()
+ }}>
+
+ Send via direct message
+
+
+
+
+ )}
+
+
+
+
+ Share via...
+
+
+
+
+
+
+ Copy link to post
+
+
+
+
+
+ {hideInPWI && (
+
+
+
+ This post is only visible to logged-in users.
+
+
+
+ )}
+
+ {devModeEnabled && (
+
+
+
+ Share post at:// URI
+
+
+
+
+
+ Share author DID
+
+
+
+
+ )}
+
+
+
+ >
+ )
+}
+ShareMenuItems = memo(ShareMenuItems)
+export {ShareMenuItems}
diff --git a/src/components/PostControls/ShareMenu/ShareMenuItems.types.tsx b/src/components/PostControls/ShareMenu/ShareMenuItems.types.tsx
new file mode 100644
index 0000000000..5bc2a8fb6e
--- /dev/null
+++ b/src/components/PostControls/ShareMenu/ShareMenuItems.types.tsx
@@ -0,0 +1,22 @@
+import {type PressableProps, type StyleProp, type ViewStyle} from 'react-native'
+import {
+ type AppBskyFeedDefs,
+ type AppBskyFeedPost,
+ type AppBskyFeedThreadgate,
+ type RichText as RichTextAPI,
+} from '@atproto/api'
+
+import {type Shadow} from '#/state/cache/post-shadow'
+
+export interface ShareMenuItemsProps {
+ testID: string
+ post: Shadow
+ record: AppBskyFeedPost.Record
+ richText: RichTextAPI
+ style?: StyleProp
+ hitSlop?: PressableProps['hitSlop']
+ size?: 'lg' | 'md' | 'sm'
+ timestamp: string
+ threadgateRecord?: AppBskyFeedThreadgate.Record
+ onShare: () => void
+}
diff --git a/src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx b/src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx
new file mode 100644
index 0000000000..8d52a2fdf8
--- /dev/null
+++ b/src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx
@@ -0,0 +1,181 @@
+import {memo, useMemo} from 'react'
+import {AtUri} from '@atproto/api'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+import {useNavigation} from '@react-navigation/native'
+import type React from 'react'
+
+import {makeProfileLink} from '#/lib/routes/links'
+import {type NavigationProp} from '#/lib/routes/types'
+import {shareText, shareUrl} from '#/lib/sharing'
+import {toShareUrl} from '#/lib/strings/url-helpers'
+import {logger} from '#/logger'
+import {isWeb} from '#/platform/detection'
+import {useProfileShadow} from '#/state/cache/profile-shadow'
+import {useSession} from '#/state/session'
+import {useBreakpoints} from '#/alf'
+import {useDialogControl} from '#/components/Dialog'
+import {EmbedDialog} from '#/components/dialogs/Embed'
+import {SendViaChatDialog} from '#/components/dms/dialogs/ShareViaChatDialog'
+import {ChainLink_Stroke2_Corner0_Rounded as ChainLinkIcon} from '#/components/icons/ChainLink'
+import {Clipboard_Stroke2_Corner2_Rounded as ClipboardIcon} from '#/components/icons/Clipboard'
+import {CodeBrackets_Stroke2_Corner0_Rounded as CodeBracketsIcon} from '#/components/icons/CodeBrackets'
+import {PaperPlane_Stroke2_Corner0_Rounded as Send} from '#/components/icons/PaperPlane'
+import * as Menu from '#/components/Menu'
+import {useDevMode} from '#/storage/hooks/dev-mode'
+import {type ShareMenuItemsProps} from './ShareMenuItems.types'
+
+let ShareMenuItems = ({
+ post,
+ record,
+ timestamp,
+ onShare: onShareProp,
+}: ShareMenuItemsProps): React.ReactNode => {
+ const {hasSession} = useSession()
+ const {gtMobile} = useBreakpoints()
+ const {_} = useLingui()
+ const navigation = useNavigation()
+ const embedPostControl = useDialogControl()
+ const sendViaChatControl = useDialogControl()
+ const [devModeEnabled] = useDevMode()
+
+ const postUri = post.uri
+ const postCid = post.cid
+ const postAuthor = useProfileShadow(post.author)
+
+ const href = useMemo(() => {
+ const urip = new AtUri(postUri)
+ return makeProfileLink(postAuthor, 'post', urip.rkey)
+ }, [postUri, postAuthor])
+
+ const hideInPWI = useMemo(() => {
+ return !!postAuthor.labels?.find(
+ label => label.val === '!no-unauthenticated',
+ )
+ }, [postAuthor])
+
+ const onCopyLink = () => {
+ logger.metric('share:press:copyLink', {}, {statsig: true})
+ const url = toShareUrl(href)
+ shareUrl(url)
+ onShareProp()
+ }
+
+ const onSelectChatToShareTo = (conversation: string) => {
+ logger.metric('share:press:dmSelected', {}, {statsig: true})
+ navigation.navigate('MessagesConversation', {
+ conversation,
+ embed: postUri,
+ })
+ }
+
+ const canEmbed = isWeb && gtMobile && !hideInPWI
+
+ const onShareATURI = () => {
+ shareText(postUri)
+ }
+
+ const onShareAuthorDID = () => {
+ shareText(postAuthor.did)
+ }
+
+ const copyLinkItem = (
+
+
+ Copy link to post
+
+
+
+ )
+
+ return (
+ <>
+
+ {!hideInPWI && copyLinkItem}
+
+ {hasSession && (
+ {
+ logger.metric('share:press:openDmSearch', {}, {statsig: true})
+ sendViaChatControl.open()
+ }}>
+
+ Send via direct message
+
+
+
+ )}
+
+ {canEmbed && (
+ {
+ logger.metric('share:press:embed', {}, {statsig: true})
+ embedPostControl.open()
+ }}>
+ {_(msg`Embed post`)}
+
+
+ )}
+
+ {hideInPWI && (
+ <>
+ {hasSession && }
+ {copyLinkItem}
+
+ Note: This post is only visible to logged-in users.
+
+ >
+ )}
+
+ {devModeEnabled && (
+ <>
+
+
+
+ Copy post at:// URI
+
+
+
+
+
+ Copy author DID
+
+
+
+ >
+ )}
+
+
+ {canEmbed && (
+
+ )}
+
+
+ >
+ )
+}
+ShareMenuItems = memo(ShareMenuItems)
+export {ShareMenuItems}
diff --git a/src/components/PostControls/ShareMenu/index.tsx b/src/components/PostControls/ShareMenu/index.tsx
new file mode 100644
index 0000000000..d4ea18bb0c
--- /dev/null
+++ b/src/components/PostControls/ShareMenu/index.tsx
@@ -0,0 +1,119 @@
+import {memo, useMemo, useState} from 'react'
+import {
+ type AppBskyFeedDefs,
+ type AppBskyFeedPost,
+ type AppBskyFeedThreadgate,
+ AtUri,
+ type RichText as RichTextAPI,
+} from '@atproto/api'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+import type React from 'react'
+
+import {makeProfileLink} from '#/lib/routes/links'
+import {shareUrl} from '#/lib/sharing'
+import {useGate} from '#/lib/statsig/statsig'
+import {toShareUrl} from '#/lib/strings/url-helpers'
+import {logger} from '#/logger'
+import {type Shadow} from '#/state/cache/post-shadow'
+import {EventStopper} from '#/view/com/util/EventStopper'
+import {native} from '#/alf'
+import {ArrowOutOfBoxModified_Stroke2_Corner2_Rounded as ArrowOutOfBoxIcon} from '#/components/icons/ArrowOutOfBox'
+import {ArrowShareRight_Stroke2_Corner2_Rounded as ArrowShareRightIcon} from '#/components/icons/ArrowShareRight'
+import {useMenuControl} from '#/components/Menu'
+import * as Menu from '#/components/Menu'
+import {PostControlButton, PostControlButtonIcon} from '../PostControlButton'
+import {ShareMenuItems} from './ShareMenuItems'
+
+let ShareMenuButton = ({
+ testID,
+ post,
+ big,
+ record,
+ richText,
+ timestamp,
+ threadgateRecord,
+ onShare,
+}: {
+ testID: string
+ post: Shadow
+ big?: boolean
+ record: AppBskyFeedPost.Record
+ richText: RichTextAPI
+ timestamp: string
+ threadgateRecord?: AppBskyFeedThreadgate.Record
+ onShare: () => void
+}): React.ReactNode => {
+ const {_} = useLingui()
+ const gate = useGate()
+
+ const ShareIcon = gate('alt_share_icon')
+ ? ArrowShareRightIcon
+ : ArrowOutOfBoxIcon
+
+ const menuControl = useMenuControl()
+ const [hasBeenOpen, setHasBeenOpen] = useState(false)
+ const lazyMenuControl = useMemo(
+ () => ({
+ ...menuControl,
+ open() {
+ setHasBeenOpen(true)
+ // HACK. We need the state update to be flushed by the time
+ // menuControl.open() fires but RN doesn't expose flushSync.
+ setTimeout(menuControl.open)
+
+ logger.metric(
+ 'share:open',
+ {context: big ? 'thread' : 'feed'},
+ {statsig: true},
+ )
+ },
+ }),
+ [menuControl, setHasBeenOpen, big],
+ )
+
+ const onNativeLongPress = () => {
+ logger.metric('share:press:nativeShare', {}, {statsig: true})
+ const urip = new AtUri(post.uri)
+ const href = makeProfileLink(post.author, 'post', urip.rkey)
+ const url = toShareUrl(href)
+ shareUrl(url)
+ onShare()
+ }
+
+ return (
+
+
+
+ {({props}) => {
+ return (
+
+
+
+ )
+ }}
+
+ {hasBeenOpen && (
+ // Lazily initialized. Once mounted, they stay mounted.
+
+ )}
+
+
+ )
+}
+
+ShareMenuButton = memo(ShareMenuButton)
+export {ShareMenuButton}
diff --git a/src/components/PostControls/index.tsx b/src/components/PostControls/index.tsx
new file mode 100644
index 0000000000..f871cf3564
--- /dev/null
+++ b/src/components/PostControls/index.tsx
@@ -0,0 +1,302 @@
+import {memo, useState} from 'react'
+import {type StyleProp, View, type ViewStyle} from 'react-native'
+import {
+ type AppBskyFeedDefs,
+ type AppBskyFeedPost,
+ type AppBskyFeedThreadgate,
+ type RichText as RichTextAPI,
+} from '@atproto/api'
+import {msg, plural} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {CountWheel} from '#/lib/custom-animations/CountWheel'
+import {AnimatedLikeIcon} from '#/lib/custom-animations/LikeIcon'
+import {useHaptics} from '#/lib/haptics'
+import {useOpenComposer} from '#/lib/hooks/useOpenComposer'
+import {type Shadow} from '#/state/cache/types'
+import {useFeedFeedbackContext} from '#/state/feed-feedback'
+import {
+ usePostLikeMutationQueue,
+ usePostRepostMutationQueue,
+} from '#/state/queries/post'
+import {useRequireAuth} from '#/state/session'
+import {
+ ProgressGuideAction,
+ useProgressGuideControls,
+} from '#/state/shell/progress-guide'
+import {formatCount} from '#/view/com/util/numeric/format'
+import * as Toast from '#/view/com/util/Toast'
+import {atoms as a, useBreakpoints} from '#/alf'
+import {Bubble_Stroke2_Corner2_Rounded as Bubble} from '#/components/icons/Bubble'
+import {
+ PostControlButton,
+ PostControlButtonIcon,
+ PostControlButtonText,
+} from './PostControlButton'
+import {PostMenuButton} from './PostMenu'
+import {RepostButton} from './RepostButton'
+import {ShareMenuButton} from './ShareMenu'
+
+let PostControls = ({
+ big,
+ post,
+ record,
+ richText,
+ feedContext,
+ reqId,
+ style,
+ onPressReply,
+ onPostReply,
+ logContext,
+ threadgateRecord,
+ onShowLess,
+ viaRepost,
+}: {
+ big?: boolean
+ post: Shadow
+ record: AppBskyFeedPost.Record
+ richText: RichTextAPI
+ feedContext?: string | undefined
+ reqId?: string | undefined
+ style?: StyleProp
+ onPressReply: () => void
+ onPostReply?: (postUri: string | undefined) => void
+ logContext: 'FeedItem' | 'PostThreadItem' | 'Post' | 'ImmersiveVideo'
+ threadgateRecord?: AppBskyFeedThreadgate.Record
+ onShowLess?: (interaction: AppBskyFeedDefs.Interaction) => void
+ viaRepost?: {uri: string; cid: string}
+}): React.ReactNode => {
+ const {_, i18n} = useLingui()
+ const {gtMobile} = useBreakpoints()
+ const {openComposer} = useOpenComposer()
+ const {feedDescriptor} = useFeedFeedbackContext()
+ const [queueLike, queueUnlike] = usePostLikeMutationQueue(
+ post,
+ viaRepost,
+ feedDescriptor,
+ logContext,
+ )
+ const [queueRepost, queueUnrepost] = usePostRepostMutationQueue(
+ post,
+ viaRepost,
+ feedDescriptor,
+ logContext,
+ )
+ const requireAuth = useRequireAuth()
+ const {sendInteraction} = useFeedFeedbackContext()
+ const {captureAction} = useProgressGuideControls()
+ const playHaptic = useHaptics()
+ const isBlocked = Boolean(
+ post.author.viewer?.blocking ||
+ post.author.viewer?.blockedBy ||
+ post.author.viewer?.blockingByList,
+ )
+ const replyDisabled = post.viewer?.replyDisabled
+
+ const [hasLikeIconBeenToggled, setHasLikeIconBeenToggled] = useState(false)
+
+ const onPressToggleLike = async () => {
+ if (isBlocked) {
+ Toast.show(
+ _(msg`Cannot interact with a blocked user`),
+ 'exclamation-circle',
+ )
+ return
+ }
+
+ try {
+ setHasLikeIconBeenToggled(true)
+ if (!post.viewer?.like) {
+ playHaptic('Light')
+ sendInteraction({
+ item: post.uri,
+ event: 'app.bsky.feed.defs#interactionLike',
+ feedContext,
+ reqId,
+ })
+ captureAction(ProgressGuideAction.Like)
+ await queueLike()
+ } else {
+ await queueUnlike()
+ }
+ } catch (e: any) {
+ if (e?.name !== 'AbortError') {
+ throw e
+ }
+ }
+ }
+
+ const onRepost = async () => {
+ if (isBlocked) {
+ Toast.show(
+ _(msg`Cannot interact with a blocked user`),
+ 'exclamation-circle',
+ )
+ return
+ }
+
+ try {
+ if (!post.viewer?.repost) {
+ sendInteraction({
+ item: post.uri,
+ event: 'app.bsky.feed.defs#interactionRepost',
+ feedContext,
+ reqId,
+ })
+ await queueRepost()
+ } else {
+ await queueUnrepost()
+ }
+ } catch (e: any) {
+ if (e?.name !== 'AbortError') {
+ throw e
+ }
+ }
+ }
+
+ const onQuote = () => {
+ if (isBlocked) {
+ Toast.show(
+ _(msg`Cannot interact with a blocked user`),
+ 'exclamation-circle',
+ )
+ return
+ }
+
+ sendInteraction({
+ item: post.uri,
+ event: 'app.bsky.feed.defs#interactionQuote',
+ feedContext,
+ reqId,
+ })
+ openComposer({
+ quote: post,
+ onPost: onPostReply,
+ })
+ }
+
+ const onShare = () => {
+ sendInteraction({
+ item: post.uri,
+ event: 'app.bsky.feed.defs#interactionShare',
+ feedContext,
+ reqId,
+ })
+ }
+
+ return (
+
+
+ requireAuth(() => onPressReply()) : undefined
+ }
+ label={_(
+ msg({
+ message: `Reply (${plural(post.replyCount || 0, {
+ one: '# reply',
+ other: '# replies',
+ })})`,
+ comment:
+ 'Accessibility label for the reply button, verb form followed by number of replies and noun form',
+ }),
+ )}
+ big={big}>
+
+ {typeof post.replyCount !== 'undefined' && post.replyCount > 0 && (
+
+ {formatCount(i18n, post.replyCount)}
+
+ )}
+
+
+
+
+
+
+ requireAuth(() => onPressToggleLike())}
+ label={
+ post.viewer?.like
+ ? _(
+ msg({
+ message: `Unlike (${plural(post.likeCount || 0, {
+ one: '# like',
+ other: '# likes',
+ })})`,
+ comment:
+ 'Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun',
+ }),
+ )
+ : _(
+ msg({
+ message: `Like (${plural(post.likeCount || 0, {
+ one: '# like',
+ other: '# likes',
+ })})`,
+ comment:
+ 'Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form',
+ }),
+ )
+ }>
+
+
+
+
+
+
+
+
+
+
+
+
+
+ )
+}
+PostControls = memo(PostControls)
+export {PostControls}
diff --git a/src/components/ProfileCard.tsx b/src/components/ProfileCard.tsx
index b56112dcf2..30b26beadf 100644
--- a/src/components/ProfileCard.tsx
+++ b/src/components/ProfileCard.tsx
@@ -1,42 +1,53 @@
import React from 'react'
-import {GestureResponderEvent, View} from 'react-native'
+import {type GestureResponderEvent, View} from 'react-native'
import {
moderateProfile,
- ModerationOpts,
+ type ModerationOpts,
RichText as RichTextApi,
} from '@atproto/api'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
-import {LogEvents} from '#/lib/statsig/statsig'
+import {useActorStatus} from '#/lib/actor-status'
+import {getModerationCauseKey} from '#/lib/moderation'
+import {type LogEvents} from '#/lib/statsig/statsig'
import {sanitizeDisplayName} from '#/lib/strings/display-names'
import {sanitizeHandle} from '#/lib/strings/handles'
import {useProfileShadow} from '#/state/cache/profile-shadow'
import {useProfileFollowMutationQueue} from '#/state/queries/profile'
import {useSession} from '#/state/session'
-import {ProfileCardPills} from '#/view/com/profile/ProfileCard'
import * as Toast from '#/view/com/util/Toast'
-import {UserAvatar} from '#/view/com/util/UserAvatar'
+import {PreviewableUserAvatar, UserAvatar} from '#/view/com/util/UserAvatar'
import {atoms as a, useTheme} from '#/alf'
-import {Button, ButtonIcon, ButtonProps, ButtonText} from '#/components/Button'
+import {
+ Button,
+ ButtonIcon,
+ type ButtonProps,
+ ButtonText,
+} from '#/components/Button'
import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check'
import {PlusLarge_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus'
-import {Link as InternalLink, LinkProps} from '#/components/Link'
+import {Link as InternalLink, type LinkProps} from '#/components/Link'
+import * as Pills from '#/components/Pills'
import {RichText} from '#/components/RichText'
import {Text} from '#/components/Typography'
-import * as bsky from '#/types/bsky'
+import {useSimpleVerificationState} from '#/components/verification'
+import {VerificationCheck} from '#/components/verification/VerificationCheck'
+import type * as bsky from '#/types/bsky'
export function Default({
profile,
moderationOpts,
logContext = 'ProfileCard',
+ testID,
}: {
profile: bsky.profile.AnyProfileView
moderationOpts: ModerationOpts
logContext?: 'ProfileCard' | 'StarterPackProfilesList'
+ testID?: string
}) {
return (
-
+
@@ -69,10 +78,7 @@ export function Card({
/>
-
+
@@ -82,7 +88,7 @@ export function Card({
export function Outer({
children,
}: {
- children: React.ReactElement | React.ReactElement[]
+ children: React.ReactNode | React.ReactNode[]
}) {
return {children}
}
@@ -90,7 +96,7 @@ export function Outer({
export function Header({
children,
}: {
- children: React.ReactElement | React.ReactElement[]
+ children: React.ReactNode | React.ReactNode[]
}) {
return {children}
}
@@ -125,18 +131,35 @@ export function Link({
export function Avatar({
profile,
moderationOpts,
+ onPress,
+ disabledPreview,
+ liveOverride,
}: {
profile: bsky.profile.AnyProfileView
moderationOpts: ModerationOpts
+ onPress?: () => void
+ disabledPreview?: boolean
+ liveOverride?: boolean
}) {
const moderation = moderateProfile(profile, moderationOpts)
- return (
+ const {isActive: live} = useActorStatus(profile)
+
+ return disabledPreview ? (
+ ) : (
+
)
}
@@ -147,10 +170,10 @@ export function AvatarPlaceholder() {
@@ -164,32 +187,61 @@ export function NameAndHandle({
profile: bsky.profile.AnyProfileView
moderationOpts: ModerationOpts
}) {
- const t = useTheme()
+ return (
+
+
+
+
+ )
+}
+
+export function Name({
+ profile,
+ moderationOpts,
+}: {
+ profile: bsky.profile.AnyProfileView
+ moderationOpts: ModerationOpts
+}) {
const moderation = moderateProfile(profile, moderationOpts)
const name = sanitizeDisplayName(
profile.displayName || sanitizeHandle(profile.handle),
moderation.ui('displayName'),
)
- const handle = sanitizeHandle(profile.handle, '@')
-
+ const verification = useSimpleVerificationState({profile})
return (
-
+
{name}
-
- {handle}
-
+ {verification.showBadge && (
+
+
+
+ )}
)
}
+export function Handle({profile}: {profile: bsky.profile.AnyProfileView}) {
+ const t = useTheme()
+ const handle = sanitizeHandle(profile.handle, '@')
+
+ return (
+
+ {handle}
+
+ )
+}
+
export function NameAndHandlePlaceholder() {
const t = useTheme()
@@ -198,7 +250,7 @@ export function NameAndHandlePlaceholder() {
+
{Array(numberOfLines)
.fill(0)
.map((_, i) => (
@@ -270,7 +322,7 @@ export function DescriptionPlaceholder({
style={[
a.rounded_xs,
a.w_full,
- t.atoms.bg_contrast_50,
+ t.atoms.bg_contrast_25,
{height: 12, width: i + 1 === numberOfLines ? '60%' : '100%'},
]}
/>
@@ -286,6 +338,7 @@ export type FollowButtonProps = {
LogEvents['profile:unfollow']['logContext']
colorInverted?: boolean
onFollow?: () => void
+ withIcon?: boolean
} & Partial
export function FollowButton(props: FollowButtonProps) {
@@ -301,6 +354,7 @@ export function FollowButtonInner({
onPress: onPressProp,
onFollow,
colorInverted,
+ withIcon = true,
...rest
}: FollowButtonProps) {
const {_} = useLingui()
@@ -386,7 +440,9 @@ export function FollowButtonInner({
color="secondary"
{...rest}
onPress={onPressUnfollow}>
-
+ {withIcon && (
+
+ )}
{isRound ? null : {unfollowLabel} }
) : (
@@ -397,10 +453,40 @@ export function FollowButtonInner({
color={colorInverted ? 'secondary_inverted' : 'primary'}
{...rest}
onPress={onPressFollow}>
-
+ {withIcon && (
+
+ )}
{isRound ? null : {followLabel} }
)}
)
}
+
+export function Labels({
+ profile,
+ moderationOpts,
+}: {
+ profile: bsky.profile.AnyProfileView
+ moderationOpts: ModerationOpts
+}) {
+ const moderation = moderateProfile(profile, moderationOpts)
+ const modui = moderation.ui('profileList')
+ const followedBy = profile.viewer?.followedBy
+
+ if (!followedBy && !modui.inform && !modui.alert) {
+ return null
+ }
+
+ return (
+
+ {followedBy && }
+ {modui.alerts.map(alert => (
+
+ ))}
+ {modui.informs.map(inform => (
+
+ ))}
+
+ )
+}
diff --git a/src/components/ProfileHoverCard/index.web.tsx b/src/components/ProfileHoverCard/index.web.tsx
index 3e58ced902..17148a1b36 100644
--- a/src/components/ProfileHoverCard/index.web.tsx
+++ b/src/components/ProfileHoverCard/index.web.tsx
@@ -1,13 +1,20 @@
-import React from 'react'
+import React, {useCallback} from 'react'
import {View} from 'react-native'
-import {AppBskyActorDefs, moderateProfile, ModerationOpts} from '@atproto/api'
+import {
+ type AppBskyActorDefs,
+ moderateProfile,
+ type ModerationOpts,
+} from '@atproto/api'
import {flip, offset, shift, size, useFloating} from '@floating-ui/react-dom'
import {msg, plural} from '@lingui/macro'
import {useLingui} from '@lingui/react'
+import {useNavigation} from '@react-navigation/native'
+import {useActorStatus} from '#/lib/actor-status'
import {isTouchDevice} from '#/lib/browser'
import {getModerationCauseKey} from '#/lib/moderation'
import {makeProfileLink} from '#/lib/routes/links'
+import {type NavigationProp} from '#/lib/routes/types'
import {sanitizeDisplayName} from '#/lib/strings/display-names'
import {sanitizeHandle} from '#/lib/strings/handles'
import {useProfileShadow} from '#/state/cache/profile-shadow'
@@ -28,12 +35,15 @@ import {
shouldShowKnownFollowers,
} from '#/components/KnownFollowers'
import {InlineLinkText, Link} from '#/components/Link'
+import {LiveStatus} from '#/components/live/LiveStatusDialog'
import {Loader} from '#/components/Loader'
import * as Pills from '#/components/Pills'
import {Portal} from '#/components/Portal'
import {RichText} from '#/components/RichText'
import {Text} from '#/components/Typography'
-import {ProfileHoverCardProps} from './types'
+import {useSimpleVerificationState} from '#/components/verification'
+import {VerificationCheck} from '#/components/verification/VerificationCheck'
+import {type ProfileHoverCardProps} from './types'
const floatingMiddlewares = [
offset(4),
@@ -99,6 +109,8 @@ const HIDE_DELAY = 150
const HIDE_DURATION = 200
export function ProfileHoverCardInner(props: ProfileHoverCardProps) {
+ const navigation = useNavigation()
+
const {refs, floatingStyles} = useFloating({
middleware: floatingMiddlewares,
})
@@ -324,7 +336,7 @@ export function ProfileHoverCardInner(props: ProfileHoverCardProps) {
onPointerEnter={onPointerEnterCard}
onPointerLeave={onPointerLeaveCard}>
-
+
@@ -333,7 +345,15 @@ export function ProfileHoverCardInner(props: ProfileHoverCardProps) {
)
}
-let Card = ({did, hide}: {did: string; hide: () => void}): React.ReactNode => {
+let Card = ({
+ did,
+ hide,
+ navigation,
+}: {
+ did: string
+ hide: () => void
+ navigation: NavigationProp
+}): React.ReactNode => {
const t = useTheme()
const profile = useProfileQuery({did})
@@ -341,24 +361,48 @@ let Card = ({did, hide}: {did: string; hide: () => void}): React.ReactNode => {
const data = profile.data
+ const status = useActorStatus(data)
+
+ const onPressOpenProfile = useCallback(() => {
+ if (!status.isActive || !data) return
+ hide()
+ navigation.push('Profile', {
+ name: data.handle,
+ })
+ }, [hide, navigation, status, data])
+
return (
{data && moderationOpts ? (
-
+ status.isActive ? (
+
+ ) : (
+
+ )
) : (
-
+
)}
@@ -412,6 +456,7 @@ function Inner({
[currentAccount, profile],
)
const isLabeler = profile.associated?.labeler
+ const verification = useSimpleVerificationState({profile})
return (
@@ -465,13 +510,30 @@ function Inner({
-
- {sanitizeDisplayName(
- profile.displayName || sanitizeHandle(profile.handle),
- moderation.ui('displayName'),
+
+
+ {sanitizeDisplayName(
+ profile.displayName || sanitizeHandle(profile.handle),
+ moderation.ui('displayName'),
+ )}
+
+ {verification.showBadge && (
+
+
+
)}
-
+
diff --git a/src/components/ProfileHoverCard/types.ts b/src/components/ProfileHoverCard/types.ts
index 2fa0643838..37087dc95a 100644
--- a/src/components/ProfileHoverCard/types.ts
+++ b/src/components/ProfileHoverCard/types.ts
@@ -1,4 +1,4 @@
-import React from 'react'
+import type React from 'react'
export type ProfileHoverCardProps = {
children: React.ReactElement
diff --git a/src/components/ProgressGuide/FollowDialog.tsx b/src/components/ProgressGuide/FollowDialog.tsx
index 006f86574b..a8c64935ad 100644
--- a/src/components/ProgressGuide/FollowDialog.tsx
+++ b/src/components/ProgressGuide/FollowDialog.tsx
@@ -1,26 +1,26 @@
import {memo, useCallback, useEffect, useMemo, useRef, useState} from 'react'
-import {ScrollView, TextInput, useWindowDimensions, View} from 'react-native'
-import Animated, {
- LayoutAnimationConfig,
- LinearTransition,
- ZoomInEasyDown,
-} from 'react-native-reanimated'
-import {AppBskyActorDefs, ModerationOpts} from '@atproto/api'
+import {
+ ScrollView,
+ type StyleProp,
+ TextInput,
+ useWindowDimensions,
+ View,
+ type ViewStyle,
+} from 'react-native'
+import {type ModerationOpts} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback'
import {logEvent} from '#/lib/statsig/statsig'
-import {cleanError} from '#/lib/strings/errors'
-import {logger} from '#/logger'
import {isWeb} from '#/platform/detection'
import {useModerationOpts} from '#/state/preferences/moderation-opts'
import {useActorSearchPaginated} from '#/state/queries/actor-search'
import {usePreferencesQuery} from '#/state/queries/preferences'
-import {useSuggestedFollowsByActorQuery} from '#/state/queries/suggested-follows'
+import {useGetSuggestedUsersQuery} from '#/state/queries/trending/useGetSuggestedUsersQuery'
import {useSession} from '#/state/session'
-import {Follow10ProgressGuide} from '#/state/shell/progress-guide'
-import {ListMethods} from '#/view/com/util/List'
+import {type Follow10ProgressGuide} from '#/state/shell/progress-guide'
+import {type ListMethods} from '#/view/com/util/List'
import {
popularInterests,
useInterestsDisplayNames,
@@ -31,7 +31,7 @@ import {
tokens,
useBreakpoints,
useTheme,
- ViewStyleProp,
+ type ViewStyleProp,
web,
} from '#/alf'
import {Button, ButtonIcon, ButtonText} from '#/components/Button'
@@ -42,15 +42,14 @@ import {PersonGroup_Stroke2_Corner2_Rounded as PersonGroupIcon} from '#/componen
import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times'
import * as ProfileCard from '#/components/ProfileCard'
import {Text} from '#/components/Typography'
-import {ListFooter} from '../Lists'
+import type * as bsky from '#/types/bsky'
import {ProgressGuideTask} from './Task'
type Item =
| {
type: 'profile'
key: string
- profile: AppBskyActorDefs.ProfileView
- isSuggestion: boolean
+ profile: bsky.profile.AnyProfileView
}
| {
type: 'empty'
@@ -121,94 +120,39 @@ function DialogInner({guide}: {guide: Follow10ProgressGuide}) {
const inputRef = useRef(null)
const [headerHeight, setHeaderHeight] = useState(0)
const {currentAccount} = useSession()
- const [suggestedAccounts, setSuggestedAccounts] = useState<
- Map
- >(() => new Map())
useEffect(() => {
lastSearchText = searchText
lastSelectedInterest = selectedInterest
}, [searchText, selectedInterest])
- const query = searchText || selectedInterest
+ const {
+ data: suggestions,
+ isFetching: isFetchingSuggestions,
+ error: suggestionsError,
+ } = useGetSuggestedUsersQuery({
+ category: selectedInterest,
+ limit: 50,
+ })
const {
data: searchResults,
- isFetching,
- error,
- isError,
- hasNextPage,
- isFetchingNextPage,
- fetchNextPage,
+ isFetching: isFetchingSearchResults,
+ error: searchResultsError,
+ isError: isSearchResultsError,
} = useActorSearchPaginated({
- query,
+ enabled: !!searchText,
+ query: searchText,
})
const hasSearchText = !!searchText
-
+ const resultsKey = searchText || selectedInterest
const items = useMemo(() => {
- const results = searchResults?.pages.flatMap(r => r.actors)
+ const results = hasSearchText
+ ? searchResults?.pages.flatMap(p => p.actors)
+ : suggestions?.actors
let _items: Item[] = []
- const seen = new Set()
- if (isError) {
- _items.push({
- type: 'empty',
- key: 'empty',
- message: _(msg`We're having network issues, try again`),
- })
- } else if (results) {
- // First pass: search results
- for (const profile of results) {
- if (profile.did === currentAccount?.did) continue
- if (profile.viewer?.following) continue
- // my sincere apologies to Jake Gold - your bio is too keyword-filled and
- // your page-rank too high, so you're at the top of half the categories -sfn
- if (
- !hasSearchText &&
- profile.did === 'did:plc:tpg43qhh4lw4ksiffs4nbda3' &&
- // constrain to 'tech'
- selectedInterest !== 'tech'
- ) {
- continue
- }
- seen.add(profile.did)
- _items.push({
- type: 'profile',
- // Don't share identity across tabs or typing attempts
- key: query + ':' + profile.did,
- profile,
- isSuggestion: false,
- })
- }
- // Second pass: suggestions
- _items = _items.flatMap(item => {
- if (item.type !== 'profile') {
- return item
- }
- const suggestions = suggestedAccounts.get(item.profile.did)
- if (!suggestions) {
- return item
- }
- const itemWithSuggestions = [item]
- for (const suggested of suggestions) {
- if (seen.has(suggested.did)) {
- // Skip search results from previous step or already seen suggestions
- continue
- }
- seen.add(suggested.did)
- itemWithSuggestions.push({
- type: 'profile',
- key: suggested.did,
- profile: suggested,
- isSuggestion: true,
- })
- if (itemWithSuggestions.length === 1 + 3) {
- break
- }
- }
- return itemWithSuggestions
- })
- } else {
+ if (isFetchingSuggestions || isFetchingSearchResults) {
const placeholders: Item[] = Array(10)
.fill(0)
.map((__, i) => ({
@@ -217,21 +161,54 @@ function DialogInner({guide}: {guide: Follow10ProgressGuide}) {
}))
_items.push(...placeholders)
+ } else if (
+ (hasSearchText && searchResultsError) ||
+ (!hasSearchText && suggestionsError) ||
+ !results?.length
+ ) {
+ _items.push({
+ type: 'empty',
+ key: 'empty',
+ message: _(msg`We're having network issues, try again`),
+ })
+ } else {
+ const seen = new Set()
+ for (const profile of results) {
+ if (seen.has(profile.did)) continue
+ if (profile.did === currentAccount?.did) continue
+ if (profile.viewer?.following) continue
+
+ seen.add(profile.did)
+
+ _items.push({
+ type: 'profile',
+ // Don't share identity across tabs or typing attempts
+ key: resultsKey + ':' + profile.did,
+ profile,
+ })
+ }
}
return _items
}, [
_,
+ suggestions,
+ suggestionsError,
+ isFetchingSuggestions,
searchResults,
- isError,
+ searchResultsError,
+ isFetchingSearchResults,
currentAccount?.did,
hasSearchText,
- selectedInterest,
- suggestedAccounts,
- query,
+ resultsKey,
])
- if (searchText && !isFetching && !items.length && !isError) {
+ if (
+ searchText &&
+ !isFetchingSearchResults &&
+ !items.length &&
+ !isSearchResultsError
+ ) {
items.push({type: 'empty', key: 'empty', message: _(msg`No results`)})
}
@@ -242,9 +219,7 @@ function DialogInner({guide}: {guide: Follow10ProgressGuide}) {
return (
)
@@ -290,15 +265,6 @@ function DialogInner({guide}: {guide: Follow10ProgressGuide}) {
/>
)
- const onEndReached = useCallback(async () => {
- if (isFetchingNextPage || !hasNextPage || isError) return
- try {
- await fetchNextPage()
- } catch (err) {
- logger.error('Failed to load more people to follow', {message: err})
- }
- }, [isFetchingNextPage, hasNextPage, isError, fetchNextPage])
-
return (
- }
/>
)
}
@@ -452,15 +409,18 @@ let Tabs = ({
selectedInterest,
hasSearchText,
interestsDisplayNames,
+ TabComponent = Tab,
+ contentContainerStyle,
}: {
onSelectTab: (tab: string) => void
interests: string[]
selectedInterest: string
hasSearchText: boolean
interestsDisplayNames: Record
+ TabComponent?: React.ComponentType>
+ contentContainerStyle?: StyleProp
}): React.ReactNode => {
const listRef = useRef(null)
- const [scrollX, setScrollX] = useState(0)
const [totalWidth, setTotalWidth] = useState(0)
const pendingTabOffsets = useRef<{x: number; width: number}[]>([])
const [tabOffsets, setTabOffsets] = useState<{x: number; width: number}[]>([])
@@ -479,24 +439,11 @@ let Tabs = ({
function scrollIntoViewIfNeeded(index: number) {
const btnLayout = tabOffsets[index]
if (!btnLayout) return
-
- const viewportLeftEdge = scrollX
- const viewportRightEdge = scrollX + totalWidth
- const shouldScrollToLeftEdge = viewportLeftEdge > btnLayout.x
- const shouldScrollToRightEdge =
- viewportRightEdge < btnLayout.x + btnLayout.width
-
- if (shouldScrollToLeftEdge) {
- listRef.current?.scrollTo({
- x: btnLayout.x - tokens.space.lg,
- animated: true,
- })
- } else if (shouldScrollToRightEdge) {
- listRef.current?.scrollTo({
- x: btnLayout.x - totalWidth + btnLayout.width + tokens.space.lg,
- animated: true,
- })
- }
+ listRef.current?.scrollTo({
+ // centered
+ x: btnLayout.x - (totalWidth / 2 - btnLayout.width / 2),
+ animated: true,
+ })
}
function handleSelectTab(index: number) {
@@ -518,7 +465,7 @@ let Tabs = ({
setTotalWidth(evt.nativeEvent.layout.width)}
scrollEventThrottle={200} // big throttle
- onScroll={evt => setScrollX(evt.nativeEvent.contentOffset.x)}>
+ >
{interests.map((interest, i) => {
const active = interest === selectedInterest && !hasSearchText
return (
- void
}): React.ReactNode => {
+ const t = useTheme()
const {_} = useLingui()
const activeText = active ? _(msg` (active)`) : ''
return (
@@ -573,12 +522,32 @@ let Tab = ({
}>
onSelectTab(index)}>
-
- {interestsDisplayName}
+ {({hovered, pressed, focused}) => (
+
+
+ {interestsDisplayName}
+
+
+ )}
)
@@ -588,49 +557,18 @@ Tab = memo(Tab)
let FollowProfileCard = ({
profile,
moderationOpts,
- isSuggestion,
- setSuggestedAccounts,
noBorder,
}: {
- profile: AppBskyActorDefs.ProfileView
+ profile: bsky.profile.AnyProfileView
moderationOpts: ModerationOpts
- isSuggestion: boolean
- setSuggestedAccounts: (
- updater: (
- v: Map,
- ) => Map,
- ) => void
noBorder?: boolean
}): React.ReactNode => {
- const [hasFollowed, setHasFollowed] = useState(false)
- const followupSuggestion = useSuggestedFollowsByActorQuery({
- did: profile.did,
- enabled: hasFollowed,
- })
- const candidates = followupSuggestion.data?.suggestions
-
- useEffect(() => {
- // TODO: Move out of effect.
- if (hasFollowed && candidates && candidates.length > 0) {
- setSuggestedAccounts(suggestions => {
- const newSuggestions = new Map(suggestions)
- newSuggestions.set(profile.did, candidates)
- return newSuggestions
- })
- }
- }, [hasFollowed, profile.did, candidates, setSuggestedAccounts])
-
return (
-
-
- setHasFollowed(true)}
- noBorder={noBorder}
- />
-
-
+
)
}
FollowProfileCard = memo(FollowProfileCard)
@@ -641,7 +579,7 @@ function FollowProfileCardInner({
onFollow,
noBorder,
}: {
- profile: AppBskyActorDefs.ProfileView
+ profile: bsky.profile.AnyProfileView
moderationOpts: ModerationOpts
onFollow?: () => void
noBorder?: boolean
@@ -658,7 +596,7 @@ function FollowProfileCardInner({
style={[
a.flex_1,
noBorder && a.border_t_0,
- (hovered || pressed) && t.atoms.border_contrast_high,
+ (hovered || pressed) && t.atoms.bg_contrast_25,
]}>
@@ -822,7 +760,7 @@ function Empty({message}: {message: string}) {
)
}
-function boostInterests(boosts?: string[]) {
+export function boostInterests(boosts?: string[]) {
return (_a: string, _b: string) => {
const indexA = boosts?.indexOf(_a) ?? -1
const indexB = boosts?.indexOf(_b) ?? -1
diff --git a/src/components/Prompt.tsx b/src/components/Prompt.tsx
index 404790462b..2ff0c7ccc3 100644
--- a/src/components/Prompt.tsx
+++ b/src/components/Prompt.tsx
@@ -1,13 +1,19 @@
import React from 'react'
-import {GestureResponderEvent, View} from 'react-native'
+import {type GestureResponderEvent, View} from 'react-native'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
-import {atoms as a, useBreakpoints, useTheme} from '#/alf'
-import {Button, ButtonColor, ButtonText} from '#/components/Button'
+import {
+ atoms as a,
+ useBreakpoints,
+ useTheme,
+ type ViewStyleProp,
+ web,
+} from '#/alf'
+import {Button, type ButtonColor, ButtonText} from '#/components/Button'
import * as Dialog from '#/components/Dialog'
import {Text} from '#/components/Typography'
-import {BottomSheetViewProps} from '../../modules/bottom-sheet'
+import {type BottomSheetViewProps} from '../../modules/bottom-sheet'
export {
type DialogControlProps as PromptControlProps,
@@ -32,7 +38,6 @@ export function Outer({
testID?: string
nativeOptions?: Omit
}>) {
- const {gtMobile} = useBreakpoints()
const titleId = React.useId()
const descriptionId = React.useId()
@@ -52,9 +57,7 @@ export function Outer({
+ style={web({maxWidth: 400})}>
{children}
@@ -62,12 +65,22 @@ export function Outer({
)
}
-export function TitleText({children}: React.PropsWithChildren<{}>) {
+export function TitleText({
+ children,
+ style,
+}: React.PropsWithChildren) {
const {titleId} = React.useContext(Context)
return (
+ style={[
+ a.flex_1,
+ a.text_2xl,
+ a.font_bold,
+ a.pb_sm,
+ a.leading_snug,
+ style,
+ ]}>
{children}
)
@@ -190,7 +203,7 @@ export function Basic({
}: React.PropsWithChildren<{
control: Dialog.DialogOuterProps['control']
title: string
- description: string
+ description?: string
cancelButtonCta?: string
confirmButtonCta?: string
/**
@@ -207,7 +220,7 @@ export function Basic({
return (
{title}
- {description}
+ {description && {description} }
+
+const Context = createContext(null)
+
+const ValueTextContext = createContext<
+ [any, React.Dispatch>]
+>([undefined, () => {}])
+
+function useSelectContext() {
+ const ctx = useContext(Context)
+ if (!ctx) {
+ throw new Error('Select components must must be used within a Select.Root')
+ }
+ return ctx
+}
+
+export function Root({children, value, onValueChange, disabled}: RootProps) {
+ const control = Dialog.useDialogControl()
+ const valueTextCtx = useState()
+
+ const ctx = useMemo(
+ () => ({
+ control,
+ value,
+ onValueChange,
+ disabled,
+ }),
+ [control, value, onValueChange, disabled],
+ )
+ return (
+
+
+ {children}
+
+
+ )
+}
+
+export function Trigger({children, label}: TriggerProps) {
+ const {control} = useSelectContext()
+ const {state: focused, onIn: onFocus, onOut: onBlur} = useInteractionState()
+ const {
+ state: pressed,
+ onIn: onPressIn,
+ onOut: onPressOut,
+ } = useInteractionState()
+
+ if (typeof children === 'function') {
+ return children({
+ isNative: true,
+ control,
+ state: {
+ hovered: false,
+ focused,
+ pressed,
+ },
+ props: {
+ onPress: control.open,
+ onFocus,
+ onBlur,
+ onPressIn,
+ onPressOut,
+ accessibilityLabel: label,
+ },
+ })
+ } else {
+ return (
+
+ <>{children}>
+
+ )
+ }
+}
+
+export function ValueText({
+ placeholder,
+ children = value => value.label,
+ style,
+}: ValueProps) {
+ const [value] = useContext(ValueTextContext)
+ const t = useTheme()
+
+ let text = value && children(value)
+ if (typeof text !== 'string') text = placeholder
+
+ return (
+ {text}
+ )
+}
+
+export function Icon({}: IconProps) {
+ return
+}
+
+export function Content({
+ items,
+ valueExtractor = defaultItemValueExtractor,
+ ...props
+}: ContentProps) {
+ const {control, ...context} = useSelectContext()
+ const [, setValue] = useContext(ValueTextContext)
+
+ useLayoutEffect(() => {
+ const item = items.find(item => valueExtractor(item) === context.value)
+ if (item) {
+ setValue(item)
+ }
+ }, [items, context.value, valueExtractor, setValue])
+
+ return (
+
+
+
+ )
+}
+
+function ContentInner({
+ items,
+ renderItem,
+ valueExtractor,
+ ...context
+}: ContentProps & ContextType) {
+ const control = Dialog.useDialogContext()
+
+ const {_} = useLingui()
+ const [headerHeight, setHeaderHeight] = useState(50)
+
+ const render = useCallback(
+ ({item, index}: {item: T; index: number}) => {
+ return renderItem(item, index, context.value)
+ },
+ [renderItem, context.value],
+ )
+
+ const doneButton = useCallback(
+ () => (
+ control.close()}
+ size="small"
+ color="primary"
+ variant="ghost"
+ style={[a.rounded_full]}>
+
+ Done
+
+
+ ),
+ [control, _],
+ )
+
+ return (
+
+ setHeaderHeight(evt.nativeEvent.layout.height)}
+ style={[a.absolute, a.top_0, a.left_0, a.right_0, a.z_10]}>
+
+ Select an option
+
+
+
+
+ )
+}
+
+function defaultItemValueExtractor(item: any) {
+ return item.value
+}
+
+const ItemContext = createContext<{
+ selected: boolean
+ hovered: boolean
+ focused: boolean
+ pressed: boolean
+}>({
+ selected: false,
+ hovered: false,
+ focused: false,
+ pressed: false,
+})
+
+export function useItemContext() {
+ return useContext(ItemContext)
+}
+
+export function Item({children, value, label, style}: ItemProps) {
+ const t = useTheme()
+ const control = Dialog.useDialogContext()
+ const {value: selected, onValueChange} = useSelectContext()
+
+ return (
+ {
+ control.close(() => {
+ onValueChange?.(value)
+ })
+ }}>
+ {({hovered, focused, pressed}) => (
+
+
+ {children}
+
+
+ )}
+
+ )
+}
+
+export function ItemText({children}: ItemTextProps) {
+ const {selected} = useItemContext()
+ const t = useTheme()
+
+ // eslint-disable-next-line bsky-internal/avoid-unwrapped-text
+ return (
+
+ {children}
+
+ )
+}
+
+export function ItemIndicator({icon: Icon = CheckIcon}: ItemIndicatorProps) {
+ const {selected} = useItemContext()
+
+ return {selected && }
+}
diff --git a/src/components/Select/index.web.tsx b/src/components/Select/index.web.tsx
new file mode 100644
index 0000000000..0e6fa85ca3
--- /dev/null
+++ b/src/components/Select/index.web.tsx
@@ -0,0 +1,281 @@
+import {createContext, forwardRef, useContext, useMemo} from 'react'
+import {View} from 'react-native'
+import {Select as RadixSelect} from 'radix-ui'
+
+import {flatten, useTheme} from '#/alf'
+import {atoms as a} from '#/alf'
+import {useInteractionState} from '#/components/hooks/useInteractionState'
+import {Check_Stroke2_Corner0_Rounded as CheckIcon} from '#/components/icons/Check'
+import {
+ ChevronBottom_Stroke2_Corner0_Rounded as ChevronDownIcon,
+ ChevronTop_Stroke2_Corner0_Rounded as ChevronUpIcon,
+} from '#/components/icons/Chevron'
+import {Text} from '#/components/Typography'
+import {
+ type ContentProps,
+ type IconProps,
+ type ItemIndicatorProps,
+ type ItemProps,
+ type RadixPassThroughTriggerProps,
+ type RootProps,
+ type TriggerProps,
+ type ValueProps,
+} from './types'
+
+const SelectedValueContext = createContext(null)
+
+export function Root(props: RootProps) {
+ return (
+
+
+
+ )
+}
+
+const RadixTriggerPassThrough = forwardRef(
+ (
+ props: {
+ children: (
+ props: RadixPassThroughTriggerProps & {
+ ref: React.Ref
+ },
+ ) => React.ReactNode
+ },
+ ref,
+ ) => {
+ // @ts-expect-error Radix provides no types of this stuff
+
+ return props.children?.({...props, ref})
+ },
+)
+RadixTriggerPassThrough.displayName = 'RadixTriggerPassThrough'
+
+export function Trigger({children, label}: TriggerProps) {
+ const t = useTheme()
+ const {
+ state: hovered,
+ onIn: onMouseEnter,
+ onOut: onMouseLeave,
+ } = useInteractionState()
+ const {state: focused, onIn: onFocus, onOut: onBlur} = useInteractionState()
+
+ if (typeof children === 'function') {
+ return (
+
+
+ {props =>
+ children({
+ isNative: false,
+ state: {
+ hovered,
+ focused,
+ pressed: false,
+ },
+ props: {
+ ...props,
+ onPress: props.onClick,
+ onFocus: onFocus,
+ onBlur: onBlur,
+ onMouseEnter,
+ onMouseLeave,
+ accessibilityLabel: label,
+ },
+ })
+ }
+
+
+ )
+ } else {
+ return (
+
+ {children}
+
+ )
+ }
+}
+
+export function ValueText({children: _, style, ...props}: ValueProps) {
+ return (
+
+
+
+ )
+}
+
+export function Icon({style}: IconProps) {
+ const t = useTheme()
+ return (
+
+
+
+ )
+}
+
+export function Content({items, renderItem}: ContentProps) {
+ const t = useTheme()
+ const selectedValue = useContext(SelectedValueContext)
+
+ const scrollBtnStyles: React.CSSProperties[] = [
+ a.absolute,
+ a.flex,
+ a.align_center,
+ a.justify_center,
+ a.rounded_sm,
+ a.z_10,
+ ]
+ const up: React.CSSProperties[] = [
+ ...scrollBtnStyles,
+ a.pt_sm,
+ a.pb_lg,
+ {
+ top: 0,
+ left: 0,
+ right: 0,
+ borderBottomLeftRadius: 0,
+ borderBottomRightRadius: 0,
+ background: `linear-gradient(to bottom, ${t.atoms.bg.backgroundColor} 0%, transparent 100%)`,
+ },
+ ]
+ const down: React.CSSProperties[] = [
+ ...scrollBtnStyles,
+ a.pt_lg,
+ a.pb_sm,
+ {
+ bottom: 0,
+ left: 0,
+ right: 0,
+ borderBottomLeftRadius: 0,
+ borderBottomRightRadius: 0,
+ background: `linear-gradient(to top, ${t.atoms.bg.backgroundColor} 0%, transparent 100%)`,
+ },
+ ]
+
+ return (
+
+
+
+
+
+
+
+ {items.map((item, index) => renderItem(item, index, selectedValue))}
+
+
+
+
+
+
+
+ )
+}
+
+const ItemContext = createContext<{
+ hovered: boolean
+ focused: boolean
+ pressed: boolean
+ selected: boolean
+}>({
+ hovered: false,
+ focused: false,
+ pressed: false,
+ selected: false,
+})
+
+export function useItemContext() {
+ return useContext(ItemContext)
+}
+
+export function Item({ref, value, style, children}: ItemProps) {
+ const t = useTheme()
+ const {
+ state: hovered,
+ onIn: onMouseEnter,
+ onOut: onMouseLeave,
+ } = useInteractionState()
+ const selected = useContext(SelectedValueContext) === value
+ const {state: focused, onIn: onFocus, onOut: onBlur} = useInteractionState()
+ const ctx = useMemo(
+ () => ({hovered, focused, pressed: false, selected}),
+ [hovered, focused, selected],
+ )
+ return (
+
+ {children}
+
+ )
+}
+
+export const ItemText = RadixSelect.ItemText
+
+export function ItemIndicator({icon: Icon = CheckIcon}: ItemIndicatorProps) {
+ return (
+
+
+
+ )
+}
diff --git a/src/components/Select/types.ts b/src/components/Select/types.ts
new file mode 100644
index 0000000000..661621a603
--- /dev/null
+++ b/src/components/Select/types.ts
@@ -0,0 +1,187 @@
+import {
+ type AccessibilityProps,
+ type StyleProp,
+ type TextStyle,
+ type ViewStyle,
+} from 'react-native'
+
+import {type TextStyleProp} from '#/alf'
+import {type DialogControlProps} from '#/components/Dialog'
+import {type Props as SVGIconProps} from '#/components/icons/common'
+
+export type RootProps = {
+ children?: React.ReactNode
+ value?: string
+ onValueChange?: (value: string) => void
+ disabled?: boolean
+ /**
+ * @platform web
+ */
+ defaultValue?: string
+ /**
+ * @platform web
+ */
+ open?: boolean
+ /**
+ * @platform web
+ */
+ defaultOpen?: boolean
+ /**
+ * @platform web
+ */
+ onOpenChange?(open: boolean): void
+ /**
+ * @platform web
+ */
+ name?: string
+ /**
+ * @platform web
+ */
+ autoComplete?: string
+ /**
+ * @platform web
+ */
+ required?: boolean
+}
+
+export type RadixPassThroughTriggerProps = {
+ id: string
+ type: 'button'
+ disabled: boolean
+ ['data-disabled']: boolean
+ ['data-state']: string
+ ['aria-controls']?: string
+ ['aria-haspopup']?: boolean
+ ['aria-expanded']?: AccessibilityProps['aria-expanded']
+ onClick: () => void
+ onPointerDown: () => void
+ onKeyDown: () => void
+}
+
+export type TriggerProps = {
+ children: React.ReactNode | ((props: TriggerChildProps) => React.ReactNode)
+ label: string
+}
+
+export type TriggerChildProps =
+ | {
+ isNative: true
+ control: DialogControlProps
+ state: {
+ /**
+ * Web only, `false` on native
+ */
+ hovered: false
+ focused: boolean
+ pressed: boolean
+ }
+ /**
+ * We don't necessarily know what these will be spread on to, so we
+ * should add props one-by-one.
+ *
+ * On web, these properties are applied to a parent `Pressable`, so this
+ * object is empty.
+ */
+ props: {
+ onPress: () => void
+ onFocus: () => void
+ onBlur: () => void
+ onPressIn: () => void
+ onPressOut: () => void
+ accessibilityLabel: string
+ }
+ }
+ | {
+ isNative: false
+ state: {
+ hovered: boolean
+ focused: boolean
+ /**
+ * Native only, `false` on web
+ */
+ pressed: false
+ }
+ props: RadixPassThroughTriggerProps & {
+ onPress: () => void
+ onFocus: () => void
+ onBlur: () => void
+ onMouseEnter: () => void
+ onMouseLeave: () => void
+ accessibilityLabel: string
+ }
+ }
+
+/*
+ * For use within the `Select.Trigger` component.
+ * Shows the currently selected value. You can also
+ * provide a placeholder to show when no value is selected.
+ *
+ * If you're passing items of a different shape than {value: string, label: string},
+ * you'll need to pass a function to `children` that extracts the label from an item.
+ */
+export type ValueProps = {
+ /**
+ * Only needed for native. Extracts the label from an item. Defaults to `item => item.label`
+ */
+ children?: (value: any) => string
+ placeholder?: string
+ style?: StyleProp
+}
+
+/*
+ * Icon for use within the `Select.Trigger` component.
+ * Changes based on platform - chevron down on web, up/down chevrons on native
+ *
+ * `style` prop is web only
+ */
+export type IconProps = TextStyleProp
+
+export type ContentProps = {
+ /**
+ * Items to render. Recommended to be in the form {value: string, label: string} - if not,
+ * you need to provide a `valueExtractor` function to extract the value from an item and
+ * customise the `Select.ValueText` component.
+ */
+ items: T[]
+ /**
+ * Renders an item. You should probably use the `Select.Item` component.
+ *
+ * @example
+ * ```tsx
+ * renderItem={({label, value}) => (
+ *
+ *
+ * {label}
+ *
+ * )}
+ * ```
+ */
+ renderItem: (
+ item: T,
+ index: number,
+ selectedValue?: string | null,
+ ) => React.ReactElement
+ /*
+ * Extracts the value from an item. Defaults to `item => item.value`
+ */
+ valueExtractor?: (item: T) => string
+}
+
+/*
+ * An item within the select dropdown
+ */
+export type ItemProps = {
+ ref?: React.Ref
+ value: string
+ label: string
+ children: React.ReactNode
+ style?: StyleProp
+}
+
+export type ItemTextProps = {
+ children: React.ReactNode
+}
+
+export type ItemIndicatorProps = {
+ icon?: React.ComponentType
+}
diff --git a/src/components/StarterPack/ProfileStarterPacks.tsx b/src/components/StarterPack/ProfileStarterPacks.tsx
index da5f0dc6ad..de19b0bce8 100644
--- a/src/components/StarterPack/ProfileStarterPacks.tsx
+++ b/src/components/StarterPack/ProfileStarterPacks.tsx
@@ -6,30 +6,30 @@ import React, {
} from 'react'
import {
findNodeHandle,
- ListRenderItemInfo,
- StyleProp,
+ type ListRenderItemInfo,
+ type StyleProp,
View,
- ViewStyle,
+ type ViewStyle,
} from 'react-native'
-import {AppBskyGraphDefs} from '@atproto/api'
+import {type AppBskyGraphDefs} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useNavigation} from '@react-navigation/native'
import {useGenerateStarterPackMutation} from '#/lib/generate-starterpack'
import {useBottomBarOffset} from '#/lib/hooks/useBottomBarOffset'
-import {useEmail} from '#/lib/hooks/useEmail'
+import {useRequireEmailVerification} from '#/lib/hooks/useRequireEmailVerification'
import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries'
-import {NavigationProp} from '#/lib/routes/types'
+import {type NavigationProp} from '#/lib/routes/types'
import {parseStarterPackUri} from '#/lib/strings/starter-pack'
import {logger} from '#/logger'
+import {isIOS} from '#/platform/detection'
import {useActorStarterPacksQuery} from '#/state/queries/actor-starter-packs'
-import {List, ListRef} from '#/view/com/util/List'
+import {List, type ListRef} from '#/view/com/util/List'
import {FeedLoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder'
import {atoms as a, ios, useTheme} from '#/alf'
import {Button, ButtonIcon, ButtonText} from '#/components/Button'
import {useDialogControl} from '#/components/Dialog'
-import {VerifyEmailDialog} from '#/components/dialogs/VerifyEmailDialog'
import {PlusSmall_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus'
import {LinearGradientBackground} from '#/components/LinearGradientBackground'
import {Loader} from '#/components/Loader'
@@ -75,8 +75,14 @@ export const ProfileStarterPacks = React.forwardRef<
const t = useTheme()
const bottomBarOffset = useBottomBarOffset(100)
const [isPTRing, setIsPTRing] = useState(false)
- const {data, refetch, isFetching, hasNextPage, fetchNextPage} =
- useActorStarterPacksQuery({did, enabled})
+ const {
+ data,
+ refetch,
+ isError,
+ hasNextPage,
+ isFetchingNextPage,
+ fetchNextPage,
+ } = useActorStarterPacksQuery({did, enabled})
const {isTabletOrDesktop} = useWebMediaQueries()
const items = data?.pages.flatMap(page => page.starterPacks)
@@ -95,38 +101,37 @@ export const ProfileStarterPacks = React.forwardRef<
setIsPTRing(false)
}, [refetch, setIsPTRing])
- const onEndReached = useCallback(async () => {
- if (isFetching || !hasNextPage) return
-
+ const onEndReached = React.useCallback(async () => {
+ if (isFetchingNextPage || !hasNextPage || isError) return
try {
await fetchNextPage()
} catch (err) {
logger.error('Failed to load more starter packs', {message: err})
}
- }, [isFetching, hasNextPage, fetchNextPage])
+ }, [isFetchingNextPage, hasNextPage, isError, fetchNextPage])
useEffect(() => {
- if (enabled && scrollElRef.current) {
+ if (isIOS && enabled && scrollElRef.current) {
const nativeTag = findNodeHandle(scrollElRef.current)
setScrollViewTag(nativeTag)
}
}, [enabled, scrollElRef, setScrollViewTag])
- const renderItem = ({
- item,
- index,
- }: ListRenderItemInfo) => {
- return (
-
-
-
- )
- }
+ const renderItem = useCallback(
+ ({item, index}: ListRenderItemInfo) => {
+ return (
+
+
+
+ )
+ },
+ [isTabletOrDesktop, t.atoms.border_contrast_low],
+ )
return (
@@ -191,9 +196,7 @@ function Empty() {
const confirmDialogControl = useDialogControl()
const followersDialogControl = useDialogControl()
const errorDialogControl = useDialogControl()
-
- const {needsEmailVerification} = useEmail()
- const verifyEmailControl = useDialogControl()
+ const requireEmailVerification = useRequireEmailVerification()
const [isGenerating, setIsGenerating] = useState(false)
@@ -224,6 +227,27 @@ function Empty() {
generateStarterPack()
}
+ const openConfirmDialog = useCallback(() => {
+ confirmDialogControl.open()
+ }, [confirmDialogControl])
+ const wrappedOpenConfirmDialog = requireEmailVerification(openConfirmDialog, {
+ instructions: [
+
+ Before creating a starter pack, you must first verify your email.
+ ,
+ ],
+ })
+ const navToWizard = useCallback(() => {
+ navigation.navigate('StarterPackWizard')
+ }, [navigation])
+ const wrappedNavToWizard = requireEmailVerification(navToWizard, {
+ instructions: [
+
+ Before creating a starter pack, you must first verify your email.
+ ,
+ ],
+ })
+
return (
{
- if (needsEmailVerification) {
- verifyEmailControl.open()
- } else {
- confirmDialogControl.open()
- }
- }}
+ onPress={wrappedOpenConfirmDialog}
style={{backgroundColor: 'transparent'}}>
Make one for me
@@ -271,13 +289,7 @@ function Empty() {
color="primary"
size="small"
disabled={isGenerating}
- onPress={() => {
- if (needsEmailVerification) {
- verifyEmailControl.open()
- } else {
- navigation.navigate('StarterPackWizard')
- }
- }}
+ onPress={wrappedNavToWizard}
style={{
backgroundColor: 'white',
borderColor: 'white',
@@ -333,12 +345,6 @@ function Empty() {
onConfirm={generate}
confirmButtonCta={_(msg`Retry`)}
/>
-
)
}
diff --git a/src/components/StarterPack/QrCodeDialog.tsx b/src/components/StarterPack/QrCodeDialog.tsx
index 43d8b72dad..6a66e92bdd 100644
--- a/src/components/StarterPack/QrCodeDialog.tsx
+++ b/src/components/StarterPack/QrCodeDialog.tsx
@@ -4,7 +4,7 @@ import type ViewShot from 'react-native-view-shot'
import {requestMediaLibraryPermissionsAsync} from 'expo-image-picker'
import {createAssetAsync} from 'expo-media-library'
import * as Sharing from 'expo-sharing'
-import {AppBskyGraphDefs, AppBskyGraphStarterpack} from '@atproto/api'
+import {type AppBskyGraphDefs, AppBskyGraphStarterpack} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
@@ -15,7 +15,7 @@ import * as Toast from '#/view/com/util/Toast'
import {atoms as a} from '#/alf'
import {Button, ButtonText} from '#/components/Button'
import * as Dialog from '#/components/Dialog'
-import {DialogControlProps} from '#/components/Dialog'
+import {type DialogControlProps} from '#/components/Dialog'
import {Loader} from '#/components/Loader'
import {QrCode} from '#/components/StarterPack/QrCode'
import * as bsky from '#/types/bsky'
@@ -55,7 +55,7 @@ export function QrCodeDialog({
if (isNative) {
const res = await requestMediaLibraryPermissionsAsync()
- if (!res) {
+ if (!res.granted) {
Toast.show(
_(
msg`You must grant access to your photo library to save a QR code`,
@@ -155,6 +155,7 @@ export function QrCodeDialog({
return (
+
@@ -197,6 +198,7 @@ export function QrCodeDialog({
)}
+
)
diff --git a/src/components/StarterPack/ShareDialog.tsx b/src/components/StarterPack/ShareDialog.tsx
index 354d7bc4ee..c159b42ddc 100644
--- a/src/components/StarterPack/ShareDialog.tsx
+++ b/src/components/StarterPack/ShareDialog.tsx
@@ -1,21 +1,18 @@
import {View} from 'react-native'
import {Image} from 'expo-image'
-import {requestMediaLibraryPermissionsAsync} from 'expo-image-picker'
-import {AppBskyGraphDefs} from '@atproto/api'
+import {type AppBskyGraphDefs} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries'
-import {saveImageToMediaLibrary} from '#/lib/media/manip'
+import {useSaveImageToMediaLibrary} from '#/lib/media/save-image'
import {shareUrl} from '#/lib/sharing'
import {logEvent} from '#/lib/statsig/statsig'
import {getStarterPackOgCard} from '#/lib/strings/starter-pack'
-import {logger} from '#/logger'
import {isNative, isWeb} from '#/platform/detection'
-import * as Toast from '#/view/com/util/Toast'
import {atoms as a, useTheme} from '#/alf'
import {Button, ButtonText} from '#/components/Button'
-import {DialogControlProps} from '#/components/Dialog'
+import {type DialogControlProps} from '#/components/Dialog'
import * as Dialog from '#/components/Dialog'
import {Loader} from '#/components/Loader'
import {Text} from '#/components/Typography'
@@ -60,26 +57,10 @@ function ShareDialogInner({
control.close()
}
+ const saveImageToAlbum = useSaveImageToMediaLibrary()
+
const onSave = async () => {
- const res = await requestMediaLibraryPermissionsAsync()
-
- if (!res) {
- Toast.show(
- _(msg`You must grant access to your photo library to save the image.`),
- 'xmark',
- )
- return
- }
-
- try {
- await saveImageToMediaLibrary({uri: imageUrl})
- Toast.show(_(msg`Image saved to your camera roll!`))
- control.close()
- } catch (e: unknown) {
- Toast.show(_(msg`An error occurred while saving the QR code!`), 'xmark')
- logger.error('Failed to save QR code', {error: e})
- return
- }
+ await saveImageToAlbum(imageUrl)
}
return (
@@ -161,6 +142,7 @@ function ShareDialogInner({
)}
+
>
)
diff --git a/src/components/StarterPack/StarterPackCard.tsx b/src/components/StarterPack/StarterPackCard.tsx
index caa052726a..88d075b783 100644
--- a/src/components/StarterPack/StarterPackCard.tsx
+++ b/src/components/StarterPack/StarterPackCard.tsx
@@ -2,7 +2,7 @@ import React from 'react'
import {View} from 'react-native'
import {Image} from 'expo-image'
import {AppBskyGraphStarterpack, AtUri} from '@atproto/api'
-import {msg} from '@lingui/macro'
+import {msg, Plural, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useQueryClient} from '@tanstack/react-query'
@@ -13,7 +13,10 @@ import {precacheStarterPack} from '#/state/queries/starter-packs'
import {useSession} from '#/state/session'
import {atoms as a, useTheme} from '#/alf'
import {StarterPack as StarterPackIcon} from '#/components/icons/StarterPack'
-import {Link as BaseLink, LinkProps as BaseLinkProps} from '#/components/Link'
+import {
+ Link as BaseLink,
+ type LinkProps as BaseLinkProps,
+} from '#/components/Link'
import {Text} from '#/components/Typography'
import * as bsky from '#/types/bsky'
@@ -95,13 +98,41 @@ export function Card({
) : null}
{!!joinedAllTimeCount && joinedAllTimeCount >= 50 && (
- {joinedAllTimeCount} users have joined!
+
+ joined!
+
)}
)
}
+export function useStarterPackLink({
+ view,
+}: {
+ view: bsky.starterPack.AnyStarterPackView
+}) {
+ const {_} = useLingui()
+ const qc = useQueryClient()
+ const {rkey, handleOrDid} = React.useMemo(() => {
+ const rkey = new AtUri(view.uri).rkey
+ const {creator} = view
+ return {rkey, handleOrDid: creator.handle || creator.did}
+ }, [view])
+ const precache = () => {
+ precacheResolvedUri(qc, view.creator.handle, view.creator.did)
+ precacheStarterPack(qc, view)
+ }
+
+ return {
+ to: `/starter-pack/${handleOrDid}/${rkey}`,
+ label: AppBskyGraphStarterpack.isRecord(view.record)
+ ? _(msg`Navigate to ${view.record.name}`)
+ : _(msg`Navigate to starter pack`),
+ precache,
+ }
+}
+
export function Link({
starterPack,
children,
diff --git a/src/components/SubtleHover.tsx b/src/components/SubtleHover.tsx
new file mode 100644
index 0000000000..bb5911baa6
--- /dev/null
+++ b/src/components/SubtleHover.tsx
@@ -0,0 +1,34 @@
+import {View} from 'react-native'
+
+import {atoms as a, useTheme, type ViewStyleProp} from '#/alf'
+
+export function SubtleHover({style, hover}: ViewStyleProp & {hover: boolean}) {
+ const t = useTheme()
+
+ let opacity: number
+ switch (t.name) {
+ case 'dark':
+ opacity = 0.4
+ break
+ case 'dim':
+ opacity = 0.45
+ break
+ case 'light':
+ opacity = 0.5
+ break
+ }
+
+ return (
+
+ )
+}
diff --git a/src/components/SubtleWebHover.web.tsx b/src/components/SubtleWebHover.web.tsx
index 8943147e49..af00cf43a0 100644
--- a/src/components/SubtleWebHover.web.tsx
+++ b/src/components/SubtleWebHover.web.tsx
@@ -1,7 +1,7 @@
import {StyleSheet, View} from 'react-native'
import {isTouchDevice} from '#/lib/browser'
-import {useTheme, ViewStyleProp} from '#/alf'
+import {useTheme, type ViewStyleProp} from '#/alf'
export function SubtleWebHover({
style,
diff --git a/src/components/Typography.tsx b/src/components/Typography.tsx
index 4ed7f83719..09d0eeaf0a 100644
--- a/src/components/Typography.tsx
+++ b/src/components/Typography.tsx
@@ -6,9 +6,11 @@ import {
childHasEmoji,
normalizeTextStyles,
renderChildrenWithEmoji,
- TextProps,
+ type TextProps,
} from '#/alf/typography'
+
export type {TextProps}
+export {Text as Span} from 'react-native'
/**
* Our main text component. Use this most of the time.
diff --git a/src/components/dialogs/ChangeEmailDialog.tsx b/src/components/dialogs/ChangeEmailDialog.tsx
new file mode 100644
index 0000000000..93397bae93
--- /dev/null
+++ b/src/components/dialogs/ChangeEmailDialog.tsx
@@ -0,0 +1,259 @@
+import {useState} from 'react'
+import {View} from 'react-native'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {cleanError} from '#/lib/strings/errors'
+import {useAgent, useSession} from '#/state/session'
+import {ErrorMessage} from '#/view/com/util/error/ErrorMessage'
+import {atoms as a, useBreakpoints, web} from '#/alf'
+import {Button, ButtonText} from '#/components/Button'
+import * as Dialog from '#/components/Dialog'
+import * as TextField from '#/components/forms/TextField'
+import {Loader} from '#/components/Loader'
+import {Text} from '#/components/Typography'
+
+export function ChangeEmailDialog({
+ control,
+ verifyEmailControl,
+}: {
+ control: Dialog.DialogControlProps
+ verifyEmailControl: Dialog.DialogControlProps
+}) {
+ return (
+
+
+
+
+ )
+}
+
+export function Inner({
+ verifyEmailControl,
+}: {
+ verifyEmailControl: Dialog.DialogControlProps
+}) {
+ const {_} = useLingui()
+ const {currentAccount} = useSession()
+ const agent = useAgent()
+ const control = Dialog.useDialogContext()
+ const {gtMobile} = useBreakpoints()
+
+ const [currentStep, setCurrentStep] = useState<
+ 'StepOne' | 'StepTwo' | 'StepThree'
+ >('StepOne')
+ const [email, setEmail] = useState('')
+ const [confirmationCode, setConfirmationCode] = useState('')
+ const [isProcessing, setIsProcessing] = useState(false)
+ const [error, setError] = useState('')
+
+ const currentEmail = currentAccount?.email || '(no email)'
+ const uiStrings = {
+ StepOne: {
+ title: _(msg`Change Your Email`),
+ message: '',
+ },
+ StepTwo: {
+ title: _(msg`Security Step Required`),
+ message: _(
+ msg`An email has been sent to your previous address, ${currentEmail}. It includes a confirmation code which you can enter below.`,
+ ),
+ },
+ StepThree: {
+ title: _(msg`Email Updated!`),
+ message: _(
+ msg`Your email address has been updated but it is not yet verified. As a next step, please verify your new email.`,
+ ),
+ },
+ }
+
+ const onRequestChange = async () => {
+ if (email === currentAccount?.email) {
+ setError(
+ _(
+ msg`The email address you entered is the same as your current email address.`,
+ ),
+ )
+ return
+ }
+ setError('')
+ setIsProcessing(true)
+ try {
+ const res = await agent.com.atproto.server.requestEmailUpdate()
+ if (res.data.tokenRequired) {
+ setCurrentStep('StepTwo')
+ } else {
+ await agent.com.atproto.server.updateEmail({email: email.trim()})
+ await agent.resumeSession(agent.session!)
+ setCurrentStep('StepThree')
+ }
+ } catch (e) {
+ setError(cleanError(String(e)))
+ } finally {
+ setIsProcessing(false)
+ }
+ }
+
+ const onConfirm = async () => {
+ setError('')
+ setIsProcessing(true)
+ try {
+ await agent.com.atproto.server.updateEmail({
+ email: email.trim(),
+ token: confirmationCode.trim(),
+ })
+ await agent.resumeSession(agent.session!)
+ setCurrentStep('StepThree')
+ } catch (e) {
+ setError(cleanError(String(e)))
+ } finally {
+ setIsProcessing(false)
+ }
+ }
+
+ const onVerify = async () => {
+ control.close(() => {
+ verifyEmailControl.open()
+ })
+ }
+
+ return (
+
+
+
+
+
+ {uiStrings[currentStep].title}
+
+ {error ? (
+
+
+
+ ) : null}
+ {currentStep === 'StepOne' ? (
+
+
+ Enter your new email address below.
+
+
+
+
+
+ ) : (
+
+ {uiStrings[currentStep].message}
+
+ )}
+
+ {currentStep === 'StepTwo' ? (
+
+
+ Confirmation code
+
+
+
+
+
+ ) : null}
+
+ {currentStep === 'StepOne' ? (
+ <>
+
+
+ Request change
+
+ {isProcessing ? (
+
+ ) : null}
+
+ setCurrentStep('StepTwo')}>
+
+ I have a code
+
+
+ >
+ ) : currentStep === 'StepTwo' ? (
+ <>
+
+
+ Confirm
+
+ {isProcessing ? (
+
+ ) : null}
+
+ {
+ setConfirmationCode('')
+ setCurrentStep('StepOne')
+ }}>
+
+ Resend email
+
+
+ >
+ ) : currentStep === 'StepThree' ? (
+ <>
+
+
+ Verify email
+
+
+ control.close()}>
+
+ Close
+
+
+ >
+ ) : null}
+
+
+
+ )
+}
diff --git a/src/components/dialogs/Context.tsx b/src/components/dialogs/Context.tsx
index c9dff9a999..728044325b 100644
--- a/src/components/dialogs/Context.tsx
+++ b/src/components/dialogs/Context.tsx
@@ -1,32 +1,77 @@
-import React from 'react'
+import {createContext, useContext, useMemo, useState} from 'react'
import * as Dialog from '#/components/Dialog'
+import {type Screen} from '#/components/dialogs/EmailDialog/types'
-type Control = Dialog.DialogOuterProps['control']
+type Control = Dialog.DialogControlProps
+
+export type StatefulControl
= {
+ control: Control
+ open: (value: T) => void
+ clear: () => void
+ value: T | undefined
+}
type ControlsContext = {
mutedWordsDialogControl: Control
signinDialogControl: Control
+ inAppBrowserConsentControl: StatefulControl
+ emailDialogControl: StatefulControl
}
-const ControlsContext = React.createContext({
- mutedWordsDialogControl: {} as Control,
- signinDialogControl: {} as Control,
-})
+const ControlsContext = createContext(null)
export function useGlobalDialogsControlContext() {
- return React.useContext(ControlsContext)
+ const ctx = useContext(ControlsContext)
+ if (!ctx) {
+ throw new Error(
+ 'useGlobalDialogsControlContext must be used within a Provider',
+ )
+ }
+ return ctx
}
export function Provider({children}: React.PropsWithChildren<{}>) {
const mutedWordsDialogControl = Dialog.useDialogControl()
const signinDialogControl = Dialog.useDialogControl()
- const ctx = React.useMemo(
- () => ({mutedWordsDialogControl, signinDialogControl}),
- [mutedWordsDialogControl, signinDialogControl],
+ const inAppBrowserConsentControl = useStatefulDialogControl()
+ const emailDialogControl = useStatefulDialogControl()
+
+ const ctx = useMemo(
+ () => ({
+ mutedWordsDialogControl,
+ signinDialogControl,
+ inAppBrowserConsentControl,
+ emailDialogControl,
+ }),
+ [
+ mutedWordsDialogControl,
+ signinDialogControl,
+ inAppBrowserConsentControl,
+ emailDialogControl,
+ ],
)
return (
{children}
)
}
+
+export function useStatefulDialogControl(
+ initialValue?: T,
+): StatefulControl {
+ const [value, setValue] = useState(initialValue)
+ const control = Dialog.useDialogControl()
+ return useMemo(
+ () => ({
+ control,
+ open: (v: T) => {
+ setValue(v)
+ control.open()
+ },
+ clear: () => setValue(initialValue),
+ value,
+ }),
+ [control, value, initialValue],
+ )
+}
diff --git a/src/components/dialogs/EmailDialog/components/ResendEmailText.tsx b/src/components/dialogs/EmailDialog/components/ResendEmailText.tsx
new file mode 100644
index 0000000000..0fc9a5469f
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/components/ResendEmailText.tsx
@@ -0,0 +1,56 @@
+import {useState} from 'react'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {wait} from '#/lib/async/wait'
+import {atoms as a, type TextStyleProp, useTheme} from '#/alf'
+import {CheckThick_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check'
+import {createStaticClick, InlineLinkText} from '#/components/Link'
+import {Loader} from '#/components/Loader'
+import {Span, Text} from '#/components/Typography'
+
+export function ResendEmailText({
+ onPress,
+ style,
+}: TextStyleProp & {
+ onPress: () => Promise
+}) {
+ const t = useTheme()
+ const {_} = useLingui()
+ const [status, setStatus] = useState<'sending' | 'success' | null>(null)
+
+ const handleOnPress = async () => {
+ setStatus('sending')
+ try {
+ await wait(1000, onPress())
+ setStatus('success')
+ } finally {
+ setTimeout(() => {
+ setStatus(null)
+ }, 1000)
+ }
+ }
+
+ return (
+
+
+ Don't see an email?{' '}
+ {
+ handleOnPress()
+ })}>
+ Click here to resend.
+
+ {' '}
+
+ {status === 'sending' ? (
+
+ ) : status === 'success' ? (
+
+ ) : null}
+
+
+ )
+}
diff --git a/src/components/dialogs/EmailDialog/components/TokenField.tsx b/src/components/dialogs/EmailDialog/components/TokenField.tsx
new file mode 100644
index 0000000000..26a51e4853
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/components/TokenField.tsx
@@ -0,0 +1,45 @@
+import {type TextInputProps, View} from 'react-native'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import * as TextField from '#/components/forms/TextField'
+import {Shield_Stroke2_Corner0_Rounded as Shield} from '#/components/icons/Shield'
+
+export function normalizeCode(value: string) {
+ const normalized = value.toUpperCase().replace(/[^A-Z2-7]/g, '')
+ if (normalized.length <= 5) return normalized
+ return `${normalized.slice(0, 5)}-${normalized.slice(5)}`
+}
+
+export function isValidCode(value?: string) {
+ return Boolean(value && /^[A-Z2-7]{5}-[A-Z2-7]{5}$/.test(value))
+}
+
+export function TokenField({
+ value,
+ onChangeText,
+ onSubmitEditing,
+}: Pick) {
+ const {_} = useLingui()
+ const isInvalid = Boolean(value && value.length > 10 && !isValidCode(value))
+
+ const handleOnChangeText = (v: string) => {
+ onChangeText?.(normalizeCode(v))
+ }
+
+ return (
+
+
+
+
+
+
+ )
+}
diff --git a/src/components/dialogs/EmailDialog/data/useAccountEmailState.ts b/src/components/dialogs/EmailDialog/data/useAccountEmailState.ts
new file mode 100644
index 0000000000..377411107a
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/data/useAccountEmailState.ts
@@ -0,0 +1,79 @@
+import {useCallback, useEffect, useState} from 'react'
+import {useQuery, useQueryClient} from '@tanstack/react-query'
+
+import {useAgent} from '#/state/session'
+import {emitEmailVerified} from '#/components/dialogs/EmailDialog/events'
+
+export type AccountEmailState = {
+ isEmailVerified: boolean
+ email2FAEnabled: boolean
+}
+
+export const accountEmailStateQueryKey = ['accountEmailState'] as const
+
+export function useInvalidateAccountEmailState() {
+ const qc = useQueryClient()
+
+ return useCallback(() => {
+ return qc.invalidateQueries({
+ queryKey: accountEmailStateQueryKey,
+ })
+ }, [qc])
+}
+
+export function useUpdateAccountEmailStateQueryCache() {
+ const qc = useQueryClient()
+
+ return useCallback(
+ (data: AccountEmailState) => {
+ return qc.setQueriesData(
+ {
+ queryKey: accountEmailStateQueryKey,
+ },
+ data,
+ )
+ },
+ [qc],
+ )
+}
+
+export function useAccountEmailState() {
+ const agent = useAgent()
+ const [prevIsEmailVerified, setPrevEmailIsVerified] = useState(
+ !!agent.session?.emailConfirmed,
+ )
+ const fallbackData: AccountEmailState = {
+ isEmailVerified: !!agent.session?.emailConfirmed,
+ email2FAEnabled: !!agent.session?.emailAuthFactor,
+ }
+ const query = useQuery({
+ enabled: !!agent.session,
+ refetchOnWindowFocus: true,
+ queryKey: accountEmailStateQueryKey,
+ queryFn: async () => {
+ // will also trigger updates to `#/state/session` data
+ const {data} = await agent.resumeSession(agent.session!)
+ return {
+ isEmailVerified: !!data.emailConfirmed,
+ email2FAEnabled: !!data.emailAuthFactor,
+ }
+ },
+ })
+
+ const state = query.data ?? fallbackData
+
+ /*
+ * This will emit `n` times for each instance of this hook. So the listeners
+ * all use `once` to prevent multiple handlers firing.
+ */
+ useEffect(() => {
+ if (state.isEmailVerified && !prevIsEmailVerified) {
+ setPrevEmailIsVerified(true)
+ emitEmailVerified()
+ } else if (!state.isEmailVerified && prevIsEmailVerified) {
+ setPrevEmailIsVerified(false)
+ }
+ }, [state, prevIsEmailVerified])
+
+ return state
+}
diff --git a/src/components/dialogs/EmailDialog/data/useConfirmEmail.ts b/src/components/dialogs/EmailDialog/data/useConfirmEmail.ts
new file mode 100644
index 0000000000..73f824fcc6
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/data/useConfirmEmail.ts
@@ -0,0 +1,29 @@
+import {useMutation} from '@tanstack/react-query'
+
+import {useAgent, useSession} from '#/state/session'
+import {useUpdateAccountEmailStateQueryCache} from '#/components/dialogs/EmailDialog/data/useAccountEmailState'
+
+export function useConfirmEmail() {
+ const agent = useAgent()
+ const {currentAccount} = useSession()
+ const updateAccountEmailStateQueryCache =
+ useUpdateAccountEmailStateQueryCache()
+
+ return useMutation({
+ mutationFn: async ({token}: {token: string}) => {
+ if (!currentAccount?.email) {
+ throw new Error('No email found for the current account')
+ }
+
+ await agent.com.atproto.server.confirmEmail({
+ email: currentAccount.email,
+ token: token.trim(),
+ })
+ const {data} = await agent.resumeSession(agent.session!)
+ updateAccountEmailStateQueryCache({
+ isEmailVerified: !!data.emailConfirmed,
+ email2FAEnabled: !!data.emailAuthFactor,
+ })
+ },
+ })
+}
diff --git a/src/components/dialogs/EmailDialog/data/useManageEmail2FA.ts b/src/components/dialogs/EmailDialog/data/useManageEmail2FA.ts
new file mode 100644
index 0000000000..39f5fd2d9e
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/data/useManageEmail2FA.ts
@@ -0,0 +1,35 @@
+import {useMutation} from '@tanstack/react-query'
+
+import {useAgent, useSession} from '#/state/session'
+import {useUpdateAccountEmailStateQueryCache} from '#/components/dialogs/EmailDialog/data/useAccountEmailState'
+
+export function useManageEmail2FA() {
+ const agent = useAgent()
+ const {currentAccount} = useSession()
+ const updateAccountEmailStateQueryCache =
+ useUpdateAccountEmailStateQueryCache()
+
+ return useMutation({
+ mutationFn: async ({
+ enabled,
+ token,
+ }:
+ | {enabled: true; token?: undefined}
+ | {enabled: false; token: string}) => {
+ if (!currentAccount?.email) {
+ throw new Error('No email found for the current account')
+ }
+
+ await agent.com.atproto.server.updateEmail({
+ email: currentAccount.email,
+ emailAuthFactor: enabled,
+ token,
+ })
+ const {data} = await agent.resumeSession(agent.session!)
+ updateAccountEmailStateQueryCache({
+ isEmailVerified: !!data.emailConfirmed,
+ email2FAEnabled: !!data.emailAuthFactor,
+ })
+ },
+ })
+}
diff --git a/src/components/dialogs/EmailDialog/data/useRequestEmailUpdate.ts b/src/components/dialogs/EmailDialog/data/useRequestEmailUpdate.ts
new file mode 100644
index 0000000000..a442662fcf
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/data/useRequestEmailUpdate.ts
@@ -0,0 +1,13 @@
+import {useMutation} from '@tanstack/react-query'
+
+import {useAgent} from '#/state/session'
+
+export function useRequestEmailUpdate() {
+ const agent = useAgent()
+
+ return useMutation({
+ mutationFn: async () => {
+ return (await agent.com.atproto.server.requestEmailUpdate()).data
+ },
+ })
+}
diff --git a/src/components/dialogs/EmailDialog/data/useRequestEmailVerification.ts b/src/components/dialogs/EmailDialog/data/useRequestEmailVerification.ts
new file mode 100644
index 0000000000..ae308c7afc
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/data/useRequestEmailVerification.ts
@@ -0,0 +1,13 @@
+import {useMutation} from '@tanstack/react-query'
+
+import {useAgent} from '#/state/session'
+
+export function useRequestEmailVerification() {
+ const agent = useAgent()
+
+ return useMutation({
+ mutationFn: async () => {
+ await agent.com.atproto.server.requestEmailConfirmation()
+ },
+ })
+}
diff --git a/src/components/dialogs/EmailDialog/data/useUpdateEmail.ts b/src/components/dialogs/EmailDialog/data/useUpdateEmail.ts
new file mode 100644
index 0000000000..2ec1eb6dc2
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/data/useUpdateEmail.ts
@@ -0,0 +1,45 @@
+import {useMutation} from '@tanstack/react-query'
+
+import {useAgent} from '#/state/session'
+import {useRequestEmailUpdate} from '#/components/dialogs/EmailDialog/data/useRequestEmailUpdate'
+
+async function updateEmailAndRefreshSession(
+ agent: ReturnType,
+ email: string,
+ token?: string,
+) {
+ await agent.com.atproto.server.updateEmail({email: email.trim(), token})
+ await agent.resumeSession(agent.session!)
+}
+
+export function useUpdateEmail() {
+ const agent = useAgent()
+ const {mutateAsync: requestEmailUpdate} = useRequestEmailUpdate()
+
+ return useMutation<
+ {status: 'tokenRequired' | 'success'},
+ Error,
+ {email: string; token?: string}
+ >({
+ mutationFn: async ({email, token}: {email: string; token?: string}) => {
+ if (token) {
+ await updateEmailAndRefreshSession(agent, email, token)
+ return {
+ status: 'success',
+ }
+ } else {
+ const {tokenRequired} = await requestEmailUpdate()
+ if (tokenRequired) {
+ return {
+ status: 'tokenRequired',
+ }
+ } else {
+ await updateEmailAndRefreshSession(agent, email, token)
+ return {
+ status: 'success',
+ }
+ }
+ }
+ },
+ })
+}
diff --git a/src/components/dialogs/EmailDialog/events.ts b/src/components/dialogs/EmailDialog/events.ts
new file mode 100644
index 0000000000..4fa171cad5
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/events.ts
@@ -0,0 +1,23 @@
+import {useEffect} from 'react'
+import EventEmitter from 'eventemitter3'
+
+const events = new EventEmitter<{
+ emailVerified: void
+}>()
+
+export function emitEmailVerified() {
+ events.emit('emailVerified')
+}
+
+export function useOnEmailVerified(cb: () => void) {
+ useEffect(() => {
+ /*
+ * N.B. Use `once` here, since the event can fire multiple times for each
+ * instance of `useAccountEmailState`
+ */
+ events.once('emailVerified', cb)
+ return () => {
+ events.off('emailVerified', cb)
+ }
+ }, [cb])
+}
diff --git a/src/components/dialogs/EmailDialog/index.tsx b/src/components/dialogs/EmailDialog/index.tsx
new file mode 100644
index 0000000000..3cebbdfc7a
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/index.tsx
@@ -0,0 +1,72 @@
+import {useCallback, useState} from 'react'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {web} from '#/alf'
+import * as Dialog from '#/components/Dialog'
+import {type StatefulControl} from '#/components/dialogs/Context'
+import {useGlobalDialogsControlContext} from '#/components/dialogs/Context'
+import {useAccountEmailState} from '#/components/dialogs/EmailDialog/data/useAccountEmailState'
+import {Manage2FA} from '#/components/dialogs/EmailDialog/screens/Manage2FA'
+import {Update} from '#/components/dialogs/EmailDialog/screens/Update'
+import {VerificationReminder} from '#/components/dialogs/EmailDialog/screens/VerificationReminder'
+import {Verify} from '#/components/dialogs/EmailDialog/screens/Verify'
+import {type Screen, ScreenID} from '#/components/dialogs/EmailDialog/types'
+
+export type {Screen} from '#/components/dialogs/EmailDialog/types'
+export {ScreenID as EmailDialogScreenID} from '#/components/dialogs/EmailDialog/types'
+
+export function useEmailDialogControl() {
+ return useGlobalDialogsControlContext().emailDialogControl
+}
+
+export function EmailDialog() {
+ const {_} = useLingui()
+ const emailDialogControl = useEmailDialogControl()
+ const {isEmailVerified} = useAccountEmailState()
+ const onClose = useCallback(() => {
+ if (!isEmailVerified) {
+ if (emailDialogControl.value?.id === ScreenID.Verify) {
+ emailDialogControl.value.onCloseWithoutVerifying?.()
+ }
+ }
+ emailDialogControl.clear()
+ }, [isEmailVerified, emailDialogControl])
+
+ return (
+
+
+
+
+
+
+
+
+ )
+}
+
+function Inner({control}: {control: StatefulControl}) {
+ const [screen, showScreen] = useState(() => control.value)
+
+ if (!screen) return null
+
+ switch (screen.id) {
+ case ScreenID.Update: {
+ return
+ }
+ case ScreenID.Verify: {
+ return
+ }
+ case ScreenID.VerificationReminder: {
+ return
+ }
+ case ScreenID.Manage2FA: {
+ return
+ }
+ default: {
+ return null
+ }
+ }
+}
diff --git a/src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx b/src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx
new file mode 100644
index 0000000000..1896ff27d7
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx
@@ -0,0 +1,254 @@
+import {useReducer, useState} from 'react'
+import {View} from 'react-native'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {wait} from '#/lib/async/wait'
+import {useCleanError} from '#/lib/hooks/useCleanError'
+import {logger} from '#/logger'
+import {useSession} from '#/state/session'
+import {atoms as a, useTheme} from '#/alf'
+import {Admonition} from '#/components/Admonition'
+import {Button, ButtonIcon, ButtonText} from '#/components/Button'
+import {useDialogContext} from '#/components/Dialog'
+import {ResendEmailText} from '#/components/dialogs/EmailDialog/components/ResendEmailText'
+import {
+ isValidCode,
+ TokenField,
+} from '#/components/dialogs/EmailDialog/components/TokenField'
+import {useManageEmail2FA} from '#/components/dialogs/EmailDialog/data/useManageEmail2FA'
+import {useRequestEmailUpdate} from '#/components/dialogs/EmailDialog/data/useRequestEmailUpdate'
+import {Divider} from '#/components/Divider'
+import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check'
+import {Envelope_Stroke2_Corner0_Rounded as Envelope} from '#/components/icons/Envelope'
+import {createStaticClick, InlineLinkText} from '#/components/Link'
+import {Loader} from '#/components/Loader'
+import {Span, Text} from '#/components/Typography'
+
+type State = {
+ error: string
+ step: 'email' | 'token'
+ emailStatus: 'pending' | 'success' | 'error' | 'default'
+ tokenStatus: 'pending' | 'success' | 'error' | 'default'
+}
+
+type Action =
+ | {
+ type: 'setError'
+ error: string
+ }
+ | {
+ type: 'setStep'
+ step: 'email' | 'token'
+ }
+ | {
+ type: 'setEmailStatus'
+ status: State['emailStatus']
+ }
+ | {
+ type: 'setTokenStatus'
+ status: State['tokenStatus']
+ }
+
+function reducer(state: State, action: Action): State {
+ switch (action.type) {
+ case 'setError': {
+ return {
+ ...state,
+ error: action.error,
+ emailStatus: 'error',
+ tokenStatus: 'error',
+ }
+ }
+ case 'setStep': {
+ return {
+ ...state,
+ error: '',
+ step: action.step,
+ }
+ }
+ case 'setEmailStatus': {
+ return {
+ ...state,
+ error: '',
+ emailStatus: action.status,
+ }
+ }
+ case 'setTokenStatus': {
+ return {
+ ...state,
+ error: '',
+ tokenStatus: action.status,
+ }
+ }
+ default: {
+ return state
+ }
+ }
+}
+
+export function Disable() {
+ const t = useTheme()
+ const {_} = useLingui()
+ const cleanError = useCleanError()
+ const {currentAccount} = useSession()
+ const {mutateAsync: requestEmailUpdate} = useRequestEmailUpdate()
+ const {mutateAsync: manageEmail2FA} = useManageEmail2FA()
+ const control = useDialogContext()
+
+ const [token, setToken] = useState('')
+ const [state, dispatch] = useReducer(reducer, {
+ error: '',
+ step: 'email',
+ emailStatus: 'default',
+ tokenStatus: 'default',
+ })
+
+ const handleSendEmail = async () => {
+ dispatch({type: 'setEmailStatus', status: 'pending'})
+ try {
+ await wait(1000, requestEmailUpdate())
+ dispatch({type: 'setEmailStatus', status: 'success'})
+ setTimeout(() => {
+ dispatch({type: 'setStep', step: 'token'})
+ }, 1000)
+ } catch (e) {
+ logger.error('Manage2FA: email update code request failed', {
+ safeMessage: e,
+ })
+ const {clean} = cleanError(e)
+ dispatch({
+ type: 'setError',
+ error: clean || _(msg`Failed to send email, please try again.`),
+ })
+ }
+ }
+
+ const handleManageEmail2FA = async () => {
+ if (!isValidCode(token)) {
+ dispatch({
+ type: 'setError',
+ error: _(msg`Please enter a valid code.`),
+ })
+ return
+ }
+
+ dispatch({type: 'setTokenStatus', status: 'pending'})
+
+ try {
+ await wait(1000, manageEmail2FA({enabled: false, token}))
+ dispatch({type: 'setTokenStatus', status: 'success'})
+ setTimeout(() => {
+ control.close()
+ }, 1000)
+ } catch (e) {
+ logger.error('Manage2FA: disable email 2FA failed', {safeMessage: e})
+ const {clean} = cleanError(e)
+ dispatch({
+ type: 'setError',
+ error: clean || _(msg`Failed to update email 2FA settings`),
+ })
+ }
+ }
+
+ return (
+
+
+ Disable email 2FA
+
+
+ {state.step === 'email' ? (
+ <>
+
+
+ To disable your email 2FA method, please verify your access to{' '}
+ {currentAccount?.email}
+
+
+
+
+ {state.error && {state.error} }
+
+
+
+ Send email
+
+
+
+
+
+
+
+
+ Have a code?{' '}
+ {
+ dispatch({type: 'setStep', step: 'token'})
+ })}>
+ Click here.
+
+
+
+
+ >
+ ) : (
+ <>
+
+
+ To disable your email 2FA method, please verify your access to{' '}
+ {currentAccount?.email}
+
+
+
+
+
+
+
+
+ {state.error && {state.error} }
+
+
+
+ Disable 2FA
+
+ {state.tokenStatus === 'pending' ? (
+
+ ) : state.tokenStatus === 'success' ? (
+
+ ) : null}
+
+ >
+ )}
+
+ )
+}
diff --git a/src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx b/src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx
new file mode 100644
index 0000000000..7a126792a2
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx
@@ -0,0 +1,137 @@
+import {useReducer} from 'react'
+import {View} from 'react-native'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {wait} from '#/lib/async/wait'
+import {useCleanError} from '#/lib/hooks/useCleanError'
+import {logger} from '#/logger'
+import {atoms as a, useBreakpoints, useTheme} from '#/alf'
+import {Admonition} from '#/components/Admonition'
+import {Button, ButtonIcon, ButtonText} from '#/components/Button'
+import {useDialogContext} from '#/components/Dialog'
+import {useManageEmail2FA} from '#/components/dialogs/EmailDialog/data/useManageEmail2FA'
+import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check'
+import {ShieldCheck_Stroke2_Corner0_Rounded as ShieldIcon} from '#/components/icons/Shield'
+import {Loader} from '#/components/Loader'
+import {Text} from '#/components/Typography'
+
+type State = {
+ error: string
+ status: 'pending' | 'success' | 'error' | 'default'
+}
+
+type Action =
+ | {
+ type: 'setError'
+ error: string
+ }
+ | {
+ type: 'setStatus'
+ status: State['status']
+ }
+
+function reducer(state: State, action: Action): State {
+ switch (action.type) {
+ case 'setError': {
+ return {
+ ...state,
+ error: action.error,
+ status: 'error',
+ }
+ }
+ case 'setStatus': {
+ return {
+ ...state,
+ error: '',
+ status: action.status,
+ }
+ }
+ default: {
+ return state
+ }
+ }
+}
+
+export function Enable() {
+ const t = useTheme()
+ const {_} = useLingui()
+ const cleanError = useCleanError()
+ const {gtPhone} = useBreakpoints()
+ const {mutateAsync: manageEmail2FA} = useManageEmail2FA()
+ const control = useDialogContext()
+
+ const [state, dispatch] = useReducer(reducer, {
+ error: '',
+ status: 'default',
+ })
+
+ const handleManageEmail2FA = async () => {
+ dispatch({type: 'setStatus', status: 'pending'})
+
+ try {
+ await wait(1000, manageEmail2FA({enabled: true}))
+ dispatch({type: 'setStatus', status: 'success'})
+ setTimeout(() => {
+ control.close()
+ }, 1000)
+ } catch (e) {
+ logger.error('Manage2FA: enable email 2FA failed', {safeMessage: e})
+ const {clean} = cleanError(e)
+ dispatch({
+ type: 'setError',
+ error: clean || _(msg`Failed to update email 2FA settings`),
+ })
+ }
+ }
+
+ return (
+
+
+
+ Enable email 2FA
+
+
+
+ Require an email code to sign in to your account.
+
+
+
+ {state.error && {state.error} }
+
+
+
+
+ Enable
+
+
+
+ control.close()}>
+
+ Cancel
+
+
+
+
+ )
+}
diff --git a/src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx b/src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx
new file mode 100644
index 0000000000..427a42b1fd
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx
@@ -0,0 +1,70 @@
+import {useEffect, useState} from 'react'
+import {Trans} from '@lingui/macro'
+
+import {useAccountEmailState} from '#/components/dialogs/EmailDialog/data/useAccountEmailState'
+import {Disable} from '#/components/dialogs/EmailDialog/screens/Manage2FA/Disable'
+import {Enable} from '#/components/dialogs/EmailDialog/screens/Manage2FA/Enable'
+import {
+ ScreenID,
+ type ScreenProps,
+} from '#/components/dialogs/EmailDialog/types'
+
+export function Manage2FA({showScreen}: ScreenProps) {
+ const {isEmailVerified, email2FAEnabled} = useAccountEmailState()
+ const [requestedAction, setRequestedAction] = useState<
+ 'enable' | 'disable' | null
+ >(null)
+
+ useEffect(() => {
+ if (!isEmailVerified) {
+ showScreen({
+ id: ScreenID.Verify,
+ instructions: [
+
+ You need to verify your email address before you can enable email
+ 2FA.
+ ,
+ ],
+ onVerify: () => {
+ showScreen({
+ id: ScreenID.Manage2FA,
+ })
+ },
+ })
+ }
+ }, [isEmailVerified, showScreen])
+
+ /*
+ * Wacky state handling so that once 2FA settings change, we don't show the
+ * wrong step of this form - esb
+ */
+
+ if (email2FAEnabled) {
+ if (!requestedAction) {
+ setRequestedAction('disable')
+ return
+ }
+
+ if (requestedAction === 'disable') {
+ return
+ }
+ if (requestedAction === 'enable') {
+ return
+ }
+ } else {
+ if (!requestedAction) {
+ setRequestedAction('enable')
+ return
+ }
+
+ if (requestedAction === 'disable') {
+ return
+ }
+ if (requestedAction === 'enable') {
+ return
+ }
+ }
+
+ // should never happen
+ return null
+}
diff --git a/src/components/dialogs/EmailDialog/screens/Update.tsx b/src/components/dialogs/EmailDialog/screens/Update.tsx
new file mode 100644
index 0000000000..be0af88076
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/screens/Update.tsx
@@ -0,0 +1,319 @@
+import {useReducer} from 'react'
+import {View} from 'react-native'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+import {validate as validateEmail} from 'email-validator'
+
+import {wait} from '#/lib/async/wait'
+import {useCleanError} from '#/lib/hooks/useCleanError'
+import {logger} from '#/logger'
+import {useSession} from '#/state/session'
+import {atoms as a, useTheme} from '#/alf'
+import {Admonition} from '#/components/Admonition'
+import {Button, ButtonIcon, ButtonText} from '#/components/Button'
+import {ResendEmailText} from '#/components/dialogs/EmailDialog/components/ResendEmailText'
+import {
+ isValidCode,
+ TokenField,
+} from '#/components/dialogs/EmailDialog/components/TokenField'
+import {useRequestEmailUpdate} from '#/components/dialogs/EmailDialog/data/useRequestEmailUpdate'
+import {useRequestEmailVerification} from '#/components/dialogs/EmailDialog/data/useRequestEmailVerification'
+import {useUpdateEmail} from '#/components/dialogs/EmailDialog/data/useUpdateEmail'
+import {
+ type ScreenID,
+ type ScreenProps,
+} from '#/components/dialogs/EmailDialog/types'
+import {Divider} from '#/components/Divider'
+import * as TextField from '#/components/forms/TextField'
+import {CheckThick_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check'
+import {Envelope_Stroke2_Corner0_Rounded as Envelope} from '#/components/icons/Envelope'
+import {Loader} from '#/components/Loader'
+import {Text} from '#/components/Typography'
+
+type State = {
+ step: 'email' | 'token'
+ mutationStatus: 'pending' | 'success' | 'error' | 'default'
+ error: string
+ emailValid: boolean
+ email: string
+ token: string
+}
+
+type Action =
+ | {
+ type: 'setStep'
+ step: State['step']
+ }
+ | {
+ type: 'setError'
+ error: string
+ }
+ | {
+ type: 'setMutationStatus'
+ status: State['mutationStatus']
+ }
+ | {
+ type: 'setEmail'
+ value: string
+ }
+ | {
+ type: 'setToken'
+ value: string
+ }
+
+function reducer(state: State, action: Action): State {
+ switch (action.type) {
+ case 'setStep': {
+ return {
+ ...state,
+ step: action.step,
+ }
+ }
+ case 'setError': {
+ return {
+ ...state,
+ error: action.error,
+ mutationStatus: 'error',
+ }
+ }
+ case 'setMutationStatus': {
+ return {
+ ...state,
+ error: '',
+ mutationStatus: action.status,
+ }
+ }
+ case 'setEmail': {
+ const emailValid = validateEmail(action.value)
+ return {
+ ...state,
+ step: 'email',
+ token: '',
+ email: action.value,
+ emailValid,
+ }
+ }
+ case 'setToken': {
+ return {
+ ...state,
+ error: '',
+ token: action.value,
+ }
+ }
+ }
+}
+
+export function Update(_props: ScreenProps) {
+ const t = useTheme()
+ const {_} = useLingui()
+ const cleanError = useCleanError()
+ const {currentAccount} = useSession()
+ const [state, dispatch] = useReducer(reducer, {
+ step: 'email',
+ mutationStatus: 'default',
+ error: '',
+ email: '',
+ emailValid: true,
+ token: '',
+ })
+
+ const {mutateAsync: updateEmail} = useUpdateEmail()
+ const {mutateAsync: requestEmailUpdate} = useRequestEmailUpdate()
+ const {mutateAsync: requestEmailVerification} = useRequestEmailVerification()
+
+ const handleEmailChange = (email: string) => {
+ dispatch({
+ type: 'setEmail',
+ value: email,
+ })
+ }
+
+ const handleUpdateEmail = async () => {
+ if (state.step === 'token' && !isValidCode(state.token)) {
+ dispatch({
+ type: 'setError',
+ error: _(msg`Please enter a valid code.`),
+ })
+ return
+ }
+
+ dispatch({
+ type: 'setMutationStatus',
+ status: 'pending',
+ })
+
+ if (state.emailValid === false) {
+ dispatch({
+ type: 'setError',
+ error: _(msg`Please enter a valid email address.`),
+ })
+ return
+ }
+
+ if (state.email === currentAccount!.email) {
+ dispatch({
+ type: 'setError',
+ error: _(msg`This email is already associated with your account.`),
+ })
+ return
+ }
+
+ try {
+ const {status} = await wait(
+ 1000,
+ updateEmail({
+ email: state.email,
+ token: state.token,
+ }),
+ )
+
+ if (status === 'tokenRequired') {
+ dispatch({
+ type: 'setStep',
+ step: 'token',
+ })
+ dispatch({
+ type: 'setMutationStatus',
+ status: 'default',
+ })
+ } else if (status === 'success') {
+ dispatch({
+ type: 'setMutationStatus',
+ status: 'success',
+ })
+
+ try {
+ // fire off a confirmation email immediately
+ await requestEmailVerification()
+ } catch {}
+ }
+ } catch (e) {
+ logger.error('EmailDialog: update email failed', {safeMessage: e})
+ const {clean} = cleanError(e)
+ dispatch({
+ type: 'setError',
+ error: clean || _(msg`Failed to update email, please try again.`),
+ })
+ }
+ }
+
+ return (
+
+
+ Update your email
+
+
+ {currentAccount?.emailAuthFactor && (
+
+
+ If you update your email address, email 2FA will be disabled.
+
+
+ )}
+
+
+
+
+ Please enter your new email address.
+
+
+
+
+
+
+
+ {state.step === 'token' && (
+ <>
+
+
+
+ Security step required
+
+
+
+ Please enter the security code we sent to your previous email
+ address.
+
+
+ {
+ dispatch({
+ type: 'setToken',
+ value: token,
+ })
+ }
+ }
+ onSubmitEditing={handleUpdateEmail}
+ />
+ {state.mutationStatus !== 'success' && (
+
+ )}
+
+ >
+ )}
+
+ {state.error && {state.error} }
+
+
+ {state.mutationStatus === 'success' ? (
+ <>
+
+
+
+
+
+ Success!
+
+
+
+
+ Please click on the link in the email we just sent you to verify
+ your new email address. This is an important step to allow you
+ to continue enjoying all the features of Bluesky.
+
+
+
+ >
+ ) : (
+
+
+ Update email
+
+ {state.mutationStatus === 'pending' && }
+
+ )}
+
+ )
+}
diff --git a/src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx b/src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx
new file mode 100644
index 0000000000..d6c946956f
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx
@@ -0,0 +1,103 @@
+import {View} from 'react-native'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {atoms as a, platform, tokens, useBreakpoints, useTheme} from '#/alf'
+import {Button, ButtonText} from '#/components/Button'
+import {useDialogContext} from '#/components/Dialog'
+import {
+ ScreenID,
+ type ScreenProps,
+} from '#/components/dialogs/EmailDialog/types'
+import {Divider} from '#/components/Divider'
+import {GradientFill} from '#/components/GradientFill'
+import {ShieldCheck_Stroke2_Corner0_Rounded as ShieldIcon} from '#/components/icons/Shield'
+import {Text} from '#/components/Typography'
+
+export function VerificationReminder({
+ showScreen,
+}: ScreenProps) {
+ const t = useTheme()
+ const {_} = useLingui()
+ const {gtPhone, gtMobile} = useBreakpoints()
+ const control = useDialogContext()
+
+ const dialogPadding = gtMobile ? a.p_2xl.padding : a.p_xl.padding
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+ Please verify your email
+
+
+
+ Your email has not yet been verified. Please verify your email in
+ order to enjoy all the features of Bluesky.
+
+
+
+
+
+
+
+
+ showScreen({
+ id: ScreenID.Verify,
+ })
+ }>
+
+ Get started
+
+
+ control.close()}>
+
+ Maybe later
+
+
+
+
+ )
+}
diff --git a/src/components/dialogs/EmailDialog/screens/Verify.tsx b/src/components/dialogs/EmailDialog/screens/Verify.tsx
new file mode 100644
index 0000000000..dabd0d2f24
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/screens/Verify.tsx
@@ -0,0 +1,386 @@
+import {useReducer} from 'react'
+import {View} from 'react-native'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {wait} from '#/lib/async/wait'
+import {useCleanError} from '#/lib/hooks/useCleanError'
+import {logger} from '#/logger'
+import {useSession} from '#/state/session'
+import {atoms as a, useTheme} from '#/alf'
+import {Admonition} from '#/components/Admonition'
+import {Button, ButtonIcon, ButtonText} from '#/components/Button'
+import {ResendEmailText} from '#/components/dialogs/EmailDialog/components/ResendEmailText'
+import {
+ isValidCode,
+ TokenField,
+} from '#/components/dialogs/EmailDialog/components/TokenField'
+import {useConfirmEmail} from '#/components/dialogs/EmailDialog/data/useConfirmEmail'
+import {useRequestEmailVerification} from '#/components/dialogs/EmailDialog/data/useRequestEmailVerification'
+import {useOnEmailVerified} from '#/components/dialogs/EmailDialog/events'
+import {
+ ScreenID,
+ type ScreenProps,
+} from '#/components/dialogs/EmailDialog/types'
+import {Divider} from '#/components/Divider'
+import {CheckThick_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check'
+import {Envelope_Stroke2_Corner0_Rounded as Envelope} from '#/components/icons/Envelope'
+import {createStaticClick, InlineLinkText} from '#/components/Link'
+import {Loader} from '#/components/Loader'
+import {Span, Text} from '#/components/Typography'
+
+type State = {
+ step: 'email' | 'token' | 'success'
+ mutationStatus: 'pending' | 'success' | 'error' | 'default'
+ error: string
+ token: string
+}
+
+type Action =
+ | {
+ type: 'setStep'
+ step: State['step']
+ }
+ | {
+ type: 'setError'
+ error: string
+ }
+ | {
+ type: 'setMutationStatus'
+ status: State['mutationStatus']
+ }
+ | {
+ type: 'setToken'
+ value: string
+ }
+
+function reducer(state: State, action: Action): State {
+ switch (action.type) {
+ case 'setStep': {
+ return {
+ ...state,
+ error: '',
+ mutationStatus: 'default',
+ step: action.step,
+ }
+ }
+ case 'setError': {
+ return {
+ ...state,
+ error: action.error,
+ mutationStatus: 'error',
+ }
+ }
+ case 'setMutationStatus': {
+ return {
+ ...state,
+ error: '',
+ mutationStatus: action.status,
+ }
+ }
+ case 'setToken': {
+ return {
+ ...state,
+ error: '',
+ token: action.value,
+ }
+ }
+ }
+}
+
+export function Verify({config, showScreen}: ScreenProps) {
+ const t = useTheme()
+ const {_} = useLingui()
+ const cleanError = useCleanError()
+ const {currentAccount} = useSession()
+ const [state, dispatch] = useReducer(reducer, {
+ step: 'email',
+ mutationStatus: 'default',
+ error: '',
+ token: '',
+ })
+
+ const {mutateAsync: requestEmailVerification} = useRequestEmailVerification()
+ const {mutateAsync: confirmEmail} = useConfirmEmail()
+
+ useOnEmailVerified(() => {
+ if (config.onVerify) {
+ config.onVerify()
+ } else {
+ dispatch({
+ type: 'setStep',
+ step: 'success',
+ })
+ }
+ })
+
+ const handleRequestEmailVerification = async () => {
+ dispatch({
+ type: 'setMutationStatus',
+ status: 'pending',
+ })
+
+ try {
+ await wait(1000, requestEmailVerification())
+ dispatch({
+ type: 'setMutationStatus',
+ status: 'success',
+ })
+ } catch (e) {
+ logger.error('EmailDialog: sending verification email failed', {
+ safeMessage: e,
+ })
+ const {clean} = cleanError(e)
+ dispatch({
+ type: 'setError',
+ error: clean || _(msg`Failed to send email, please try again.`),
+ })
+ }
+ }
+
+ const handleConfirmEmail = async () => {
+ if (!isValidCode(state.token)) {
+ dispatch({
+ type: 'setError',
+ error: _(msg`Please enter a valid code.`),
+ })
+ return
+ }
+
+ dispatch({
+ type: 'setMutationStatus',
+ status: 'pending',
+ })
+
+ try {
+ await wait(1000, confirmEmail({token: state.token}))
+ dispatch({
+ type: 'setStep',
+ step: 'success',
+ })
+ } catch (e) {
+ logger.error('EmailDialog: confirming email failed', {
+ safeMessage: e,
+ })
+ const {clean} = cleanError(e)
+ dispatch({
+ type: 'setError',
+ error: clean || _(msg`Failed to verify email, please try again.`),
+ })
+ }
+ }
+
+ if (state.step === 'success') {
+ return (
+
+
+
+
+
+
+ {' '}
+ Email verification complete!
+
+
+
+
+ You have successfully verified your email address. You can close
+ this dialog.
+
+
+
+
+ )
+ }
+
+ return (
+
+
+
+ {state.step === 'email' ? (
+ state.mutationStatus === 'success' ? (
+ <>
+
+
+
+ {' '}
+ Email sent!
+ >
+ ) : (
+ Verify your email
+ )
+ ) : (
+ Verify email code
+ )}
+
+
+ {state.step === 'email' && state.mutationStatus !== 'success' && (
+ <>
+ {config.instructions?.map((int, i) => (
+
+ {int}
+
+ ))}
+ >
+ )}
+
+
+ {state.step === 'email' ? (
+ state.mutationStatus === 'success' ? (
+
+ We sent an email to{' '}
+
+ {currentAccount!.email}
+ {' '}
+ containing a link. Please click on it to complete the email
+ verification process.
+
+ ) : (
+
+ We'll send an email to{' '}
+
+ {currentAccount!.email}
+ {' '}
+ containing a link. Please click on it to complete the email
+ verification process.
+
+ )
+ ) : (
+
+ Please enter the code we sent to{' '}
+
+ {currentAccount!.email}
+ {' '}
+ below.
+
+ )}
+
+
+ {state.step === 'email' && state.mutationStatus !== 'success' && (
+
+
+ If you need to update your email,{' '}
+ {
+ showScreen({id: ScreenID.Update})
+ })}>
+ click here
+
+ .
+
+
+ )}
+
+ {state.step === 'email' && state.mutationStatus === 'success' && (
+
+ )}
+
+
+ {state.step === 'email' && state.mutationStatus !== 'success' ? (
+ <>
+ {state.error && {state.error} }
+
+
+ Send email
+
+
+
+ >
+ ) : null}
+
+ {state.step === 'email' && (
+ <>
+
+
+
+
+ Have a code?{' '}
+ {
+ dispatch({
+ type: 'setStep',
+ step: 'token',
+ })
+ })}>
+ Click here.
+
+
+
+ >
+ )}
+
+ {state.step === 'token' ? (
+ <>
+ {
+ dispatch({
+ type: 'setToken',
+ value: token,
+ })
+ }}
+ onSubmitEditing={handleConfirmEmail}
+ />
+
+ {state.error && {state.error} }
+
+
+
+ Verify code
+
+ {state.mutationStatus === 'pending' && }
+
+
+
+
+
+
+ Don't have a code or need a new one?{' '}
+ {
+ dispatch({
+ type: 'setStep',
+ step: 'email',
+ })
+ })}>
+ Click here.
+
+
+
+ >
+ ) : null}
+
+ )
+}
diff --git a/src/components/dialogs/EmailDialog/types.ts b/src/components/dialogs/EmailDialog/types.ts
new file mode 100644
index 0000000000..7edc3facc6
--- /dev/null
+++ b/src/components/dialogs/EmailDialog/types.ts
@@ -0,0 +1,38 @@
+import {type ReactNode} from 'react'
+
+import {type DialogControlProps} from '#/components/Dialog'
+
+export type EmailDialogProps = {
+ control: DialogControlProps
+}
+
+export type EmailDialogInnerProps = EmailDialogProps & {}
+
+export type Screen =
+ | {
+ id: ScreenID.Update
+ }
+ | {
+ id: ScreenID.Verify
+ instructions?: ReactNode[]
+ onVerify?: () => void
+ onCloseWithoutVerifying?: () => void
+ }
+ | {
+ id: ScreenID.VerificationReminder
+ }
+ | {
+ id: ScreenID.Manage2FA
+ }
+
+export enum ScreenID {
+ Update = 'Update',
+ Verify = 'Verify',
+ VerificationReminder = 'VerificationReminder',
+ Manage2FA = 'Manage2FA',
+}
+
+export type ScreenProps = {
+ config: Extract
+ showScreen: (screen: Screen) => void
+}
diff --git a/src/components/dialogs/InAppBrowserConsent.tsx b/src/components/dialogs/InAppBrowserConsent.tsx
new file mode 100644
index 0000000000..4459c64db9
--- /dev/null
+++ b/src/components/dialogs/InAppBrowserConsent.tsx
@@ -0,0 +1,111 @@
+import {useCallback} from 'react'
+import {View} from 'react-native'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {useOpenLink} from '#/lib/hooks/useOpenLink'
+import {isWeb} from '#/platform/detection'
+import {useSetInAppBrowser} from '#/state/preferences/in-app-browser'
+import {atoms as a, useTheme} from '#/alf'
+import {Button, ButtonIcon, ButtonText} from '#/components/Button'
+import * as Dialog from '#/components/Dialog'
+import {SquareArrowTopRight_Stroke2_Corner0_Rounded as External} from '#/components/icons/SquareArrowTopRight'
+import {Text} from '#/components/Typography'
+import {useGlobalDialogsControlContext} from './Context'
+
+export function InAppBrowserConsentDialog() {
+ const {inAppBrowserConsentControl} = useGlobalDialogsControlContext()
+
+ if (isWeb) return null
+
+ return (
+
+
+
+
+ )
+}
+
+function InAppBrowserConsentInner({href}: {href?: string}) {
+ const control = Dialog.useDialogContext()
+ const {_} = useLingui()
+ const t = useTheme()
+ const setInAppBrowser = useSetInAppBrowser()
+ const openLink = useOpenLink()
+
+ const onUseIAB = useCallback(() => {
+ control.close(() => {
+ setInAppBrowser(true)
+ if (href) {
+ openLink(href, true)
+ }
+ })
+ }, [control, setInAppBrowser, href, openLink])
+
+ const onUseLinking = useCallback(() => {
+ control.close(() => {
+ setInAppBrowser(false)
+ if (href) {
+ openLink(href, false)
+ }
+ })
+ }, [control, setInAppBrowser, href, openLink])
+
+ const onCancel = useCallback(() => {
+ control.close()
+ }, [control])
+
+ return (
+
+
+
+
+ How should we open this link?
+
+
+
+ Your choice will be remembered for future links. You can change it
+ at any time in settings.
+
+
+
+
+
+
+ Use in-app browser
+
+
+
+
+ Use my default browser
+
+
+
+
+
+ Cancel
+
+
+
+
+
+ )
+}
diff --git a/src/components/dms/dialogs/SearchablePeopleList.tsx b/src/components/dialogs/SearchablePeopleList.tsx
similarity index 78%
rename from src/components/dms/dialogs/SearchablePeopleList.tsx
rename to src/components/dialogs/SearchablePeopleList.tsx
index 05d6f723e1..26e20db57c 100644
--- a/src/components/dms/dialogs/SearchablePeopleList.tsx
+++ b/src/components/dialogs/SearchablePeopleList.tsx
@@ -1,4 +1,5 @@
-import React, {
+import {
+ Fragment,
useCallback,
useLayoutEffect,
useMemo,
@@ -6,7 +7,7 @@ import React, {
useState,
} from 'react'
import {TextInput, View} from 'react-native'
-import {moderateProfile, ModerationOpts} from '@atproto/api'
+import {moderateProfile, type ModerationOpts} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
@@ -18,48 +19,62 @@ import {useActorAutocompleteQuery} from '#/state/queries/actor-autocomplete'
import {useListConvosQuery} from '#/state/queries/messages/list-conversations'
import {useProfileFollowsQuery} from '#/state/queries/profile-follows'
import {useSession} from '#/state/session'
-import {ListMethods} from '#/view/com/util/List'
-import {UserAvatar} from '#/view/com/util/UserAvatar'
-import {atoms as a, native, useTheme, web} from '#/alf'
+import {type ListMethods} from '#/view/com/util/List'
+import {android, atoms as a, native, useTheme, web} from '#/alf'
import {Button, ButtonIcon} from '#/components/Button'
import * as Dialog from '#/components/Dialog'
import {canBeMessaged} from '#/components/dms/util'
import {useInteractionState} from '#/components/hooks/useInteractionState'
import {MagnifyingGlass2_Stroke2_Corner0_Rounded as Search} from '#/components/icons/MagnifyingGlass2'
import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times'
+import * as ProfileCard from '#/components/ProfileCard'
import {Text} from '#/components/Typography'
-import * as bsky from '#/types/bsky'
+import type * as bsky from '#/types/bsky'
-type Item =
- | {
- type: 'profile'
- key: string
- enabled: boolean
- profile: bsky.profile.AnyProfileView
- }
- | {
- type: 'empty'
- key: string
- message: string
- }
- | {
- type: 'placeholder'
- key: string
- }
- | {
- type: 'error'
- key: string
- }
+export type ProfileItem = {
+ type: 'profile'
+ key: string
+ profile: bsky.profile.AnyProfileView
+}
+
+type EmptyItem = {
+ type: 'empty'
+ key: string
+ message: string
+}
+
+type PlaceholderItem = {
+ type: 'placeholder'
+ key: string
+}
+
+type ErrorItem = {
+ type: 'error'
+ key: string
+}
+
+type Item = ProfileItem | EmptyItem | PlaceholderItem | ErrorItem
export function SearchablePeopleList({
title,
- onSelectChat,
showRecentConvos,
+ sortByMessageDeclaration,
+ onSelectChat,
+ renderProfileCard,
}: {
title: string
- onSelectChat: (did: string) => void
showRecentConvos?: boolean
-}) {
+ sortByMessageDeclaration?: boolean
+} & (
+ | {
+ renderProfileCard: (item: ProfileItem) => React.ReactNode
+ onSelectChat?: undefined
+ }
+ | {
+ onSelectChat: (did: string) => void
+ renderProfileCard?: undefined
+ }
+)) {
const t = useTheme()
const {_} = useLingui()
const moderationOpts = useModerationOpts()
@@ -98,15 +113,17 @@ export function SearchablePeopleList({
_items.push({
type: 'profile',
key: profile.did,
- enabled: canBeMessaged(profile),
profile,
})
}
- _items = _items.sort(item => {
- // @ts-ignore
- return item.enabled ? -1 : 1
- })
+ if (sortByMessageDeclaration) {
+ _items = _items.sort(item => {
+ return item.type === 'profile' && canBeMessaged(item.profile)
+ ? -1
+ : 1
+ })
+ }
}
} else {
const placeholders: Item[] = Array(10)
@@ -134,14 +151,13 @@ export function SearchablePeopleList({
_items.push({
type: 'profile',
key: profile.did,
- enabled: true,
profile,
})
}
}
}
- let followsItems: typeof _items = []
+ let followsItems: ProfileItem[] = []
for (const page of follows.pages) {
for (const profile of page.follows) {
@@ -150,17 +166,17 @@ export function SearchablePeopleList({
followsItems.push({
type: 'profile',
key: profile.did,
- enabled: canBeMessaged(profile),
profile,
})
}
}
- // only sort follows
- followsItems = followsItems.sort(item => {
- // @ts-ignore
- return item.enabled ? -1 : 1
- })
+ if (sortByMessageDeclaration) {
+ // only sort follows
+ followsItems = followsItems.sort(item => {
+ return canBeMessaged(item.profile) ? -1 : 1
+ })
+ }
// then append
_items.push(...followsItems)
@@ -173,16 +189,18 @@ export function SearchablePeopleList({
_items.push({
type: 'profile',
key: profile.did,
- enabled: canBeMessaged(profile),
profile,
})
}
}
- _items = _items.sort(item => {
- // @ts-ignore
- return item.enabled ? -1 : 1
- })
+ if (sortByMessageDeclaration) {
+ _items = _items.sort(item => {
+ return item.type === 'profile' && canBeMessaged(item.profile)
+ ? -1
+ : 1
+ })
+ }
} else {
_items.push(...placeholders)
}
@@ -198,6 +216,7 @@ export function SearchablePeopleList({
follows,
convos,
showRecentConvos,
+ sortByMessageDeclaration,
])
if (searchText && !isFetching && !items.length && !isError) {
@@ -208,15 +227,18 @@ export function SearchablePeopleList({
({item}: {item: Item}) => {
switch (item.type) {
case 'profile': {
- return (
-
- )
+ if (renderProfileCard) {
+ return {renderProfileCard(item)}
+ } else {
+ return (
+
+ )
+ }
}
case 'placeholder': {
return
@@ -228,7 +250,7 @@ export function SearchablePeopleList({
return null
}
},
- [moderationOpts, onSelectChat],
+ [moderationOpts, onSelectChat, renderProfileCard],
)
useLayoutEffect(() => {
@@ -247,6 +269,10 @@ export function SearchablePeopleList({
a.relative,
web(a.pt_lg),
native(a.pt_4xl),
+ android({
+ borderTopLeftRadius: a.rounded_md.borderRadius,
+ borderTopRightRadius: a.rounded_md.borderRadius,
+ }),
a.pb_xs,
a.px_lg,
a.border_b,
@@ -327,19 +353,18 @@ export function SearchablePeopleList({
)
}
-function ProfileCard({
- enabled,
+function DefaultProfileCard({
profile,
moderationOpts,
onPress,
}: {
- enabled: boolean
profile: bsky.profile.AnyProfileView
moderationOpts: ModerationOpts
onPress: (did: string) => void
}) {
const t = useTheme()
const {_} = useLingui()
+ const enabled = canBeMessaged(profile)
const moderation = moderateProfile(profile, moderationOpts)
const handle = sanitizeHandle(profile.handle, '@')
const displayName = sanitizeDisplayName(
@@ -360,38 +385,35 @@ function ProfileCard({
-
-
-
- {displayName}
-
-
- {!enabled ? {handle} can't be messaged : handle}
-
-
+
+
+
+
+ {enabled ? (
+
+ ) : (
+
+ {handle} can't be messaged
+
+ )}
+
+
)}
diff --git a/src/components/dialogs/VerifyEmailDialog.tsx b/src/components/dialogs/VerifyEmailDialog.tsx
index ced9171ce3..b8d1cd1925 100644
--- a/src/components/dialogs/VerifyEmailDialog.tsx
+++ b/src/components/dialogs/VerifyEmailDialog.tsx
@@ -1,86 +1,115 @@
-import React from 'react'
+import {useState} from 'react'
import {View} from 'react-native'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {cleanError} from '#/lib/strings/errors'
import {logger} from '#/logger'
-import {useModalControls} from '#/state/modals'
import {useAgent, useSession} from '#/state/session'
import {ErrorMessage} from '#/view/com/util/error/ErrorMessage'
-import {atoms as a, useBreakpoints} from '#/alf'
+import {atoms as a, useBreakpoints, useTheme, web} from '#/alf'
import {Button, ButtonText} from '#/components/Button'
import * as Dialog from '#/components/Dialog'
import * as TextField from '#/components/forms/TextField'
+import {Envelope_Filled_Stroke2_Corner0_Rounded as EnvelopeIcon} from '#/components/icons/Envelope'
import {InlineLinkText} from '#/components/Link'
import {Loader} from '#/components/Loader'
import {Text} from '#/components/Typography'
+import {ChangeEmailDialog} from './ChangeEmailDialog'
export function VerifyEmailDialog({
control,
onCloseWithoutVerifying,
onCloseAfterVerifying,
reasonText,
+ changeEmailControl,
+ reminder,
}: {
control: Dialog.DialogControlProps
onCloseWithoutVerifying?: () => void
onCloseAfterVerifying?: () => void
reasonText?: string
+ /**
+ * if a changeEmailControl for a ChangeEmailDialog is not provided,
+ * this component will create one for you. Using this prop
+ * helps reduce duplication, since these dialogs are often used together.
+ */
+ changeEmailControl?: Dialog.DialogControlProps
+ reminder?: boolean
}) {
const agent = useAgent()
+ const fallbackChangeEmailControl = Dialog.useDialogControl()
- const [didVerify, setDidVerify] = React.useState(false)
+ const [didVerify, setDidVerify] = useState(false)
return (
- {
- if (!didVerify) {
- onCloseWithoutVerifying?.()
- return
- }
-
- try {
- await agent.resumeSession(agent.session!)
- onCloseAfterVerifying?.()
- } catch (e: unknown) {
- logger.error(String(e))
- return
- }
- }}>
-
-
+
-
+ onClose={async () => {
+ if (!didVerify) {
+ onCloseWithoutVerifying?.()
+ return
+ }
+
+ try {
+ await agent.resumeSession(agent.session!)
+ onCloseAfterVerifying?.()
+ } catch (e: unknown) {
+ logger.error(String(e))
+ return
+ }
+ }}>
+
+
+
+ {!changeEmailControl && (
+
+ )}
+ >
)
}
export function Inner({
- control,
setDidVerify,
reasonText,
+ changeEmailControl,
+ reminder,
}: {
- control: Dialog.DialogControlProps
setDidVerify: (value: boolean) => void
reasonText?: string
+ changeEmailControl: Dialog.DialogControlProps
+ reminder?: boolean
}) {
+ const control = Dialog.useDialogContext()
const {_} = useLingui()
const {currentAccount} = useSession()
const agent = useAgent()
- const {openModal} = useModalControls()
const {gtMobile} = useBreakpoints()
+ const t = useTheme()
- const [currentStep, setCurrentStep] = React.useState<
- 'StepOne' | 'StepTwo' | 'StepThree'
- >('StepOne')
- const [confirmationCode, setConfirmationCode] = React.useState('')
- const [isProcessing, setIsProcessing] = React.useState(false)
- const [error, setError] = React.useState('')
+ const [currentStep, setCurrentStep] = useState<
+ 'Reminder' | 'StepOne' | 'StepTwo' | 'StepThree'
+ >(reminder ? 'Reminder' : 'StepOne')
+ const [confirmationCode, setConfirmationCode] = useState('')
+ const [isProcessing, setIsProcessing] = useState(false)
+ const [error, setError] = useState('')
const uiStrings = {
+ Reminder: {
+ title: _(msg`Please Verify Your Email`),
+ message: _(
+ msg`Your email has not yet been verified. This is an important security step which we recommend.`,
+ ),
+ },
StepOne: {
title: _(msg`Verify Your Email`),
message: '',
@@ -132,11 +161,20 @@ export function Inner({
return (
-
+ style={web({maxWidth: 450})}>
+ {currentStep === 'Reminder' && (
+
+
+
+ )}
{uiStrings[currentStep].title}
@@ -164,7 +202,7 @@ export function Inner({
onPress={e => {
e.preventDefault()
control.close(() => {
- openModal({name: 'change-email'})
+ changeEmailControl.open()
})
return false
}}>
@@ -189,7 +227,7 @@ export function Inner({
onPress={e => {
e.preventDefault()
control.close(() => {
- openModal({name: 'change-email'})
+ changeEmailControl.open()
})
return false
}}>
@@ -219,7 +257,32 @@ export function Inner({
) : null}
- {currentStep === 'StepOne' ? (
+ {currentStep === 'Reminder' ? (
+ <>
+ setCurrentStep('StepOne')}>
+
+ Get started
+
+
+ control.close()}>
+
+ Maybe later
+
+
+ >
+ ) : currentStep === 'StepOne' ? (
<>
- Send Confirmation
+ Send confirmation
{isProcessing ? (
) : null}
setCurrentStep('StepTwo')}>
- I Have a Code
+ I have a code
>
@@ -264,7 +327,7 @@ export function Inner({
) : null}
- Resend Email
+ Resend email
>
) : currentStep === 'StepThree' ? (
void | undefined
+}) {
+ return (
+
+
+
+
+ )
+}
+
+function DialogInner({
+ list,
+ onChange,
+}: {
+ list: AppBskyGraphDefs.ListView
+ onChange?: (
+ type: 'add' | 'remove',
+ profile: bsky.profile.AnyProfileView,
+ ) => void | undefined
+}) {
+ const {_} = useLingui()
+ const moderationOpts = useModerationOpts()
+ const {data: memberships} = useDangerousListMembershipsQuery()
+
+ const renderProfileCard = useCallback(
+ (item: ProfileItem) => {
+ return (
+
+ )
+ },
+ [onChange, memberships, list, moderationOpts],
+ )
+
+ return (
+
+ )
+}
+
+function UserResult({
+ profile,
+ list,
+ memberships,
+ onChange,
+ moderationOpts,
+}: {
+ profile: bsky.profile.AnyProfileView
+ list: AppBskyGraphDefs.ListView
+ memberships: ListMembersip[] | undefined
+ onChange?: (
+ type: 'add' | 'remove',
+ profile: bsky.profile.AnyProfileView,
+ ) => void | undefined
+ moderationOpts?: ModerationOpts
+}) {
+ const {_} = useLingui()
+ const membership = useMemo(
+ () => getMembership(memberships, list.uri, profile.did),
+ [memberships, list.uri, profile.did],
+ )
+ const {mutate: listMembershipAdd, isPending: isAddingPending} =
+ useListMembershipAddMutation({
+ onSuccess: () => {
+ Toast.show(_(msg`Added to list`))
+ onChange?.('add', profile)
+ },
+ onError: e => Toast.show(cleanError(e), 'xmark'),
+ })
+ const {mutate: listMembershipRemove, isPending: isRemovingPending} =
+ useListMembershipRemoveMutation({
+ onSuccess: () => {
+ Toast.show(_(msg`Removed from list`))
+ onChange?.('remove', profile)
+ },
+ onError: e => Toast.show(cleanError(e), 'xmark'),
+ })
+ const isMutating = isAddingPending || isRemovingPending
+
+ const onToggleMembership = useCallback(() => {
+ if (typeof membership === 'undefined') {
+ return
+ }
+ if (membership === false) {
+ listMembershipAdd({
+ listUri: list.uri,
+ actorDid: profile.did,
+ })
+ } else {
+ listMembershipRemove({
+ listUri: list.uri,
+ actorDid: profile.did,
+ membershipUri: membership,
+ })
+ }
+ }, [list, profile, membership, listMembershipAdd, listMembershipRemove])
+
+ if (!moderationOpts) return null
+
+ return (
+
+
+
+
+
+
+
+ {membership !== undefined && (
+
+ {isMutating ? (
+
+ ) : (
+
+ {membership === false ? (
+ Add
+ ) : (
+ Remove
+ )}
+
+ )}
+
+ )}
+
+
+ )
+}
diff --git a/src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx b/src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx
new file mode 100644
index 0000000000..56db5c2469
--- /dev/null
+++ b/src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx
@@ -0,0 +1,198 @@
+import {useCallback} from 'react'
+import {View} from 'react-native'
+import {Image} from 'expo-image'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {urls} from '#/lib/constants'
+import {logger} from '#/logger'
+import {isNative} from '#/platform/detection'
+import {atoms as a, useBreakpoints, useTheme} from '#/alf'
+import {Button, ButtonText} from '#/components/Button'
+import * as Dialog from '#/components/Dialog'
+import {useNuxDialogContext} from '#/components/dialogs/nuxs'
+import {Sparkle_Stroke2_Corner0_Rounded as SparkleIcon} from '#/components/icons/Sparkle'
+import {VerifierCheck} from '#/components/icons/VerifierCheck'
+import {Link} from '#/components/Link'
+import {Span, Text} from '#/components/Typography'
+
+export function InitialVerificationAnnouncement() {
+ const t = useTheme()
+ const {_} = useLingui()
+ const {gtMobile} = useBreakpoints()
+ const nuxDialogs = useNuxDialogContext()
+ const control = Dialog.useDialogControl()
+
+ Dialog.useAutoOpen(control)
+
+ const onClose = useCallback(() => {
+ nuxDialogs.dismissActiveNux()
+ }, [nuxDialogs])
+
+ return (
+
+
+
+
+
+
+
+
+ New Feature
+
+
+
+
+
+
+
+
+
+ A new form of verification
+
+
+
+ We’re introducing a new layer of verification on Bluesky — an
+ easy-to-see checkmark.
+
+
+
+
+
+
+
+
+
+
+
+
+ Who can verify?
+
+
+
+
+
+ Bluesky will proactively verify notable and authentic
+ accounts.
+
+
+
+
+ Trust emerges from relationships, communities, and shared
+ context, so we’re also enabling{' '}
+ trusted verifiers :
+ organizations that can directly issue verification.
+
+
+
+
+ When you tap on a check, you’ll see which organizations have
+ granted verification.
+
+
+
+
+
+
+ {
+ logger.metric(
+ 'verification:learn-more',
+ {
+ location: 'initialAnnouncementeNux',
+ },
+ {statsig: false},
+ )
+ }}>
+
+ Read blog post
+
+
+ {isNative && (
+ {
+ control.close()
+ }}>
+
+ Close
+
+
+ )}
+
+
+
+
+
+
+ )
+}
diff --git a/src/components/dialogs/nuxs/index.tsx b/src/components/dialogs/nuxs/index.tsx
index 10cae887ba..11377e1ded 100644
--- a/src/components/dialogs/nuxs/index.tsx
+++ b/src/components/dialogs/nuxs/index.tsx
@@ -1,20 +1,22 @@
import React from 'react'
-import {AppBskyActorDefs} from '@atproto/api'
+import {type AppBskyActorDefs} from '@atproto/api'
import {useGate} from '#/lib/statsig/statsig'
import {logger} from '#/logger'
import {Nux, useNuxs, useResetNuxs, useSaveNux} from '#/state/queries/nuxs'
import {
usePreferencesQuery,
- UsePreferencesQueryResponse,
+ type UsePreferencesQueryResponse,
} from '#/state/queries/preferences'
import {useProfileQuery} from '#/state/queries/profile'
-import {SessionAccount, useSession} from '#/state/session'
+import {type SessionAccount, useSession} from '#/state/session'
import {useOnboardingState} from '#/state/shell'
+import {InitialVerificationAnnouncement} from '#/components/dialogs/nuxs/InitialVerificationAnnouncement'
/*
* NUXs
*/
import {isSnoozed, snooze, unsnooze} from '#/components/dialogs/nuxs/snoozing'
+import {isDaysOld} from '#/components/dialogs/nuxs/utils'
type Context = {
activeNux: Nux | undefined
@@ -29,7 +31,14 @@ const queuedNuxs: {
currentProfile: AppBskyActorDefs.ProfileViewDetailed
preferences: UsePreferencesQueryResponse
}) => boolean
-}[] = []
+}[] = [
+ {
+ id: Nux.InitialVerificationAnnouncement,
+ enabled: ({currentProfile}) => {
+ return isDaysOld(2, currentProfile.createdAt)
+ },
+ },
+]
const Context = React.createContext({
activeNux: undefined,
@@ -163,6 +172,9 @@ function Inner({
return (
{/*For example, activeNux === Nux.NeueTypography && */}
+ {activeNux === Nux.InitialVerificationAnnouncement && (
+
+ )}
)
}
diff --git a/src/components/dialogs/nuxs/utils.ts b/src/components/dialogs/nuxs/utils.ts
new file mode 100644
index 0000000000..0cc5104840
--- /dev/null
+++ b/src/components/dialogs/nuxs/utils.ts
@@ -0,0 +1,18 @@
+const ONE_DAY = 1000 * 60 * 60 * 24
+
+export function isDaysOld(days: number, createdAt?: string) {
+ /*
+ * Should never happen because we gate NUXs to only accounts with a valid
+ * profile and a `createdAt` (see `nuxs/index.tsx`). But if it ever did, the
+ * account is either old enough to be pre-onboarding, or some failure happened
+ * during account creation. Fail closed. - esb
+ */
+ if (!createdAt) return false
+
+ const now = Date.now()
+ const then = new Date(createdAt).getTime()
+ const isOldEnough = then + ONE_DAY * days < now
+
+ if (isOldEnough) return true
+ return false
+}
diff --git a/src/components/dms/ActionsWrapper.tsx b/src/components/dms/ActionsWrapper.tsx
index a087fed3fb..eb9f0a09a4 100644
--- a/src/components/dms/ActionsWrapper.tsx
+++ b/src/components/dms/ActionsWrapper.tsx
@@ -1,22 +1,10 @@
-import React from 'react'
-import {Keyboard} from 'react-native'
-import {Gesture, GestureDetector} from 'react-native-gesture-handler'
-import Animated, {
- cancelAnimation,
- runOnJS,
- useAnimatedStyle,
- useSharedValue,
- withTiming,
-} from 'react-native-reanimated'
-import {ChatBskyConvoDefs} from '@atproto/api'
+import {View} from 'react-native'
+import {type ChatBskyConvoDefs} from '@atproto/api'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
-import {HITSLOP_10} from '#/lib/constants'
-import {useHaptics} from '#/lib/haptics'
import {atoms as a} from '#/alf'
-import {MessageMenu} from '#/components/dms/MessageMenu'
-import {useMenuControl} from '#/components/Menu'
+import {MessageContextMenu} from '#/components/dms/MessageContextMenu'
export function ActionsWrapper({
message,
@@ -28,71 +16,30 @@ export function ActionsWrapper({
children: React.ReactNode
}) {
const {_} = useLingui()
- const playHaptic = useHaptics()
- const menuControl = useMenuControl()
-
- const scale = useSharedValue(1)
-
- const animatedStyle = useAnimatedStyle(() => ({
- transform: [{scale: scale.get()}],
- }))
-
- const open = React.useCallback(() => {
- playHaptic()
- Keyboard.dismiss()
- menuControl.open()
- }, [menuControl, playHaptic])
-
- const shrink = React.useCallback(() => {
- 'worklet'
- cancelAnimation(scale)
- scale.set(() => withTiming(1, {duration: 200}))
- }, [scale])
-
- const doubleTapGesture = Gesture.Tap()
- .numberOfTaps(2)
- .hitSlop(HITSLOP_10)
- .onEnd(open)
- .runOnJS(true)
-
- const pressAndHoldGesture = Gesture.LongPress()
- .onStart(() => {
- 'worklet'
- scale.set(() =>
- withTiming(1.05, {duration: 200}, finished => {
- if (!finished) return
- runOnJS(open)()
- shrink()
- }),
- )
- })
- .onTouchesUp(shrink)
- .onTouchesMove(shrink)
- .cancelsTouchesInView(false)
-
- const composedGestures = Gesture.Exclusive(
- doubleTapGesture,
- pressAndHoldGesture,
- )
return (
-
-
- {children}
-
-
-
+
+ {trigger =>
+ // will always be true, since this file is platform split
+ trigger.isNative && (
+
+ trigger.control.open('full')}>
+ {children}
+
+
+ )
+ }
+
)
}
diff --git a/src/components/dms/ActionsWrapper.web.tsx b/src/components/dms/ActionsWrapper.web.tsx
index 29cc89dd18..75a9b5278e 100644
--- a/src/components/dms/ActionsWrapper.web.tsx
+++ b/src/components/dms/ActionsWrapper.web.tsx
@@ -1,10 +1,19 @@
-import React from 'react'
-import {StyleSheet, View} from 'react-native'
-import {ChatBskyConvoDefs} from '@atproto/api'
+import {useCallback, useRef, useState} from 'react'
+import {Pressable, View} from 'react-native'
+import {type ChatBskyConvoDefs} from '@atproto/api'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+import type React from 'react'
-import {atoms as a} from '#/alf'
-import {MessageMenu} from '#/components/dms/MessageMenu'
-import {useMenuControl} from '#/components/Menu'
+import {useConvoActive} from '#/state/messages/convo'
+import {useSession} from '#/state/session'
+import * as Toast from '#/view/com/util/Toast'
+import {atoms as a, useTheme} from '#/alf'
+import {MessageContextMenu} from '#/components/dms/MessageContextMenu'
+import {DotGrid_Stroke2_Corner0_Rounded as DotsHorizontalIcon} from '#/components/icons/DotGrid'
+import {EmojiSmile_Stroke2_Corner0_Rounded as EmojiSmileIcon} from '#/components/icons/Emoji'
+import {EmojiReactionPicker} from './EmojiReactionPicker'
+import {hasReachedReactionLimit} from './util'
export function ActionsWrapper({
message,
@@ -15,26 +24,53 @@ export function ActionsWrapper({
isFromSelf: boolean
children: React.ReactNode
}) {
- const menuControl = useMenuControl()
- const viewRef = React.useRef(null)
+ const viewRef = useRef(null)
+ const t = useTheme()
+ const {_} = useLingui()
+ const convo = useConvoActive()
+ const {currentAccount} = useSession()
- const [showActions, setShowActions] = React.useState(false)
+ const [showActions, setShowActions] = useState(false)
- const onMouseEnter = React.useCallback(() => {
+ const onMouseEnter = useCallback(() => {
setShowActions(true)
}, [])
- const onMouseLeave = React.useCallback(() => {
+ const onMouseLeave = useCallback(() => {
setShowActions(false)
}, [])
// We need to handle the `onFocus` separately because we want to know if there is a related target (the element
// that is losing focus). If there isn't that means the focus is coming from a dropdown that is now closed.
- const onFocus = React.useCallback(e => {
+ const onFocus = useCallback(e => {
if (e.nativeEvent.relatedTarget == null) return
setShowActions(true)
}, [])
+ const onEmojiSelect = useCallback(
+ (emoji: string) => {
+ if (
+ message.reactions?.find(
+ reaction =>
+ reaction.value === emoji &&
+ reaction.sender.did === currentAccount?.did,
+ )
+ ) {
+ convo
+ .removeReaction(message.id, emoji)
+ .catch(() => Toast.show(_(msg`Failed to remove emoji reaction`)))
+ } else {
+ if (hasReachedReactionLimit(message, currentAccount?.did)) return
+ convo
+ .addReaction(message.id, emoji)
+ .catch(() =>
+ Toast.show(_(msg`Failed to add emoji reaction`), 'xmark'),
+ )
+ }
+ },
+ [_, convo, message, currentAccount?.did],
+ )
+
return (
- {isFromSelf && (
-
-
-
- )}
+ style={[
+ a.justify_center,
+ a.flex_row,
+ a.align_center,
+ isFromSelf
+ ? [a.mr_xs, {marginLeft: 'auto'}, a.flex_row_reverse]
+ : [a.ml_xs, {marginRight: 'auto'}],
+ ]}>
+
+ {({props, state, isNative, control}) => {
+ // always false, file is platform split
+ if (isNative) return null
+ const showMenuTrigger = showActions || control.isOpen ? 1 : 0
+ return (
+
+
+
+ )
+ }}
+
+
+ {({props, state, isNative, control}) => {
+ // always false, file is platform split
+ if (isNative) return null
+ const showMenuTrigger = showActions || control.isOpen ? 1 : 0
+ return (
+
+
+
+ )
+ }}
+
+
+
{children}
- {!isFromSelf && (
-
-
-
- )}
)
}
diff --git a/src/components/dms/EmojiPopup.android.tsx b/src/components/dms/EmojiPopup.android.tsx
new file mode 100644
index 0000000000..2205dcdea8
--- /dev/null
+++ b/src/components/dms/EmojiPopup.android.tsx
@@ -0,0 +1,77 @@
+import {useState} from 'react'
+import {Modal, Pressable, View} from 'react-native'
+import {SafeAreaView} from 'react-native-safe-area-context'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {atoms as a, useTheme} from '#/alf'
+import {Button, ButtonIcon} from '#/components/Button'
+import {TimesLarge_Stroke2_Corner0_Rounded as CloseIcon} from '#/components/icons/Times'
+import {Text} from '#/components/Typography'
+import {EmojiPicker} from '../../../modules/expo-emoji-picker'
+
+export function EmojiPopup({
+ children,
+ onEmojiSelected,
+}: {
+ children: React.ReactNode
+ onEmojiSelected: (emoji: string) => void
+}) {
+ const [modalVisible, setModalVisible] = useState(false)
+ const {_} = useLingui()
+ const t = useTheme()
+
+ return (
+ <>
+ setModalVisible(true)}>
+ {children}
+
+
+ setModalVisible(false)}
+ transparent
+ statusBarTranslucent
+ navigationBarTranslucent>
+
+
+
+ Add Reaction
+
+ setModalVisible(false)}
+ size="small"
+ variant="ghost"
+ color="secondary"
+ shape="round">
+
+
+
+ {
+ setModalVisible(false)
+ onEmojiSelected(emoji)
+ }}
+ />
+
+
+ >
+ )
+}
diff --git a/src/components/dms/EmojiPopup.tsx b/src/components/dms/EmojiPopup.tsx
new file mode 100644
index 0000000000..a988d00b5a
--- /dev/null
+++ b/src/components/dms/EmojiPopup.tsx
@@ -0,0 +1 @@
+export {EmojiPicker as EmojiPopup} from '../../../modules/expo-emoji-picker'
diff --git a/src/components/dms/EmojiReactionPicker.tsx b/src/components/dms/EmojiReactionPicker.tsx
new file mode 100644
index 0000000000..cdb1680e82
--- /dev/null
+++ b/src/components/dms/EmojiReactionPicker.tsx
@@ -0,0 +1,137 @@
+import {useMemo, useState} from 'react'
+import {useWindowDimensions, View} from 'react-native'
+import {type ChatBskyConvoDefs} from '@atproto/api'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {useSession} from '#/state/session'
+import {atoms as a, tokens, useTheme} from '#/alf'
+import * as ContextMenu from '#/components/ContextMenu'
+import {
+ useContextMenuContext,
+ useContextMenuMenuContext,
+} from '#/components/ContextMenu/context'
+import {
+ EmojiHeartEyes_Stroke2_Corner0_Rounded as EmojiHeartEyesIcon,
+ EmojiSmile_Stroke2_Corner0_Rounded as EmojiSmileIcon,
+} from '#/components/icons/Emoji'
+import {type TriggerProps} from '#/components/Menu/types'
+import {Text} from '#/components/Typography'
+import {EmojiPopup} from './EmojiPopup'
+import {hasAlreadyReacted, hasReachedReactionLimit} from './util'
+
+export function EmojiReactionPicker({
+ message,
+ onEmojiSelect,
+}: {
+ message: ChatBskyConvoDefs.MessageView
+ children?: TriggerProps['children']
+ onEmojiSelect: (emoji: string) => void
+}) {
+ const {_} = useLingui()
+ const {currentAccount} = useSession()
+ const t = useTheme()
+ const isFromSelf = message.sender?.did === currentAccount?.did
+ const {measurement, close} = useContextMenuContext()
+ const {align} = useContextMenuMenuContext()
+ const [layout, setLayout] = useState({width: 0, height: 0})
+ const {width: screenWidth} = useWindowDimensions()
+
+ // 1 in 100 chance of showing heart eyes icon
+ const EmojiIcon = useMemo(() => {
+ return Math.random() < 0.01 ? EmojiHeartEyesIcon : EmojiSmileIcon
+ }, [])
+
+ const position = useMemo(() => {
+ return {
+ x: align === 'left' ? 12 : screenWidth - layout.width - 12,
+ y: (measurement?.y ?? 0) - tokens.space.xs - layout.height,
+ height: layout.height,
+ width: layout.width,
+ }
+ }, [measurement, align, screenWidth, layout])
+
+ const limitReacted = hasReachedReactionLimit(message, currentAccount?.did)
+
+ const bgColor = t.scheme === 'light' ? t.atoms.bg : t.atoms.bg_contrast_25
+
+ return (
+ setLayout(evt.nativeEvent.layout)}
+ style={[
+ bgColor,
+ a.rounded_full,
+ a.absolute,
+ {bottom: '100%'},
+ isFromSelf ? a.right_0 : a.left_0,
+ a.flex_row,
+ a.p_xs,
+ a.gap_xs,
+ a.mb_xs,
+ a.z_20,
+ a.border,
+ t.atoms.border_contrast_low,
+ a.shadow_md,
+ ]}>
+ {['👍', '😆', '❤️', '👀', '😢'].map(emoji => {
+ const alreadyReacted = hasAlreadyReacted(
+ message,
+ currentAccount?.did,
+ emoji,
+ )
+ return (
+ onEmojiSelect(emoji)}
+ unstyled
+ disabled={limitReacted ? !alreadyReacted : false}>
+ {hovered => (
+
+
+ {emoji}
+
+
+ )}
+
+ )
+ })}
+ {
+ close()
+ onEmojiSelect(emoji)
+ }}>
+
+
+
+
+
+ )
+}
diff --git a/src/components/dms/EmojiReactionPicker.web.tsx b/src/components/dms/EmojiReactionPicker.web.tsx
new file mode 100644
index 0000000000..4dabfc7df5
--- /dev/null
+++ b/src/components/dms/EmojiReactionPicker.web.tsx
@@ -0,0 +1,147 @@
+import {useState} from 'react'
+import {Pressable, View} from 'react-native'
+import {type ChatBskyConvoDefs} from '@atproto/api'
+import EmojiPicker from '@emoji-mart/react'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+import {DropdownMenu} from 'radix-ui'
+
+import {useSession} from '#/state/session'
+import {type Emoji} from '#/view/com/composer/text-input/web/EmojiPicker'
+import {useWebPreloadEmoji} from '#/view/com/composer/text-input/web/useWebPreloadEmoji'
+import {atoms as a, flatten, useTheme} from '#/alf'
+import {DotGrid_Stroke2_Corner0_Rounded as DotGridIcon} from '#/components/icons/DotGrid'
+import * as Menu from '#/components/Menu'
+import {type TriggerProps} from '#/components/Menu/types'
+import {Text} from '#/components/Typography'
+import {hasAlreadyReacted, hasReachedReactionLimit} from './util'
+
+export function EmojiReactionPicker({
+ message,
+ children,
+ onEmojiSelect,
+}: {
+ message: ChatBskyConvoDefs.MessageView
+ children?: TriggerProps['children']
+ onEmojiSelect: (emoji: string) => void
+}) {
+ if (!children)
+ throw new Error('EmojiReactionPicker requires the children prop on web')
+
+ const {_} = useLingui()
+
+ return (
+
+ {children}
+
+
+ )
+}
+
+function MenuInner({
+ message,
+ onEmojiSelect,
+}: {
+ message: ChatBskyConvoDefs.MessageView
+ onEmojiSelect: (emoji: string) => void
+}) {
+ const t = useTheme()
+ const {control} = Menu.useMenuContext()
+ const {currentAccount} = useSession()
+
+ useWebPreloadEmoji({immediate: true})
+
+ const [expanded, setExpanded] = useState(false)
+
+ const [prevOpen, setPrevOpen] = useState(control.isOpen)
+
+ if (control.isOpen !== prevOpen) {
+ setPrevOpen(control.isOpen)
+ if (!control.isOpen) {
+ setExpanded(false)
+ }
+ }
+
+ const handleEmojiPickerResponse = (emoji: Emoji) => {
+ handleEmojiSelect(emoji.native)
+ }
+
+ const handleEmojiSelect = (emoji: string) => {
+ control.close()
+ onEmojiSelect(emoji)
+ }
+
+ const limitReacted = hasReachedReactionLimit(message, currentAccount?.did)
+
+ return expanded ? (
+
+
+
+
+
+ ) : (
+
+
+ {['👍', '😆', '❤️', '👀', '😢'].map(emoji => {
+ const alreadyReacted = hasAlreadyReacted(
+ message,
+ currentAccount?.did,
+ emoji,
+ )
+ return (
+ handleEmojiSelect(emoji)}
+ style={flatten([
+ a.flex,
+ a.flex_col,
+ a.rounded_full,
+ a.justify_center,
+ a.align_center,
+ a.transition_transform,
+ {
+ width: 34,
+ height: 34,
+ },
+ alreadyReacted && {
+ backgroundColor: t.atoms.bg_contrast_100.backgroundColor,
+ },
+ ])}>
+
+ {emoji}
+
+
+ )
+ })}
+
+ setExpanded(true)}
+ style={flatten([
+ a.rounded_full,
+ {height: 34, width: 34},
+ a.justify_center,
+ a.align_center,
+ ])}>
+
+
+
+
+
+ )
+}
diff --git a/src/components/dms/MessageContextMenu.tsx b/src/components/dms/MessageContextMenu.tsx
new file mode 100644
index 0000000000..a45ec7a079
--- /dev/null
+++ b/src/components/dms/MessageContextMenu.tsx
@@ -0,0 +1,198 @@
+import {memo, useCallback} from 'react'
+import {LayoutAnimation} from 'react-native'
+import * as Clipboard from 'expo-clipboard'
+import {type ChatBskyConvoDefs, RichText} from '@atproto/api'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {useOpenLink} from '#/lib/hooks/useOpenLink'
+import {richTextToString} from '#/lib/strings/rich-text-helpers'
+import {getTranslatorLink} from '#/locale/helpers'
+import {logger} from '#/logger'
+import {isNative} from '#/platform/detection'
+import {useConvoActive} from '#/state/messages/convo'
+import {useLanguagePrefs} from '#/state/preferences'
+import {useSession} from '#/state/session'
+import * as Toast from '#/view/com/util/Toast'
+import * as ContextMenu from '#/components/ContextMenu'
+import {type TriggerProps} from '#/components/ContextMenu/types'
+import {ReportDialog} from '#/components/dms/ReportDialog'
+import {BubbleQuestion_Stroke2_Corner0_Rounded as Translate} from '#/components/icons/Bubble'
+import {Clipboard_Stroke2_Corner2_Rounded as ClipboardIcon} from '#/components/icons/Clipboard'
+import {Trash_Stroke2_Corner0_Rounded as Trash} from '#/components/icons/Trash'
+import {Warning_Stroke2_Corner0_Rounded as Warning} from '#/components/icons/Warning'
+import * as Prompt from '#/components/Prompt'
+import {usePromptControl} from '#/components/Prompt'
+import {EmojiReactionPicker} from './EmojiReactionPicker'
+import {hasReachedReactionLimit} from './util'
+
+export let MessageContextMenu = ({
+ message,
+ children,
+}: {
+ message: ChatBskyConvoDefs.MessageView
+ children: TriggerProps['children']
+}): React.ReactNode => {
+ const {_} = useLingui()
+ const {currentAccount} = useSession()
+ const convo = useConvoActive()
+ const deleteControl = usePromptControl()
+ const reportControl = usePromptControl()
+ const langPrefs = useLanguagePrefs()
+ const openLink = useOpenLink()
+
+ const isFromSelf = message.sender?.did === currentAccount?.did
+
+ const onCopyMessage = useCallback(() => {
+ const str = richTextToString(
+ new RichText({
+ text: message.text,
+ facets: message.facets,
+ }),
+ true,
+ )
+
+ Clipboard.setStringAsync(str)
+ Toast.show(_(msg`Copied to clipboard`), 'clipboard-check')
+ }, [_, message.text, message.facets])
+
+ const onPressTranslateMessage = useCallback(() => {
+ const translatorUrl = getTranslatorLink(
+ message.text,
+ langPrefs.primaryLanguage,
+ )
+ openLink(translatorUrl, true)
+
+ logger.metric(
+ 'translate',
+ {
+ sourceLanguages: [],
+ targetLanguage: langPrefs.primaryLanguage,
+ textLength: message.text.length,
+ },
+ {statsig: false},
+ )
+ }, [langPrefs.primaryLanguage, message.text, openLink])
+
+ const onDelete = useCallback(() => {
+ LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
+ convo
+ .deleteMessage(message.id)
+ .then(() =>
+ Toast.show(_(msg({message: 'Message deleted', context: 'toast'}))),
+ )
+ .catch(() => Toast.show(_(msg`Failed to delete message`)))
+ }, [_, convo, message.id])
+
+ const onEmojiSelect = useCallback(
+ (emoji: string) => {
+ if (
+ message.reactions?.find(
+ reaction =>
+ reaction.value === emoji &&
+ reaction.sender.did === currentAccount?.did,
+ )
+ ) {
+ convo
+ .removeReaction(message.id, emoji)
+ .catch(() => Toast.show(_(msg`Failed to remove emoji reaction`)))
+ } else {
+ if (hasReachedReactionLimit(message, currentAccount?.did)) return
+ convo
+ .addReaction(message.id, emoji)
+ .catch(() =>
+ Toast.show(_(msg`Failed to add emoji reaction`), 'xmark'),
+ )
+ }
+ },
+ [_, convo, message, currentAccount?.did],
+ )
+
+ const sender = convo.convo.members.find(
+ member => member.did === message.sender.did,
+ )
+
+ return (
+ <>
+
+ {isNative && (
+
+
+
+ )}
+
+
+ {children}
+
+
+
+ {message.text.length > 0 && (
+ <>
+
+ {_(msg`Translate`)}
+
+
+
+
+ {_(msg`Copy message text`)}
+
+
+
+
+ >
+ )}
+ deleteControl.open()}>
+ {_(msg`Delete for me`)}
+
+
+ {!isFromSelf && (
+ reportControl.open()}>
+ {_(msg`Report`)}
+
+
+ )}
+
+
+
+
+
+
+ >
+ )
+}
+MessageContextMenu = memo(MessageContextMenu)
diff --git a/src/components/dms/MessageItem.tsx b/src/components/dms/MessageItem.tsx
index 79f0997fd6..dc1f78ef5d 100644
--- a/src/components/dms/MessageItem.tsx
+++ b/src/components/dms/MessageItem.tsx
@@ -1,29 +1,37 @@
-import React, {useCallback, useMemo, useRef} from 'react'
+import React, {useCallback, useMemo} from 'react'
import {
- GestureResponderEvent,
- LayoutAnimation,
- StyleProp,
- TextStyle,
+ type GestureResponderEvent,
+ type StyleProp,
+ type TextStyle,
View,
} from 'react-native'
+import Animated, {
+ LayoutAnimationConfig,
+ LinearTransition,
+ ZoomIn,
+ ZoomOut,
+} from 'react-native-reanimated'
import {
AppBskyEmbedRecord,
ChatBskyConvoDefs,
RichText as RichTextAPI,
} from '@atproto/api'
-import {I18n} from '@lingui/core'
+import {type I18n} from '@lingui/core'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
-import {ConvoItem} from '#/state/messages/convo/types'
+import {sanitizeDisplayName} from '#/lib/strings/display-names'
+import {isNative} from '#/platform/detection'
+import {useConvoActive} from '#/state/messages/convo'
+import {type ConvoItem} from '#/state/messages/convo/types'
import {useSession} from '#/state/session'
import {TimeElapsed} from '#/view/com/util/TimeElapsed'
-import {atoms as a, useTheme} from '#/alf'
+import {atoms as a, native, useTheme} from '#/alf'
import {isOnlyEmoji} from '#/alf/typography'
import {ActionsWrapper} from '#/components/dms/ActionsWrapper'
import {InlineLinkText} from '#/components/Link'
+import {RichText} from '#/components/RichText'
import {Text} from '#/components/Typography'
-import {RichText} from '../RichText'
import {DateDivider} from './DateDivider'
import {MessageItemEmbed} from './MessageItemEmbed'
import {localDateString} from './util'
@@ -35,6 +43,8 @@ let MessageItem = ({
}): React.ReactNode => {
const t = useTheme()
const {currentAccount} = useSession()
+ const {_} = useLingui()
+ const {convo} = useConvoActive()
const {message, nextMessage, prevMessage} = item
const isPending = item.type === 'pending-message'
@@ -88,18 +98,80 @@ let MessageItem = ({
return true
}, [message, nextMessage, isPending])
- const lastInGroupRef = useRef(isLastInGroup)
- if (lastInGroupRef.current !== isLastInGroup) {
- LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
- lastInGroupRef.current = isLastInGroup
- }
-
const pendingColor = t.palette.primary_200
const rt = useMemo(() => {
return new RichTextAPI({text: message.text, facets: message.facets})
}, [message.text, message.facets])
+ const appliedReactions = (
+
+ {message.reactions && message.reactions.length > 0 && (
+
+
+ {message.reactions.map((reaction, _i, reactions) => {
+ let label
+ if (reaction.sender.did === currentAccount?.did) {
+ label = _(msg`You reacted ${reaction.value}`)
+ } else {
+ const senderDid = reaction.sender.did
+ const sender = convo.members.find(
+ member => member.did === senderDid,
+ )
+ if (sender) {
+ label = _(
+ msg`${sanitizeDisplayName(
+ sender.displayName || sender.handle,
+ )} reacted ${reaction.value}`,
+ )
+ } else {
+ label = _(msg`Someone reacted ${reaction.value}`)
+ }
+ }
+ return (
+ 1 && native(ZoomOut.delay(200))}
+ layout={native(LinearTransition.delay(300))}
+ key={reaction.sender.did + reaction.value}
+ style={[a.p_2xs]}
+ accessible={true}
+ accessibilityLabel={label}
+ accessibilityHint={_(
+ msg`Double tap or long press the message to add a reaction`,
+ )}>
+
+ {reaction.value}
+
+
+ )
+ })}
+
+
+ )}
+
+ )
+
return (
<>
{isNewDay && }
@@ -144,8 +216,12 @@ let MessageItem = ({
/>
)}
+
+ {isNative && appliedReactions}
+ {!isNative && appliedReactions}
+
{isLastInGroup && (
}): React.ReactNode => {
const t = useTheme()
+ const screen = useWindowDimensions()
return (
-
-
+
+
+
+
)
diff --git a/src/components/dms/MessageMenu.tsx b/src/components/dms/MessageMenu.tsx
deleted file mode 100644
index cff5f9dd4e..0000000000
--- a/src/components/dms/MessageMenu.tsx
+++ /dev/null
@@ -1,161 +0,0 @@
-import React from 'react'
-import {LayoutAnimation, Pressable, View} from 'react-native'
-import * as Clipboard from 'expo-clipboard'
-import {ChatBskyConvoDefs, RichText} from '@atproto/api'
-import {msg} from '@lingui/macro'
-import {useLingui} from '@lingui/react'
-
-import {useOpenLink} from '#/lib/hooks/useOpenLink'
-import {richTextToString} from '#/lib/strings/rich-text-helpers'
-import {getTranslatorLink} from '#/locale/helpers'
-import {isWeb} from '#/platform/detection'
-import {useConvoActive} from '#/state/messages/convo'
-import {useLanguagePrefs} from '#/state/preferences'
-import {useSession} from '#/state/session'
-import * as Toast from '#/view/com/util/Toast'
-import {atoms as a, useTheme} from '#/alf'
-import {ReportDialog} from '#/components/dms/ReportDialog'
-import {BubbleQuestion_Stroke2_Corner0_Rounded as Translate} from '#/components/icons/Bubble'
-import {DotGrid_Stroke2_Corner0_Rounded as DotsHorizontal} from '#/components/icons/DotGrid'
-import {Trash_Stroke2_Corner0_Rounded as Trash} from '#/components/icons/Trash'
-import {Warning_Stroke2_Corner0_Rounded as Warning} from '#/components/icons/Warning'
-import * as Menu from '#/components/Menu'
-import * as Prompt from '#/components/Prompt'
-import {usePromptControl} from '#/components/Prompt'
-import {Clipboard_Stroke2_Corner2_Rounded as ClipboardIcon} from '../icons/Clipboard'
-
-export let MessageMenu = ({
- message,
- control,
- triggerOpacity,
-}: {
- triggerOpacity?: number
- message: ChatBskyConvoDefs.MessageView
- control: Menu.MenuControlProps
-}): React.ReactNode => {
- const {_} = useLingui()
- const t = useTheme()
- const {currentAccount} = useSession()
- const convo = useConvoActive()
- const deleteControl = usePromptControl()
- const reportControl = usePromptControl()
- const langPrefs = useLanguagePrefs()
- const openLink = useOpenLink()
-
- const isFromSelf = message.sender?.did === currentAccount?.did
-
- const onCopyMessage = React.useCallback(() => {
- const str = richTextToString(
- new RichText({
- text: message.text,
- facets: message.facets,
- }),
- true,
- )
-
- Clipboard.setStringAsync(str)
- Toast.show(_(msg`Copied to clipboard`), 'clipboard-check')
- }, [_, message.text, message.facets])
-
- const onPressTranslateMessage = React.useCallback(() => {
- const translatorUrl = getTranslatorLink(
- message.text,
- langPrefs.primaryLanguage,
- )
- openLink(translatorUrl, true)
- }, [langPrefs.primaryLanguage, message.text, openLink])
-
- const onDelete = React.useCallback(() => {
- LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
- convo
- .deleteMessage(message.id)
- .then(() =>
- Toast.show(_(msg({message: 'Message deleted', context: 'toast'}))),
- )
- .catch(() => Toast.show(_(msg`Failed to delete message`)))
- }, [_, convo, message.id])
-
- return (
- <>
-
- {isWeb && (
-
-
- {({props, state}) => (
-
-
-
- )}
-
-
- )}
-
-
- {message.text.length > 0 && (
- <>
-
-
- {_(msg`Translate`)}
-
-
-
- {_(msg`Copy message text`)}
-
-
-
-
- >
- )}
-
- deleteControl.open()}>
- {_(msg`Delete for me`)}
-
-
- {!isFromSelf && (
- reportControl.open()}>
- {_(msg`Report`)}
-
-
- )}
-
-
-
-
-
-
-
- >
- )
-}
-MessageMenu = React.memo(MessageMenu)
diff --git a/src/components/dms/MessageProfileButton.tsx b/src/components/dms/MessageProfileButton.tsx
index 7f31f550ca..07b3a0c042 100644
--- a/src/components/dms/MessageProfileButton.tsx
+++ b/src/components/dms/MessageProfileButton.tsx
@@ -1,20 +1,18 @@
import React from 'react'
import {View} from 'react-native'
-import {AppBskyActorDefs} from '@atproto/api'
-import {msg} from '@lingui/macro'
+import {type AppBskyActorDefs} from '@atproto/api'
+import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useNavigation} from '@react-navigation/native'
-import {useEmail} from '#/lib/hooks/useEmail'
-import {NavigationProp} from '#/lib/routes/types'
+import {useRequireEmailVerification} from '#/lib/hooks/useRequireEmailVerification'
+import {type NavigationProp} from '#/lib/routes/types'
import {logEvent} from '#/lib/statsig/statsig'
import {useGetConvoAvailabilityQuery} from '#/state/queries/messages/get-convo-availability'
import {useGetConvoForMembers} from '#/state/queries/messages/get-convo-for-members'
import * as Toast from '#/view/com/util/Toast'
import {atoms as a, useTheme} from '#/alf'
import {Button, ButtonIcon} from '#/components/Button'
-import {useDialogControl} from '#/components/Dialog'
-import {VerifyEmailDialog} from '#/components/dialogs/VerifyEmailDialog'
import {canBeMessaged} from '#/components/dms/util'
import {Message_Stroke2_Corner0_Rounded as Message} from '#/components/icons/Message'
@@ -26,8 +24,7 @@ export function MessageProfileButton({
const {_} = useLingui()
const t = useTheme()
const navigation = useNavigation()
- const {needsEmailVerification} = useEmail()
- const verifyEmailControl = useDialogControl()
+ const requireEmailVerification = useRequireEmailVerification()
const {data: convoAvailability} = useGetConvoAvailabilityQuery(profile.did)
const {mutate: initiateConvo} = useGetConvoForMembers({
@@ -45,11 +42,6 @@ export function MessageProfileButton({
return
}
- if (needsEmailVerification) {
- verifyEmailControl.open()
- return
- }
-
if (convoAvailability.convo) {
logEvent('chat:open', {logContext: 'ProfileHeader'})
navigation.navigate('MessagesConversation', {
@@ -59,14 +51,15 @@ export function MessageProfileButton({
logEvent('chat:create', {logContext: 'ProfileHeader'})
initiateConvo([profile.did])
}
- }, [
- needsEmailVerification,
- verifyEmailControl,
- navigation,
- profile.did,
- initiateConvo,
- convoAvailability,
- ])
+ }, [navigation, profile.did, initiateConvo, convoAvailability])
+
+ const wrappedOnPress = requireEmailVerification(onPress, {
+ instructions: [
+
+ Before you can message another user, you must first verify your email.
+ ,
+ ],
+ })
if (!convoAvailability) {
// show pending state based on declaration
@@ -102,15 +95,9 @@ export function MessageProfileButton({
shape="round"
label={_(msg`Message ${profile.handle}`)}
style={[a.justify_center]}
- onPress={onPress}>
+ onPress={wrappedOnPress}>
-
>
)
} else {
diff --git a/src/components/dms/MessagesListHeader.tsx b/src/components/dms/MessagesListHeader.tsx
index 8da8c015f8..c8ed98f88b 100644
--- a/src/components/dms/MessagesListHeader.tsx
+++ b/src/components/dms/MessagesListHeader.tsx
@@ -1,9 +1,9 @@
import React, {useCallback} from 'react'
import {TouchableOpacity, View} from 'react-native'
import {
- AppBskyActorDefs,
- ModerationCause,
- ModerationDecision,
+ type AppBskyActorDefs,
+ type ModerationCause,
+ type ModerationDecision,
} from '@atproto/api'
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
import {msg} from '@lingui/macro'
@@ -12,12 +12,12 @@ import {useNavigation} from '@react-navigation/native'
import {BACK_HITSLOP} from '#/lib/constants'
import {makeProfileLink} from '#/lib/routes/links'
-import {NavigationProp} from '#/lib/routes/types'
+import {type NavigationProp} from '#/lib/routes/types'
import {sanitizeDisplayName} from '#/lib/strings/display-names'
import {isWeb} from '#/platform/detection'
-import {Shadow} from '#/state/cache/profile-shadow'
+import {type Shadow} from '#/state/cache/profile-shadow'
import {isConvoActive, useConvo} from '#/state/messages/convo'
-import {ConvoItem} from '#/state/messages/convo/types'
+import {type ConvoItem} from '#/state/messages/convo/types'
import {PreviewableUserAvatar} from '#/view/com/util/UserAvatar'
import {atoms as a, useBreakpoints, useTheme, web} from '#/alf'
import {ConvoMenu} from '#/components/dms/ConvoMenu'
@@ -25,6 +25,8 @@ import {Bell2Off_Filled_Corner0_Rounded as BellStroke} from '#/components/icons/
import {Link} from '#/components/Link'
import {PostAlerts} from '#/components/moderation/PostAlerts'
import {Text} from '#/components/Typography'
+import {useSimpleVerificationState} from '#/components/verification'
+import {VerificationCheck} from '#/components/verification/VerificationCheck'
const PFP_SIZE = isWeb ? 40 : 34
@@ -149,6 +151,9 @@ function HeaderReady({
const {_} = useLingui()
const t = useTheme()
const convoState = useConvo()
+ const verification = useSimpleVerificationState({
+ profile,
+ })
const isDeletedAccount = profile?.handle === 'missing.invalid'
const displayName = isDeletedAccount
@@ -185,17 +190,27 @@ function HeaderReady({
/>
-
- {displayName}
-
+
+
+ {displayName}
+
+ {verification.showBadge && (
+
+
+
+ )}
+
{!isDeletedAccount && (
{
@@ -49,17 +46,22 @@ export function NewChat({
[control, createChat],
)
+ const onPress = useCallback(() => {
+ control.open()
+ }, [control])
+ const wrappedOnPress = requireEmailVerification(onPress, {
+ instructions: [
+
+ Before you can message another user, you must first verify your email.
+ ,
+ ],
+ })
+
return (
<>
{
- if (needsEmailVerification) {
- verifyEmailControl.open()
- } else {
- control.open()
- }
- }}
+ onPress={wrappedOnPress}
icon={ }
accessibilityRole="button"
accessibilityLabel={_(msg`New chat`)}
@@ -71,15 +73,9 @@ export function NewChat({
-
-
>
)
}
diff --git a/src/components/dms/dialogs/ShareViaChatDialog.tsx b/src/components/dms/dialogs/ShareViaChatDialog.tsx
index 4bb27ae698..97897bc286 100644
--- a/src/components/dms/dialogs/ShareViaChatDialog.tsx
+++ b/src/components/dms/dialogs/ShareViaChatDialog.tsx
@@ -7,7 +7,7 @@ import {logger} from '#/logger'
import {useGetConvoForMembers} from '#/state/queries/messages/get-convo-for-members'
import * as Toast from '#/view/com/util/Toast'
import * as Dialog from '#/components/Dialog'
-import {SearchablePeopleList} from './SearchablePeopleList'
+import {SearchablePeopleList} from '#/components/dialogs/SearchablePeopleList'
export function SendViaChatDialog({
control,
@@ -62,6 +62,7 @@ function SendViaChatDialogInner({
title={_(msg`Send post to...`)}
onSelectChat={onCreateChat}
showRecentConvos
+ sortByMessageDeclaration
/>
)
}
diff --git a/src/components/dms/util.ts b/src/components/dms/util.ts
index 7315f5fc9c..2bcc9c3bdf 100644
--- a/src/components/dms/util.ts
+++ b/src/components/dms/util.ts
@@ -1,4 +1,7 @@
-import * as bsky from '#/types/bsky'
+import {type ChatBskyConvoDefs} from '@atproto/api'
+
+import {EMOJI_REACTION_LIMIT} from '#/lib/constants'
+import type * as bsky from '#/types/bsky'
export function canBeMessaged(profile: bsky.profile.AnyProfileView) {
switch (profile.associated?.chat?.allowIncoming) {
@@ -25,3 +28,29 @@ export function localDateString(date: Date) {
// not padding with 0s because it's not necessary, it's just used for comparison
return `${yyyy}-${mm}-${dd}`
}
+
+export function hasAlreadyReacted(
+ message: ChatBskyConvoDefs.MessageView,
+ myDid: string | undefined,
+ emoji: string,
+): boolean {
+ if (!message.reactions) {
+ return false
+ }
+ return !!message.reactions.find(
+ reaction => reaction.value === emoji && reaction.sender.did === myDid,
+ )
+}
+
+export function hasReachedReactionLimit(
+ message: ChatBskyConvoDefs.MessageView,
+ myDid: string | undefined,
+): boolean {
+ if (!message.reactions) {
+ return false
+ }
+ const myReactions = message.reactions.filter(
+ reaction => reaction.sender.did === myDid,
+ )
+ return myReactions.length >= EMOJI_REACTION_LIMIT
+}
diff --git a/src/components/forms/DateField/index.android.tsx b/src/components/forms/DateField/index.android.tsx
index 3be555238b..2a89be7d3c 100644
--- a/src/components/forms/DateField/index.android.tsx
+++ b/src/components/forms/DateField/index.android.tsx
@@ -1,9 +1,10 @@
import {useCallback, useImperativeHandle, useState} from 'react'
import {Keyboard} from 'react-native'
import DatePicker from 'react-native-date-picker'
+import {useLingui} from '@lingui/react'
import {useTheme} from '#/alf'
-import {DateFieldProps} from '#/components/forms/DateField/types'
+import {type DateFieldProps} from '#/components/forms/DateField/types'
import {toSimpleDateString} from '#/components/forms/DateField/utils'
import * as TextField from '#/components/forms/TextField'
import {DateFieldButton} from './index.shared'
@@ -21,6 +22,7 @@ export function DateField({
accessibilityHint,
maximumDate,
}: DateFieldProps) {
+ const {i18n} = useLingui()
const t = useTheme()
const [open, setOpen] = useState(false)
@@ -80,6 +82,8 @@ export function DateField({
onConfirm={onChangeInternal}
onCancel={onCancel}
mode="date"
+ locale={i18n.locale}
+ is24hourSource="locale"
testID={`${testID}-datepicker`}
aria-label={label}
accessibilityLabel={label}
diff --git a/src/components/forms/DateField/index.tsx b/src/components/forms/DateField/index.tsx
index b8ecf2e6f5..3683ee9e60 100644
--- a/src/components/forms/DateField/index.tsx
+++ b/src/components/forms/DateField/index.tsx
@@ -7,7 +7,7 @@ import {useLingui} from '@lingui/react'
import {atoms as a, useTheme} from '#/alf'
import {Button, ButtonText} from '#/components/Button'
import * as Dialog from '#/components/Dialog'
-import {DateFieldProps} from '#/components/forms/DateField/types'
+import {type DateFieldProps} from '#/components/forms/DateField/types'
import {toSimpleDateString} from '#/components/forms/DateField/utils'
import * as TextField from '#/components/forms/TextField'
import {DateFieldButton} from './index.shared'
@@ -33,7 +33,7 @@ export function DateField({
accessibilityHint,
maximumDate,
}: DateFieldProps) {
- const {_} = useLingui()
+ const {_, i18n} = useLingui()
const t = useTheme()
const control = Dialog.useDialogControl()
@@ -83,10 +83,11 @@ export function DateField({
{({hovered, pressed}) => {
diff --git a/src/components/hooks/dates.ts b/src/components/hooks/dates.ts
index e4b0800c46..898e245ecc 100644
--- a/src/components/hooks/dates.ts
+++ b/src/components/hooks/dates.ts
@@ -8,7 +8,7 @@
*/
import React from 'react'
-import {formatDistance, Locale} from 'date-fns'
+import {formatDistance, type Locale} from 'date-fns'
import {
ca,
cy,
@@ -21,6 +21,7 @@ import {
eu,
fi,
fr,
+ fy,
gd,
gl,
hi,
@@ -32,6 +33,7 @@ import {
ko,
nl,
pl,
+ pt,
ptBR,
ro,
ru,
@@ -45,7 +47,7 @@ import {
zhTW,
} from 'date-fns/locale'
-import {AppLanguage} from '#/locale/languages'
+import {type AppLanguage} from '#/locale/languages'
import {useLanguagePrefs} from '#/state/preferences'
/**
@@ -66,6 +68,7 @@ const locales: Record = {
eu,
fi,
fr,
+ fy,
ga: undefined,
gd,
gl,
@@ -80,6 +83,7 @@ const locales: Record = {
ne: undefined,
nl,
pl,
+ ['pt-PT']: pt,
['pt-BR']: ptBR,
ro,
ru,
diff --git a/src/components/icons/Arrow.tsx b/src/components/icons/Arrow.tsx
index 0d4bc9479e..57a313cc45 100644
--- a/src/components/icons/Arrow.tsx
+++ b/src/components/icons/Arrow.tsx
@@ -4,6 +4,10 @@ export const ArrowTopRight_Stroke2_Corner0_Rounded = createSinglePathSVG({
path: 'M8 6a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v9a1 1 0 1 1-2 0V8.414l-9.793 9.793a1 1 0 0 1-1.414-1.414L15.586 7H9a1 1 0 0 1-1-1Z',
})
+export const ArrowTop_Stroke2_Corner0_Rounded = createSinglePathSVG({
+ path: 'M11 20V6.164l-4.293 4.293a1 1 0 1 1-1.414-1.414l5.293-5.293.151-.138a2 2 0 0 1 2.677.138l5.293 5.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L13 6.164V20a1 1 0 0 1-2 0Z',
+})
+
export const ArrowLeft_Stroke2_Corner0_Rounded = createSinglePathSVG({
path: 'M3 12a1 1 0 0 1 .293-.707l6-6a1 1 0 0 1 1.414 1.414L6.414 11H20a1 1 0 1 1 0 2H6.414l4.293 4.293a1 1 0 0 1-1.414 1.414l-6-6A1 1 0 0 1 3 12Z',
})
diff --git a/src/components/icons/ArrowOutOfBox.tsx b/src/components/icons/ArrowOutOfBox.tsx
index 8b395016bd..23fee7de0c 100644
--- a/src/components/icons/ArrowOutOfBox.tsx
+++ b/src/components/icons/ArrowOutOfBox.tsx
@@ -3,3 +3,8 @@ import {createSinglePathSVG} from './TEMPLATE'
export const ArrowOutOfBox_Stroke2_Corner0_Rounded = createSinglePathSVG({
path: 'M12.707 3.293a1 1 0 0 0-1.414 0l-4.5 4.5a1 1 0 0 0 1.414 1.414L11 6.414v8.836a1 1 0 1 0 2 0V6.414l2.793 2.793a1 1 0 1 0 1.414-1.414l-4.5-4.5ZM5 12.75a1 1 0 1 0-2 0V20a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-7.25a1 1 0 1 0-2 0V19H5v-6.25Z',
})
+
+export const ArrowOutOfBoxModified_Stroke2_Corner2_Rounded =
+ createSinglePathSVG({
+ path: 'M20 13.75a1 1 0 0 1 1 1V18a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3v-3.25a1 1 0 1 1 2 0V18a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-3.25a1 1 0 0 1 1-1ZM12 3a1 1 0 0 1 .707.293l4.5 4.5a1 1 0 1 1-1.414 1.414L13 6.414v8.836a1 1 0 1 1-2 0V6.414L8.207 9.207a1 1 0 1 1-1.414-1.414l4.5-4.5A1 1 0 0 1 12 3Z',
+ })
diff --git a/src/components/icons/ArrowShareRight.tsx b/src/components/icons/ArrowShareRight.tsx
new file mode 100644
index 0000000000..499034da71
--- /dev/null
+++ b/src/components/icons/ArrowShareRight.tsx
@@ -0,0 +1,5 @@
+import {createSinglePathSVG} from './TEMPLATE'
+
+export const ArrowShareRight_Stroke2_Corner2_Rounded = createSinglePathSVG({
+ path: 'M11.839 4.744c0-1.488 1.724-2.277 2.846-1.364l.107.094 7.66 7.256.128.134c.558.652.558 1.62 0 2.272l-.128.135-7.66 7.255c-1.115 1.057-2.953.267-2.953-1.27v-2.748c-3.503.055-5.417.41-6.592.97-.997.474-1.525 1.122-2.084 2.14l-.243.46c-.558 1.088-2.09.583-2.08-.515l.015-.748c.111-3.68.777-6.5 2.546-8.415 1.83-1.98 4.63-2.771 8.438-2.884V4.744Zm2 3.256c0 .79-.604 1.41-1.341 1.494l-.149.01c-3.9.057-6.147.813-7.48 2.254-.963 1.043-1.562 2.566-1.842 4.79.38-.327.826-.622 1.361-.877 1.656-.788 4.08-1.14 7.938-1.169l.153.007c.754.071 1.36.704 1.36 1.491v2.675L20.884 12l-7.045-6.676V8Z',
+})
diff --git a/src/components/icons/BroomSparkle.tsx b/src/components/icons/BroomSparkle.tsx
new file mode 100644
index 0000000000..866efcfcd6
--- /dev/null
+++ b/src/components/icons/BroomSparkle.tsx
@@ -0,0 +1,5 @@
+import {createSinglePathSVG} from './TEMPLATE'
+
+export const BroomSparkle_Stroke2_Corner2_Rounded = createSinglePathSVG({
+ path: 'M20.494 2.13a1 1 0 0 1 .375 1.364l-4.658 8.2.263.095c1.52.554 2.737 2.062 2.484 3.864-.336 2.393-1.358 4.12-3.245 6.047a1 1 0 0 1-1.102.222l-9.5-4a1 1 0 0 1-.166-1.754c1.458-.971 2.623-1.923 3.498-3.3 1.057-1.662 3.154-2.854 5.281-2.08l.58.212 4.827-8.494a1 1 0 0 1 1.363-.375ZM13.04 12.669c-.983-.358-2.19.142-2.91 1.273-.737 1.16-1.628 2.054-2.601 2.828l1.708.72a.2.2 0 0 0 .177-.011l2.13-1.218a.2.2 0 0 1 .29.237l-.551 1.653a.2.2 0 0 0 .112.247l3.353 1.413c1.359-1.494 1.994-2.76 2.23-4.435.094-.675-.359-1.405-1.188-1.707l-2.75-1ZM4.407 7.184a.5.5 0 0 1-.224.224l-1.29.645a.5.5 0 0 0 0 .894l1.29.645a.5.5 0 0 1 .224.224l.645 1.29a.5.5 0 0 0 .894 0l.645-1.29a.5.5 0 0 1 .224-.224l1.29-.645a.5.5 0 0 0 0-.894l-1.29-.645a.5.5 0 0 1-.224-.224l-.645-1.29a.5.5 0 0 0-.894 0l-.645 1.29ZM9.559 3.72a.36.36 0 0 0 .16-.16l.46-.921a.357.357 0 0 1 .64 0l.46.921q.054.106.16.16l.921.46a.357.357 0 0 1 0 .64l-.921.46a.36.36 0 0 0-.16.16l-.46.921a.357.357 0 0 1-.64 0l-.46-.921a.36.36 0 0 0-.16-.16l-.921-.46a.357.357 0 0 1 0-.64l.921-.46Z',
+})
diff --git a/src/components/icons/ChainLink.tsx b/src/components/icons/ChainLink.tsx
new file mode 100644
index 0000000000..be19b556a4
--- /dev/null
+++ b/src/components/icons/ChainLink.tsx
@@ -0,0 +1,5 @@
+import {createSinglePathSVG} from './TEMPLATE'
+
+export const ChainLink_Stroke2_Corner0_Rounded = createSinglePathSVG({
+ path: 'M18.535 5.465a5.003 5.003 0 0 0-7.076 0l-.005.005-.752.742a1 1 0 1 1-1.404-1.424l.749-.74a7.003 7.003 0 0 1 9.904 9.905l-.002.003-.737.746a1 1 0 1 1-1.424-1.404l.747-.757a5.003 5.003 0 0 0 0-7.076ZM6.202 9.288a1 1 0 0 1 .01 1.414l-.747.757a5.003 5.003 0 1 0 7.076 7.076l.005-.005.752-.742a1 1 0 1 1 1.404 1.424l-.746.737-.003.002a7.003 7.003 0 0 1-9.904-9.904l.74-.75a1 1 0 0 1 1.413-.009Zm8.505.005a1 1 0 0 1 0 1.414l-4 4a1 1 0 0 1-1.414-1.414l4-4a1 1 0 0 1 1.414 0Z',
+})
diff --git a/src/components/icons/CircleCheck.tsx b/src/components/icons/CircleCheck.tsx
new file mode 100644
index 0000000000..98abc92962
--- /dev/null
+++ b/src/components/icons/CircleCheck.tsx
@@ -0,0 +1,5 @@
+import {createSinglePathSVG} from './TEMPLATE'
+
+export const CircleCheck_Stroke2_Corner0_Rounded = createSinglePathSVG({
+ path: 'M12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm13.633-3.274a1 1 0 0 1 .141 1.407l-4.5 5.5a1 1 0 0 1-1.481.074l-2-2a1 1 0 1 1 1.414-1.414l1.219 1.219 3.8-4.645a1 1 0 0 1 1.407-.141Z',
+})
diff --git a/src/components/icons/Flame.tsx b/src/components/icons/Flame.tsx
new file mode 100644
index 0000000000..42569b0dee
--- /dev/null
+++ b/src/components/icons/Flame.tsx
@@ -0,0 +1,5 @@
+import {createSinglePathSVG} from './TEMPLATE'
+
+export const Flame_Stroke2_Corner1_Rounded = createSinglePathSVG({
+ path: 'M11.158 2.879c.584-.835 1.757-1.137 2.673-.507.951.654 2.597 1.92 4.013 3.694S20.5 10.194 20.5 13c0 4.997-3.752 9-8.5 9s-8.5-4.003-8.5-9c0-2.035.874-4.636 2.578-6.712.746-.91 2.034-.855 2.786-.133l2.294-3.276Zm-3.04 15.758C6.538 17.386 5.5 15.37 5.5 13c0-1.511.666-3.616 2.042-5.342.87.797 2.254.653 2.939-.325l2.286-3.265c.871.606 2.299 1.723 3.514 3.246C17.53 8.879 18.5 10.804 18.5 13c0 2.369-1.038 4.386-2.618 5.637q.117-.518.118-1.061c0-2.601-2.038-4.382-2.911-5.04a1.8 1.8 0 0 0-2.177 0C10.038 13.195 8 14.976 8 17.577q0 .543.118 1.061ZM12 14.222c-.825.648-2 1.859-2 3.354C10 19.043 11.016 20 12 20s2-.957 2-2.424c0-1.495-1.175-2.706-2-3.354Z',
+})
diff --git a/src/components/icons/Live.tsx b/src/components/icons/Live.tsx
new file mode 100644
index 0000000000..609aa21271
--- /dev/null
+++ b/src/components/icons/Live.tsx
@@ -0,0 +1,5 @@
+import {createSinglePathSVG} from './TEMPLATE'
+
+export const Live_Stroke2_Corner0_Rounded = createSinglePathSVG({
+ path: 'M2 12A9.97 9.97 0 0 1 4.929 4.93l.076-.068a1 1 0 0 1 1.407 1.406l-.07.076A7.97 7.97 0 0 0 4 12c0 2.072.786 3.958 2.078 5.38l.265.277.07.076a1 1 0 0 1-1.408 1.407l-.076-.07-.331-.346A9.97 9.97 0 0 1 2 12Zm18 0a7.97 7.97 0 0 0-2.078-5.379l-.265-.278-.07-.076a1 1 0 0 1 1.408-1.406l.076.068.331.347A9.97 9.97 0 0 1 22 12c0 2.761-1.12 5.262-2.929 7.07a1 1 0 1 1-1.414-1.413A7.97 7.97 0 0 0 20 12ZM6 12c0-1.656.673-3.158 1.758-4.243a1 1 0 0 1 1.414 1.414A3.99 3.99 0 0 0 8 12.001c0 1.035.393 1.978 1.04 2.689l.132.138.068.077a1 1 0 0 1-1.407 1.406l-.075-.069-.2-.208A5.98 5.98 0 0 1 6 12Zm10 0a3.98 3.98 0 0 0-1.04-2.69l-.132-.139-.068-.075a1 1 0 0 1 1.407-1.407l.075.068.2.208A5.98 5.98 0 0 1 18 12a5.99 5.99 0 0 1-1.758 4.243 1 1 0 0 1-1.414-1.415A3.99 3.99 0 0 0 16 12Zm-6 0a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z',
+})
diff --git a/src/components/icons/Shield.tsx b/src/components/icons/Shield.tsx
index 5038d5c244..4e5dc8ea04 100644
--- a/src/components/icons/Shield.tsx
+++ b/src/components/icons/Shield.tsx
@@ -3,3 +3,7 @@ import {createSinglePathSVG} from './TEMPLATE'
export const Shield_Stroke2_Corner0_Rounded = createSinglePathSVG({
path: 'M11.675 2.054a1 1 0 0 1 .65 0l8 2.75A1 1 0 0 1 21 5.75v6.162c0 2.807-1.149 4.83-2.813 6.405-1.572 1.488-3.632 2.6-5.555 3.636l-.157.085a1 1 0 0 1-.95 0l-.157-.085c-1.923-1.037-3.983-2.148-5.556-3.636C4.15 16.742 3 14.719 3 11.912V5.75a1 1 0 0 1 .675-.946l8-2.75ZM5 6.464v5.448c0 2.166.851 3.687 2.188 4.952 1.276 1.209 2.964 2.158 4.812 3.157 1.848-1 3.536-1.948 4.813-3.157C18.148 15.6 19 14.078 19 11.912V6.464l-7-2.407-7 2.407Z',
})
+
+export const ShieldCheck_Stroke2_Corner0_Rounded = createSinglePathSVG({
+ path: 'M12.325 2.054a1 1 0 0 0-.65 0l-8 2.75A1 1 0 0 0 3 5.75v6.162c0 2.807 1.149 4.83 2.813 6.405 1.572 1.488 3.632 2.6 5.555 3.636l.157.085a1 1 0 0 0 .95 0l.157-.085c1.923-1.037 3.983-2.148 5.556-3.636C19.85 16.742 21 14.719 21 11.912V5.75a1 1 0 0 0-.675-.946l-8-2.75ZM5 11.912V6.464l7-2.407 7 2.407v5.448c0 2.166-.851 3.687-2.188 4.952-1.276 1.209-2.964 2.158-4.812 3.157-1.848-1-3.536-1.948-4.813-3.157C5.851 15.6 5 14.078 5 11.912Zm10.207-1.205a1 1 0 0 0-1.414-1.414L11 12.086l-.793-.793a1 1 0 0 0-1.414 1.414l1.5 1.5a1 1 0 0 0 1.414 0l3.5-3.5Z',
+})
diff --git a/src/components/icons/Sparkle.tsx b/src/components/icons/Sparkle.tsx
new file mode 100644
index 0000000000..73ce21d02d
--- /dev/null
+++ b/src/components/icons/Sparkle.tsx
@@ -0,0 +1,5 @@
+import {createSinglePathSVG} from './TEMPLATE'
+
+export const Sparkle_Stroke2_Corner0_Rounded = createSinglePathSVG({
+ path: 'M12 2a1 1 0 0 1 1 1c0 3.188.669 5.256 1.882 6.536C16.084 10.805 18.01 11.5 21 11.5a1 1 0 1 1 0 2c-2.99 0-4.916.695-6.118 1.964C13.67 16.744 13 18.812 13 22a1 1 0 1 1-2 0c0-3.188-.669-5.256-1.882-6.536C7.916 14.195 5.99 13.5 3 13.5a1 1 0 1 1 0-2c2.99 0 4.916-.695 6.118-1.964C10.33 8.256 11 6.188 11 3a1 1 0 0 1 1-1Zm0 6.734a7.608 7.608 0 0 1-1.43 2.178A7.285 7.285 0 0 1 8.349 12.5c.846.397 1.589.921 2.22 1.588A7.607 7.607 0 0 1 12 16.267a7.607 7.607 0 0 1 1.43-2.179 7.284 7.284 0 0 1 2.221-1.588 7.284 7.284 0 0 1-2.22-1.588A7.608 7.608 0 0 1 12 8.734Z',
+})
diff --git a/src/components/icons/Trending2.tsx b/src/components/icons/Trending.tsx
similarity index 61%
rename from src/components/icons/Trending2.tsx
rename to src/components/icons/Trending.tsx
index 5fba4167b5..bdc8539e0e 100644
--- a/src/components/icons/Trending2.tsx
+++ b/src/components/icons/Trending.tsx
@@ -3,3 +3,7 @@ import {createSinglePathSVG} from './TEMPLATE'
export const Trending2_Stroke2_Corner2_Rounded = createSinglePathSVG({
path: 'm18.192 5.004 1.864 5.31a1 1 0 0 0 1.887-.662L20.08 4.34c-.665-1.893-3.378-1.741-3.834.207l-3.381 14.449-2.985-9.605C9.3 7.531 6.684 7.506 6.07 9.355l-1.18 3.56-.969-2.312a1 1 0 0 0-1.844.772l.97 2.315c.715 1.71 3.159 1.613 3.741-.144l1.18-3.56 2.985 9.605c.607 1.952 3.392 1.848 3.857-.138l3.381-14.449Z',
})
+
+export const Trending3_Stroke2_Corner1_Rounded = createSinglePathSVG({
+ path: 'M15 7a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V9.414L14.414 15a2 2 0 0 1-2.828 0L9 12.414l-5.293 5.293a1 1 0 0 1-1.414-1.414L7.586 11a2 2 0 0 1 2.828 0L13 13.586 18.586 8H16a1 1 0 0 1-1-1Z',
+})
diff --git a/src/components/icons/VerifiedCheck.tsx b/src/components/icons/VerifiedCheck.tsx
new file mode 100644
index 0000000000..9d0aa9158d
--- /dev/null
+++ b/src/components/icons/VerifiedCheck.tsx
@@ -0,0 +1,30 @@
+import React from 'react'
+import Svg, {Circle, Path} from 'react-native-svg'
+
+import {type Props, useCommonSVGProps} from '#/components/icons/common'
+
+export const VerifiedCheck = React.forwardRef(function LogoImpl(
+ props,
+ ref,
+) {
+ const {fill, size, style, ...rest} = useCommonSVGProps(props)
+
+ return (
+
+
+
+
+ )
+})
diff --git a/src/components/icons/VerifierCheck.tsx b/src/components/icons/VerifierCheck.tsx
new file mode 100644
index 0000000000..143c24b971
--- /dev/null
+++ b/src/components/icons/VerifierCheck.tsx
@@ -0,0 +1,35 @@
+import React from 'react'
+import Svg, {Path} from 'react-native-svg'
+
+import {type Props, useCommonSVGProps} from '#/components/icons/common'
+
+export const VerifierCheck = React.forwardRef(function LogoImpl(
+ props,
+ ref,
+) {
+ const {fill, size, style, ...rest} = useCommonSVGProps(props)
+
+ return (
+
+
+
+
+ )
+})
diff --git a/src/components/icons/common.tsx b/src/components/icons/common.tsx
index 996ecb626c..bc1e045a48 100644
--- a/src/components/icons/common.tsx
+++ b/src/components/icons/common.tsx
@@ -1,5 +1,5 @@
-import {StyleSheet, TextProps} from 'react-native'
-import type {PathProps, SvgProps} from 'react-native-svg'
+import {StyleSheet, type TextProps} from 'react-native'
+import {type PathProps, type SvgProps} from 'react-native-svg'
import {Defs, LinearGradient, Stop} from 'react-native-svg'
import {nanoid} from 'nanoid/non-secure'
@@ -19,7 +19,7 @@ export const sizes = {
lg: 24,
xl: 28,
'2xl': 32,
-}
+} as const
export function useCommonSVGProps(props: Props) {
const t = useTheme()
diff --git a/src/components/interstitials/Trending.tsx b/src/components/interstitials/Trending.tsx
index 7412c6f0ac..5561be18e0 100644
--- a/src/components/interstitials/Trending.tsx
+++ b/src/components/interstitials/Trending.tsx
@@ -9,13 +9,13 @@ import {
useTrendingSettingsApi,
} from '#/state/preferences/trending'
import {useTrendingTopics} from '#/state/queries/trending/useTrendingTopics'
-import {useTrendingConfig} from '#/state/trending-config'
+import {useTrendingConfig} from '#/state/service-config'
import {LoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder'
import {BlockDrawerGesture} from '#/view/shell/BlockDrawerGesture'
import {atoms as a, useGutters, useTheme} from '#/alf'
import {Button, ButtonIcon} from '#/components/Button'
import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times'
-import {Trending2_Stroke2_Corner2_Rounded as Graph} from '#/components/icons/Trending2'
+import {Trending2_Stroke2_Corner2_Rounded as Graph} from '#/components/icons/Trending'
import * as Prompt from '#/components/Prompt'
import {TrendingTopicLink} from '#/components/TrendingTopics'
import {Text} from '#/components/Typography'
diff --git a/src/components/interstitials/TrendingVideos.tsx b/src/components/interstitials/TrendingVideos.tsx
index 126d6f4174..fab738b9cb 100644
--- a/src/components/interstitials/TrendingVideos.tsx
+++ b/src/components/interstitials/TrendingVideos.tsx
@@ -16,7 +16,7 @@ import {atoms as a, useGutters, useTheme} from '#/alf'
import {Button, ButtonIcon} from '#/components/Button'
import {ChevronRight_Stroke2_Corner0_Rounded as ChevronRight} from '#/components/icons/Chevron'
import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times'
-import {Trending2_Stroke2_Corner2_Rounded as Graph} from '#/components/icons/Trending2'
+import {Trending2_Stroke2_Corner2_Rounded as Graph} from '#/components/icons/Trending'
import {Link} from '#/components/Link'
import * as Prompt from '#/components/Prompt'
import {Text} from '#/components/Typography'
diff --git a/src/components/live/EditLiveDialog.tsx b/src/components/live/EditLiveDialog.tsx
new file mode 100644
index 0000000000..cdffb3286e
--- /dev/null
+++ b/src/components/live/EditLiveDialog.tsx
@@ -0,0 +1,256 @@
+import {useMemo, useState} from 'react'
+import {View} from 'react-native'
+import {
+ type AppBskyActorDefs,
+ AppBskyActorStatus,
+ type AppBskyEmbedExternal,
+} from '@atproto/api'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+import {differenceInMinutes} from 'date-fns'
+
+import {cleanError} from '#/lib/strings/errors'
+import {definitelyUrl} from '#/lib/strings/url-helpers'
+import {useTickEveryMinute} from '#/state/shell'
+import {atoms as a, platform, useTheme, web} from '#/alf'
+import {Admonition} from '#/components/Admonition'
+import {Button, ButtonIcon, ButtonText} from '#/components/Button'
+import * as Dialog from '#/components/Dialog'
+import * as TextField from '#/components/forms/TextField'
+import {Clock_Stroke2_Corner0_Rounded as ClockIcon} from '#/components/icons/Clock'
+import {Warning_Stroke2_Corner0_Rounded as WarningIcon} from '#/components/icons/Warning'
+import {Loader} from '#/components/Loader'
+import {Text} from '#/components/Typography'
+import {LinkPreview} from './LinkPreview'
+import {
+ useLiveLinkMetaQuery,
+ useRemoveLiveStatusMutation,
+ useUpsertLiveStatusMutation,
+} from './queries'
+import {displayDuration, useDebouncedValue} from './utils'
+
+export function EditLiveDialog({
+ control,
+ status,
+ embed,
+}: {
+ control: Dialog.DialogControlProps
+ status: AppBskyActorDefs.StatusView
+ embed: AppBskyEmbedExternal.View
+}) {
+ return (
+
+
+
+
+ )
+}
+
+function DialogInner({
+ status,
+ embed,
+}: {
+ status: AppBskyActorDefs.StatusView
+ embed: AppBskyEmbedExternal.View
+}) {
+ const control = Dialog.useDialogContext()
+ const {_, i18n} = useLingui()
+ const t = useTheme()
+
+ const [liveLink, setLiveLink] = useState(embed.external.uri)
+ const [liveLinkError, setLiveLinkError] = useState('')
+ const tick = useTickEveryMinute()
+
+ const liveLinkUrl = definitelyUrl(liveLink)
+ const debouncedUrl = useDebouncedValue(liveLinkUrl, 500)
+
+ const isDirty = liveLinkUrl !== embed.external.uri
+
+ const {
+ data: linkMeta,
+ isSuccess: hasValidLinkMeta,
+ isLoading: linkMetaLoading,
+ error: linkMetaError,
+ } = useLiveLinkMetaQuery(debouncedUrl)
+
+ const record = useMemo(() => {
+ if (!AppBskyActorStatus.isRecord(status.record)) return null
+ const validation = AppBskyActorStatus.validateRecord(status.record)
+ if (validation.success) {
+ return validation.value
+ }
+ return null
+ }, [status])
+
+ const {
+ mutate: goLive,
+ isPending: isGoingLive,
+ error: goLiveError,
+ } = useUpsertLiveStatusMutation(
+ record?.durationMinutes ?? 0,
+ linkMeta,
+ record?.createdAt,
+ )
+
+ const {
+ mutate: removeLiveStatus,
+ isPending: isRemovingLiveStatus,
+ error: removeLiveStatusError,
+ } = useRemoveLiveStatusMutation()
+
+ const {minutesUntilExpiry, expiryDateTime} = useMemo(() => {
+ tick!
+
+ const expiry = new Date(status.expiresAt ?? new Date())
+ return {
+ expiryDateTime: expiry,
+ minutesUntilExpiry: differenceInMinutes(expiry, new Date()),
+ }
+ }, [tick, status.expiresAt])
+
+ const submitDisabled =
+ isGoingLive ||
+ !hasValidLinkMeta ||
+ debouncedUrl !== liveLinkUrl ||
+ isRemovingLiveStatus
+
+ return (
+
+
+
+
+ You are Live
+
+
+
+
+ {typeof record?.durationMinutes === 'number' ? (
+
+ Expires in {displayDuration(i18n, minutesUntilExpiry)} at{' '}
+ {i18n.date(expiryDateTime, {
+ hour: 'numeric',
+ minute: '2-digit',
+ hour12: true,
+ })}
+
+ ) : (
+ No expiry set
+ )}
+
+
+
+
+
+
+ Live link
+
+
+ setLiveLinkError('')}
+ onBlur={() => {
+ if (!definitelyUrl(liveLink)) {
+ setLiveLinkError('Invalid URL')
+ }
+ }}
+ returnKeyType="done"
+ autoCapitalize="none"
+ autoComplete="url"
+ autoCorrect={false}
+ onSubmitEditing={() => {
+ if (isDirty && !submitDisabled) {
+ goLive()
+ }
+ }}
+ />
+
+
+ {(liveLinkError || linkMetaError) && (
+
+
+
+ {liveLinkError ? (
+ This is not a valid link
+ ) : (
+ cleanError(linkMetaError)
+ )}
+
+
+ )}
+
+
+
+
+ {goLiveError && (
+ {cleanError(goLiveError)}
+ )}
+ {removeLiveStatusError && (
+
+ {cleanError(removeLiveStatusError)}
+
+ )}
+
+
+ {isDirty ? (
+ goLive()}
+ disabled={submitDisabled}>
+
+ Save
+
+ {isGoingLive && }
+
+ ) : (
+ control.close()}>
+
+ Close
+
+
+ )}
+ removeLiveStatus()}
+ size={platform({native: 'large', web: 'small'})}
+ color="negative_secondary"
+ variant="solid"
+ disabled={isRemovingLiveStatus || isGoingLive}>
+
+ Remove live status
+
+ {isRemovingLiveStatus && }
+
+
+
+
+
+ )
+}
diff --git a/src/components/live/GoLiveDialog.tsx b/src/components/live/GoLiveDialog.tsx
new file mode 100644
index 0000000000..1c5fa27a72
--- /dev/null
+++ b/src/components/live/GoLiveDialog.tsx
@@ -0,0 +1,261 @@
+import {useCallback, useState} from 'react'
+import {View} from 'react-native'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {cleanError} from '#/lib/strings/errors'
+import {definitelyUrl} from '#/lib/strings/url-helpers'
+import {useModerationOpts} from '#/state/preferences/moderation-opts'
+import {useTickEveryMinute} from '#/state/shell'
+import {atoms as a, ios, native, platform, useTheme, web} from '#/alf'
+import {Admonition} from '#/components/Admonition'
+import {Button, ButtonIcon, ButtonText} from '#/components/Button'
+import * as Dialog from '#/components/Dialog'
+import * as TextField from '#/components/forms/TextField'
+import {Warning_Stroke2_Corner0_Rounded as WarningIcon} from '#/components/icons/Warning'
+import {Loader} from '#/components/Loader'
+import * as ProfileCard from '#/components/ProfileCard'
+import * as Select from '#/components/Select'
+import {Text} from '#/components/Typography'
+import type * as bsky from '#/types/bsky'
+import {LinkPreview} from './LinkPreview'
+import {useLiveLinkMetaQuery, useUpsertLiveStatusMutation} from './queries'
+import {displayDuration, useDebouncedValue} from './utils'
+
+export function GoLiveDialog({
+ control,
+ profile,
+}: {
+ control: Dialog.DialogControlProps
+ profile: bsky.profile.AnyProfileView
+}) {
+ return (
+
+
+
+
+ )
+}
+
+// Possible durations: max 4 hours, 5 minute intervals
+const DURATIONS = Array.from({length: (4 * 60) / 5}).map((_, i) => (i + 1) * 5)
+
+function DialogInner({profile}: {profile: bsky.profile.AnyProfileView}) {
+ const control = Dialog.useDialogContext()
+ const {_, i18n} = useLingui()
+ const t = useTheme()
+ const [liveLink, setLiveLink] = useState('')
+ const [liveLinkError, setLiveLinkError] = useState('')
+ const [duration, setDuration] = useState(60)
+ const moderationOpts = useModerationOpts()
+ const tick = useTickEveryMinute()
+
+ const time = useCallback(
+ (offset: number) => {
+ tick!
+
+ const date = new Date()
+ date.setMinutes(date.getMinutes() + offset)
+ return i18n
+ .date(date, {hour: 'numeric', minute: '2-digit', hour12: true})
+ .toLocaleUpperCase()
+ .replace(' ', '')
+ },
+ [tick, i18n],
+ )
+
+ const onChangeDuration = useCallback((newDuration: string) => {
+ setDuration(Number(newDuration))
+ }, [])
+
+ const liveLinkUrl = definitelyUrl(liveLink)
+ const debouncedUrl = useDebouncedValue(liveLinkUrl, 500)
+
+ const {
+ data: linkMeta,
+ isSuccess: hasValidLinkMeta,
+ isLoading: linkMetaLoading,
+ error: linkMetaError,
+ } = useLiveLinkMetaQuery(debouncedUrl)
+
+ const {
+ mutate: goLive,
+ isPending: isGoingLive,
+ error: goLiveError,
+ } = useUpsertLiveStatusMutation(duration, linkMeta)
+
+ const isSourceInvalid = !!liveLinkError || !!linkMetaError
+
+ const hasLink = !!debouncedUrl && !isSourceInvalid
+
+ return (
+
+
+
+
+ Go Live
+
+
+
+ Add a temporary live status to your profile. When someone clicks
+ on your avatar, they’ll see information about your live event.
+
+
+
+ {moderationOpts && (
+
+
+
+
+ )}
+
+
+
+ Live link
+
+
+ setLiveLinkError('')}
+ onBlur={() => {
+ if (!definitelyUrl(liveLink)) {
+ setLiveLinkError('Invalid URL')
+ }
+ }}
+ returnKeyType="done"
+ autoCapitalize="none"
+ autoComplete="url"
+ autoCorrect={false}
+ />
+
+
+ {(liveLinkError || linkMetaError) && (
+
+
+
+ {liveLinkError ? (
+ This is not a valid link
+ ) : (
+ cleanError(linkMetaError)
+ )}
+
+
+ )}
+
+
+
+
+ {hasLink && (
+
+
+ Go live for
+
+
+
+
+ {displayDuration(i18n, duration)}
+ {' '}
+
+ {time(duration)}
+
+
+
+
+
+ {
+ const label = displayDuration(i18n, item)
+ return (
+
+
+
+ {label}
+ {' '}
+
+ {time(item)}
+
+
+
+ )
+ }}
+ items={DURATIONS}
+ valueExtractor={d => String(d)}
+ />
+
+
+ )}
+
+ {goLiveError && (
+ {cleanError(goLiveError)}
+ )}
+
+
+ {hasLink && (
+ goLive()}
+ disabled={
+ isGoingLive || !hasValidLinkMeta || debouncedUrl !== liveLinkUrl
+ }>
+
+ Go Live
+
+ {isGoingLive && }
+
+ )}
+ control.close()}
+ size={platform({native: 'large', web: 'small'})}
+ color="secondary"
+ variant={platform({native: 'solid', web: 'ghost'})}>
+
+ Cancel
+
+
+
+
+
+
+ )
+}
diff --git a/src/components/live/LinkPreview.tsx b/src/components/live/LinkPreview.tsx
new file mode 100644
index 0000000000..98320a9e82
--- /dev/null
+++ b/src/components/live/LinkPreview.tsx
@@ -0,0 +1,98 @@
+import {useState} from 'react'
+import {View} from 'react-native'
+import {Image} from 'expo-image'
+import {Trans} from '@lingui/macro'
+
+import {type LinkMeta} from '#/lib/link-meta/link-meta'
+import {toNiceDomain} from '#/lib/strings/url-helpers'
+import {LoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder'
+import {atoms as a, useTheme} from '#/alf'
+import {Globe_Stroke2_Corner0_Rounded as GlobeIcon} from '#/components/icons/Globe'
+import {Image_Stroke2_Corner0_Rounded as ImageIcon} from '#/components/icons/Image'
+import {Text} from '#/components/Typography'
+
+export function LinkPreview({
+ linkMeta,
+ loading,
+}: {
+ linkMeta?: LinkMeta
+ loading: boolean
+}) {
+ const t = useTheme()
+ const [imageLoadError, setImageLoadError] = useState(false)
+
+ if (!linkMeta && !loading) {
+ return null
+ }
+
+ return (
+
+
+ {linkMeta?.image && (
+ setImageLoadError(false)}
+ onError={() => setImageLoadError(true)}
+ />
+ )}
+ {linkMeta && (!linkMeta.image || imageLoadError) && (
+ <>
+
+
+ No image
+
+ >
+ )}
+
+
+ {linkMeta ? (
+ <>
+
+ {linkMeta.title || linkMeta.url}
+
+
+
+
+ {toNiceDomain(linkMeta.url)}
+
+
+ >
+ ) : (
+ <>
+
+
+ >
+ )}
+
+
+ )
+}
diff --git a/src/components/live/LiveIndicator.tsx b/src/components/live/LiveIndicator.tsx
new file mode 100644
index 0000000000..c237e8c832
--- /dev/null
+++ b/src/components/live/LiveIndicator.tsx
@@ -0,0 +1,53 @@
+import {type StyleProp, View, type ViewStyle} from 'react-native'
+import {Trans} from '@lingui/macro'
+
+import {atoms as a, tokens, useTheme} from '#/alf'
+import {Text} from '#/components/Typography'
+
+export function LiveIndicator({
+ size = 'small',
+ style,
+}: {
+ size?: 'tiny' | 'small' | 'large'
+ style?: StyleProp
+}) {
+ const t = useTheme()
+
+ const fontSize = {
+ tiny: {fontSize: 7, letterSpacing: tokens.TRACKING},
+ small: a.text_2xs,
+ large: a.text_xs,
+ }[size]
+
+ return (
+
+
+
+
+ LIVE
+
+
+
+
+ )
+}
diff --git a/src/components/live/LiveStatusDialog.tsx b/src/components/live/LiveStatusDialog.tsx
new file mode 100644
index 0000000000..8da15bc93b
--- /dev/null
+++ b/src/components/live/LiveStatusDialog.tsx
@@ -0,0 +1,220 @@
+import {useCallback} from 'react'
+import {View} from 'react-native'
+import {Image} from 'expo-image'
+import {type AppBskyActorDefs, type AppBskyEmbedExternal} from '@atproto/api'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+import {useNavigation} from '@react-navigation/native'
+import {useQueryClient} from '@tanstack/react-query'
+
+import {useOpenLink} from '#/lib/hooks/useOpenLink'
+import {type NavigationProp} from '#/lib/routes/types'
+import {sanitizeHandle} from '#/lib/strings/handles'
+import {toNiceDomain} from '#/lib/strings/url-helpers'
+import {logger} from '#/logger'
+import {useModerationOpts} from '#/state/preferences/moderation-opts'
+import {unstableCacheProfileView} from '#/state/queries/profile'
+import {android, atoms as a, platform, tokens, useTheme, web} from '#/alf'
+import {Button, ButtonIcon, ButtonText} from '#/components/Button'
+import * as Dialog from '#/components/Dialog'
+import * as ProfileCard from '#/components/ProfileCard'
+import {Text} from '#/components/Typography'
+import type * as bsky from '#/types/bsky'
+import {Globe_Stroke2_Corner0_Rounded} from '../icons/Globe'
+import {SquareArrowTopRight_Stroke2_Corner0_Rounded as SquareArrowTopRightIcon} from '../icons/SquareArrowTopRight'
+import {LiveIndicator} from './LiveIndicator'
+
+export function LiveStatusDialog({
+ control,
+ profile,
+ embed,
+}: {
+ control: Dialog.DialogControlProps
+ profile: bsky.profile.AnyProfileView
+ status: AppBskyActorDefs.StatusView
+ embed: AppBskyEmbedExternal.View
+}) {
+ const navigation = useNavigation()
+ return (
+
+
+
+
+ )
+}
+
+function DialogInner({
+ profile,
+ embed,
+ navigation,
+}: {
+ profile: bsky.profile.AnyProfileView
+ embed: AppBskyEmbedExternal.View
+ navigation: NavigationProp
+}) {
+ const {_} = useLingui()
+ const control = Dialog.useDialogContext()
+
+ const onPressOpenProfile = useCallback(() => {
+ control.close(() => {
+ navigation.push('Profile', {
+ name: profile.handle,
+ })
+ })
+ }, [navigation, profile.handle, control])
+
+ return (
+
+
+
+
+ )
+}
+
+export function LiveStatus({
+ profile,
+ embed,
+ padding = 'xl',
+ onPressOpenProfile,
+}: {
+ profile: bsky.profile.AnyProfileView
+ embed: AppBskyEmbedExternal.View
+ padding?: 'lg' | 'xl'
+ onPressOpenProfile: () => void
+}) {
+ const {_} = useLingui()
+ const t = useTheme()
+ const queryClient = useQueryClient()
+ const openLink = useOpenLink()
+ const moderationOpts = useModerationOpts()
+
+ return (
+ <>
+ {embed.external.thumb && (
+
+
+
+
+ )}
+
+
+
+ {embed.external.title || embed.external.uri}
+
+
+
+
+ {toNiceDomain(embed.external.uri)}
+
+
+
+ {
+ logger.metric(
+ 'live:card:watch',
+ {subject: profile.did},
+ {statsig: true},
+ )
+ openLink(embed.external.uri, false)
+ }}>
+
+ Watch now
+
+
+
+
+ {moderationOpts && (
+
+
+ {/* Ensure wide enough on web hover */}
+
+
+
+ {
+ logger.metric(
+ 'live:card:openProfile',
+ {subject: profile.did},
+ {statsig: true},
+ )
+ unstableCacheProfileView(queryClient, profile)
+ onPressOpenProfile()
+ }}>
+
+ Open profile
+
+
+
+ )}
+
+ Live feature is in beta testing
+
+
+ >
+ )
+}
diff --git a/src/components/live/queries.ts b/src/components/live/queries.ts
new file mode 100644
index 0000000000..19cb54ebf2
--- /dev/null
+++ b/src/components/live/queries.ts
@@ -0,0 +1,221 @@
+import {
+ type $Typed,
+ type AppBskyActorStatus,
+ type AppBskyEmbedExternal,
+ ComAtprotoRepoPutRecord,
+} from '@atproto/api'
+import {retry} from '@atproto/common-web'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+import {useMutation, useQuery, useQueryClient} from '@tanstack/react-query'
+
+import {uploadBlob} from '#/lib/api'
+import {imageToThumb} from '#/lib/api/resolve'
+import {getLinkMeta, type LinkMeta} from '#/lib/link-meta/link-meta'
+import {logger} from '#/logger'
+import {updateProfileShadow} from '#/state/cache/profile-shadow'
+import {useLiveNowConfig} from '#/state/service-config'
+import {useAgent, useSession} from '#/state/session'
+import * as Toast from '#/view/com/util/Toast'
+import {useDialogContext} from '#/components/Dialog'
+
+export function useLiveLinkMetaQuery(url: string | null) {
+ const liveNowConfig = useLiveNowConfig()
+ const {currentAccount} = useSession()
+ const {_} = useLingui()
+
+ const agent = useAgent()
+ return useQuery({
+ enabled: !!url,
+ queryKey: ['link-meta', url],
+ queryFn: async () => {
+ if (!url) return undefined
+ const config = liveNowConfig.find(cfg => cfg.did === currentAccount?.did)
+
+ if (!config) throw new Error(_(msg`You are not allowed to go live`))
+
+ const urlp = new URL(url)
+ if (!config.domains.includes(urlp.hostname)) {
+ throw new Error(_(msg`${urlp.hostname} is not a valid URL`))
+ }
+
+ return await getLinkMeta(agent, url)
+ },
+ })
+}
+
+export function useUpsertLiveStatusMutation(
+ duration: number,
+ linkMeta: LinkMeta | null | undefined,
+ createdAt?: string,
+) {
+ const {currentAccount} = useSession()
+ const agent = useAgent()
+ const queryClient = useQueryClient()
+ const control = useDialogContext()
+ const {_} = useLingui()
+
+ return useMutation({
+ mutationFn: async () => {
+ if (!currentAccount) throw new Error('Not logged in')
+
+ let embed: $Typed | undefined
+
+ if (linkMeta) {
+ let thumb
+
+ if (linkMeta.image) {
+ try {
+ const img = await imageToThumb(linkMeta.image)
+ if (img) {
+ const blob = await uploadBlob(
+ agent,
+ img.source.path,
+ img.source.mime,
+ )
+ thumb = blob.data.blob
+ }
+ } catch (e: any) {
+ logger.error(`Failed to upload thumbnail for live status`, {
+ url: linkMeta.url,
+ image: linkMeta.image,
+ safeMessage: e,
+ })
+ }
+ }
+
+ embed = {
+ $type: 'app.bsky.embed.external',
+ external: {
+ $type: 'app.bsky.embed.external#external',
+ title: linkMeta.title ?? '',
+ description: linkMeta.description ?? '',
+ uri: linkMeta.url,
+ thumb,
+ },
+ }
+ }
+
+ const record = {
+ $type: 'app.bsky.actor.status',
+ createdAt: createdAt ?? new Date().toISOString(),
+ status: 'app.bsky.actor.status#live',
+ durationMinutes: duration,
+ embed,
+ } satisfies AppBskyActorStatus.Record
+
+ const upsert = async () => {
+ const repo = currentAccount.did
+ const collection = 'app.bsky.actor.status'
+
+ const existing = await agent.com.atproto.repo
+ .getRecord({repo, collection, rkey: 'self'})
+ .catch(_e => undefined)
+
+ await agent.com.atproto.repo.putRecord({
+ repo,
+ collection,
+ rkey: 'self',
+ record,
+ swapRecord: existing?.data.cid || null,
+ })
+ }
+
+ await retry(upsert, {
+ maxRetries: 5,
+ retryable: e => e instanceof ComAtprotoRepoPutRecord.InvalidSwapError,
+ })
+
+ return {
+ record,
+ image: linkMeta?.image,
+ }
+ },
+ onError: (e: any) => {
+ logger.error(`Failed to upsert live status`, {
+ url: linkMeta?.url,
+ image: linkMeta?.image,
+ safeMessage: e,
+ })
+ },
+ onSuccess: ({record, image}) => {
+ if (createdAt) {
+ logger.metric(
+ 'live:edit',
+ {duration: record.durationMinutes},
+ {statsig: true},
+ )
+ } else {
+ logger.metric(
+ 'live:create',
+ {duration: record.durationMinutes},
+ {statsig: true},
+ )
+ }
+
+ Toast.show(_(msg`You are now live!`))
+ control.close(() => {
+ if (!currentAccount) return
+
+ const expiresAt = new Date(record.createdAt)
+ expiresAt.setMinutes(expiresAt.getMinutes() + record.durationMinutes)
+
+ updateProfileShadow(queryClient, currentAccount.did, {
+ status: {
+ $type: 'app.bsky.actor.defs#statusView',
+ status: 'app.bsky.actor.status#live',
+ isActive: true,
+ expiresAt: expiresAt.toISOString(),
+ embed:
+ record.embed && image
+ ? {
+ $type: 'app.bsky.embed.external#view',
+ external: {
+ ...record.embed.external,
+ $type: 'app.bsky.embed.external#viewExternal',
+ thumb: image,
+ },
+ }
+ : undefined,
+ record,
+ },
+ })
+ })
+ },
+ })
+}
+
+export function useRemoveLiveStatusMutation() {
+ const {currentAccount} = useSession()
+ const agent = useAgent()
+ const queryClient = useQueryClient()
+ const control = useDialogContext()
+ const {_} = useLingui()
+
+ return useMutation({
+ mutationFn: async () => {
+ if (!currentAccount) throw new Error('Not logged in')
+
+ await agent.app.bsky.actor.status.delete({
+ repo: currentAccount.did,
+ rkey: 'self',
+ })
+ },
+ onError: (e: any) => {
+ logger.error(`Failed to remove live status`, {
+ safeMessage: e,
+ })
+ },
+ onSuccess: () => {
+ logger.metric('live:remove', {}, {statsig: true})
+ Toast.show(_(msg`You are no longer live`))
+ control.close(() => {
+ if (!currentAccount) return
+
+ updateProfileShadow(queryClient, currentAccount.did, {
+ status: undefined,
+ })
+ })
+ },
+ })
+}
diff --git a/src/components/live/utils.ts b/src/components/live/utils.ts
new file mode 100644
index 0000000000..6b4267cb01
--- /dev/null
+++ b/src/components/live/utils.ts
@@ -0,0 +1,37 @@
+import {useEffect, useState} from 'react'
+import {type I18n} from '@lingui/core'
+import {plural} from '@lingui/macro'
+
+export function displayDuration(i18n: I18n, durationInMinutes: number) {
+ const roundedDurationInMinutes = Math.round(durationInMinutes)
+ const hours = Math.floor(roundedDurationInMinutes / 60)
+ const minutes = roundedDurationInMinutes % 60
+ const minutesString = i18n._(
+ plural(minutes, {one: '# minute', other: '# minutes'}),
+ )
+ return hours > 0
+ ? i18n._(
+ minutes > 0
+ ? plural(hours, {
+ one: `# hour ${minutesString}`,
+ other: `# hours ${minutesString}`,
+ })
+ : plural(hours, {
+ one: '# hour',
+ other: '# hours',
+ }),
+ )
+ : minutesString
+}
+
+// Trailing debounce
+export function useDebouncedValue(val: T, delayMs: number): T {
+ const [prev, setPrev] = useState(val)
+
+ useEffect(() => {
+ const timeout = setTimeout(() => setPrev(val), delayMs)
+ return () => clearTimeout(timeout)
+ }, [val, delayMs])
+
+ return prev
+}
diff --git a/src/components/moderation/PostHider.tsx b/src/components/moderation/PostHider.tsx
index 246e30015e..6cb02d5685 100644
--- a/src/components/moderation/PostHider.tsx
+++ b/src/components/moderation/PostHider.tsx
@@ -1,6 +1,6 @@
-import React, {ComponentProps} from 'react'
-import {Pressable, StyleProp, StyleSheet, View, ViewStyle} from 'react-native'
-import {AppBskyActorDefs, ModerationCause, ModerationUI} from '@atproto/api'
+import React, {type ComponentProps} from 'react'
+import {Pressable, type StyleProp, StyleSheet, View, type ViewStyle} from 'react-native'
+import {type AppBskyActorDefs, type ModerationCause, type ModerationUI} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useQueryClient} from '@tanstack/react-query'
@@ -114,7 +114,9 @@ export function PostHider({
-
+
{desc.name}
{!modui.noOverride && (
diff --git a/src/components/moderation/ReportDialog/index.tsx b/src/components/moderation/ReportDialog/index.tsx
index c785e8c5e1..acab1d21fc 100644
--- a/src/components/moderation/ReportDialog/index.tsx
+++ b/src/components/moderation/ReportDialog/index.tsx
@@ -1,7 +1,7 @@
import React from 'react'
import {Pressable, View} from 'react-native'
-import {ScrollView} from 'react-native-gesture-handler'
-import {AppBskyLabelerDefs} from '@atproto/api'
+import {type ScrollView} from 'react-native-gesture-handler'
+import {type AppBskyLabelerDefs} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
@@ -33,9 +33,9 @@ import {useSubmitReportMutation} from './action'
import {DMCA_LINK} from './const'
import {useCopyForSubject} from './copy'
import {initialState, reducer} from './state'
-import {ReportDialogProps, ReportSubject} from './types'
+import {type ReportDialogProps, type ReportSubject} from './types'
import {parseReportSubject} from './utils/parseReportSubject'
-import {ReportOption, useReportOptions} from './utils/useReportOptions'
+import {type ReportOption, useReportOptions} from './utils/useReportOptions'
export {useDialogControl as useReportDialogControl} from '#/components/Dialog'
@@ -51,7 +51,7 @@ export function ReportDialog(
[props.subject],
)
const onClose = React.useCallback(() => {
- logger.metric('reportDialog:close', {})
+ logger.metric('reportDialog:close', {}, {statsig: false})
}, [])
return (
@@ -155,17 +155,21 @@ function Inner(props: ReportDialogProps) {
}),
)
setSuccess(true)
- logger.metric('reportDialog:success', {
- reason: state.selectedOption?.reason!,
- labeler: state.selectedLabeler?.creator.handle!,
- details: !!state.details,
- })
+ logger.metric(
+ 'reportDialog:success',
+ {
+ reason: state.selectedOption?.reason!,
+ labeler: state.selectedLabeler?.creator.handle!,
+ details: !!state.details,
+ },
+ {statsig: false},
+ )
// give time for user feedback
setTimeout(() => {
props.control.close()
}, 1e3)
} catch (e: any) {
- logger.metric('reportDialog:failure', {})
+ logger.metric('reportDialog:failure', {}, {statsig: false})
logger.error(e, {
source: 'ReportDialog',
})
@@ -179,9 +183,13 @@ function Inner(props: ReportDialogProps) {
}, [_, submitReport, state, dispatch, props, setPending, setSuccess])
React.useEffect(() => {
- logger.metric('reportDialog:open', {
- subjectType: props.subject.type,
- })
+ logger.metric(
+ 'reportDialog:open',
+ {
+ subjectType: props.subject.type,
+ },
+ {statsig: false},
+ )
}, [props.subject])
return (
diff --git a/src/components/verification/VerificationCheck.tsx b/src/components/verification/VerificationCheck.tsx
new file mode 100644
index 0000000000..4f41c66824
--- /dev/null
+++ b/src/components/verification/VerificationCheck.tsx
@@ -0,0 +1,12 @@
+import {type Props} from '#/components/icons/common'
+import {VerifiedCheck} from '#/components/icons/VerifiedCheck'
+import {VerifierCheck} from '#/components/icons/VerifierCheck'
+
+export function VerificationCheck({
+ verifier,
+ ...rest
+}: Props & {
+ verifier?: boolean
+}) {
+ return verifier ? :
+}
diff --git a/src/components/verification/VerificationCheckButton.tsx b/src/components/verification/VerificationCheckButton.tsx
new file mode 100644
index 0000000000..9278a3072a
--- /dev/null
+++ b/src/components/verification/VerificationCheckButton.tsx
@@ -0,0 +1,155 @@
+import {View} from 'react-native'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {logger} from '#/logger'
+import {type Shadow} from '#/state/cache/types'
+import {atoms as a, useBreakpoints, useTheme} from '#/alf'
+import {Button} from '#/components/Button'
+import {useDialogControl} from '#/components/Dialog'
+import {useFullVerificationState} from '#/components/verification'
+import {type FullVerificationState} from '#/components/verification'
+import {VerificationCheck} from '#/components/verification/VerificationCheck'
+import {VerificationsDialog} from '#/components/verification/VerificationsDialog'
+import {VerifierDialog} from '#/components/verification/VerifierDialog'
+import type * as bsky from '#/types/bsky'
+
+export function shouldShowVerificationCheckButton(
+ state: FullVerificationState,
+) {
+ let ok = false
+
+ if (state.profile.role === 'default') {
+ if (state.profile.isVerified) {
+ ok = true
+ } else if (state.profile.isViewer && state.profile.wasVerified) {
+ ok = true
+ } else if (
+ state.viewer.role === 'verifier' &&
+ state.viewer.hasIssuedVerification
+ ) {
+ ok = true
+ }
+ } else if (state.profile.role === 'verifier') {
+ if (state.profile.isViewer) {
+ ok = true
+ } else if (state.profile.isVerified) {
+ ok = true
+ }
+ }
+
+ if (
+ !state.profile.showBadge &&
+ !state.profile.isViewer &&
+ !(state.viewer.role === 'verifier' && state.viewer.hasIssuedVerification)
+ ) {
+ ok = false
+ }
+
+ return ok
+}
+
+export function VerificationCheckButton({
+ profile,
+ size,
+}: {
+ profile: Shadow
+ size: 'lg' | 'md' | 'sm'
+}) {
+ const state = useFullVerificationState({
+ profile,
+ })
+
+ if (shouldShowVerificationCheckButton(state)) {
+ return
+ }
+
+ return null
+}
+
+export function Badge({
+ profile,
+ verificationState: state,
+ size,
+}: {
+ profile: Shadow
+ verificationState: FullVerificationState
+ size: 'lg' | 'md' | 'sm'
+}) {
+ const t = useTheme()
+ const {_} = useLingui()
+ const verificationsDialogControl = useDialogControl()
+ const verifierDialogControl = useDialogControl()
+ const {gtPhone} = useBreakpoints()
+ let dimensions = 12
+ if (size === 'lg') {
+ dimensions = gtPhone ? 20 : 18
+ } else if (size === 'md') {
+ dimensions = 16
+ }
+
+ const verifiedByHidden = !state.profile.showBadge && state.profile.isViewer
+
+ return (
+ <>
+ {
+ logger.metric('verification:badge:click', {}, {statsig: true})
+ if (state.profile.role === 'verifier') {
+ verifierDialogControl.open()
+ } else {
+ verificationsDialogControl.open()
+ }
+ }}
+ style={[]}>
+ {({hovered}) => (
+
+
+
+ )}
+
+
+
+
+
+ >
+ )
+}
diff --git a/src/components/verification/VerificationCreatePrompt.tsx b/src/components/verification/VerificationCreatePrompt.tsx
new file mode 100644
index 0000000000..eb57d7c36e
--- /dev/null
+++ b/src/components/verification/VerificationCreatePrompt.tsx
@@ -0,0 +1,104 @@
+import {useCallback, useState} from 'react'
+import {View} from 'react-native'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {logger} from '#/logger'
+import {useModerationOpts} from '#/state/preferences/moderation-opts'
+import {useVerificationCreateMutation} from '#/state/queries/verification/useVerificationCreateMutation'
+import * as Toast from '#/view/com/util/Toast'
+import {atoms as a, useBreakpoints} from '#/alf'
+import {Admonition} from '#/components/Admonition'
+import {Button, ButtonIcon, ButtonText} from '#/components/Button'
+import {type DialogControlProps} from '#/components/Dialog'
+import * as Dialog from '#/components/Dialog'
+import {VerifiedCheck} from '#/components/icons/VerifiedCheck'
+import {Loader} from '#/components/Loader'
+import * as ProfileCard from '#/components/ProfileCard'
+import * as Prompt from '#/components/Prompt'
+import type * as bsky from '#/types/bsky'
+
+export function VerificationCreatePrompt({
+ control,
+ profile,
+}: {
+ control: DialogControlProps
+ profile: bsky.profile.AnyProfileView
+}) {
+ const {_} = useLingui()
+ const {gtMobile} = useBreakpoints()
+ const moderationOpts = useModerationOpts()
+ const {mutateAsync: create, isPending} = useVerificationCreateMutation()
+ const [error, setError] = useState(``)
+ const onConfirm = useCallback(async () => {
+ try {
+ await create({profile})
+ Toast.show(_(msg`Successfully verified`))
+ control.close()
+ } catch (e) {
+ setError(_(msg`Verification failed, please try again.`))
+ logger.error('Failed to create a verification', {
+ safeMessage: e,
+ })
+ }
+ }, [_, profile, create, control])
+
+ return (
+
+
+
+
+ {_(msg`Verify this account?`)}
+
+
+
+ {_(msg`This action can be undone at any time.`)}
+
+
+ {moderationOpts ? (
+
+
+
+
+ ) : null}
+
+ {error && (
+
+ {error}
+
+ )}
+
+
+ {profile.displayName ? (
+
+
+ {_(msg`Verify account`)}
+ {isPending && }
+
+
+
+ ) : (
+
+
+ This user does not have a display name, and therefore cannot be
+ verified.
+
+
+ )}
+
+
+
+
+ )
+}
diff --git a/src/components/verification/VerificationRemovePrompt.tsx b/src/components/verification/VerificationRemovePrompt.tsx
new file mode 100644
index 0000000000..470b61c19c
--- /dev/null
+++ b/src/components/verification/VerificationRemovePrompt.tsx
@@ -0,0 +1,50 @@
+import {useCallback} from 'react'
+import {type AppBskyActorDefs} from '@atproto/api'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {logger} from '#/logger'
+import {useVerificationsRemoveMutation} from '#/state/queries/verification/useVerificationsRemoveMutation'
+import * as Toast from '#/view/com/util/Toast'
+import {type DialogControlProps} from '#/components/Dialog'
+import * as Prompt from '#/components/Prompt'
+import type * as bsky from '#/types/bsky'
+
+export {useDialogControl as usePromptControl} from '#/components/Dialog'
+
+export function VerificationRemovePrompt({
+ control,
+ profile,
+ verifications,
+ onConfirm: onConfirmInner,
+}: {
+ control: DialogControlProps
+ profile: bsky.profile.AnyProfileView
+ verifications: AppBskyActorDefs.VerificationView[]
+ onConfirm?: () => void
+}) {
+ const {_} = useLingui()
+ const {mutateAsync: remove} = useVerificationsRemoveMutation()
+ const onConfirm = useCallback(async () => {
+ onConfirmInner?.()
+ try {
+ await remove({profile, verifications})
+ Toast.show(_(msg`Removed verification`))
+ } catch (e) {
+ Toast.show(_(msg`Failed to remove verification`), 'xmark')
+ logger.error('Failed to remove verification', {
+ safeMessage: e,
+ })
+ }
+ }, [_, profile, verifications, remove, onConfirmInner])
+
+ return (
+
+ )
+}
diff --git a/src/components/verification/VerificationsDialog.tsx b/src/components/verification/VerificationsDialog.tsx
new file mode 100644
index 0000000000..665bf3ba30
--- /dev/null
+++ b/src/components/verification/VerificationsDialog.tsx
@@ -0,0 +1,277 @@
+import {View} from 'react-native'
+import {type AppBskyActorDefs} from '@atproto/api'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {urls} from '#/lib/constants'
+import {getUserDisplayName} from '#/lib/getUserDisplayName'
+import {logger} from '#/logger'
+import {useModerationOpts} from '#/state/preferences/moderation-opts'
+import {useProfileQuery} from '#/state/queries/profile'
+import {useSession} from '#/state/session'
+import {atoms as a, useBreakpoints, useTheme} from '#/alf'
+import {Admonition} from '#/components/Admonition'
+import {Button, ButtonIcon, ButtonText} from '#/components/Button'
+import * as Dialog from '#/components/Dialog'
+import {useDialogControl} from '#/components/Dialog'
+import {Trash_Stroke2_Corner0_Rounded as TrashIcon} from '#/components/icons/Trash'
+import {Link} from '#/components/Link'
+import * as ProfileCard from '#/components/ProfileCard'
+import {Text} from '#/components/Typography'
+import {type FullVerificationState} from '#/components/verification'
+import {VerificationRemovePrompt} from '#/components/verification/VerificationRemovePrompt'
+import type * as bsky from '#/types/bsky'
+
+export {useDialogControl} from '#/components/Dialog'
+
+export function VerificationsDialog({
+ control,
+ profile,
+ verificationState,
+}: {
+ control: Dialog.DialogControlProps
+ profile: bsky.profile.AnyProfileView
+ verificationState: FullVerificationState
+}) {
+ return (
+
+
+
+
+ )
+}
+
+function Inner({
+ profile,
+ control,
+ verificationState: state,
+}: {
+ control: Dialog.DialogControlProps
+ profile: bsky.profile.AnyProfileView
+ verificationState: FullVerificationState
+}) {
+ const t = useTheme()
+ const {_} = useLingui()
+ const {gtMobile} = useBreakpoints()
+
+ const userName = getUserDisplayName(profile)
+ const label = state.profile.isViewer
+ ? state.profile.isVerified
+ ? _(msg`You are verified`)
+ : _(msg`Your verifications`)
+ : state.profile.isVerified
+ ? _(msg`${userName} is verified`)
+ : _(
+ msg({
+ message: `${userName}'s verifications`,
+ comment: `Possessive, meaning "the verifications of {userName}"`,
+ }),
+ )
+
+ return (
+
+
+
+ {label}
+
+
+ {state.profile.isVerified ? (
+
+ This account has a checkmark because it's been verified by trusted
+ sources.
+
+ ) : (
+
+ This account has one or more attempted verifications, but it is
+ not currently verified.
+
+ )}
+
+
+
+ {profile.verification ? (
+
+
+ Verified by:
+
+
+
+ {profile.verification.verifications.map(v => (
+
+ ))}
+
+
+ {profile.verification.verifications.some(v => !v.isValid) &&
+ state.profile.isViewer && (
+
+ Some of your verifications are invalid.
+
+ )}
+
+ ) : null}
+
+
+ {
+ control.close()
+ }}>
+
+ Close
+
+
+ {
+ logger.metric(
+ 'verification:learn-more',
+ {
+ location: 'verificationsDialog',
+ },
+ {statsig: true},
+ )
+ }}>
+
+ Learn more
+
+
+
+
+
+
+ )
+}
+
+function VerifierCard({
+ verification,
+ subject,
+ outerDialogControl,
+}: {
+ verification: AppBskyActorDefs.VerificationView
+ subject: bsky.profile.AnyProfileView
+ outerDialogControl: Dialog.DialogControlProps
+}) {
+ const t = useTheme()
+ const {_, i18n} = useLingui()
+ const {currentAccount} = useSession()
+ const moderationOpts = useModerationOpts()
+ const {data: profile, error} = useProfileQuery({did: verification.issuer})
+ const verificationRemovePromptControl = useDialogControl()
+ const canAdminister = verification.issuer === currentAccount?.did
+
+ return (
+
+
+
+ {error ? (
+ <>
+
+
+
+ Unknown verifier
+
+
+ {verification.issuer}
+
+
+ >
+ ) : profile && moderationOpts ? (
+ <>
+ {
+ outerDialogControl.close()
+ }}>
+
+
+
+
+ {i18n.date(new Date(verification.createdAt), {
+ dateStyle: 'long',
+ })}
+
+
+
+ {canAdminister && (
+
+ {
+ verificationRemovePromptControl.open()
+ }}>
+
+
+
+ )}
+ >
+ ) : (
+ <>
+
+
+ >
+ )}
+
+
+
+ outerDialogControl.close()}
+ />
+
+ )
+}
diff --git a/src/components/verification/VerifierDialog.tsx b/src/components/verification/VerifierDialog.tsx
new file mode 100644
index 0000000000..c62f018325
--- /dev/null
+++ b/src/components/verification/VerifierDialog.tsx
@@ -0,0 +1,151 @@
+import {Text as RNText, View} from 'react-native'
+import {Image} from 'expo-image'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {urls} from '#/lib/constants'
+import {getUserDisplayName} from '#/lib/getUserDisplayName'
+import {logger} from '#/logger'
+import {useSession} from '#/state/session'
+import {atoms as a, useBreakpoints, useTheme} from '#/alf'
+import {Button, ButtonText} from '#/components/Button'
+import * as Dialog from '#/components/Dialog'
+import {VerifierCheck} from '#/components/icons/VerifierCheck'
+import {Link} from '#/components/Link'
+import {Text} from '#/components/Typography'
+import {type FullVerificationState} from '#/components/verification'
+import type * as bsky from '#/types/bsky'
+
+export {useDialogControl} from '#/components/Dialog'
+
+export function VerifierDialog({
+ control,
+ profile,
+ verificationState,
+}: {
+ control: Dialog.DialogControlProps
+ profile: bsky.profile.AnyProfileView
+ verificationState: FullVerificationState
+}) {
+ return (
+
+
+
+
+
+ )
+}
+
+function Inner({
+ profile,
+ control,
+}: {
+ control: Dialog.DialogControlProps
+ profile: bsky.profile.AnyProfileView
+ verificationState: FullVerificationState
+}) {
+ const t = useTheme()
+ const {_} = useLingui()
+ const {gtMobile} = useBreakpoints()
+ const {currentAccount} = useSession()
+
+ const isSelf = profile.did === currentAccount?.did
+ const userName = getUserDisplayName(profile)
+ const label = isSelf
+ ? _(msg`You are a trusted verifier`)
+ : _(msg`${userName} is a trusted verifier`)
+
+ return (
+
+
+
+
+
+
+
+
+ {label}
+
+
+
+ Accounts with a scalloped blue check mark{' '}
+
+
+ {' '}
+ can verify others. These trusted verifiers are selected by
+ Bluesky.
+
+
+
+
+
+ {
+ logger.metric(
+ 'verification:learn-more',
+ {
+ location: 'verifierDialog',
+ },
+ {statsig: true},
+ )
+ }}>
+
+ Learn more
+
+
+ {
+ control.close()
+ }}>
+
+ Close
+
+
+
+
+
+ )
+}
diff --git a/src/components/verification/index.ts b/src/components/verification/index.ts
new file mode 100644
index 0000000000..7a83a160a9
--- /dev/null
+++ b/src/components/verification/index.ts
@@ -0,0 +1,113 @@
+import {useMemo} from 'react'
+
+import {usePreferencesQuery} from '#/state/queries/preferences'
+import {useCurrentAccountProfile} from '#/state/queries/useCurrentAccountProfile'
+import {useSession} from '#/state/session'
+import type * as bsky from '#/types/bsky'
+
+export type FullVerificationState = {
+ profile: {
+ role: 'default' | 'verifier'
+ isVerified: boolean
+ wasVerified: boolean
+ isViewer: boolean
+ showBadge: boolean
+ }
+ viewer:
+ | {
+ role: 'default'
+ isVerified: boolean
+ }
+ | {
+ role: 'verifier'
+ isVerified: boolean
+ hasIssuedVerification: boolean
+ }
+}
+
+export function useFullVerificationState({
+ profile,
+}: {
+ profile: bsky.profile.AnyProfileView
+}): FullVerificationState {
+ const {currentAccount} = useSession()
+ const currentAccountProfile = useCurrentAccountProfile()
+ const profileState = useSimpleVerificationState({profile})
+ const viewerState = useSimpleVerificationState({
+ profile: currentAccountProfile,
+ })
+
+ return useMemo(() => {
+ const verifications = profile.verification?.verifications || []
+ const wasVerified =
+ profileState.role === 'default' &&
+ !profileState.isVerified &&
+ verifications.length > 0
+ const hasIssuedVerification = Boolean(
+ viewerState &&
+ viewerState.role === 'verifier' &&
+ profileState.role === 'default' &&
+ verifications.find(v => v.issuer === currentAccount?.did),
+ )
+
+ return {
+ profile: {
+ ...profileState,
+ wasVerified,
+ isViewer: profile.did === currentAccount?.did,
+ showBadge: profileState.showBadge,
+ },
+ viewer:
+ viewerState.role === 'verifier'
+ ? {
+ role: 'verifier',
+ isVerified: viewerState.isVerified,
+ hasIssuedVerification,
+ }
+ : {
+ role: 'default',
+ isVerified: viewerState.isVerified,
+ },
+ }
+ }, [profile, currentAccount, profileState, viewerState])
+}
+
+export type SimpleVerificationState = {
+ role: 'default' | 'verifier'
+ isVerified: boolean
+ showBadge: boolean
+}
+
+export function useSimpleVerificationState({
+ profile,
+}: {
+ profile?: bsky.profile.AnyProfileView
+}): SimpleVerificationState {
+ const preferences = usePreferencesQuery()
+ const prefs = useMemo(
+ () => preferences.data?.verificationPrefs || {hideBadges: false},
+ [preferences.data?.verificationPrefs],
+ )
+ return useMemo(() => {
+ if (!profile || !profile.verification) {
+ return {
+ role: 'default',
+ isVerified: false,
+ showBadge: false,
+ }
+ }
+
+ const {verifiedStatus, trustedVerifierStatus} = profile.verification
+ const isVerifiedUser = ['valid', 'invalid'].includes(verifiedStatus)
+ const isVerifierUser = ['valid', 'invalid'].includes(trustedVerifierStatus)
+ const isVerified =
+ (isVerifiedUser && verifiedStatus === 'valid') ||
+ (isVerifierUser && trustedVerifierStatus === 'valid')
+
+ return {
+ role: isVerifierUser ? 'verifier' : 'default',
+ isVerified,
+ showBadge: prefs.hideBadges ? false : isVerified,
+ }
+ }, [profile, prefs])
+}
diff --git a/src/lib/actor-status.ts b/src/lib/actor-status.ts
new file mode 100644
index 0000000000..7e023be44e
--- /dev/null
+++ b/src/lib/actor-status.ts
@@ -0,0 +1,74 @@
+import {useMemo} from 'react'
+import {
+ type $Typed,
+ type AppBskyActorDefs,
+ AppBskyEmbedExternal,
+} from '@atproto/api'
+import {isAfter, parseISO} from 'date-fns'
+
+import {useMaybeProfileShadow} from '#/state/cache/profile-shadow'
+import {useLiveNowConfig} from '#/state/service-config'
+import {useTickEveryMinute} from '#/state/shell'
+import type * as bsky from '#/types/bsky'
+
+export function useActorStatus(actor?: bsky.profile.AnyProfileView) {
+ const shadowed = useMaybeProfileShadow(actor)
+ const tick = useTickEveryMinute()
+ const config = useLiveNowConfig()
+
+ return useMemo(() => {
+ tick! // revalidate every minute
+
+ if (
+ shadowed &&
+ 'status' in shadowed &&
+ shadowed.status &&
+ validateStatus(shadowed.did, shadowed.status, config) &&
+ isStatusStillActive(shadowed.status.expiresAt)
+ ) {
+ return {
+ isActive: true,
+ status: 'app.bsky.actor.status#live',
+ embed: shadowed.status.embed as $Typed, // temp_isStatusValid asserts this
+ expiresAt: shadowed.status.expiresAt!, // isStatusStillActive asserts this
+ record: shadowed.status.record,
+ } satisfies AppBskyActorDefs.StatusView
+ } else {
+ return {
+ status: '',
+ isActive: false,
+ record: {},
+ } satisfies AppBskyActorDefs.StatusView
+ }
+ }, [shadowed, config, tick])
+}
+
+export function isStatusStillActive(timeStr: string | undefined) {
+ if (!timeStr) return false
+ const now = new Date()
+ const expiry = parseISO(timeStr)
+
+ return isAfter(expiry, now)
+}
+
+export function validateStatus(
+ did: string,
+ status: AppBskyActorDefs.StatusView,
+ config: {did: string; domains: string[]}[],
+) {
+ if (status.status !== 'app.bsky.actor.status#live') return false
+ const sources = config.find(cfg => cfg.did === did)
+ if (!sources) {
+ return false
+ }
+ try {
+ if (AppBskyEmbedExternal.isView(status.embed)) {
+ const url = new URL(status.embed.external.uri)
+ return sources.domains.includes(url.hostname)
+ } else {
+ return false
+ }
+ } catch {
+ return false
+ }
+}
diff --git a/src/lib/api/feed-manip.ts b/src/lib/api/feed-manip.ts
index a1b2e2bc90..3309191f34 100644
--- a/src/lib/api/feed-manip.ts
+++ b/src/lib/api/feed-manip.ts
@@ -1,5 +1,5 @@
import {
- AppBskyActorDefs,
+ type AppBskyActorDefs,
AppBskyEmbedRecord,
AppBskyEmbedRecordWithMedia,
AppBskyFeedDefs,
@@ -9,7 +9,7 @@ import {
import * as bsky from '#/types/bsky'
import {isPostInLanguage} from '../../locale/helpers'
import {FALLBACK_MARKER_POST} from './feed/home'
-import {ReasonFeedSource} from './feed/types'
+import {type ReasonFeedSource} from './feed/types'
type FeedViewPost = AppBskyFeedDefs.FeedViewPost
@@ -187,6 +187,10 @@ export class FeedViewPostsSlice {
return this._feedPost.feedContext
}
+ get reqId() {
+ return this._feedPost.reqId
+ }
+
get isRepost() {
const reason = this._feedPost.reason
return AppBskyFeedDefs.isReasonRepost(reason)
diff --git a/src/lib/api/feed/demo.ts b/src/lib/api/feed/demo.ts
new file mode 100644
index 0000000000..049e0f116e
--- /dev/null
+++ b/src/lib/api/feed/demo.ts
@@ -0,0 +1,20 @@
+import {type AppBskyFeedDefs, type BskyAgent} from '@atproto/api'
+
+import {DEMO_FEED} from '#/lib/demo'
+import {type FeedAPI, type FeedAPIResponse} from './types'
+
+export class DemoFeedAPI implements FeedAPI {
+ agent: BskyAgent
+
+ constructor({agent}: {agent: BskyAgent}) {
+ this.agent = agent
+ }
+
+ async peekLatest(): Promise {
+ return DEMO_FEED.feed[0]
+ }
+
+ async fetch(): Promise {
+ return DEMO_FEED
+ }
+}
diff --git a/src/lib/api/index.ts b/src/lib/api/index.ts
index d1f304d4a8..7621fbb4cc 100644
--- a/src/lib/api/index.ts
+++ b/src/lib/api/index.ts
@@ -1,23 +1,23 @@
import {
- $Typed,
- AppBskyEmbedExternal,
- AppBskyEmbedImages,
- AppBskyEmbedRecord,
- AppBskyEmbedRecordWithMedia,
- AppBskyEmbedVideo,
- AppBskyFeedPost,
+ type $Typed,
+ type AppBskyEmbedExternal,
+ type AppBskyEmbedImages,
+ type AppBskyEmbedRecord,
+ type AppBskyEmbedRecordWithMedia,
+ type AppBskyEmbedVideo,
+ type AppBskyFeedPost,
AtUri,
BlobRef,
- BskyAgent,
- ComAtprotoLabelDefs,
- ComAtprotoRepoApplyWrites,
- ComAtprotoRepoStrongRef,
+ type BskyAgent,
+ type ComAtprotoLabelDefs,
+ type ComAtprotoRepoApplyWrites,
+ type ComAtprotoRepoStrongRef,
RichText,
} from '@atproto/api'
import {TID} from '@atproto/common-web'
import * as dcbor from '@ipld/dag-cbor'
import {t} from '@lingui/macro'
-import {QueryClient} from '@tanstack/react-query'
+import {type QueryClient} from '@tanstack/react-query'
import {sha256} from 'js-sha256'
import {CID} from 'multiformats/cid'
import * as Hasher from 'multiformats/hashes/hasher'
@@ -35,9 +35,9 @@ import {
threadgateAllowUISettingToAllowRecordValue,
} from '#/state/queries/threadgate'
import {
- EmbedDraft,
- PostDraft,
- ThreadDraft,
+ type EmbedDraft,
+ type PostDraft,
+ type ThreadDraft,
} from '#/view/com/composer/state/composer'
import {createGIFDescription} from '../gif-alt-text'
import {uploadBlob} from './upload-blob'
diff --git a/src/lib/api/resolve.ts b/src/lib/api/resolve.ts
index 3710623500..93d16ff0ca 100644
--- a/src/lib/api/resolve.ts
+++ b/src/lib/api/resolve.ts
@@ -1,10 +1,10 @@
import {
- AppBskyFeedDefs,
- AppBskyGraphDefs,
- ComAtprotoRepoStrongRef,
+ type AppBskyFeedDefs,
+ type AppBskyGraphDefs,
+ type ComAtprotoRepoStrongRef,
} from '@atproto/api'
import {AtUri} from '@atproto/api'
-import {BskyAgent} from '@atproto/api'
+import {type BskyAgent} from '@atproto/api'
import {POST_IMG_MAX} from '#/lib/constants'
import {getLinkMeta} from '#/lib/link-meta/link-meta'
@@ -22,9 +22,9 @@ import {
isBskyStartUrl,
isShortLink,
} from '#/lib/strings/url-helpers'
-import {ComposerImage} from '#/state/gallery'
+import {type ComposerImage} from '#/state/gallery'
import {createComposerImage} from '#/state/gallery'
-import {Gif} from '#/state/queries/tenor'
+import {type Gif} from '#/state/queries/tenor'
import {createGIFDescription} from '../gif-alt-text'
import {convertBskyAppUrlIfNeeded, makeRecordUri} from '../strings/url-helpers'
@@ -213,7 +213,7 @@ async function resolveExternal(
}
}
-async function imageToThumb(
+export async function imageToThumb(
imageUri: string,
): Promise {
try {
diff --git a/src/lib/app-info.web.ts b/src/lib/app-info.web.ts
index 94c787cbcf..1530d99769 100644
--- a/src/lib/app-info.web.ts
+++ b/src/lib/app-info.web.ts
@@ -1,4 +1,4 @@
-import {version} from '../../package.json'
+import packageDotJson from '../../package.json'
export const IS_TESTFLIGHT = false
export const IS_INTERNAL = __DEV__
@@ -14,5 +14,5 @@ export const BUNDLE_DATE = __DEV__
? 0
: Number(process.env.EXPO_PUBLIC_BUNDLE_DATE)
-export const appVersion = version
+export const appVersion = packageDotJson.version
export const bundleInfo = `${BUNDLE_IDENTIFIER} (${__DEV__ ? 'dev' : 'prod'})`
diff --git a/src/lib/browser.ts b/src/lib/browser.ts
index 08c43fbfdf..36563ee751 100644
--- a/src/lib/browser.ts
+++ b/src/lib/browser.ts
@@ -3,7 +3,6 @@ export const isSafari = /^((?!chrome|android).)*safari/i.test(
navigator.userAgent,
)
export const isFirefox = /firefox|fxios/i.test(navigator.userAgent)
-export const isTouchDevice =
- 'ontouchstart' in window || navigator.maxTouchPoints > 1
+export const isTouchDevice = window.matchMedia('(pointer: coarse)').matches
export const isAndroidWeb =
/android/i.test(navigator.userAgent) && isTouchDevice
diff --git a/src/lib/constants.ts b/src/lib/constants.ts
index a105de050f..dca03647a6 100644
--- a/src/lib/constants.ts
+++ b/src/lib/constants.ts
@@ -1,5 +1,5 @@
-import {Insets, Platform} from 'react-native'
-import {AppBskyActorDefs} from '@atproto/api'
+import {type Insets, Platform} from 'react-native'
+import {type AppBskyActorDefs} from '@atproto/api'
export const LOCAL_DEV_SERVICE =
Platform.OS === 'android' ? 'http://10.0.2.2:2583' : 'http://localhost:2583'
@@ -31,6 +31,7 @@ export const DISCOVER_DEBUG_DIDS: Record = {
'did:plc:3jpt2mvvsumj2r7eqk4gzzjz': true, // esb.lol
'did:plc:vjug55kidv6sye7ykr5faxxn': true, // emilyliu.me
'did:plc:tgqseeot47ymot4zro244fj3': true, // iwsmith.bsky.social
+ 'did:plc:2dzyut5lxna5ljiaasgeuffz': true, // mrnuma.bsky.social
}
const BASE_FEEDBACK_FORM_URL = `${HELP_DESK_URL}/requests/new`
@@ -190,3 +191,13 @@ export const SUPPORTED_MIME_TYPES = [
] as const
export type SupportedMimeTypes = (typeof SUPPORTED_MIME_TYPES)[number]
+
+export const EMOJI_REACTION_LIMIT = 5
+
+export const urls = {
+ website: {
+ blog: {
+ initialVerificationAnnouncement: `https://bsky.social/about/blog/04-21-2025-verification`,
+ },
+ },
+}
diff --git a/src/lib/custom-animations/CountWheel.tsx b/src/lib/custom-animations/CountWheel.tsx
index b448ad2277..4b131db2dc 100644
--- a/src/lib/custom-animations/CountWheel.tsx
+++ b/src/lib/custom-animations/CountWheel.tsx
@@ -144,7 +144,7 @@ export function CountWheel({
(props: T): string {
+ return sanitizeDisplayName(
+ props.displayName || sanitizeHandle(props.handle, '@'),
+ )
+}
diff --git a/src/lib/hooks/useCleanError.ts b/src/lib/hooks/useCleanError.ts
new file mode 100644
index 0000000000..dc9284e900
--- /dev/null
+++ b/src/lib/hooks/useCleanError.ts
@@ -0,0 +1,91 @@
+import {useCallback} from 'react'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+type CleanedError = {
+ raw: string | undefined
+ clean: string | undefined
+}
+
+export function useCleanError() {
+ const {_} = useLingui()
+
+ return useCallback<(error?: any) => CleanedError>(
+ error => {
+ if (!error)
+ return {
+ raw: undefined,
+ clean: undefined,
+ }
+
+ let raw = error.toString()
+
+ if (isNetworkError(raw)) {
+ return {
+ raw,
+ clean: _(
+ msg`Unable to connect. Please check your internet connection and try again.`,
+ ),
+ }
+ }
+
+ if (
+ raw.includes('Upstream Failure') ||
+ raw.includes('NotEnoughResources') ||
+ raw.includes('pipethrough network error')
+ ) {
+ return {
+ raw,
+ clean: _(
+ msg`The server appears to be experiencing issues. Please try again in a few moments.`,
+ ),
+ }
+ }
+
+ if (raw.includes('Bad token scope')) {
+ return {
+ raw,
+ clean: _(
+ msg`This feature is not available while using an app password. Please sign in with your main password.`,
+ ),
+ }
+ }
+
+ if (raw.includes('Rate Limit Exceeded')) {
+ return {
+ raw,
+ clean: _(
+ msg`You've reached the maximum number of requests allowed. Please try again later.`,
+ ),
+ }
+ }
+
+ if (raw.startsWith('Error: ')) {
+ raw = raw.slice('Error: '.length)
+ }
+
+ return {
+ raw,
+ clean: undefined,
+ }
+ },
+ [_],
+ )
+}
+
+const NETWORK_ERRORS = [
+ 'Abort',
+ 'Network request failed',
+ 'Failed to fetch',
+ 'Load failed',
+]
+
+export function isNetworkError(e: unknown) {
+ const str = String(e)
+ for (const err of NETWORK_ERRORS) {
+ if (str.includes(err)) {
+ return true
+ }
+ }
+ return false
+}
diff --git a/src/lib/hooks/useDraggableScrollView.ts b/src/lib/hooks/useDraggableScrollView.ts
index 3471d0d06c..05fda9a9fe 100644
--- a/src/lib/hooks/useDraggableScrollView.ts
+++ b/src/lib/hooks/useDraggableScrollView.ts
@@ -1,6 +1,6 @@
-import {ForwardedRef, useEffect, useMemo, useRef} from 'react'
-import type {ScrollView} from 'react-native'
-import {findNodeHandle, Platform} from 'react-native'
+import {type ForwardedRef, useEffect, useMemo, useRef} from 'react'
+import {type ScrollView} from 'react-native'
+import {Platform} from 'react-native'
import {mergeRefs} from '#/lib/merge-refs'
@@ -19,7 +19,7 @@ export function useDraggableScroll({
if (Platform.OS !== 'web' || !ref.current) {
return
}
- const slider = findNodeHandle(ref.current) as unknown as HTMLDivElement
+ const slider = ref.current as unknown as HTMLDivElement
if (!slider) {
return
}
diff --git a/src/lib/hooks/useEnableKeyboardController.tsx b/src/lib/hooks/useEnableKeyboardController.tsx
index 366791c0c4..858f6943a4 100644
--- a/src/lib/hooks/useEnableKeyboardController.tsx
+++ b/src/lib/hooks/useEnableKeyboardController.tsx
@@ -26,10 +26,7 @@ export function KeyboardControllerProvider({
children: React.ReactNode
}) {
return (
-
+
{children}
diff --git a/src/lib/hooks/useIntentHandler.ts b/src/lib/hooks/useIntentHandler.ts
index a33aff2371..4a56537500 100644
--- a/src/lib/hooks/useIntentHandler.ts
+++ b/src/lib/hooks/useIntentHandler.ts
@@ -1,10 +1,10 @@
import React from 'react'
import * as Linking from 'expo-linking'
+import {useOpenComposer} from '#/lib/hooks/useOpenComposer'
import {logEvent} from '#/lib/statsig/statsig'
import {isNative} from '#/platform/detection'
import {useSession} from '#/state/session'
-import {useComposerControls} from '#/state/shell'
import {useCloseAllActiveElements} from '#/state/util'
import {useIntentDialogs} from '#/components/intents/IntentDialogs'
import {Referrer} from '../../../modules/expo-bluesky-swiss-army'
@@ -83,7 +83,7 @@ export function useIntentHandler() {
export function useComposeIntent() {
const closeAllActiveElements = useCloseAllActiveElements()
- const {openComposer} = useComposerControls()
+ const {openComposer} = useOpenComposer()
const {hasSession} = useSession()
return React.useCallback(
diff --git a/src/lib/hooks/useNavigationDeduped.ts b/src/lib/hooks/useNavigationDeduped.ts
index 56ae5e8a29..dc18742c02 100644
--- a/src/lib/hooks/useNavigationDeduped.ts
+++ b/src/lib/hooks/useNavigationDeduped.ts
@@ -1,10 +1,8 @@
-import React from 'react'
+import {useMemo} from 'react'
import {useNavigation} from '@react-navigation/core'
-import {NavigationState} from '@react-navigation/native'
-import type {NavigationAction} from '@react-navigation/routers'
import {useDedupe} from '#/lib/hooks/useDedupe'
-import {AllNavigatorParams, NavigationProp} from '#/lib/routes/types'
+import {type NavigationProp} from '#/lib/routes/types'
export type DebouncedNavigationProp = Pick<
NavigationProp,
@@ -22,46 +20,19 @@ export function useNavigationDeduped() {
const navigation = useNavigation()
const dedupe = useDedupe()
- return React.useMemo(
- (): DebouncedNavigationProp => ({
- // Types from @react-navigation/routers/lib/typescript/src/StackRouter.ts
- push: (
- ...args: undefined extends AllNavigatorParams[RouteName]
- ?
- | [screen: RouteName]
- | [screen: RouteName, params: AllNavigatorParams[RouteName]]
- : [screen: RouteName, params: AllNavigatorParams[RouteName]]
- ) => {
+ return useMemo(
+ () => ({
+ push: (...args: Parameters) => {
dedupe(() => navigation.push(...args))
},
- // Types from @react-navigation/core/src/types.tsx
- navigate: (
- ...args: RouteName extends unknown
- ? undefined extends AllNavigatorParams[RouteName]
- ?
- | [screen: RouteName]
- | [screen: RouteName, params: AllNavigatorParams[RouteName]]
- : [screen: RouteName, params: AllNavigatorParams[RouteName]]
- : never
- ) => {
+ navigate: (...args: Parameters) => {
dedupe(() => navigation.navigate(...args))
},
- // Types from @react-navigation/routers/lib/typescript/src/StackRouter.ts
- replace: (
- ...args: undefined extends AllNavigatorParams[RouteName]
- ?
- | [screen: RouteName]
- | [screen: RouteName, params: AllNavigatorParams[RouteName]]
- : [screen: RouteName, params: AllNavigatorParams[RouteName]]
- ) => {
+ replace: (...args: Parameters) => {
dedupe(() => navigation.replace(...args))
},
- dispatch: (
- action:
- | NavigationAction
- | ((state: NavigationState) => NavigationAction),
- ) => {
- dedupe(() => navigation.dispatch(action))
+ dispatch: (...args: Parameters) => {
+ dedupe(() => navigation.dispatch(...args))
},
popToTop: () => {
dedupe(() => navigation.popToTop())
diff --git a/src/lib/hooks/useNotificationHandler.ts b/src/lib/hooks/useNotificationHandler.ts
index b5566f8a68..b1bfe60181 100644
--- a/src/lib/hooks/useNotificationHandler.ts
+++ b/src/lib/hooks/useNotificationHandler.ts
@@ -4,8 +4,7 @@ import {CommonActions, useNavigation} from '@react-navigation/native'
import {useQueryClient} from '@tanstack/react-query'
import {useAccountSwitcher} from '#/lib/hooks/useAccountSwitcher'
-import {NavigationProp} from '#/lib/routes/types'
-import {logEvent} from '#/lib/statsig/statsig'
+import {type NavigationProp} from '#/lib/routes/types'
import {Logger} from '#/logger'
import {isAndroid} from '#/platform/detection'
import {useCurrentConvoId} from '#/state/messages/current-convo-id'
@@ -17,7 +16,7 @@ import {useLoggedOutViewControls} from '#/state/shell/logged-out'
import {useCloseAllActiveElements} from '#/state/util'
import {resetToTab} from '#/Navigation'
-type NotificationReason =
+export type NotificationReason =
| 'like'
| 'repost'
| 'follow'
@@ -27,7 +26,13 @@ type NotificationReason =
| 'chat-message'
| 'starterpack-joined'
+/**
+ * Manually overridden type, but retains the possibility of
+ * `notification.request.trigger.payload` being `undefined`, as specified in
+ * the source types.
+ */
type NotificationPayload =
+ | undefined
| {
reason: Exclude
uri: string
@@ -41,13 +46,14 @@ type NotificationPayload =
}
const DEFAULT_HANDLER_OPTIONS = {
- shouldShowAlert: false,
+ shouldShowBanner: false,
+ shouldShowList: false,
shouldPlaySound: false,
shouldSetBadge: true,
-}
+} satisfies Notifications.NotificationBehavior
// These need to stay outside the hook to persist between account switches
-let storedPayload: NotificationPayload | undefined
+let storedPayload: NotificationPayload
let prevDate = 0
const logger = Logger.create(Logger.Context.Notifications)
@@ -191,15 +197,22 @@ export function useNotificationsHandler() {
logger.debug('Notifications: received', {e})
const payload = e.request.trigger.payload as NotificationPayload
+
+ if (!payload) {
+ return DEFAULT_HANDLER_OPTIONS
+ }
+
if (
payload.reason === 'chat-message' &&
payload.recipientDid === currentAccount?.did
) {
+ const shouldAlert = payload.convoId !== currentConvoId
return {
- shouldShowAlert: payload.convoId !== currentConvoId,
+ shouldShowList: shouldAlert,
+ shouldShowBanner: shouldAlert,
shouldPlaySound: false,
shouldSetBadge: false,
- }
+ } satisfies Notifications.NotificationBehavior
}
// Any notification other than a chat message should invalidate the unread page
@@ -226,15 +239,24 @@ export function useNotificationsHandler() {
'type' in e.notification.request.trigger &&
e.notification.request.trigger.type === 'push'
) {
+ const payload = e.notification.request.trigger
+ .payload as NotificationPayload
+
+ if (!payload) return
+
logger.debug(
'User pressed a notification, opening notifications tab',
{},
)
- logEvent('notifications:openApp', {})
+ logger.metric(
+ 'notifications:openApp',
+ {reason: payload.reason},
+ {statsig: false},
+ )
+
invalidateCachedUnreadPage()
- const payload = e.notification.request.trigger
- .payload as NotificationPayload
truncateAndInvalidate(queryClient, RQKEY_NOTIFS('all'))
+
if (
payload.reason === 'mention' ||
payload.reason === 'quote' ||
@@ -242,10 +264,12 @@ export function useNotificationsHandler() {
) {
truncateAndInvalidate(queryClient, RQKEY_NOTIFS('mentions'))
}
+
logger.debug('Notifications: handleNotification', {
content: e.notification.request.content,
payload: e.notification.request.trigger.payload,
})
+
handleNotification(payload)
Notifications.dismissAllNotificationsAsync()
}
diff --git a/src/lib/hooks/useOpenComposer.tsx b/src/lib/hooks/useOpenComposer.tsx
new file mode 100644
index 0000000000..50c04d1e1f
--- /dev/null
+++ b/src/lib/hooks/useOpenComposer.tsx
@@ -0,0 +1,22 @@
+import {useMemo} from 'react'
+import {Trans} from '@lingui/macro'
+
+import {useRequireEmailVerification} from '#/lib/hooks/useRequireEmailVerification'
+import {useOpenComposer as rootUseOpenComposer} from '#/state/shell/composer'
+
+export function useOpenComposer() {
+ const {openComposer} = rootUseOpenComposer()
+ const requireEmailVerification = useRequireEmailVerification()
+ return useMemo(() => {
+ return {
+ openComposer: requireEmailVerification(openComposer, {
+ instructions: [
+
+ Before creating a post or replying, you must first verify your
+ email.
+ ,
+ ],
+ }),
+ }
+ }, [openComposer, requireEmailVerification])
+}
diff --git a/src/lib/hooks/useOpenLink.ts b/src/lib/hooks/useOpenLink.ts
index a949dacc68..28c1bca3d9 100644
--- a/src/lib/hooks/useOpenLink.ts
+++ b/src/lib/hooks/useOpenLink.ts
@@ -12,16 +12,18 @@ import {
toNiceDomain,
} from '#/lib/strings/url-helpers'
import {isNative} from '#/platform/detection'
-import {useModalControls} from '#/state/modals'
import {useInAppBrowser} from '#/state/preferences/in-app-browser'
import {useTheme} from '#/alf'
+import {useDialogContext} from '#/components/Dialog'
import {useSheetWrapper} from '#/components/Dialog/sheet-wrapper'
+import {useGlobalDialogsControlContext} from '#/components/dialogs/Context'
export function useOpenLink() {
- const {openModal} = useModalControls()
const enabled = useInAppBrowser()
const t = useTheme()
const sheetWrapper = useSheetWrapper()
+ const dialogContext = useDialogContext()
+ const {inAppBrowserConsentControl} = useGlobalDialogsControlContext()
const openLink = useCallback(
async (url: string, override?: boolean, shouldProxy?: boolean) => {
@@ -42,10 +44,17 @@ export function useOpenLink() {
if (isNative && !url.startsWith('mailto:')) {
if (override === undefined && enabled === undefined) {
- openModal({
- name: 'in-app-browser-consent',
- href: url,
- })
+ // consent dialog is a global dialog, and while it's possible to nest dialogs,
+ // the actual components need to be nested. sibling dialogs on iOS are not supported.
+ // thus, check if we're in a dialog, and if so, close the existing dialog before opening the
+ // consent dialog -sfn
+ if (dialogContext.isWithinDialog) {
+ dialogContext.close(() => {
+ inAppBrowserConsentControl.open(url)
+ })
+ } else {
+ inAppBrowserConsentControl.open(url)
+ }
return
} else if (override ?? enabled) {
await sheetWrapper(
@@ -62,7 +71,7 @@ export function useOpenLink() {
}
Linking.openURL(url)
},
- [enabled, openModal, t, sheetWrapper],
+ [enabled, inAppBrowserConsentControl, t, sheetWrapper, dialogContext],
)
return openLink
diff --git a/src/lib/hooks/useRequireEmailVerification.tsx b/src/lib/hooks/useRequireEmailVerification.tsx
new file mode 100644
index 0000000000..26045847e0
--- /dev/null
+++ b/src/lib/hooks/useRequireEmailVerification.tsx
@@ -0,0 +1,53 @@
+import {useCallback} from 'react'
+import {Keyboard} from 'react-native'
+
+import {useEmail} from '#/lib/hooks/useEmail'
+import {useRequireAuth, useSession} from '#/state/session'
+import {useCloseAllActiveElements} from '#/state/util'
+import {
+ EmailDialogScreenID,
+ type Screen,
+ useEmailDialogControl,
+} from '#/components/dialogs/EmailDialog'
+
+export function useRequireEmailVerification() {
+ const {currentAccount} = useSession()
+ const {needsEmailVerification} = useEmail()
+ const requireAuth = useRequireAuth()
+ const emailDialogControl = useEmailDialogControl()
+ const closeAll = useCloseAllActiveElements()
+
+ return useCallback(
+ any>(
+ cb: T,
+ config: Omit<
+ Extract,
+ 'id'
+ > = {},
+ ): ((...args: Parameters) => ReturnType) => {
+ return (...args: Parameters): ReturnType => {
+ if (!currentAccount) {
+ return requireAuth(() => cb(...args)) as ReturnType
+ }
+ if (needsEmailVerification) {
+ Keyboard.dismiss()
+ closeAll()
+ emailDialogControl.open({
+ id: EmailDialogScreenID.Verify,
+ ...config,
+ })
+ return undefined as ReturnType
+ } else {
+ return cb(...args)
+ }
+ }
+ },
+ [
+ needsEmailVerification,
+ currentAccount,
+ emailDialogControl,
+ closeAll,
+ requireAuth,
+ ],
+ )
+}
diff --git a/src/lib/icons.tsx b/src/lib/icons.tsx
index 3690783d32..6e0be9d0a0 100644
--- a/src/lib/icons.tsx
+++ b/src/lib/icons.tsx
@@ -1,4 +1,4 @@
-import {StyleProp, TextStyle, ViewStyle} from 'react-native'
+import {type StyleProp, type TextStyle, type ViewStyle} from 'react-native'
import Svg, {Ellipse, Line, Path, Rect} from 'react-native-svg'
// Copyright (c) 2020 Refactoring UI Inc.
diff --git a/src/lib/media/manip.ts b/src/lib/media/manip.ts
index 7f052068db..62cbc55ac5 100644
--- a/src/lib/media/manip.ts
+++ b/src/lib/media/manip.ts
@@ -1,5 +1,4 @@
import {Image as RNImage, Share as RNShare} from 'react-native'
-import {Image} from 'react-native-image-crop-picker'
import uuid from 'react-native-uuid'
import {
cacheDirectory,
@@ -20,17 +19,17 @@ import RNFetchBlob from 'rn-fetch-blob'
import {POST_IMG_MAX} from '#/lib/constants'
import {logger} from '#/logger'
import {isAndroid, isIOS} from '#/platform/detection'
-import {Dimensions} from './types'
+import {type PickerImage} from './picker.shared'
+import {type Dimensions} from './types'
export async function compressIfNeeded(
- img: Image,
- maxSize: number = 1000000,
-): Promise {
- const origUri = `file://${img.path}`
+ img: PickerImage,
+ maxSize: number = POST_IMG_MAX.size,
+): Promise {
if (img.size < maxSize) {
return img
}
- const resizedImage = await doResize(origUri, {
+ const resizedImage = await doResize(normalizePath(img.path), {
width: img.width,
height: img.height,
mode: 'stretch',
@@ -127,6 +126,8 @@ export async function shareImageModal({uri}: {uri: string}) {
safeDeleteAsync(imagePath)
}
+const ALBUM_NAME = 'Bluesky'
+
export async function saveImageToMediaLibrary({uri}: {uri: string}) {
// download the file to cache
// NOTE
@@ -140,8 +141,34 @@ export async function saveImageToMediaLibrary({uri}: {uri: string}) {
imagePath = normalizePath(await moveToPermanentPath(imagePath, '.png'), true)
// save
- await MediaLibrary.createAssetAsync(imagePath)
- safeDeleteAsync(imagePath)
+ try {
+ if (isAndroid) {
+ // android triggers an annoying permission prompt if you try and move an image
+ // between albums. therefore, we need to either create the album with the image
+ // as the starting image, or put it directly into the album
+ const album = await MediaLibrary.getAlbumAsync(ALBUM_NAME)
+ if (album) {
+ // if album exists, put the image straight in there
+ await MediaLibrary.createAssetAsync(imagePath, album)
+ } else {
+ // otherwise, create album with asset (albums must always have at least one asset)
+ await MediaLibrary.createAlbumAsync(
+ ALBUM_NAME,
+ undefined,
+ undefined,
+ imagePath,
+ )
+ }
+ } else {
+ await MediaLibrary.createAssetAsync(imagePath)
+ }
+ } catch (err) {
+ logger.error(err instanceof Error ? err : String(err), {
+ message: 'Failed to save image to media library',
+ })
+ } finally {
+ safeDeleteAsync(imagePath)
+ }
}
export function getImageDim(path: string): Promise {
@@ -166,7 +193,10 @@ interface DoResizeOpts {
maxSize: number
}
-async function doResize(localUri: string, opts: DoResizeOpts): Promise {
+async function doResize(
+ localUri: string,
+ opts: DoResizeOpts,
+): Promise {
// We need to get the dimensions of the image before we resize it. Previously, the library we used allowed us to enter
// a "max size", and it would do the "best possible size" calculation for us.
// Now instead, we have to supply the final dimensions to the manipulation function instead.
@@ -178,18 +208,26 @@ async function doResize(localUri: string, opts: DoResizeOpts): Promise {
height: imageRes.height,
})
- for (let i = 0; i < 9; i++) {
- // nearest 10th
- const quality = Math.round((1 - 0.1 * i) * 10) / 10
+ let minQualityPercentage = 0
+ let maxQualityPercentage = 101 // exclusive
+ let newDataUri
+ const intermediateUris = []
+
+ while (maxQualityPercentage - minQualityPercentage > 1) {
+ const qualityPercentage = Math.round(
+ (maxQualityPercentage + minQualityPercentage) / 2,
+ )
const resizeRes = await manipulateAsync(
localUri,
[{resize: newDimensions}],
{
format: SaveFormat.JPEG,
- compress: quality,
+ compress: qualityPercentage / 100,
},
)
+ intermediateUris.push(resizeRes.uri)
+
const fileInfo = await getInfoAsync(resizeRes.uri)
if (!fileInfo.exists) {
throw new Error(
@@ -198,8 +236,8 @@ async function doResize(localUri: string, opts: DoResizeOpts): Promise {
}
if (fileInfo.size < opts.maxSize) {
- safeDeleteAsync(imageRes.uri)
- return {
+ minQualityPercentage = qualityPercentage
+ newDataUri = {
path: normalizePath(resizeRes.uri),
mime: 'image/jpeg',
size: fileInfo.size,
@@ -207,9 +245,21 @@ async function doResize(localUri: string, opts: DoResizeOpts): Promise {
height: resizeRes.height,
}
} else {
- safeDeleteAsync(resizeRes.uri)
+ maxQualityPercentage = qualityPercentage
}
}
+
+ for (const intermediateUri of intermediateUris) {
+ if (newDataUri?.path !== normalizePath(intermediateUri)) {
+ safeDeleteAsync(intermediateUri)
+ }
+ }
+
+ if (newDataUri) {
+ safeDeleteAsync(imageRes.uri)
+ return newDataUri
+ }
+
throw new Error(
`This image is too big! We couldn't compress it down to ${opts.maxSize} bytes`,
)
diff --git a/src/lib/media/manip.web.ts b/src/lib/media/manip.web.ts
index 4761f2fe0d..d0524e2d27 100644
--- a/src/lib/media/manip.web.ts
+++ b/src/lib/media/manip.web.ts
@@ -1,12 +1,13 @@
-import {Image as RNImage} from 'react-native-image-crop-picker'
+///
-import {Dimensions} from './types'
+import {type PickerImage} from './picker.shared'
+import {type Dimensions} from './types'
import {blobToDataUri, getDataUriSize} from './util'
export async function compressIfNeeded(
- img: RNImage,
+ img: PickerImage,
maxSize: number,
-): Promise {
+): Promise {
if (img.size < maxSize) {
return img
}
@@ -43,7 +44,7 @@ export async function shareImageModal(_opts: {uri: string}) {
throw new Error('TODO')
}
-export async function saveImageToAlbum(_opts: {uri: string; album: string}) {
+export async function saveImageToMediaLibrary(_opts: {uri: string}) {
// TODO
throw new Error('TODO')
}
@@ -69,20 +70,34 @@ interface DoResizeOpts {
maxSize: number
}
-async function doResize(dataUri: string, opts: DoResizeOpts): Promise {
+async function doResize(
+ dataUri: string,
+ opts: DoResizeOpts,
+): Promise {
let newDataUri
- for (let i = 0; i <= 10; i++) {
- newDataUri = await createResizedImage(dataUri, {
+ let minQualityPercentage = 0
+ let maxQualityPercentage = 101 //exclusive
+
+ while (maxQualityPercentage - minQualityPercentage > 1) {
+ const qualityPercentage = Math.round(
+ (maxQualityPercentage + minQualityPercentage) / 2,
+ )
+ const tempDataUri = await createResizedImage(dataUri, {
width: opts.width,
height: opts.height,
- quality: 1 - i * 0.1,
+ quality: qualityPercentage / 100,
mode: opts.mode,
})
- if (getDataUriSize(newDataUri) < opts.maxSize) {
- break
+
+ if (getDataUriSize(tempDataUri) < opts.maxSize) {
+ minQualityPercentage = qualityPercentage
+ newDataUri = tempDataUri
+ } else {
+ maxQualityPercentage = qualityPercentage
}
}
+
if (!newDataUri) {
throw new Error('Failed to compress image')
}
diff --git a/src/lib/media/picker.e2e.tsx b/src/lib/media/picker.e2e.tsx
index fc6fcde45e..a2a9357ec2 100644
--- a/src/lib/media/picker.e2e.tsx
+++ b/src/lib/media/picker.e2e.tsx
@@ -1,15 +1,12 @@
-import {
- Image as RNImage,
- openCropper as openCropperFn,
-} from 'react-native-image-crop-picker'
import {
documentDirectory,
getInfoAsync,
readDirectoryAsync,
} from 'expo-file-system'
+import ExpoImageCropTool, {type OpenCropperOptions} from 'expo-image-crop-tool'
import {compressIfNeeded} from './manip'
-import {CropperOptions} from './types'
+import {type PickerImage} from './picker.shared'
async function getFile() {
const imagesDir = documentDirectory!
@@ -37,18 +34,18 @@ async function getFile() {
})
}
-export async function openPicker(): Promise {
+export async function openPicker(): Promise {
return [await getFile()]
}
-export async function openCamera(): Promise {
+export async function openCamera(): Promise {
return await getFile()
}
-export async function openCropper(opts: CropperOptions) {
- const item = await openCropperFn({
+export async function openCropper(opts: OpenCropperOptions) {
+ const item = await ExpoImageCropTool.openCropperAsync({
...opts,
- forceJpg: true, // ios only
+ format: 'jpeg',
})
return {
diff --git a/src/lib/media/picker.shared.ts b/src/lib/media/picker.shared.ts
index a45bf5c0f1..8fd76f4145 100644
--- a/src/lib/media/picker.shared.ts
+++ b/src/lib/media/picker.shared.ts
@@ -1,18 +1,21 @@
import {
- ImagePickerOptions,
+ type ImagePickerOptions,
launchImageLibraryAsync,
- MediaTypeOptions,
} from 'expo-image-picker'
-// TODO: replace global i18n instance with one returned from useLingui -sfn
import {t} from '@lingui/macro'
+import {type ImageMeta} from '#/state/gallery'
import * as Toast from '#/view/com/util/Toast'
import {getDataUriSize} from './util'
+export type PickerImage = ImageMeta & {
+ size: number
+}
+
export async function openPicker(opts?: ImagePickerOptions) {
const response = await launchImageLibraryAsync({
exif: false,
- mediaTypes: MediaTypeOptions.Images,
+ mediaTypes: ['images'],
quality: 1,
...opts,
legacy: true,
diff --git a/src/lib/media/picker.tsx b/src/lib/media/picker.tsx
index 37e01e67f9..6095730d51 100644
--- a/src/lib/media/picker.tsx
+++ b/src/lib/media/picker.tsx
@@ -1,36 +1,34 @@
-import {
- Image as RNImage,
- openCamera as openCameraFn,
- openCropper as openCropperFn,
-} from 'react-native-image-crop-picker'
+import ExpoImageCropTool, {type OpenCropperOptions} from 'expo-image-crop-tool'
+import {type ImagePickerOptions, launchCameraAsync} from 'expo-image-picker'
-import {CameraOpts, CropperOptions} from './types'
-export {openPicker} from './picker.shared'
+export {openPicker, type PickerImage as RNImage} from './picker.shared'
-export async function openCamera(opts: CameraOpts): Promise {
- const item = await openCameraFn({
- width: opts.width,
- height: opts.height,
- freeStyleCropEnabled: opts.freeStyleCropEnabled,
- cropperCircleOverlay: opts.cropperCircleOverlay,
- cropping: false,
- forceJpg: true, // ios only
- compressImageQuality: 0.8,
- })
+export async function openCamera(customOpts: ImagePickerOptions) {
+ const opts: ImagePickerOptions = {
+ mediaTypes: 'images',
+ ...customOpts,
+ }
+ const res = await launchCameraAsync(opts)
+
+ if (!res || !res.assets) {
+ throw new Error('Camera was closed before taking a photo')
+ }
+
+ const asset = res?.assets[0]
return {
- path: item.path,
- mime: item.mime,
- size: item.size,
- width: item.width,
- height: item.height,
+ path: asset.uri,
+ mime: asset.mimeType ?? 'image/jpeg',
+ size: asset.fileSize ?? 0,
+ width: asset.width,
+ height: asset.height,
}
}
-export async function openCropper(opts: CropperOptions) {
- const item = await openCropperFn({
+export async function openCropper(opts: OpenCropperOptions) {
+ const item = await ExpoImageCropTool.openCropperAsync({
...opts,
- forceJpg: true, // ios only
+ format: 'jpeg',
})
return {
diff --git a/src/lib/media/picker.web.tsx b/src/lib/media/picker.web.tsx
index a53ffc9614..c1e4e4ab7f 100644
--- a/src/lib/media/picker.web.tsx
+++ b/src/lib/media/picker.web.tsx
@@ -1,35 +1,18 @@
-///
+import {type OpenCropperOptions} from 'expo-image-crop-tool'
-import {Image as RNImage} from 'react-native-image-crop-picker'
+import {type PickerImage} from './picker.shared'
+import {type CameraOpts} from './types'
-import {CameraOpts, CropperOptions} from './types'
export {openPicker} from './picker.shared'
-import {unstable__openModal} from '#/state/modals'
-export async function openCamera(_opts: CameraOpts): Promise {
- // const mediaType = opts.mediaType || 'photo' TODO
- throw new Error('TODO')
+export async function openCamera(_opts: CameraOpts): Promise {
+ throw new Error('openCamera is not supported on web')
}
-export async function openCropper(opts: CropperOptions): Promise {
- // TODO handle more opts
- return new Promise((resolve, reject) => {
- unstable__openModal({
- name: 'crop-image',
- uri: opts.path,
- dimensions:
- opts.width && opts.height
- ? {width: opts.width, height: opts.height}
- : undefined,
- aspect: opts.webAspectRatio,
- circular: opts.webCircularCrop,
- onSelect: (img?: RNImage) => {
- if (img) {
- resolve(img)
- } else {
- reject(new Error('Canceled'))
- }
- },
- })
- })
+export async function openCropper(
+ _opts: OpenCropperOptions,
+): Promise {
+ throw new Error(
+ 'openCropper is not supported on web. Use EditImageDialog instead.',
+ )
}
diff --git a/src/lib/media/save-image.ts b/src/lib/media/save-image.ts
new file mode 100644
index 0000000000..47955b15cc
--- /dev/null
+++ b/src/lib/media/save-image.ts
@@ -0,0 +1,59 @@
+import {useCallback} from 'react'
+import * as MediaLibrary from 'expo-media-library'
+import {t} from '@lingui/macro'
+
+import {isNative} from '#/platform/detection'
+import * as Toast from '#/view/com/util/Toast'
+import {saveImageToMediaLibrary} from './manip'
+
+/**
+ * Same as `saveImageToMediaLibrary`, but also handles permissions and toasts
+ */
+export function useSaveImageToMediaLibrary() {
+ const [permissionResponse, requestPermission, getPermission] =
+ MediaLibrary.usePermissions({
+ granularPermissions: ['photo'],
+ })
+ return useCallback(
+ async (uri: string) => {
+ if (!isNative) {
+ throw new Error('useSaveImageToMediaLibrary is native only')
+ }
+
+ async function save() {
+ try {
+ await saveImageToMediaLibrary({uri})
+ Toast.show(t`Image saved`)
+ } catch (e: any) {
+ Toast.show(t`Failed to save image: ${String(e)}`, 'xmark')
+ }
+ }
+
+ const permission = permissionResponse ?? (await getPermission())
+
+ if (permission.granted) {
+ await save()
+ } else {
+ if (permission.canAskAgain) {
+ // request again once
+ const askAgain = await requestPermission()
+ if (askAgain.granted) {
+ await save()
+ } else {
+ // since we've been explicitly denied, show a toast.
+ Toast.show(
+ t`Images cannot be saved unless permission is granted to access your photo library.`,
+ 'xmark',
+ )
+ }
+ } else {
+ Toast.show(
+ t`Permission to access your photo library was denied. Please enable it in your system settings.`,
+ 'xmark',
+ )
+ }
+ }
+ },
+ [permissionResponse, requestPermission, getPermission],
+ )
+}
diff --git a/src/lib/media/types.ts b/src/lib/media/types.ts
index ec94256ea1..c083093ac7 100644
--- a/src/lib/media/types.ts
+++ b/src/lib/media/types.ts
@@ -1,5 +1,3 @@
-import {openCropper} from 'react-native-image-crop-picker'
-
export interface Dimensions {
width: number
height: number
@@ -17,8 +15,3 @@ export interface CameraOpts {
freeStyleCropEnabled?: boolean
cropperCircleOverlay?: boolean
}
-
-export type CropperOptions = Parameters[0] & {
- webAspectRatio?: number
- webCircularCrop?: boolean
-}
diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts
index 0e38c92627..6f102d438a 100644
--- a/src/lib/routes/types.ts
+++ b/src/lib/routes/types.ts
@@ -1,7 +1,7 @@
-import {NavigationState, PartialState} from '@react-navigation/native'
-import type {NativeStackNavigationProp} from '@react-navigation/native-stack'
+import {type NavigationState, type PartialState} from '@react-navigation/native'
+import {type NativeStackNavigationProp} from '@react-navigation/native-stack'
-import {VideoFeedSourceContext} from '#/screens/VideoFeed/types'
+import {type VideoFeedSourceContext} from '#/screens/VideoFeed/types'
export type {NativeStackScreenProps} from '@react-navigation/native-stack'
@@ -13,6 +13,7 @@ export type CommonNavigatorParams = {
ModerationMutedAccounts: undefined
ModerationBlockedAccounts: undefined
ModerationInteractionSettings: undefined
+ ModerationVerificationSettings: undefined
Settings: undefined
Profile: {name: string; hideBackButton?: boolean}
ProfileFollowers: {name: string}
@@ -51,6 +52,7 @@ export type CommonNavigatorParams = {
AccountSettings: undefined
PrivacyAndSecuritySettings: undefined
ContentAndMediaSettings: undefined
+ SettingsInterests: undefined
AboutSettings: undefined
AppIconSettings: undefined
Search: {q?: string}
@@ -90,7 +92,7 @@ export type NotificationsTabNavigatorParams = CommonNavigatorParams & {
}
export type MyProfileTabNavigatorParams = CommonNavigatorParams & {
- MyProfile: undefined
+ MyProfile: {name: 'me'; hideBackButton: true}
}
export type MessagesTabNavigatorParams = CommonNavigatorParams & {
diff --git a/src/lib/statsig/gates.ts b/src/lib/statsig/gates.ts
index c88a97c751..c67bb60a3a 100644
--- a/src/lib/statsig/gates.ts
+++ b/src/lib/statsig/gates.ts
@@ -1,7 +1,9 @@
export type Gate =
// Keep this alphabetic please.
+ | 'alt_share_icon'
| 'debug_show_feedcontext'
| 'debug_subscriptions'
+ | 'explore_show_suggested_feeds'
| 'old_postonboarding'
| 'onboarding_add_video_feed'
| 'remove_show_latest_button'
diff --git a/src/lib/strings/handles.ts b/src/lib/strings/handles.ts
index 855971ee6f..78a2e1a09a 100644
--- a/src/lib/strings/handles.ts
+++ b/src/lib/strings/handles.ts
@@ -28,7 +28,7 @@ export function isInvalidHandle(handle: string): boolean {
export function sanitizeHandle(handle: string, prefix = ''): string {
return isInvalidHandle(handle)
? '⚠Invalid Handle'
- : forceLTR(`${prefix}${handle}`)
+ : forceLTR(`${prefix}${handle.toLocaleLowerCase()}`)
}
export interface IsValidHandle {
diff --git a/src/lib/strings/starter-pack.ts b/src/lib/strings/starter-pack.ts
index ced947b591..01e0256b5c 100644
--- a/src/lib/strings/starter-pack.ts
+++ b/src/lib/strings/starter-pack.ts
@@ -1,6 +1,6 @@
import {AtUri} from '@atproto/api'
-import * as bsky from '#/types/bsky'
+import type * as bsky from '#/types/bsky'
export function createStarterPackLinkFromAndroidReferrer(
referrerQueryString: string,
diff --git a/src/lib/strings/url-helpers.ts b/src/lib/strings/url-helpers.ts
index df473b54eb..ad194714a3 100644
--- a/src/lib/strings/url-helpers.ts
+++ b/src/lib/strings/url-helpers.ts
@@ -323,7 +323,7 @@ export function createBskyAppAbsoluteUrl(path: string): string {
export function createProxiedUrl(url: string): string {
let u
try {
- u = URL.parse(url)
+ u = new URL(url)
} catch {
return url
}
@@ -372,3 +372,33 @@ export function getServiceAuthAudFromUrl(url: string | URL): string | null {
}
return `did:web:${hostname}`
}
+
+// passes URL.parse, and has a TLD etc
+export function definitelyUrl(maybeUrl: string) {
+ try {
+ if (maybeUrl.endsWith('.')) return null
+
+ // Prepend 'https://' if the input doesn't start with a protocol
+ if (!maybeUrl.startsWith('https://') && !maybeUrl.startsWith('http://')) {
+ maybeUrl = 'https://' + maybeUrl
+ }
+
+ const url = new URL(maybeUrl)
+
+ // Extract the hostname and split it into labels
+ const hostname = url.hostname
+ const labels = hostname.split('.')
+
+ // Ensure there are at least two labels (e.g., 'example' and 'com')
+ if (labels.length < 2) return null
+
+ const tld = labels[labels.length - 1]
+
+ // Check that the TLD is at least two characters long and contains only letters
+ if (!/^[a-z]{2,}$/i.test(tld)) return null
+
+ return url.toString()
+ } catch {
+ return null
+ }
+}
diff --git a/src/locale/helpers.ts b/src/locale/helpers.ts
index 5bd790e8e1..380f996b91 100644
--- a/src/locale/helpers.ts
+++ b/src/locale/helpers.ts
@@ -1,4 +1,4 @@
-import {AppBskyFeedDefs, AppBskyFeedPost} from '@atproto/api'
+import {type AppBskyFeedDefs, AppBskyFeedPost} from '@atproto/api'
import * as bcp47Match from 'bcp-47-match'
import lande from 'lande'
@@ -181,6 +181,8 @@ export function sanitizeAppLanguageSetting(appLanguage: string): AppLanguage {
return AppLanguage.fi
case 'fr':
return AppLanguage.fr
+ case 'fy':
+ return AppLanguage.fy
case 'ga':
return AppLanguage.ga
case 'gd':
@@ -211,6 +213,8 @@ export function sanitizeAppLanguageSetting(appLanguage: string): AppLanguage {
return AppLanguage.pl
case 'pt-BR':
return AppLanguage.pt_BR
+ case 'pt-PT':
+ return AppLanguage.pt_PT
case 'ro':
return AppLanguage.ro
case 'ru':
diff --git a/src/locale/i18n.ts b/src/locale/i18n.ts
index 1fe89c6351..c5e03f5370 100644
--- a/src/locale/i18n.ts
+++ b/src/locale/i18n.ts
@@ -25,6 +25,7 @@ import {messages as messagesEs} from '#/locale/locales/es/messages'
import {messages as messagesEu} from '#/locale/locales/eu/messages'
import {messages as messagesFi} from '#/locale/locales/fi/messages'
import {messages as messagesFr} from '#/locale/locales/fr/messages'
+import {messages as messagesFy} from '#/locale/locales/fy/messages'
import {messages as messagesGa} from '#/locale/locales/ga/messages'
import {messages as messagesGd} from '#/locale/locales/gd/messages'
import {messages as messagesGl} from '#/locale/locales/gl/messages'
@@ -40,6 +41,7 @@ import {messages as messagesNe} from '#/locale/locales/ne/messages'
import {messages as messagesNl} from '#/locale/locales/nl/messages'
import {messages as messagesPl} from '#/locale/locales/pl/messages'
import {messages as messagesPt_BR} from '#/locale/locales/pt-BR/messages'
+import {messages as messagesPt_PT} from '#/locale/locales/pt-PT/messages'
import {messages as messagesRo} from '#/locale/locales/ro/messages'
import {messages as messagesRu} from '#/locale/locales/ru/messages'
import {messages as messagesSv} from '#/locale/locales/sv/messages'
@@ -161,6 +163,14 @@ export async function dynamicActivate(locale: AppLanguage) {
])
break
}
+ case AppLanguage.fy: {
+ i18n.loadAndActivate({locale, messages: messagesFy})
+ await Promise.all([
+ import('@formatjs/intl-pluralrules/locale-data/fy'),
+ import('@formatjs/intl-numberformat/locale-data/fy'),
+ ])
+ break
+ }
case AppLanguage.ga: {
i18n.loadAndActivate({locale, messages: messagesGa})
await Promise.all([
@@ -277,6 +287,14 @@ export async function dynamicActivate(locale: AppLanguage) {
])
break
}
+ case AppLanguage.pt_PT: {
+ i18n.loadAndActivate({locale, messages: messagesPt_PT})
+ await Promise.all([
+ import('@formatjs/intl-pluralrules/locale-data/pt-PT'),
+ import('@formatjs/intl-numberformat/locale-data/pt-PT'),
+ ])
+ break
+ }
case AppLanguage.ro: {
i18n.loadAndActivate({locale, messages: messagesRo})
await Promise.all([
diff --git a/src/locale/i18n.web.ts b/src/locale/i18n.web.ts
index 6fba7dc7b0..aad3f6e0ad 100644
--- a/src/locale/i18n.web.ts
+++ b/src/locale/i18n.web.ts
@@ -64,6 +64,10 @@ export async function dynamicActivate(locale: AppLanguage) {
mod = await import(`./locales/fr/messages`)
break
}
+ case AppLanguage.fy: {
+ mod = await import(`./locales/fy/messages`)
+ break
+ }
case AppLanguage.ga: {
mod = await import(`./locales/ga/messages`)
break
@@ -124,6 +128,10 @@ export async function dynamicActivate(locale: AppLanguage) {
mod = await import(`./locales/pt-BR/messages`)
break
}
+ case AppLanguage.pt_PT: {
+ mod = await import(`./locales/pt-PT/messages`)
+ break
+ }
case AppLanguage.ro: {
mod = await import(`./locales/ro/messages`)
break
diff --git a/src/locale/languages.ts b/src/locale/languages.ts
index e014ea88b1..5a45181aa1 100644
--- a/src/locale/languages.ts
+++ b/src/locale/languages.ts
@@ -19,6 +19,7 @@ export enum AppLanguage {
eu = 'eu',
fi = 'fi',
fr = 'fr',
+ fy = 'fy',
ga = 'ga',
gd = 'gd',
gl = 'gl',
@@ -34,6 +35,7 @@ export enum AppLanguage {
nl = 'nl',
pl = 'pl',
pt_BR = 'pt-BR',
+ pt_PT = 'pt-PT',
ro = 'ro',
ru = 'ru',
sv = 'sv',
@@ -66,6 +68,7 @@ export const APP_LANGUAGES: AppLanguageConfig[] = [
{code2: AppLanguage.eu, name: 'Euskera – Basque'},
{code2: AppLanguage.fi, name: 'Suomi – Finnish'},
{code2: AppLanguage.fr, name: 'Français – French'},
+ {code2: AppLanguage.fy, name: 'Frysk – Frisian'},
{code2: AppLanguage.ga, name: 'Gaeilge – Irish'},
{code2: AppLanguage.gd, name: 'Gàidhlig – Scottish Gaelic'},
{code2: AppLanguage.gl, name: 'Galego – Galician'},
@@ -80,7 +83,11 @@ export const APP_LANGUAGES: AppLanguageConfig[] = [
{code2: AppLanguage.ne, name: 'नेपाली – Nepali'},
{code2: AppLanguage.nl, name: 'Nederlands – Dutch'},
{code2: AppLanguage.pl, name: 'Polski – Polish'},
- {code2: AppLanguage.pt_BR, name: 'Português (BR) – Portuguese (BR)'},
+ {
+ code2: AppLanguage.pt_BR,
+ name: 'português do Brasil – Brazilian Portuguese',
+ },
+ {code2: AppLanguage.pt_PT, name: 'português europeu – European Portuguese'},
{code2: AppLanguage.ro, name: 'Română – Romanian'},
{code2: AppLanguage.ru, name: 'Русский – Russian'},
{code2: AppLanguage.sv, name: 'Svenska – Swedish'},
@@ -169,7 +176,7 @@ export const LANGUAGES: Language[] = [
{code3: 'cad', code2: '', name: 'Caddo'},
{code3: 'cai', code2: '', name: 'Central American Indian languages'},
{code3: 'car', code2: '', name: 'Galibi Carib'},
- {code3: 'cat', code2: 'ca', name: 'Catalan'},
+ {code3: 'cat', code2: 'ca', name: 'Catalan-Valencian'},
{code3: 'cau', code2: '', name: 'Caucasian languages'},
{code3: 'ceb', code2: '', name: 'Cebuano'},
{code3: 'cel', code2: '', name: 'Celtic languages'},
diff --git a/src/locale/locales/an/messages.po b/src/locale/locales/an/messages.po
index 1dd7ef3f7e..1066f7e067 100644
--- a/src/locale/locales/an/messages.po
+++ b/src/locale/locales/an/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: an\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 03:35\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Aragonese\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(activo)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(tien conteniu incrustau)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(sin correu-e)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {# republicación} other {# republicacions}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# segundo} other {# segundos}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# elemento no leyiu} other {# elementos no leyius}}"
@@ -90,17 +90,17 @@ msgstr "{0, plural, one {# elemento no leyiu} other {# elementos no leyius}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# mes} other {# meses}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {seguidor} other {seguidors}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {seguindo} other {seguindo}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {me-fa-goyo} other {me-fa-goyos}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {me-fa-goyo} other {me-fa-goyos}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {publicación} other {publicacions}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {cita} other {citas}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {republicación} other {republicacions}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr ""
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr ""
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0>en <1>etiquetas1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>en <1>texto y etiquetas1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr ""
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} s'han uniu esta semana"
@@ -139,11 +156,16 @@ msgstr "{0} de {1}"
msgid "{0} out of 50"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0} personas han usau este paquet d'inicio!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr ""
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "avatar de {0}"
@@ -175,7 +197,7 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}s"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# elemento no leyiu} other {# elementos no leyius}}"
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {horas}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {minuto} other {minutos}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}}0> t'han seguiu"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "A {firstAuthorLink} y a <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}}0> les ha feito goyo la tuya canal personalizada"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "A {firstAuthorLink} y a <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}}0> les ha feito goyo la tuya publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}}0> ha republicau la tuya publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}}0> s'han rechistrau con o tuyo paquet d'inicio"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} t'ha seguiu"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} t'ha seguiu tamién"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "A {firstAuthorLink} le ha feito goyo la tuya canal personalizada"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "A {firstAuthorLink} le ha feito goyo la tuya publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} ha republicau la tuya publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} s'ha rechistrau con o tuyo paquet d'inicio"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} t'han seguiu"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "A {firstAuthorName} y a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} les ha feito goyo la tuya canal personalizada"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "A {firstAuthorName} y a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} les ha feito goyo la tuya publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} han republicau la tuya publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} s'han rechistrau con o tuyo paquet d'inicio"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} t'ha seguiu"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} tamién t'ha seguiu"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "A {firstAuthorName} le ha feito goyo la tuya canal personalizada"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "A {firstAuthorName} le ha feito goyo la tuya publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} ha republicau la tuya publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} s'ha rechistau con o tuyo paquet d'inicio"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} seguindo"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "No se puede ninviar mensaches a {handle}"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr ""
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr ""
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# elemento no leyiu} other {# elementos no leyius}}"
@@ -301,6 +404,34 @@ msgstr "{profileName} s'unió a Bluesky fa {0}"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} s'unió a Bluesky usando un paquet d'inicio fa {0}"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr ""
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr ""
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr ""
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr ""
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr ""
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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>y {2, plural, one {# atro} other {# atros}} s'incluyen en o tuyo paquet d'inicio"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
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:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {seguindo} other {seguindo}}"
@@ -343,7 +474,7 @@ msgstr "<0>Experimental:0> Cuan ye activada esta preferencia, nomás recibirá
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>Tu0> y<1> 1><2>{0} 2>s'incluyen en o tuyo paquet d'inicio"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Identificador no valido"
@@ -363,19 +494,28 @@ msgstr "30 días"
msgid "7 days"
msgstr "7 días"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr ""
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Cuanto a"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr ""
@@ -385,40 +525,40 @@ msgid "Accept Request"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Accesibilidat"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Achustes d'accesibilidat"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Cuenta"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "Cuenta blocada"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "Cuenta seguida"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "Cuenta silenciada"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
@@ -429,33 +569,37 @@ msgstr "Cuenta silenciada"
msgid "Account Muted by List"
msgstr "Cuenta silenciada per lista"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Opcions de cuenta"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Cuenta sacada de l'acceso rápido"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "Cuenta desblocada"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "Has deixau de seguir a esta cuenta"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
+msgstr "Cuenta no silenciada"
+
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Anyadir"
@@ -473,8 +617,12 @@ msgstr "Anyadir {displayName} a lo paquet d'inicio"
msgid "Add a content warning"
msgstr "Anyadir advertencia de conteniu"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "Anyadir cuenta a esta lista"
@@ -485,7 +633,7 @@ msgstr "Anyadir cuenta"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Anyadir cuenta"
msgid "Add alt text"
msgstr "Anyadir texto alternativo"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Anyadir texto alternativo (opcional)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Anyadir una atra cuenta"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Anyadir una atra publicación"
@@ -518,8 +666,12 @@ msgstr "Anyadir una atra clau"
msgid "Add App Password"
msgstr "Anyadir clau d'app"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr "Anyadir mas detalles (opcional)"
@@ -531,15 +683,23 @@ msgstr "Anyadir parola muda con a configuración triada"
msgid "Add muted words and tags"
msgstr "Anyadir parolas silenciadas y etiquetas"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Anyadir una atra publicación"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Anyadir chent"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr ""
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Anyadir canals recomendadas"
@@ -552,27 +712,28 @@ msgstr "Anyadir bella canal ta lo tuyo paquet d'inicio!"
msgid "Add the default feed of only people you follow"
msgstr "Anyade la canal predeterminada de solo personas que sigue"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Anyade lo siguient rechistro DNS a lo tuyo dominio:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Anyade esta canal a las tuyas canals"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "Anyadir a listas"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Anyadir a listas"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Anyadir a las mías canals"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Anyadiu a lista"
@@ -581,22 +742,22 @@ msgstr "Anyadiu a lista"
msgid "Added to my feeds"
msgstr "Anyadiu a las mías canals"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr "Detalles adicionals (limite 300 carácters)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Adulto"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Conteniu adulto"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "Lo conteniu pa adultos nomás se puede habilitar a traviés d'a web en <0>bsky.app0>."
@@ -604,30 +765,35 @@ msgstr "Lo conteniu pa adultos nomás se puede habilitar a traviés d'a web en <
msgid "Adult content is disabled."
msgstr "Lo conteniu adulto ye desactivau."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Etiquetas de conteniu d'adultos"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Abanzau"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr ""
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Toz"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "S'han seguiu totas las cuentas!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "Toz los idiomas"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "Totas las tuyas canals alzadas, en un solo puesto."
@@ -671,10 +837,10 @@ msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Texto alternativo"
@@ -688,19 +854,18 @@ msgstr "Lo texto alternativo describe imáchens a usuarios ciegos u con baixa vi
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "Lo texto alternativo será truncau. Limite: {0} carácters."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr ""
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "Un codigo de verificación s'ha ninviau a {0}. Escribe aquí ixe codigo."
-#: src/view/com/modals/ChangeEmail.tsx:114
-msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
-msgstr "S'ha ninviau un codigo de verificación ta la tuya adreza anterior, {0}. Escribe ixe codigo contino."
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "S'ha ninviau un correu electronico! Escribe lo codigo de confirmación incluyiu en o correu electronico contino."
@@ -716,7 +881,11 @@ msgstr "I ha habiu una error"
msgid "An error occurred while compressing the video."
msgstr "I ha habiu una error en comprimir lo video."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "I ha habiu una error en chenerar lo suyo paquet d'inicio. Quiers intentar-lo de nuevo?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "I ha habiu una error mientres cargaba lo video. Per favor torne a intentar-lo."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "I ha habiu una error en alzar lo codigo QR!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "I ha habiu una error mientres triaba lo video"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "I ha habiu una error mientres intentaba seguir a toz"
@@ -746,12 +914,17 @@ msgstr "I ha habiu una error mientres intentaba seguir a toz"
msgid "An error occurred while uploading the video."
msgstr "I ha habiu una error en cargar lo video."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Un problema no incluyiu en estas opcions"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "I ha habiu un problema iniciando lo chat"
@@ -761,13 +934,17 @@ msgstr "I ha habiu un problema mientres intentaba ubrir lo chat."
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "I ha habiu un problema. Intenta de nuevo."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "I ha habiu una error desconoixida"
@@ -790,6 +967,10 @@ msgstr "Animals"
msgid "Animated GIF"
msgstr "GIF animau"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Comportamiento antisocial"
msgid "Anybody can interact"
msgstr "Cualsequiera puede interactuar"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "Icono d'aplicación"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "Idioma d'interficie"
@@ -817,7 +998,7 @@ msgstr "Clau d'aplicación"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "Clau de l'app eliminada"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
@@ -836,7 +1017,7 @@ msgstr "Las claus d'aplicación han de tener a lo menos 4 carácters"
msgid "App passwords"
msgstr "Claus d'aplicación"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Claus de l'app"
@@ -854,7 +1035,7 @@ msgstr "Apelar la etiqueta de \"{0}\""
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "Apelación ninviada"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -872,10 +1053,10 @@ msgstr "Revisón d'a suspensión"
msgid "Appeal this decision"
msgstr "Apelar esta decisión"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Apariencia"
@@ -884,12 +1065,12 @@ msgstr "Apariencia"
msgid "Apply default recommended feeds"
msgstr "Aplicar canals recomendadas predeterminadas"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Archivau dende {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Publicación archivada"
@@ -897,15 +1078,15 @@ msgstr "Publicación archivada"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Yes seguro de querer borrar la clau d'aplicación \"{0}\"?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Yes seguro que quiers eliminar este mensache? Lo mensache s'eliminará pa tu, pero no pas pa l'atro participant."
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "Yes seguro que quiers eliminar este paquet d'inicio?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "De seguro que quiers descartar los tuyos cambios?"
@@ -921,15 +1102,15 @@ msgstr "Yes seguro que quiers deixar esta conversación? Los mensaches serán el
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Seguro que quiers eliminar {0} d'as tuyas canals?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Yes seguro que deseyas sacar esto d'as tuyas canals?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "Seguro que quiers descartar este borrador?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "Seguro que quiers eliminar esta publicación?"
@@ -937,7 +1118,7 @@ msgstr "Seguro que quiers eliminar esta publicación?"
msgid "Are you sure?"
msgstr "Yes seguro?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "Yes escribindo en <0>{suggestedLanguageName}0>?"
@@ -946,11 +1127,16 @@ msgstr "Yes escribindo en <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Arte"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Desnudez artistica u no erotica."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "A lo menos 3 carácters"
@@ -963,12 +1149,12 @@ msgstr ""
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Las opcions d'autorreproducción son agora en <0>Achustes de conteniu y multimedia0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Autorreproducir videos y GIFs"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Autorreproducir videos y GIFs"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Dezaga"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr ""
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Antes de crear una lista, has de verificar lo tuyo correu."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Antes de crear una publicación has de verificar lo tuyo correu."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Antes de crear un paquet d'inicio has de verificar lo tuyo correu."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "Antes de ninviar un mensache a unatro usuario has de verificar lo tuyo correu."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
+msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Aniversario"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Blocar"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Blocar cuenta"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "Blocar la cuenta?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Blocar cuentas"
@@ -1054,7 +1241,7 @@ msgstr "Blocar y borrar"
msgid "Block and/or delete this conversation"
msgstr "Blocar y/u borrar la conversa"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Blocar lista"
@@ -1062,7 +1249,7 @@ msgstr "Blocar lista"
msgid "Block or report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "Blocar estas cuentas?"
@@ -1079,21 +1266,21 @@ msgstr "Blocar usuario"
msgid "Blocked"
msgstr "Blocau"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Cuentas blocadas"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Cuentas blocadas"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Las cuentas blocadas no podrán responder en os tuyos filos, mencionar-te ni interactuar con tu de garra traza."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "Las cuentas blocadas no podrán responder en os tuyos filos, mencionar-te ni interactuar con tu de garra traza. No veyerás lo suyo conteniu y no podrán veyer lo tuyo."
@@ -1101,19 +1288,19 @@ msgstr "Las cuentas blocadas no podrán responder en os tuyos filos, mencionar-t
msgid "Blocked post."
msgstr "Publicación blocada."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Si blocas un etiquetador encara podrán seguir aplicando etiquetas a la tuya cuenta."
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Lo bloqueyo ye publico. Si blocas una cuenta no podrán responder en os tuyos filos, mencionar-te ni interactuar con tu de garra traza."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Si blocas a etiquetador encara podrán seguir aplicando etiquetas a la tuya cuenta, pero privará que respondan en os tuyos filos, te mencionen u interactúen con tu de garra traza."
-#: src/view/com/auth/SplashScreen.web.tsx:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blog"
@@ -1122,7 +1309,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky no puede confirmar l'autenticidat d'a data declarada."
@@ -1148,7 +1335,7 @@ msgstr "Bluesky ye millor con amigos!"
msgid "Bluesky Social Terms of Service"
msgstr "Condicions d'o servicio de Bluesky Social"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky triará un conchunto de cuentas recomendadas de personas en o suyo ret."
@@ -1156,6 +1343,10 @@ msgstr "Bluesky triará un conchunto de cuentas recomendadas de personas en o su
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky no amostrará lo tuyo perfil u publicacions a usuarios que no haigan iniciau sesión. Ye posible que atras apps no respecten esta solicitut. Esto no fa que la tuya cuenta sía privada."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr ""
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "Desenfocar imáchens y filtrar dende las canals"
msgid "Books"
msgstr "Libros"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "Explorar mas cuentas"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "Revisar mas canals"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Explorar mas sucherencias"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "Explora mas sucherencias"
@@ -1214,20 +1405,26 @@ msgstr "Explora les publicacions etiquetades amb {displayName}"
msgid "Browse starter pack {displayName}"
msgstr "Explora lo paquet d'inicio {displayName}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr ""
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "Explorar las publicacions d'o tema {displayName}"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Negocios"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "Per {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Per <0>{0}0>"
@@ -1243,44 +1440,51 @@ msgstr "En crear una cuenta, aceptas los <0>Termins de Servicio0> y la <1>Poli
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "En crear una cuenta, acceptas los <0>Termins de Servicio0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr ""
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Camera"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Cancelar"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "Cancelar la eliminación d'a cuenta"
msgid "Cancel image crop"
msgstr "Cancelar retalle d'imachen"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Cancelar edición de perfil"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Cancelar citación"
@@ -1308,8 +1512,7 @@ msgstr "Cancelar citación"
msgid "Cancel reactivation and sign out"
msgstr "Cancelar la reactivación y zarrar la sesión"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Cancelar busqueda"
@@ -1317,24 +1520,23 @@ msgstr "Cancelar busqueda"
msgid "Cancels opening the linked website"
msgstr "Cancela obridura d'o puesto web vinculau"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "No se puede interactuar con un usuario blocau"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Subtítols (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Subtítols y texto alternativo"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Cambiar"
@@ -1347,46 +1549,41 @@ msgstr "Cambiar l'icono de l'aplicación"
msgid "Change app icon to \"{0}\""
msgstr "Cambiar l'icono de l'aplicación a \"{0}\""
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Cambiar correu"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Cambiar l'adreza de correu electronico"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Cambiar identificador"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr "Cambiar servicio de moderación"
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Cambiar lo mío correu electronico"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Cambiar clau"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "Cambiar l'idioma d'a publicación a {suggestedLanguageName}"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr "Cambiar la razón d'o reporte"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Cambiar correu electronico"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Cambiar la tuya adreza de correu"
@@ -1394,20 +1591,20 @@ msgstr "Cambiar la tuya adreza de correu"
msgid "Changes app icon"
msgstr "Cambia l'icono de l'aplicación"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr "Cambia lo proveyedor d'alochamiento"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Conversa"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
msgstr ""
@@ -1415,22 +1612,21 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "Chat silenciau"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr ""
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Achustes de chat"
@@ -1441,10 +1637,10 @@ msgstr "Configuración de chat"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "Chat no silenciau"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr ""
@@ -1461,7 +1657,7 @@ msgstr "Compreba lo tuyo correu electronico pa obtener un codigo d'inicio de ses
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "T'hemos ninviau un codigo de verificación a lo tuyo correu. Escribe-lo aquí:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Triar un metodo de verificación de dominio"
@@ -1469,7 +1665,7 @@ msgstr "Triar un metodo de verificación de dominio"
msgid "Choose Feeds"
msgstr "Triar canals"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Triar pa yo"
@@ -1477,10 +1673,6 @@ msgstr "Triar pa yo"
msgid "Choose People"
msgstr "Tríar chent"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Tría las autoetiquetas que sigan aplicables a los fichers multimedia que publiques. Si no'n trías garra, ye que esta publicación ye valida pa totas las audiencias."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Triar los algorismos pa usar en as tuyas canals."
@@ -1493,27 +1685,31 @@ msgstr "Tría esta color como lo tuyo avatar"
msgid "Choose your account provider"
msgstr "Tría lo tuyo proveyedor de cuenta"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Tría la tuya propia linia temporal! Las canals creadas per la comunidat t'adjuyan a trobar lo conteniu que te fa goyo."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Tría la tuya clau"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "Lo tuyo identificador"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Borrar toz los datos d'almagacenamiento"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Borrar toz los datos d'almagacenamiento (reiniciar dimpués d'esto)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr ""
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Borrar consulta de busqueda"
@@ -1522,6 +1718,14 @@ msgstr "Borrar consulta de busqueda"
msgid "click here"
msgstr "fe clic aquí"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Fe clic pa deshabilitar las citas pa esta publicación."
@@ -1534,7 +1738,7 @@ msgstr "Fe clic pa habilitar las citas pa esta publicación."
msgid "Click to open tag menu for {tag}"
msgstr "Fe clic pa ubrir lo menu de {tag}"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Fe clic pa reintentar mensache fallido"
@@ -1546,24 +1750,34 @@ msgstr "Clima"
msgid "Clip 🐴 clop 🐴"
msgstr "Tacatot🐴 tacatat 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Zarrar"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Zarrar dialogo activo"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Zarrar lo calaixo inferior"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Zarrar finestra"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr "Zarra lo menú lateral"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "Zarrar lo selector d'emojis"
@@ -1600,7 +1816,13 @@ msgstr "Zarrar la imachen"
msgid "Close image viewer"
msgstr "Zarrar lo visor d'imachen"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr ""
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Zarrar este dialogo"
@@ -1608,8 +1830,12 @@ msgstr "Zarrar este dialogo"
msgid "Closes password update alert"
msgstr "Zarra l'alerta d'actualización de clau"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr ""
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr "Zarrar lo selector d'emojis"
@@ -1617,11 +1843,11 @@ msgstr "Zarrar lo selector d'emojis"
msgid "Closes viewer for header image"
msgstr "Zarra lo visor d'a imachen d'o capitero"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Comprimir la lista d'usuarios"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Comprimir la lista d'usuarios pa una notificación en particular"
@@ -1644,7 +1870,7 @@ msgstr "Comedia"
msgid "Comics"
msgstr "Historietas"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Directrices d'a comunidat"
@@ -1653,23 +1879,23 @@ msgstr "Directrices d'a comunidat"
msgid "Complete onboarding and start using your account"
msgstr "Completa la incorporación y prencipia a usar la tuya cuenta"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Completa lo desafío"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Redactar una nueva publicación"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "Redacta publicacions dica {MAX_GRAPHEME_LENGTH} carácters de longaria"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr ""
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Redactar la respuesta"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Comprimindo video..."
@@ -1681,23 +1907,17 @@ msgstr "Configuración de filtrau de conteniu pa la categoría: {name}"
msgid "Configured in <0>moderation settings0>."
msgstr "Configurau en <0>achustes de moderación0>."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Confirmar"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Confirmar lo cambio"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Confimar l'idioma d'o conteniu"
@@ -1706,26 +1926,27 @@ msgstr "Confimar l'idioma d'o conteniu"
msgid "Confirm delete account"
msgstr "Confirmar eliminación de cuenta"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Confirma la tuya edat:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Confirma la tuya data de naixencia"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Codigo de confirmación"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Codigo de confirmación"
@@ -1733,22 +1954,22 @@ msgstr "Codigo de confirmación"
msgid "Connecting..."
msgstr "Connectando..."
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Contactar con soporte"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "Conteniu y multimedia"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Conteniu y multimedia"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Conteniu y multimedia"
@@ -1756,15 +1977,15 @@ msgstr "Conteniu y multimedia"
msgid "Content Blocked"
msgstr "Conteniu Blocau"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Filtros de conteniu"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr "Conteniu de tot lo ret que te podría fer goyo."
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Idiomas de conteniu"
@@ -1785,16 +2006,16 @@ msgstr "Advertencia de conteniu"
msgid "Content warnings"
msgstr "Advertencias de conteniu"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "Fondo d'o menú contextual, faga clic pa zarrar lo menú."
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Continar"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Continar como {0} (actualment ha iniciau sesión)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Continar filo..."
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Contina con o siguient paso"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversa eliminada"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Conversa eliminada"
@@ -1826,16 +2047,17 @@ msgstr "Cocinando"
msgid "Copied"
msgstr "Copiau"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Versión de compilación copiada a lo portafuellas"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Copiau a lo portafuellas"
@@ -1844,25 +2066,29 @@ msgstr "Copiau a lo portafuellas"
msgid "Copied!"
msgstr "Copiau!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr "Copia la versión de construcción a lo portafuellas"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Copiar"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr ""
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Copiar clau d'aplicación"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr "Copiar at:// URI"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr "Copiar DID de l'autor"
@@ -1871,57 +2097,69 @@ msgstr "Copiar DID de l'autor"
msgid "Copy code"
msgstr "Copiar codigo"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Copiar DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Copiar host"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Copiar vinclo"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Copiar vinclo"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Copia lo vinclo a la lista"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Copiar lo vinclo a la publicación"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Copiar texto d'o mensache"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr "Copiar at:// URI d'a publicación"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Copiar texto d'a publicación"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Copiar codigo QR"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "Copiar valor de rechistro TXT"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Politica de dreitos d'autor"
@@ -1931,11 +2169,11 @@ msgstr "Politica de dreitos d'autor"
msgid "Could not leave chat"
msgstr "No s'ha puesto salir d'este chat "
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "No s'ha puesto cargar esta canal"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "No s'ha puesto cargar esta lista"
@@ -1947,28 +2185,28 @@ msgstr "No s'ha puesto silenciar lo chat"
msgid "Could not process your video"
msgstr "No s'ha puesto procesar lo tuyo video"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Crear"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "Crear un codigo QR pa pack d'inicio"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Crea un paquet d'inicio"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Crea un paquet d'inicio pa yo"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Crea un paquet d'inicio pa yo"
msgid "Create account"
msgstr "Crear cuenta"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Crear una cuenta"
@@ -1985,11 +2223,16 @@ msgstr "Crear una cuenta"
msgid "Create an account"
msgstr "Crea una cuenta"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Crea un avatar"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Crea-ne unatro"
@@ -1998,7 +2241,7 @@ msgstr "Crea-ne unatro"
msgid "Create new account"
msgstr "Crear una cuenta nueva"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Crea un reporte de {0}"
@@ -2053,17 +2296,17 @@ msgstr "Modo Fosco"
msgid "Dark theme"
msgstr "Tema fosco"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Data de naixencia"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Desactivar cuenta"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Moderacion de depuración"
@@ -2079,19 +2322,19 @@ msgstr "Per Defecto"
msgid "Default icons"
msgstr "Iconos per defecto"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Borrar"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Borrar la cuenta"
@@ -2107,19 +2350,19 @@ msgstr "Borrar la clau d'a app"
msgid "Delete app password?"
msgstr "Borrar la clau d'a app?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr ""
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Borrar lo rechistro de declaracion de conversa"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "Borrar conversa"
@@ -2127,19 +2370,19 @@ msgstr "Borrar conversa"
msgid "Delete Conversation"
msgstr "Borrar conversa"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Borrar pa yo"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
-msgstr "Borrar la lista"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Borrar mensache"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Borrar mensache pa yo"
@@ -2147,26 +2390,26 @@ msgstr "Borrar mensache pa yo"
msgid "Delete my account"
msgstr "Borrar la mía cuenta"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Borrar una publicación"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Borrar paquet d'inicio"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "Borrar paquet d'inicio?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "Borrar esta lista?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "Borrar esta publicación?"
@@ -2174,8 +2417,8 @@ msgstr "Borrar esta publicación?"
msgid "Deleted"
msgstr "Eliminau"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Cuenta borrada"
@@ -2183,48 +2426,48 @@ msgstr "Cuenta borrada"
msgid "Deleted post."
msgstr "Se borró la publicación."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Descripción"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "La descripción ye masiau larga"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "La descripción ye masiau larga. Lo numero maximo de carácters ye de {DESCRIPTION_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Texto descriptivo alternativo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Desvincular cita"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "Desvincular publicación de la cita?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
-msgstr ""
+msgstr "Modo desenrolladors desactivau"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
-msgstr ""
+msgstr "Modo desenrollador activau"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Desenrollar opcions"
@@ -2236,6 +2479,15 @@ msgstr "Achustar quí puede interactuar con esta publicación"
msgid "Dim"
msgstr "Tenue"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr ""
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "Desactivar Correu 2FA"
@@ -2254,25 +2506,25 @@ msgstr "Desactivar subtitulos"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Desactivau"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Descartar"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "Descartar cambios?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "Descartar borrador?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "Descartar la publicación?"
@@ -2281,24 +2533,24 @@ msgstr "Descartar la publicación?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Privar que las aplicacions amuestren la mía cuenta a los usuarios desconnectaus"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Descubre nuevas canals personalizadas"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Descubrir nuevas canals"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Descubrir nuevas canals"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Descartar"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Descartar error"
@@ -2306,6 +2558,10 @@ msgstr "Descartar error"
msgid "Dismiss getting started guide"
msgstr "Descartar la guía d'introducción"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr "Amagar esta sección"
@@ -2315,27 +2571,27 @@ msgstr "Amagar esta sección"
msgid "Display larger alt text badges"
msgstr "Amostrar insignias de texto alternativo mas grans"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Amostrar lo nombre"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Amostrar lo nombre"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "Lo nombre ye masiau largo"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "Lo nombre ye masiau largo. Lo maximo numer de carácters ye {DISPLAY_NAME_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "Con panel de DNS"
@@ -2347,37 +2603,45 @@ msgstr "No aplicar esta parola silenciada a los usuarios que sigues"
msgid "Does not include nudity."
msgstr "No incluye desnudez."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "No prencipia ni remata con un guión"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "Dominio verificau!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Listo"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Listo"
msgid "Done{extraText}"
msgstr "Listo{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr ""
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Dople toque pa zarrar lo dialogo"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr "Toca dos vegadas pa indicar que te fa goyo"
@@ -2413,23 +2681,23 @@ msgstr "Arrociega pa anyadir imagenes"
msgid "Duration:"
msgstr "Duración:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "p. eix. alicia"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "p. eix. Alicia Apelliu"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "p. eix. Alice Roberts"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "p. eix. alicia.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "p. eix. Artista, amant d'os cans, y lectora avida."
@@ -2437,19 +2705,19 @@ msgstr "p. eix. Artista, amant d'os cans, y lectora avida."
msgid "E.g. artistic nudes."
msgstr "p. eix. desnudos artisticos."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "p. eix. Publicadors frecuents"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "p. eix. Spammers"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "p. eix. Usuarios que simpre enciertan."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "p. eix. Usuarios que gosan responder con publicidat."
@@ -2457,20 +2725,21 @@ msgstr "p. eix. Usuarios que gosan responder con publicidat."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Cada codigo funciona una vegada. Recibirás mas codigos d'invitación periodicament."
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Editar"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Editar"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Editar avatar"
@@ -2478,31 +2747,41 @@ msgstr "Editar avatar"
msgid "Edit Feeds"
msgstr "Editar canals"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Editar la imachen"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Editar achustes d'interacción"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Editar los detalles d'a lista"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Editar lista de Moderación"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Editar las mías noticias"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Editar lo mío perfil"
@@ -2515,23 +2794,23 @@ msgstr "Editar Personas"
msgid "Edit post interaction settings"
msgstr "Editar achustes d'interacción d'a publicación"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Editar lo perfil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Editar lo perfil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Editar paquet d'inicio"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Editar lista d'Usuarios"
@@ -2539,15 +2818,15 @@ msgstr "Editar lista d'Usuarios"
msgid "Edit who can reply"
msgstr "Editar quí puede responder"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Editar lo tuyo nombre pa amostrar "
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Edita lo tuyo descripcion de perfil"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Edita lo tuyo paquet d'inicio"
@@ -2560,16 +2839,15 @@ msgstr "Educación"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "Lo creador d'esta lista t'ha blocau u l'has blocau tu."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "Correu electronico"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "Correu 2FA deshabilitau"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
@@ -2583,19 +2861,16 @@ msgstr "Adreza de correu electronico"
msgid "Email Resent"
msgstr "Correu electronico reninviau"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "Correu electronico actualizau"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
msgstr ""
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
@@ -2608,8 +2883,8 @@ msgstr "Incrustar codigo HTML"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Incrustar publicación"
@@ -2617,12 +2892,13 @@ msgstr "Incrustar publicación"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Incrusta esta publicación en o tuyo puesto web. Simplament copia lo siguient fragmento y apega-lo en o codigo HTML d'o tuyo puesto web."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "Reproductor de video incrustau"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Activar"
@@ -2630,13 +2906,13 @@ msgstr "Activar"
msgid "Enable {0} only"
msgstr "Activar {0} nomás"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Activar conteniu adulto"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr "Activar correu 2FA"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2660,30 +2936,30 @@ msgstr "Activar subtítols"
msgid "Enable this source only"
msgstr "Habilitar nomás esta fuent"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "Activar las tendencias"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr "Activar los videos populares en Discover d'a tuya canal"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr "Activar los videos populares en Discover d'a tuya canal."
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Activau"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Fin de noticias"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Asegura-te d'haber triau un idioma pa cada fichero de subtítols."
@@ -2696,14 +2972,15 @@ msgstr "Escribe una clau"
msgid "Enter a word or tag"
msgstr "Escribe una parola u etiqueta"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
msgid "Enter Code"
msgstr "Escribe Codigo"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Escribe Codigo de Confirmación"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
msgstr "Dentrar en pantalla completa"
@@ -2712,7 +2989,7 @@ msgstr "Dentrar en pantalla completa"
msgid "Enter the code you received to change your password."
msgstr "Escribe lo codigo que recibiés pa cambiar la tuya clau."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Escribe lo dominio que quiers utilizar"
@@ -2720,20 +2997,20 @@ msgstr "Escribe lo dominio que quiers utilizar"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Escribe lo correu electronico que utilicés pa crear la tuya cuenta. Te ninviaremos un \"codigo de restablimiento\" pa que puedas establir una nueva clau."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Escribe la tuya data de naixencia"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Escribe l'adreza de correu electronico"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Escribe alto lo tuyo nuevo correu"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Escribe la tuya nueva adreza de correu electronico contino."
@@ -2749,7 +3026,11 @@ msgstr "Escribe lo tuyo identificador y clau"
msgid "Enters full screen"
msgstr "Cambia a pantalla completa"
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Error"
@@ -2758,15 +3039,18 @@ msgstr "Error"
msgid "Error occurred while saving file"
msgstr "I ha habiu una error en alzar lo fichero"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "Error en recibir la respuesta d'o captcha."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Error:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Toz"
@@ -2818,30 +3102,22 @@ msgstr "Salir d'o proceso de retalle d'imachen"
msgid "Exits image view"
msgstr "Salir d'a vista d'imachen"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Salir d'a dentrada de la consulta de busqueda"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Expandir lo texto alt"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Expandir lista d'usuarios"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "Expandir u comprimir la publicación completa a la cual yes respondendo"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr "Ixampla u reduce lo texto d'a publicación"
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr "Ixampla u reduce la publicación a la cual yes respondendo"
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "Uri esperada pa resolver un rechistro"
@@ -2864,6 +3140,10 @@ msgstr "Expira {0}"
msgid "Expires in {0}"
msgstr "Expira en {0}"
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "Fichers multimedia explicitos u potencialment perturbadors."
msgid "Explicit sexual images."
msgstr "Imáchens sexuals explicitas."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Exportar los míos datos"
@@ -2882,8 +3169,8 @@ msgstr "Exportar los míos datos"
msgid "Export My Data"
msgstr "Exportar los míos Datos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "Multimedia externos"
@@ -2897,17 +3184,22 @@ msgstr "Fichers multimedia externos"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Ye posible que fichers multimedia externos permitan que atros puestos recopilen datos sobre tu y lo tuyo dispositivo. No se ninvia u solicita garra tipo d'información dica que pretes lo botón de \"reproducir\"."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Fichers multimedia externos"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "No s'ha puesto cambiar l'identificador. Torna-lo a intentar."
@@ -2915,7 +3207,7 @@ msgstr "No s'ha puesto cambiar l'identificador. Torna-lo a intentar."
msgid "Failed to create app password. Please try again."
msgstr "No s'ha puesto crear una clau d'aplicación. Torna-lo a intentar."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr ""
@@ -2924,35 +3216,37 @@ msgstr ""
msgid "Failed to create starter pack"
msgstr "Error en crear lo paquet d'inicio"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "Error en crear la lista. Verifica la tuya connexión a Internet y torna a intentar-lo."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Error en eliminar lo mensache"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "Error en eliminar la publicación, per favor intenta-lo de nuevo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "Error en eliminar lo paquet d'inicio"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "Error en cargar las preferencias de canals"
@@ -2964,17 +3258,19 @@ msgstr "Error en cargar los GIFs"
msgid "Failed to load past messages"
msgstr "Error en cargar los mensaches anteriors"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "Error en cargar las canals sucheridas"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "Error en cargar las sucherencias de seguimiento"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr ""
@@ -2982,7 +3278,16 @@ msgstr ""
msgid "Failed to pin post"
msgstr "Error en clavar la publicación."
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr ""
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Error en alzar la imachen: {0}"
@@ -2994,20 +3299,39 @@ msgstr "Error en alzar las preferencias de notificación, per favor torna-lo a i
msgid "Failed to save settings. Please try again."
msgstr "No s'ha puesto alzar la configuración. Torna a prebar-lo."
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "Error en ninviar"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Error en ninviar l'apelación, per favor intenta de nuevo."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "Error en cambiar lo estau de silencio d'o filo, per favor intenta de nuevo"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr ""
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "Error en actualizar las canals"
@@ -3022,20 +3346,24 @@ msgstr "Error en actualizar los achustes"
msgid "Failed to upload video"
msgstr "Error en puyar video"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "No s'ha puesto verificar la identificación. Torna-lo a intentar."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Canal"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Canal de {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "Menú d'a canal"
@@ -3043,26 +3371,26 @@ msgstr "Menú d'a canal"
msgid "Feed toggle"
msgstr "Alternar canal"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Comentarios"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "S'han ninviau los comentarios!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Canals"
@@ -3070,13 +3398,13 @@ msgstr "Canals"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Las noticias son algorismos personalizaus que los usuarios construyen con un poquet d'experiencia en codificación. <0/> pa mas información."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "Canals actualizadas!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "Canals que creyemos que te farán goyo."
@@ -3092,11 +3420,11 @@ msgstr "Fichero alzau exitosament!"
msgid "Filter from feeds"
msgstr "Filtrar d'as canals"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr "Filtrar la busqueda per idioma"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr "Filtrar la busqueda per idioma (actualment: {currentLanguageLabel})"
@@ -3110,13 +3438,13 @@ msgstr "Finalizando"
msgid "Find accounts to follow"
msgstr "Buscar cuentas pa seguir"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "Trobar chent a qui seguir"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
@@ -3148,11 +3476,11 @@ msgid "Flexible"
msgstr "Flexible"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Seguir"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Seguir"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Seguir {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr "Seguir {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Seguir {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "Sigue 10 cuentas"
msgid "Follow 7 accounts"
msgstr "Sigue 7 cuentas"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "Seguir cuenta"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Seguir a toz"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Seguir tamién"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Seguir tamién"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "Sigue mas cuentas pa connectar-te con os tuyos intereses y ixamplar lo tuyo ret."
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "Seguiu per <0>{0}0>"
@@ -3224,7 +3544,7 @@ msgstr "Seguiu per <0>{0}0> y <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Seguiu per <0>{0}0>, <1>{1}1>, y {2, plural, one {# other} other {# others}}"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Seguidors de @{0} que conoixes"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Seguidors que conoixes"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Seguindo"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "Seguindo {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr "Seguindo {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Seguindo {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Preferencias d'a canal de seguimiento"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Preferencias d'a canal de Seguimiento"
@@ -3301,6 +3617,10 @@ msgstr "Per razons de seguranza, no podrás tornar-lo a veyer. Si pierdes esta c
msgid "For the best experience, we recommend using the theme font."
msgstr "Pa una millor experiencia, recomendamos que uses la fuent d'o tema."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Pa cutio"
@@ -3327,7 +3647,7 @@ msgstr "A sobén publica contenius no deseyaus"
msgid "From @{sanitizedAuthor}"
msgstr "De @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "De <0/>"
@@ -3336,28 +3656,30 @@ msgstr "De <0/>"
msgid "Gallery"
msgstr "Galería"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Chenera un paquet d'inicio"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Obtiene aduya"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "Prencipiar"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr ""
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Prencipiando"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Da-le una cara a lo tuyo perfil"
@@ -3366,17 +3688,17 @@ msgstr "Da-le una cara a lo tuyo perfil"
msgid "Glaring violations of law or terms of service"
msgstr "Violacions flagrants d'a Lei u d'os termens de servicio"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Tornar"
@@ -3384,10 +3706,10 @@ msgstr "Tornar"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Tornar"
@@ -3408,7 +3730,27 @@ msgstr "Ir ta l'inicio"
msgid "Go Home"
msgstr "Ir ta l'inicio"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Ir ta la conversiación con {0}"
@@ -3427,8 +3769,8 @@ msgstr "Ir ta lo perfil de l'usuario"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Conteniu Grafico"
@@ -3437,21 +3779,21 @@ msgstr "Conteniu Grafico"
msgid "Half way there!"
msgstr "Ya yes a metat camín!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Identificador"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "Identificador ya emplegau. Tría-ne un atro diferent."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "L'identificador ha cambiau!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "Identificador masiau largo. Intenta-lo con uno mas curto."
@@ -3464,7 +3806,7 @@ msgstr "Vibración"
msgid "Harassment, trolling, or intolerance"
msgstr "Acoso, troleyo u intolerancia"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Etiqueta"
@@ -3472,19 +3814,24 @@ msgstr "Etiqueta"
msgid "Hashtag {tag}"
msgstr "Etiqueta {tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "Tiens problemas?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Aduya"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Aduya a que las personas sepan que no yes un bot puyando una foto u creando un avatar."
@@ -3497,7 +3844,7 @@ msgstr "Vet aquí la tuya clau d'aplicación!"
msgid "Hidden"
msgstr "Amagau"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr "Amagau per la tuya configuración de moderación."
@@ -3509,18 +3856,17 @@ msgstr "Lista amagada"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Amagar"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Amagar"
@@ -3529,38 +3875,40 @@ msgstr "Amagar"
msgid "Hide customization options"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Amagar la publicación pa yo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Amagar respuesta pa toz"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Amagar respuesta pa yo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "Amagar esta publicación?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "Amagar esta respuesta?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Amaga las tendencias"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "Quiers amagar las tendencias?"
@@ -3569,10 +3917,15 @@ msgstr "Quiers amagar las tendencias?"
msgid "Hide trending videos?"
msgstr "Quiers amagar los videos en tendencias?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Amagar lista d'usuarios"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "Lo servidor de noticias ha respondiu de forma incorrecta. Per favor, inf
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Tenemos problemas pa trobar esta noticia. Puede que la haigan borrada."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Tenemos problemas pa cargar estes datos. Debaixo trobarás mas detalles. Si lo problema persiste contacta-nos."
@@ -3610,15 +3963,15 @@ msgstr "Pareixe que somos tenendo problemas pa cargar estes datos. Mira debaixo
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Aguarte! Somos dando acceso a videos gradualment, y encara yes en a lista d'espera. Torna a consultar luego!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Inicio"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "Aloch:"
@@ -3627,34 +3980,33 @@ msgstr "Aloch:"
msgid "Hosting provider"
msgstr "Furnidor d'aloch"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr ""
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "Las respuestas calients primero"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "Cómo habríanos d'ubrir este vinclo?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Tiengo un codigo"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Tiengo un codigo"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Tiengo un codigo de confirmación"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Tiengo lo mío propio dominio"
@@ -3667,22 +4019,30 @@ msgstr "L'entiendo"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Si lo texto alternativo ye largo, alterna con o estau expandiu d'o texto alternativo"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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 yes un adulto seguntes las leis d'o tuyo país, lo tuyo pai, mai u tutor legal ha de leyer estes termens en o tuyo nombre."
-#: src/view/screens/ProfileList.tsx:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "Si eliminas esta lista, no podrás recuperar-la."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Si tiens lo tuyo propio dominio, puez fer-lo servir como identificador. Ixo te permite autoverificar la tuya identidat – <0>mas información0>."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Si eliminas esta publicación, no podrás recuperar-la."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr ""
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Si deseyas cambiar la tuya clau, te ninviaremos un codigo pa verificar que esta ye la tuya cuenta."
@@ -3704,9 +4064,22 @@ msgstr "Ilegal y urchent"
msgid "Image"
msgstr "Imachen"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "Imachen alzada en o tuyo carret de fotos!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr ""
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr ""
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr ""
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "Mensaches inadecuaus u vinclos explicitos"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr ""
@@ -3752,15 +4125,11 @@ msgstr "Escribe la clau pa la eliminación d'a cuenta"
msgid "Input the code which has been emailed to you"
msgstr "Escribe lo codigo que se t'ha ninviau per correu electronico"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "Escribe lo identificador u l'adreza de correu electronico que usés en rechistrar-te"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Interacción limitada"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr "Achustes d'interacción"
@@ -3769,11 +4138,11 @@ msgstr "Achustes d'interacción"
msgid "Invalid 2FA confirmation code."
msgstr "Codigo de confirmación 2FA no ye valido."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Identificador no valido. Intenta-lo con un atro."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "Rechistro de publicación invalido u no compatible"
@@ -3789,11 +4158,11 @@ msgstr "Codigo de Verificación no valido"
msgid "Invite a Friend"
msgstr "Convida a un amigo"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Codigo d'invitación"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "No s'accepta lo codigo d'invitación. Compreba que l'has escrito correctament y torna-lo a intentar."
@@ -3805,7 +4174,7 @@ msgstr "Codigos d'invitación: {0} disponibles"
msgid "Invite codes: 1 available"
msgstr "Codigos d'invitación: 1 disponible"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "Convida a personas a este paquet inicial!"
@@ -3817,7 +4186,7 @@ msgstr "Convida a los tuyos amigos a seguir las tuyas canals y personas favorita
msgid "Invites, but personal"
msgstr "Invitacions, pero personals"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "Ye correcta"
@@ -3825,19 +4194,19 @@ msgstr "Ye correcta"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Nomás yes tu per agora! Anyade mas personas a lo tuyo paquet d'inicio buscando alto."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "ID de fayena: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Fayenas"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Une-te a Bluesky"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "Etiquetau per l'autor."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Etiquetas"
@@ -3868,7 +4237,7 @@ msgstr "Etiquetas"
msgid "Labels added"
msgstr "S'han anyadiu las etiquetas"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "Las etiquetas son anotacions sobre usuarios y conteniu. Pueden usar-se pa amagar, advertir y categorizar lo ret."
@@ -3884,13 +4253,13 @@ msgstr "Etiquetas en o tuyo conteniu"
msgid "Language selection"
msgstr "Triar l'idioma"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Achustes d'Idiomas"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Idiomas"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Mas gran"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "Zaguero"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "saber-ne mas"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Aprender-ne mas"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Aprender mas de Bluesky"
@@ -3933,6 +4311,11 @@ msgstr "Obtiene mas información sobre la moderación aplicada a este conteniu."
msgid "Learn more about this warning"
msgstr "Aprender mas sobre esta advertencia"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr ""
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "Salir de Bluesky"
msgid "left to go."
msgstr "quedan."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Deixa-me triar"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Liuchero"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "Me fa goyo"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Me fa goyo ({0, plural, one {# me-fa-goyo} other {# me-fa-goyos}})"
@@ -4013,17 +4397,16 @@ msgstr "Da-le «me fa goyo» a 10 publicacions"
msgid "Like 10 posts to train the Discover feed"
msgstr "Da-le «me fa goyo» a 10 publicacions pa entrenar la canal de descubrimiento"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Dar «me fa goyo» a esta noticia"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr "Como este etiquetador"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Le ha feito goyo a"
@@ -4033,43 +4416,43 @@ msgstr "Le ha feito goyo a"
msgid "Liked By"
msgstr "Le ha feito goyo a"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Le fa goyo a {0, plural, one {# usuario} other {# usuarios}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Le fa goyo a {likeCount, plural, one {# usuario} other {# usuarios}}"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "Me fa goyo"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "Me fa goyo en esta publicación"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "Linial"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Lista"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Avatar d'a lista"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "Lista de blocaus"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4084,44 +4467,44 @@ msgstr "Lista de <0/>"
msgid "List by you"
msgstr "Lista tuya"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "Lista d'eliminaus"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
msgstr "S'ha amagau la lista"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "Lista amagada"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "Lista silenciada"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Nombre d'a lista"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "Lista desblocada"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "La lista ya no ye silenciada"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Listas"
@@ -4129,34 +4512,47 @@ msgstr "Listas"
msgid "Lists blocking this user:"
msgstr "Listas que blocan a este usuario:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr ""
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr ""
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Cargar-ne mas"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "Cargar mas canals sucheridas"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Cargar mas seguius sucherius"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Cargar notificacions nuevas"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Cargar publicacions nuevas"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Cargando..."
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Rechistro"
@@ -4164,12 +4560,12 @@ msgstr "Rechistro"
msgid "Logged-out visibility"
msgstr "Visibilidat de desconnexión"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo de @sawaratsuki.bsky.social"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo de <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "Pareixe que has desclavau totas las tuyas canals. Pero no te preocupes,
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Pareixe que te falta una canal de seguimiento. <0>Fe clic aquí pa anyadir-ne un.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "Fe un pa yo"
@@ -4201,18 +4601,22 @@ msgstr "Fe un pa yo"
msgid "Make sure this is where you intend to go!"
msgstr "Asegura-te que ye aquí ta an quiers ir!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "Chestionar las canals alzadas"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Chestiona las tuyas parolas y etiquetas silenciadas"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr ""
@@ -4221,16 +4625,23 @@ msgstr ""
msgid "Mark as read"
msgstr "Marcar como leyiu"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr ""
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Multimedia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Fichers multipedia que pueden estar perturbadors u no adecuaus pa ciertas audiencias."
@@ -4246,23 +4657,27 @@ msgstr "Usuarios mencionaus"
msgid "Mentions"
msgstr "Mencions"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Menú"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Mensache {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Mensache eliminau"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Mensache eliminau"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr ""
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Mensache d'o servidor: {0}"
@@ -4276,7 +4691,11 @@ msgstr "Campo de dentrada de mensache"
msgid "Message is too long"
msgstr "Lo mensache ye masiau largo"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr ""
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Mensaches"
@@ -4295,10 +4714,10 @@ msgstr "Cuenta enganyosa"
msgid "Misleading Post"
msgstr "Publicación enganyosa"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Moderación"
@@ -4320,22 +4739,22 @@ msgstr "Lista de moderación per <0/>"
msgid "Moderation list by you"
msgstr "Lista de moderación per tu"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "Lista de moderación creada"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "Lista de moderación actualizada"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Listas de moderación"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Listas de moderación"
@@ -4343,11 +4762,11 @@ msgstr "Listas de moderación"
msgid "moderation settings"
msgstr "achustes de moderación"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "Estaus de moderación"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Ferramientas de moderación"
@@ -4356,7 +4775,7 @@ msgstr "Ferramientas de moderación"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Lo moderador ha decidiu d'establir una advertencia cheneral sobre lo conteniu."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Mas"
@@ -4365,9 +4784,9 @@ msgstr "Mas"
msgid "More feeds"
msgstr "Mas canals"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Mas opcions"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "Las millor valoradas primero"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Respuestas millor valoradas primero"
@@ -4400,14 +4819,14 @@ msgstr "Silenciar"
msgid "Mute {tag}"
msgstr "Silenciar {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "Cuenta muda"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Silenciar cuentas"
@@ -4420,11 +4839,11 @@ msgstr "Silenciar conversación"
msgid "Mute in:"
msgstr "Silenciar en:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Silenciar la lista"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "Silenciar estas cuentas?"
@@ -4452,26 +4871,26 @@ msgstr "Silenciar esta parola nomás en etiquetas"
msgid "Mute this word until you unmute it"
msgstr "Silenciar esta parola dica que la tornes a habilitar"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Silenciar filo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Silenciar parolas y etiquetas"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Cuentas silenciadas"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Cuentas silenciadas"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "En silenciar una cuenta no veyerás las suyas publicacions en a tuya canal u notificacions. Dengún puede veyer a qui silencias."
@@ -4479,11 +4898,11 @@ msgstr "En silenciar una cuenta no veyerás las suyas publicacions en a tuya can
msgid "Muted by \"{0}\""
msgstr "Silenciau per \"{0}\""
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Parolas y etiquetas silenciadas"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Dengún puede veyer a qui silencias. Las cuentas silenciadas pueden interactuar con tu, pero no veyerás las suyas publicacions en a tuya canal u notificacions."
@@ -4492,15 +4911,15 @@ msgstr "Dengún puede veyer a qui silencias. Las cuentas silenciadas pueden inte
msgid "My Birthday"
msgstr "Lo mío aniversario"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "Los mías canals"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Nombre"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "Nombre requeriu"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Naturaleza"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "Navegar a {0}"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "Navega a la siguient pantalla"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Navega a lo tuyo perfil"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "Te fa falta cambiar-lo?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "Quiers reportar una violación de copyright?"
@@ -4547,30 +4971,43 @@ msgstr "Quiers reportar una violación de copyright?"
msgid "Never lose access to your followers or data."
msgstr "Nunca no pierdas acceso d'os tuyos seguidors u los tuyos datos."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "No importa, crea un identificador per yo"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Nuevo"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Nuevo"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "Nuevo chat"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "Nuevo identificador"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "Nueva lista"
@@ -4578,7 +5015,7 @@ msgstr "Nueva lista"
msgid "New messages"
msgstr "Nuevos mensaches"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Nueva lista de moderación"
@@ -4590,12 +5027,12 @@ msgstr "Nueva clau"
msgid "New Password"
msgstr "Nueva clau"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Nueva publicación"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "Nueva publicación"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Nueva publicación"
@@ -4613,19 +5050,20 @@ msgstr "Nueva publicación"
msgid "New user info dialog"
msgstr "Finestra d'información pa nuevo usuario"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Nueva lista d'usuarios"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "Respuestas nuevas primer"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Noticias"
@@ -4655,11 +5093,15 @@ msgstr "Imachen nueva"
msgid "No app passwords yet"
msgstr "Encara sin claus de l'aplicación"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "Sin panel de DNS"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "No se troboron GIFs destacaus. Puede haber un problema con Tenor."
@@ -4668,21 +5110,25 @@ msgstr "No se troboron GIFs destacaus. Puede haber un problema con Tenor."
msgid "No feeds found. Try searching for something else."
msgstr "No se troboron canals. Mira de buscar bella cosa mas."
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr ""
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "Encara sini \"me-fa-goyos\""
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "Ya no sigues a {0}"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr "No mas de {MAX_SERVICE_HANDLE_LENGTH} carácters"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "No i hai mensaches encara"
@@ -4711,31 +5157,38 @@ msgstr "No i hai citas encara"
msgid "No reposts yet"
msgstr "No i hai republicacions encara"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Sin resultau"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "Sin resultaus"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr ""
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "No s'ha trobau resultaus"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "No s'ha trobau resultaus pa \"{query}\""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "No s'ha trobau resultaus pa {query}"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "No s'ha trobau resultaus pa \"{search}\"."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Dengún"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "Dengún ha dau \"me fa goyo\" a esto encara. Talment habrías d'estar lo primero!"
@@ -4775,19 +5227,15 @@ msgstr "Desnudez no sexual"
msgid "Not followed by anyone you're following"
msgstr ""
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "No trobau"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "No pas agora"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Nota sobre compartir"
@@ -4795,7 +5243,7 @@ msgstr "Nota sobre compartir"
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 ye un ret ubierto y publico. Esta configuración nomás limita la visibilidat d'o tuyo conteniu en l'aplicación y lo puesto web de Bluesky, y ye posible que atras aplicacions no respecten esta configuración. Atras aplicacions y puestos web pueden seguir amostrando lo tuyo conteniu a los usuarios que haigan zarrau sesión."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Cosa aquí"
@@ -4803,7 +5251,7 @@ msgstr "Cosa aquí"
msgid "Notification filters"
msgstr "Filtros de notificación"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Achustes de notificación"
@@ -4820,11 +5268,11 @@ msgstr "Sons de notificación"
msgid "Notification Sounds"
msgstr "Sons de notificación"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Notificacions"
@@ -4832,12 +5280,12 @@ msgstr "Notificacions"
msgid "now"
msgstr "agora"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Agora"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Desnudez"
@@ -4859,21 +5307,23 @@ msgstr "Qué problema!"
msgid "Oh no! Something went wrong."
msgstr "Vai! Bella cosa ha saliu mal."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "D'acuerdo"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "Ye bien"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "Respuestas antigas primero"
@@ -4881,19 +5331,19 @@ msgstr "Respuestas antigas primero"
msgid "on<0><1/><2><3/>2>0>"
msgstr "en<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Reiniciando"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "Falta lo texto alternativo d'uno u mas GIFs."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "Falta lo texto alternativo en una u cuantas imáchens."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "Falta lo texto alternativo d'uno u mas videos."
@@ -4905,11 +5355,11 @@ msgstr "Nomás s'admite fichers .jpg y .png"
msgid "Only {0} can reply."
msgstr "Nomás {0} puede responder."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Nomás contiene letras, numeros y guions"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "Nomás s'admite fichers d'imachen"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "Ups, bella cosa ha saliu mal!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "Ui!"
@@ -4935,67 +5385,80 @@ msgstr "Ui!"
msgid "Open"
msgstr "Ubierto"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "Ubrir lo menú d'accesos directos d'o perfil de {name}"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Ubrir lo creyador de avatares"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "Ubrir opcions de conversación"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "Ubrir lo menú lateral"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Ubrir selector d'emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "Ubrir la pantalla d'información d'a canal"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "Ubrir menú d'opcions d'a canal"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr ""
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "Ubrir vinclo a {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "Ubrir opcions de mensache"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "Ubrir la pachina de debug d'a moderación"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Ubrir achustes de parolas y etiquetas silenciadas"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "Ubrir menú d'opcions d'a publicación"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "Ubrir menú d'o paquet d'inicio"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Ubrir pachina d'historico"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Ubrir rechistro d'o sistema"
@@ -5015,19 +5478,19 @@ msgstr "Ubre un dialogo pa triar quí puede responder a este filo"
msgid "Opens additional details for a debug entry"
msgstr "Ubre detalles adicionals pa una dentrada de depuración"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Ubrir camera d'o dispositivo"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr "Ubre lo dialogo de cambio d'identificador"
@@ -5039,7 +5502,7 @@ msgstr "Ubrir compositor"
msgid "Opens device photo gallery"
msgstr "Ubrir galería de fotos d'o dispositivo"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr "Ubre lo selector d'emojis"
@@ -5057,7 +5520,7 @@ msgstr "Ubre lo fluxo pa iniciar sesión en a tuya cuenta existent de Bluesky"
msgid "Opens GIF select dialog"
msgstr "Ubre lo dialogo de selección de GIF"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr "Ubre lo centro d'aduya en o navegador"
@@ -5065,6 +5528,10 @@ msgstr "Ubre lo centro d'aduya en o navegador"
msgid "Opens list of invite codes"
msgstr "Ubre la lista de codigos d'invitación"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Ubre lo formulario de restablimiento de clau"
@@ -5073,12 +5540,12 @@ msgstr "Ubre lo formulario de restablimiento de clau"
msgid "Opens the linked website"
msgstr "Ubre lo puesto web vinculau"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Ubre este perfil"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Ubre lo selector de video"
@@ -5121,11 +5588,11 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Unatro"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Unatra cuenta"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Pachina no trobada"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "Pausar"
msgid "Pause video"
msgstr "Pausar video"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "Personas"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "Personas seguidas per @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "Personas seguindo a @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "Se requiere permiso pa acceder a lo carrete d'a camera."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "Lo permiso pa acceder a lo carrete d'a camera estió denegau. Per favor, activa-lo en a configuración d'o tuyo sistema."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr ""
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "Mascotas"
msgid "Photography"
msgstr "Fotografía"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Imáchens destinadas a adultos."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr "Clavar"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "Clavar la canal"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr "Clava la canal de videos populars en a pantalla d'inicio pa acceder-ie fácilment"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr ""
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Clavar en inicio"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Clavar en inicio"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Clavar en o tuyo perfil"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Clavau"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "{0} clavau en Inicio"
@@ -5263,7 +5722,7 @@ msgstr "{0} clavau en Inicio"
msgid "Pinned Feeds"
msgstr "Canals clavadas"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "Las tuyas canals clavadas"
@@ -5302,24 +5761,28 @@ msgstr "Reproducir GIF"
msgid "Plays the video"
msgstr "Reproduce lo video"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr ""
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Per favor, tría lo tuyo identificador."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Per favor, tría la tuya clau."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr ""
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Per favor, completa la verificación CAPTCHA."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Per favor, confirma lo tuyo correu electronico antes de cambiar-lo. Se trata d'un requisito temporal entre que s'anyaden ferramientas d'actualización de correu electronico, y s'eliminará luego."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr "Compreba que has escrito bien la tuya adreza de correu."
@@ -5335,19 +5798,41 @@ msgstr "Escribe una clau. Ha de tener a lo menos 8 carácters."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Escribe un nombre unico pa esta clau d'aplicación u fe servir una chenerada aleatoriament."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Per favor, escribe una parola, etiqueta, u frase valida pa silenciar"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr ""
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Escribe lo tuyo correu electronico."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Escribe lo tuyo codigo d'invitación."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr "Escribe la tuya clau"
@@ -5381,24 +5866,25 @@ msgstr "Tría una razón pa esta denuncia"
msgid "Please sign in as @{0}"
msgstr "Per favor, escribe como @{0}"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Per favor, verifica lo tuyo email"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Politica"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr "Videos populars d'o tuyo ret."
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Pornografía"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Publicar"
@@ -5408,32 +5894,32 @@ msgctxt "description"
msgid "Post"
msgstr "Publicar"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Publicar-lo tot"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "Publicación per {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "Publicación per {0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "Publicación eliminada"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "No s'ha puesto cargar la publicación. Compreba la connexión a internet y torna-lo a intentar."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr "La publicación ye estada eliminada"
@@ -5455,7 +5941,7 @@ msgstr "Publicación amagada per tu"
msgid "Post interaction settings"
msgstr "Achustes d'interacción d'a publicación"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr "Configuración d'interacción d'a publicación"
@@ -5476,15 +5962,16 @@ msgstr "Publicación no trobada"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "Publicación clavada"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "Publicación desclavada"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Publicacions"
@@ -5503,7 +5990,7 @@ msgstr "Vinclo potencialment enganyoso"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "Preferencias alzadas"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -5524,7 +6011,7 @@ msgstr "Preta pa veyer los seguidors d'esta cuenta que tamién sigues"
msgid "Previous image"
msgstr "Imachen previa"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Idioma primario"
@@ -5537,31 +6024,31 @@ msgstr "Priorizar los tuyos seguius"
msgid "Priority notifications"
msgstr "Notificacions prioritarias"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Privacidat"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "Privacidat y seguranza"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Privacidat y seguranza"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Politica de privacidat"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Procesando video..."
@@ -5570,23 +6057,23 @@ msgstr "Procesando video..."
msgid "Processing..."
msgstr "Procesando..."
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Perfil"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "Perfil actualizau"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
@@ -5600,6 +6087,26 @@ msgstr "Listas publicas y compartibles pa blocar u silenciar a usuarios de vez."
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "Listas publicas y compartibles que se pueden fer servir pa chenerar canals."
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr ""
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr ""
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr ""
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr ""
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "Codigo QR copiau a lo tuyo portafuellas!"
@@ -5612,25 +6119,25 @@ msgstr "Lo codigo QR ha estau descargau!"
msgid "QR code saved to your camera roll!"
msgstr "Codigo QR alzau en o tuyo carret de fotos!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Citar una publicación"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "La publicación citada ha estau readjuntada"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "La publicación citada s'ha deseparau correctament"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "Citas deshabilitadas"
@@ -5642,39 +6149,48 @@ msgstr "Configuración de citas"
msgid "Quotes"
msgstr "Citas"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "Citas d'esta publicación"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Aleatorio (u la \"ruleta d'o publicador)"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "S'ha excediu lo limite de frecuencia - has mirau de cambiar lo tuyo identificador masiadas vegadas en un curto tiempo. Per favor, aguarda un minuto antes de tornar-lo a intentar."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "Readchuntar cita"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr ""
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Reactivar la tuya cuenta"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr "Amostrar-ne menos"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr "Amostrar-ne mas"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Leyer lo blog de Bluesky"
@@ -5697,11 +6213,11 @@ msgstr "Motivo d'o recurso"
msgid "Reason:"
msgstr "Razón:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Busquedas Recients"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "Recomendacions"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "Reconnectar"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Recargar conversacions"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Eliminar"
msgid "Remove {displayName} from starter pack"
msgstr "Eliminar a {displayName} d'o paquet inicial"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr ""
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Borrar la cuenta"
@@ -5752,13 +6268,13 @@ msgstr "Borrar la cuenta"
msgid "Remove attachment"
msgstr "Eliminar l'adchunto"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Eliminar l'avatar"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "Eliminar lo banner"
@@ -5776,24 +6292,25 @@ msgstr "Eliminar la canal"
msgid "Remove feed?"
msgstr "Eliminar la canal?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Sacar d'as mías canals"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "Borrar de l'acceso rapido?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "Sacar d'as canals alzadas"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr "Sacar d'as tuyas canals?"
@@ -5802,11 +6319,16 @@ msgstr "Sacar d'as tuyas canals?"
msgid "Remove image"
msgstr "Eliminar la imachen"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Sacar parola silenciada d'a tuya lista"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Eliminar perfil"
@@ -5814,12 +6336,12 @@ msgstr "Eliminar perfil"
msgid "Remove quote"
msgstr "Eliminar cita"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Eliminar republicación"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Eliminar fichero de subtítol"
@@ -5827,6 +6349,21 @@ msgstr "Eliminar fichero de subtítol"
msgid "Remove this feed from your saved feeds"
msgstr "Sacar esta canal d'as tuyas canals alzadas"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr ""
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "Eliminau per autor"
@@ -5835,7 +6372,7 @@ msgstr "Eliminau per autor"
msgid "Removed by you"
msgstr "Eliminau per tu"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Eliminau d'a lista"
@@ -5845,19 +6382,18 @@ msgid "Removed from my feeds"
msgstr "Eliminau d'as mías canals"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Eliminada d'as mías canals alzadas"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Eliminau d'as tuyas canals"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr "Borra lo perfil de l'historial de busqueda"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr ""
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
@@ -5868,7 +6404,7 @@ msgstr "Borra la cita d'a publicación"
msgid "Replace with Discover"
msgstr "Reemplaza con descubrimiento"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Respuestas"
@@ -5880,12 +6416,13 @@ msgstr "Respuestas deshabilitadas"
msgid "Replies to this post are disabled."
msgstr "Las respuestas en esta publicación son deshabilitadas."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Responder"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Responder ({0, plural, one {# respuesta} other {# respuestas}})"
@@ -5907,86 +6444,86 @@ msgstr "Achustes de respuesta"
msgid "Reply settings are chosen by the author of the thread"
msgstr "La configuración de respuestas ye triada per l'autor d'o filo"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "Orden d'as respuestas"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Responder a <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Responder a una publicación blocada"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "Responder a una publicación"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Responder a tu"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "Visibilidat d'a respuesta actualizada"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "La respuesta s'ha amagau correctament"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Denunciar"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "Denunciar cuenta"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Denunciar conversación"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "Finestra de denuncia"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Denunciar canal"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
-msgstr "Denunciar lista"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Denunciar mensache"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Denunciar publicación"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "Denunciar paquet d'inicio"
@@ -6030,25 +6567,26 @@ msgstr "Denunciar este paquet d'inicio"
msgid "Report this user"
msgstr "Denunciar este usuario"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Republicar"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Republicar"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Republicar ({0, plural, one {# republicación} other {# republicacions}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Republicar u citar publicación"
@@ -6056,27 +6594,27 @@ msgstr "Republicar u citar publicación"
msgid "Reposted By"
msgstr "Tornau a publicar per"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "Tornau a publicar per {0}"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "Tornau a publicar per <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "Tornau a publicar per tu"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "Republicacions d'esta publicación"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "Solicitar cambio"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr ""
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6088,11 +6626,11 @@ msgstr "Solicitar codigo"
msgid "Require alt text before posting"
msgstr "Requerir texto alternativo antes de publicar"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr "Demanda una adreza de correu pa dentrar con la tuya cuenta."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Requeriu pa este furnidor"
@@ -6100,13 +6638,19 @@ msgstr "Requeriu pa este furnidor"
msgid "Required in your region"
msgstr "Requeriu en a tuya rechión"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "Reninviar correu"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "Reninviar correu"
@@ -6123,8 +6667,8 @@ msgstr "Codigo de restablimiento"
msgid "Reset Code"
msgstr "Codigo de restablimiento"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "Restablir l'estau d'incorporación"
@@ -6141,16 +6685,16 @@ msgstr "Torna a intentar iniciar sesión"
msgid "Retries the last action, which errored out"
msgstr "Reintenta la zaguera acción, que presentó una error"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "Reintenta la zaguera acción, que presentó una error"
msgid "Retry"
msgstr "Reintentar"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr "Torna a intentar cargar las opcions de denuncia"
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Tornar ta la pachina anterior"
@@ -6175,11 +6719,11 @@ msgstr "Tornar ta la pachina anterior"
msgid "Returns to home page"
msgstr "Tornar ta la pachina d'inicio"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "Tornar ta la pachina anterior"
@@ -6190,24 +6734,26 @@ msgstr "Torna ta lo paso anterior"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Alzar"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Alzar"
@@ -6221,12 +6767,12 @@ msgstr "Alzar aniversario"
msgid "Save changes"
msgstr "Alzar cambios"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Alzar cambios"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Alzar imachen"
@@ -6234,16 +6780,16 @@ msgstr "Alzar imachen"
msgid "Save image crop"
msgstr "Alzar retalle d'imachen"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Alzar nuevo identificador"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "Alzar codigo QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Alzar en as mías canals"
@@ -6251,16 +6797,12 @@ msgstr "Alzar en as mías canals"
msgid "Saved Feeds"
msgstr "Canals alzadas"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "Alzau en o tuyo carret de fotos "
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "Alzau en as tuyas canals"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "Alza los cambios en o tuyo perfil"
@@ -6270,8 +6812,8 @@ msgstr "Alza los achustes de retalle d'a imachen"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "Di ola!"
@@ -6280,45 +6822,42 @@ msgstr "Di ola!"
msgid "Science"
msgstr "Ciencia"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "Desplazar enta alto"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Buscar"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Mirar en as publicacions de @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "Buscar por nombre u interés"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "Mirar canals"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "Buscar \"{interestsDisplayName}\"{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Buscar \"{query}\""
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "Buscar \"{searchText}\""
@@ -6326,29 +6865,33 @@ msgstr "Buscar \"{searchText}\""
msgid "Search for feeds that you want to suggest to others."
msgstr "Buscar canals que quieras sucherir a atros."
-#: src/view/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr ""
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
msgstr "Mira publicacions, usuarios u canals"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Buscar usuarios"
-
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "Buscar GIFs"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr "Mirar en as mías publicacions"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr "Mirar en publicacions"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Buscar perfils"
@@ -6356,16 +6899,20 @@ msgstr "Buscar perfils"
msgid "Search Tenor"
msgstr "Buscar en Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr "Mirar..."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr "Mira perfils"
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Se requiere un paso de seguranza"
@@ -6385,7 +6932,7 @@ msgstr "Veyer las publicacions sobre #{tag}"
msgid "See #{tag} posts by user"
msgstr "Veyer publicacions sobre #{tag} per usuario"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Veyer emplegos en Bluesky"
@@ -6405,6 +6952,10 @@ msgstr "Tría una color"
msgid "Select account"
msgstr "Triar cuenta"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Tría un avatar"
@@ -6413,10 +6964,22 @@ msgstr "Tría un avatar"
msgid "Select an emoji"
msgstr "Tría un emoji"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Triar idiomas de conteniu"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr ""
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Tría d'una cuenta existent"
@@ -6433,15 +6996,15 @@ msgstr "Triar GIF \"{0}\""
msgid "Select how long to mute this word for."
msgstr "Tría per cuánto tiempo s'habría de silenciar esta parola."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Triar idioma..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Triar idiomas"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr "Triar un servicio de moderación"
@@ -6449,6 +7012,10 @@ msgstr "Triar un servicio de moderación"
msgid "Select moderator"
msgstr "Triar moderador"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "Triar lo emoji {emojiName} como lo tuyo avatar"
msgid "Select the moderation service(s) to report to"
msgstr "Triar los servicios de moderación a los cuals reportar"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Triar video"
@@ -6470,23 +7037,24 @@ msgstr "Triar video"
msgid "Select what content this mute word should apply to."
msgstr "Triar a qué conteniu s'ha d'aplicar esta parola silenciada."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr "Triar qué idioma usar en la interfaz d'usuario de l'aplicación."
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Tría en qué idiomas deseyas que sían las publicacions d'as tuyas canals. Si no'n trías garra, s'amostrarán en toz los idiomas."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Tría la tuya data de naixencia"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "Tría los tuyos intereses d'as opcions contino"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "Tría en qué idioma deseyas traducir las publicacions d'a tuya canal."
@@ -6498,19 +7066,17 @@ msgstr "Tría la opción {0} de {numItems}"
msgid "Send a neat website!"
msgstr "Ninvia un puesto web interesant!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr "Ninviar confirmación"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Ninviar correu de confirmación"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Ninviar correu de confirmación"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Ninviar correu"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Ninviar correu"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Ninviar comentarios"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Ninviar mensache"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr ""
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Ninviar publicación a..."
@@ -6544,17 +7114,20 @@ msgstr "Ninviar reporte"
msgid "Send report to {0}"
msgstr "Ninviar reporte a {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr "Ninviar denuncia a {title}"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Ninviar correu de verificación"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Ninviar vía mensache directo"
@@ -6570,7 +7143,7 @@ msgstr "Adreza d'o servidor"
msgid "Set app icon to {0}"
msgstr "Estableix {0} como l'icono de l'aplicación"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "Establir aniversario"
@@ -6586,19 +7159,19 @@ msgstr "Configura la tuya cuenta"
msgid "Sets email for password reset"
msgstr "Estableix lo correu electronico pa restablir la clau"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Achustes"
#: src/screens/ModerationInteractionSettings/index.tsx:102
msgctxt "toast"
msgid "Settings saved"
-msgstr ""
+msgstr "Configuración alzada"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Actividat sexual u desnudez erotica."
@@ -6606,21 +7179,15 @@ msgstr "Actividat sexual u desnudez erotica."
msgid "Sexually Suggestive"
msgstr "Sexualment suchestivo"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Compartir"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Compartir"
@@ -6633,15 +7200,19 @@ msgstr "Comparte una historia chenial!"
msgid "Share a fun fact!"
msgstr "Comparte un dato curioso!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Compartir de totas trazas"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "Compartir vinclo"
@@ -6650,32 +7221,46 @@ msgstr "Compartir vinclo"
msgid "Share Link"
msgstr "Compartir vinclo"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "Finestra pa compartir vinclo"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Compartir codigo QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "Comparte esta canal"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "Compartir este paquet d'inicio"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "Comparte este paquet d'inicio y aduya a las personas a unir-se a la tuya comunidat en Bluesky."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr ""
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "Comparte la tuya canal favorita!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "Prebador de Preferencias Compartidas"
@@ -6685,7 +7270,7 @@ msgstr "Comparte lo puesto web enlazau"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Veyer"
@@ -6696,8 +7281,8 @@ msgstr "Veyer texto alternativo"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Veyer de totas trazas"
@@ -6718,8 +7303,8 @@ msgstr ""
msgid "Show hidden replies"
msgstr "Amostrar respuestas amagadas"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "Amostrar menos como este"
@@ -6727,14 +7312,14 @@ msgstr "Amostrar menos como este"
msgid "Show list anyway"
msgstr "Amostrar lista de totas trazas"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Veyer mas"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Amostrar-ne mas como este"
@@ -6752,7 +7337,7 @@ msgstr "Amostrar publicacions citadas"
msgid "Show replies"
msgstr "Amostrar respuestas"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "Amostrar las respuestas como"
@@ -6764,8 +7349,8 @@ msgstr "Amostrar las respuestas como filos"
msgid "Show replies by people you follow before all other replies"
msgstr "Amostrar respuestas de chent a qui sigues antes que las de demás"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "Amostrar respuesta pa toz"
@@ -6787,11 +7372,11 @@ msgstr "Amostrar advertencia"
msgid "Show warning and filter from feeds"
msgstr "Amostrar advertencia y filtrar d'as canals"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr "Amuestra información sobre cuán se va crear esta publicación"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr "Amuestra atras cuentas a las cuals puez cambiar"
@@ -6809,8 +7394,8 @@ msgstr "Amuestra lo conteniu"
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr "Amuestra lo conteniu"
msgid "Sign in"
msgstr "Iniciar sesión"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Iniciar sesión como {0}"
@@ -6826,16 +7411,16 @@ msgstr "Iniciar sesión como {0}"
msgid "Sign in as..."
msgstr "Iniciar sesión como ..."
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr ""
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "Inicia sesión u crea una cuenta pa unir-te a la conversación!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "Dentra-ie u rechistra-te"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "Entrar con una cuenta que no ye en a lista"
@@ -6843,15 +7428,15 @@ msgstr "Entrar con una cuenta que no ye en a lista"
msgid "Sign in to Bluesky or create a new account"
msgstr "Inicia sesión en Bluesky u crea una nueva cuenta"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Zarrar sesión"
@@ -6859,8 +7444,8 @@ msgstr "Zarrar sesión"
msgid "Sign Out"
msgstr "Zarrar sesión"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "Salir?"
@@ -6874,11 +7459,6 @@ msgstr "Se requiere iniciar sesión"
msgid "Signed in as @{0}"
msgstr "Sesión iniciada como @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "Rechistrar-se sin un paquet d'inicio"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Cuentas semellants"
@@ -6896,12 +7476,21 @@ msgstr "Blincar este fluxo"
msgid "Smaller"
msgstr "Mas chicot"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Programación"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "Belatras canals que podrían fer-te goyo"
@@ -6909,23 +7498,31 @@ msgstr "Belatras canals que podrían fer-te goyo"
msgid "Some people can reply"
msgstr "Cualques personas pueden responder"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Bella cosa no yera bien en os datos que yes mirando de denunciar. Contacta con o soporte."
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "I ha habiu una error"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "I ha habiu una error, per favor intenta de nuevo"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "I ha habiu una error. Intenta de nuevo."
@@ -6934,16 +7531,16 @@ msgstr "I ha habiu una error. Intenta de nuevo."
msgid "Something went wrong!"
msgstr "I ha habiu una error!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr "I ha habiu una error. Intenta-lo atra vegada."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "Bella cosa va mal? Fe-nos-lo saber."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "La tuya sesión ha caducau. Torna a iniciar sesión."
@@ -6978,34 +7575,39 @@ msgstr "Spam; mencions u respuestas excesivas"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Esportes"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Iniciar un nuevo chat"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "Empecipia a anyadir chent"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "Empecipia a anyadir chent!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Iniciar chat con {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Paquet d'inicio"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "Paquet d'inicio de {0}"
@@ -7013,38 +7615,39 @@ msgstr "Paquet d'inicio de {0}"
msgid "Starter pack by <0/>"
msgstr "Paquet d'inicio de <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "Paquet d'inicio creau per tu"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "Lo paquet d'inicio ye invalido"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "Paquez d'inicio"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Los paquez d'inicio te permiten compartir facilment las tuyas canals y personas favoritas con os tuyos amigos."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Pachina d'estau"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "Paso {0} de {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "Almagacenamiento limpio, te fa falta reiniciar l'aplicación agora."
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "Libro de cuentos"
@@ -7063,46 +7666,51 @@ msgstr "Ninviar recurso"
msgid "Submit Appeal"
msgstr "Ninviar recurso"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr "Ninviar denuncia"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Subscribir-se"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "Subscribi-te a @{0} pa usar estas etiquetas:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "Suscribir-se a lo etiquetador"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "Suscribir-se a este etiquetador"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "Suscribir-se a esta lista"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "Exito!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
-msgstr "Cuentas sucheridas"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
+msgstr ""
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Sucheriu pa tu"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Suchestivo"
@@ -7116,16 +7724,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Soporte"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Cambiar cuentas"
@@ -7134,11 +7742,11 @@ msgstr "Cambiar cuentas"
msgid "Switch Account"
msgstr "Cambiar a unatra cuenta"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "Cambiar cuentas"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr "Cambiar a {0}"
@@ -7149,9 +7757,9 @@ msgstr "Cambiar a {0}"
msgid "System"
msgstr "Sistema"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Rechistro d'o sistema"
@@ -7159,6 +7767,12 @@ msgstr "Rechistro d'o sistema"
msgid "Tags only"
msgstr "Nomás etiquetas"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Toca pa descartar"
@@ -7184,7 +7798,7 @@ msgstr "Tecnolochía"
msgid "Tell a joke!"
msgstr "Cuenta un chiste!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "Contanos una miqueta sobre tu"
@@ -7192,17 +7806,17 @@ msgstr "Contanos una miqueta sobre tu"
msgid "Tell us a little more"
msgstr "Conta-nos un poquet mas"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Condicions"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Condicions de servicio"
@@ -7230,7 +7844,11 @@ msgstr "Campo de texto"
msgid "Text input field"
msgstr "Campo d'introducción de texto"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "Gracias! Lo tuyo correu electronico ha estau verificau con exito."
@@ -7242,7 +7860,7 @@ msgstr "Gracias. La tuya denuncia ha estau ninviada."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Gracias, has verificau la tuya adreza de correu electronico con exito. Puez zarrar esta finestra."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "Ixo contiene lo siguient:"
@@ -7250,10 +7868,10 @@ msgstr "Ixo contiene lo siguient:"
msgid "That handle is already taken."
msgstr "Este identificador ya ye en uso."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "No s'ha puesto trobar ixe paquet d'inicio."
msgid "That's all, folks!"
msgstr "Ixo ye tot, amigos!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr "Ixo ye tot!"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "La cuenta podrá interactuar con tu dimpués de desblocar-la."
@@ -7282,7 +7900,7 @@ msgstr "Se va a reiniciar l'aplicación"
msgid "The author of this thread has hidden this reply."
msgstr "L'autor d'este filo ha amagau esta respuesta."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "L'aplicación web de Bluesky"
@@ -7302,6 +7920,10 @@ msgstr "La canal de Descubrir"
msgid "The Discover feed now knows what you like"
msgstr "La canal de Descubrir agora sabe lo que te fa goyo"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "La experiencia ye millor en l'aplicación. Descarga Bluesky agora y continaremos an lo deixés."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "La Politica de privacidat s'ha tresladau a <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "Lo video triau ye mayor de 50MB."
+msgid "The selected video is larger than 100 MB."
+msgstr "Lo video triau ye mayor de 100 MB."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "Pareix que lo servidor ye experimentando problemas. Torna-lo a intentar dimpués de bels momentos."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "Lo paquet d'inicio que intentas veyer ye invalido. Puez eliminar este paquet d'inicio en o suyo puesto."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr ""
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "S'ha moviu lo formulario de soporte. Si te fa falta aduya, per favor <0/> u visita {HELP_DESK_URL} pa meter-te en contacto con nusatros."
@@ -7367,15 +7994,15 @@ msgstr "No i hai limite de tiempo pa la desactivación d'a cuenta, torna en atro
msgid "There was an issue connecting to Tenor."
msgstr "I ha habiu un problema en connectar-se a Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "I ha habiu un problema en contactar con o servidor"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "I ha habiu un problema en contactar con o servidor, compreba la tuya connexión y torna-lo a intentar."
@@ -7388,11 +8015,12 @@ msgstr "I ha habiu un problema en contactar con o tuyo servidor"
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "I ha habiu un problema en obtener las notificacions. Toca aquí pa intentar de nuevo."
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "I ha habiu un problema en obtener las publicacions. Toca aquí pa intentar de nuevo."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "I ha habiu un problema en obtener la lista. Toca aquí pa intentar de nuevo."
@@ -7400,12 +8028,12 @@ msgstr "I ha habiu un problema en obtener la lista. Toca aquí pa intentar de nu
msgid "There was an issue fetching your app passwords"
msgstr "I ha habiu un problema trayendo las tuyas claus de l'aplicación"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "I ha habiu un problema en obtener las tuyas listas. Toca aquí pa intentar de nuevo."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "I ha habiu un problema trayendo la tuya información de servicio"
@@ -7418,26 +8046,26 @@ msgstr "I ha habiu un problema eliminando esta canal. Compreba la tuya connexió
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "I ha habiu un problema en ninviar lo tuyo reporte. Compreba la tuya connexión a internet."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "I ha habiu un problema en actualizar las tuyas canals, compreba la tuya connexión y torna-lo a intentar."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "I ha habiu un problema {0}"
@@ -7445,10 +8073,10 @@ msgstr "I ha habiu un problema {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "I ha habiu un problema. Per favor verifica la tuya connexión a internet y torna a intentar-lo."
@@ -7469,6 +8097,14 @@ msgstr "Estes achustes nomás afectan a la canal \"Seguindo\""
msgid "This {screenDescription} has been flagged:"
msgstr "Esta {screenDescription} ha estau marcada:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "Esta cuenta ha solicitau que los usuarios inicien sesión pa veyer lo suyo perfil."
@@ -7477,6 +8113,10 @@ msgstr "Esta cuenta ha solicitau que los usuarios inicien sesión pa veyer lo su
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 "Esta cuenta ye blocada per una u mas d'as tuyas listas de moderación. Pa desblocar-la, per favor visita las listas dreitament y elimina a este usuario."
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Esta apelación será ninviada a <0>{sourceName}0>."
@@ -7510,14 +8150,22 @@ msgstr "Este conteniu no ye disponible perque un d'os usuarios involucraus ha bl
msgid "This content is not viewable without a Bluesky account."
msgstr "Este conteniu no se puede veyer sin una cuenta de Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Esta conversa ye con una cuenta eliminada u desactivada. Preta pa veyer las opcions"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "Esta función ye en beta. Puez leyer mas sobre la exportación de repositorios en <0>esta publicación d'o blog0>."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr ""
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "Esta caracteristica no ye disponible cuan s'emplega una clau d'aplicación. Dentra con a tuya clau principal."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Esta canal ye vueda! Ye posible que amenestas seguir a mas usuarios u achustar la configuración d'idioma."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Esta canal ye vueda."
@@ -7540,7 +8188,7 @@ msgstr "Esta canal ye vueda."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Esta canal ya no ye en linia. Somos amostrando <0>Descubrir0> en cuenta."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "Este identificador ye reservau. Intenta-lo con una diferent."
@@ -7548,9 +8196,10 @@ msgstr "Este identificador ye reservau. Intenta-lo con una diferent."
msgid "This information is not shared with other users."
msgstr "Esta información no ye compartida con atros usuarios."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "Esto ye important per si nunca te fa falta cambiar lo tuyo correu electronico u restablir la tuya clau."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr ""
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "Esta etiqueta ye estada aplicada per l'autor."
msgid "This label was applied by you."
msgstr "Esta etiqueta ye estada aplicada per tu."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "Este etiquetador no ha declarau qué etiquetas publica y puede que no sía activo."
@@ -7576,7 +8225,7 @@ msgstr "Esta lista – creada per <0>{0}0> – contiene posibles violacions d'
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr "Esta lista – creada per tu – contiene posibles violacions d'as directrices comunitarias de Bluesky en o suyo nombre u descripción."
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "Esta lista ye vueda."
@@ -7584,7 +8233,7 @@ msgstr "Esta lista ye vueda."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Este servicio de moderación no ye disponible. Consulta mas detalles contino. Si lo problema persiste, contacta-nos."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Esta publicación diz haber estau creada lo <0>{0}0>, pero la hemos vista en Bluesky lo <1>{1}1>."
@@ -7592,28 +8241,29 @@ msgstr "Esta publicación diz haber estau creada lo <0>{0}0>, pero la hemos vi
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr "Esta publicación tiene un tipo de threadgate desconoixiu. Ye posible que la tuya aplicación siga obsoleta."
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "Esta publicación ye estada eliminada."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Esta publicación nomás ye visible pa usuarios rechistraus. No será visible pa personas no rechistradas."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Esta publicación será amagada d'as canals y filos. Esto no se puede desfer."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "L'autor d'esta publicación ha deshabilitau las citas de publicacions."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Este perfil nomás ye visible pa usuarios rechistraus. No será visible pa personas no rechistradas."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr "Esta respuesta será clasificada en una sección amagada a la fin d'o tuyo filo y silenciará las notificacions pa respuestas posteriors, tanto pa tu como pa atros."
@@ -7621,10 +8271,14 @@ msgstr "Esta respuesta será clasificada en una sección amagada a la fin d'o tu
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Este servicio no ha proporcionau termins de servicio ni una politica de privacidat."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "Esto habría de crear un rechistro de dominio en:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr ""
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "Este usuario no tiene seguidors."
@@ -7662,21 +8316,21 @@ msgstr "Este usuario no sigue a dengún."
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "Esto eliminará \"{0}\" d'as tuyas parolas silenciadas. Siempre puez anyadir-lo de nuevo mas enta debant."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "Esto eliminará @{0} d'a lista d'acceso rapido."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "Esto eliminará la tuya publicación d'esta cita pa toz los usuarios y la reemplazará con un marcador de posición."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "Opcions de filos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Preferencias de filos"
@@ -7684,8 +8338,8 @@ msgstr "Preferencias de filos"
msgid "Thread Preferences"
msgstr "Preferencias de filos"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "En filos"
@@ -7693,7 +8347,7 @@ msgstr "En filos"
msgid "Threaded mode"
msgstr "Modo con filos"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Preferencias de filos"
@@ -7705,14 +8359,15 @@ msgstr "Tiempo restant: {0, plural, one {# segundo} other {# segundos}}"
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "Pa desactivar lo metodo de 2FA per correu electronico, verifica per favor lo tuyo acceso a l'adreza de correu electronico."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr ""
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "Pa denunciar una conversación, per favor denuncia un d'os suyos mensaches a traviés d'a pantalla d'a conversación. Esto permite a los nuestros moderadors entender lo contexto d'o tuyo problema."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Pa puyar videos a Bluesky, primero has de verificar lo tuyo correu electronico."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "A quí te faría goyo de ninviar este reporte?"
@@ -7725,7 +8380,7 @@ msgstr "Hue"
msgid "Toggle dropdown"
msgstr "Alternar lo menú desplegable"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "Alternar habilitar u deshabilitar conteniu pa adultos"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr "Activa/desactiva lo son"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Alto"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "Tema"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Traducir"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "Tendencia"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "Vídeos populars"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr ""
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "Televisión"
msgid "Two-factor authentication (2FA)"
msgstr "Autorización con dos factors (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Escribe lo tuyo identificador"
@@ -7783,18 +8440,11 @@ msgstr "Escribe lo tuyo identificador"
msgid "Type your message here"
msgstr "Escribe lo tuyo mensache aquí"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Tipo:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Desblocar lista"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Deixar de silenciar lista"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "No s'ha puesto connectar. Compreba la tuya connexión d'internet y torna-lo a intentar."
@@ -7809,7 +8459,7 @@ msgstr "No s'ha puesto connectar. Compreba la tuya connexión d'internet y torna
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "No se puede contactar con o tuyo furnidor. Compreba la tuya connexión a Internet."
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "No se puede eliminar"
@@ -7817,36 +8467,41 @@ msgstr "No se puede eliminar"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Desblocar"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Desblocar"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Desblocar cuenta"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "Desblocar cuenta?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Desfer republicación"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Desfer la republicación ({0, plural, one {# republicación} other {# republicaciones}})"
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Deixar de seguir"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "Deixar de seguir a {0}"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "Deixar de seguir esta cuenta"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr "Deixa de seguir a l'usuario"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Garra d'os tuyos etiquetadors subscritos soporta este tipo de denuncia."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "Ya no me fa goyo"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Ya no me fa goyo ({0, plural, one {# me-fa-goyo} other {# me-fa-goyos}})"
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr "Deixar de silenciar"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Deixar de silenciar"
@@ -7895,10 +8555,10 @@ msgstr "Deixar de silenciar"
msgid "Unmute {tag}"
msgstr "Deixar de silenciar {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "Deixar de silenciar cuenta"
@@ -7906,8 +8566,12 @@ msgstr "Deixar de silenciar cuenta"
msgid "Unmute conversation"
msgstr "Deixar de silenciar conversación"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Deixar de silenciar filo"
@@ -7915,38 +8579,47 @@ msgstr "Deixar de silenciar filo"
msgid "Unmute video"
msgstr "Deixar de silenciar video"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Desclavar"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "Desclavar la canal"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Desclavar d'inicio"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "Desclavar d'o perfil"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Desclavar lista de moderación"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "{0} ye desclavau d'Inicio"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Desclavau d'as tuyas canals"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Dar-se de baixa"
@@ -7955,7 +8628,7 @@ msgstr "Dar-se de baixa"
msgid "Unsubscribe from list"
msgstr "Dar-se de baixa d'a lista"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Dar-se de baixa d'este etiquetador"
@@ -7963,11 +8636,11 @@ msgstr "Dar-se de baixa d'este etiquetador"
msgid "Unsubscribed from list"
msgstr "Dau de baixa d'a lista"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "Tipo de video no soportau"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "Tipo de video no soportau: {0}"
@@ -7987,49 +8660,60 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "Actualizar <0>{displayName}0> en Listas"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Actualizar a {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
-msgctxt "toast"
-msgid "Updating quote attachment failed"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
+msgctxt "toast"
+msgid "Updating quote attachment failed"
+msgstr "Ha fallau l'actualización de l'adchunto d'a cita"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "Ha fallau l'actualización d'a visibilidat d'a respuesta"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "Actualizando..."
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Puya una foto en cuenta"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Carga un fichero de texto en:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Puyar dende la camera"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Puyar dende los tuyos fichers"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Puyar dende la biblioteca"
@@ -8042,7 +8726,7 @@ msgstr "Cargando imáchens..."
msgid "Uploading link thumbnail..."
msgstr "Cargando thumbnail d'o vinclo..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "Cargando video..."
@@ -8050,22 +8734,22 @@ msgstr "Cargando video..."
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Usar claus de l'aplicación pa dentrar en atros clients de Bluesky que dan acceso con a tuya cuenta u clau."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Utilizar lo furnidor predeterminau"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Usar navegador integrau"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Fer servir lo navegador interno pa ubrir vinclos"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Usar lo mío navegador predeterminau"
@@ -8084,7 +8768,7 @@ msgstr "Usau per:"
#: src/components/dms/ReportDialog.tsx:324
msgctxt "toast"
msgid "User blocked"
-msgstr ""
+msgstr "Usuario blocau"
#: src/components/moderation/ModerationDetailsDialog.tsx:71
#: src/lib/moderation/useModerationCauseDescription.ts:63
@@ -8119,15 +8803,15 @@ msgstr "Lista d'usuarios per {0}"
msgid "User list by you"
msgstr "Lista d'usuarios per tu"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "Lista d'usuarios creada"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "Lista d'usuarios actualizada"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8150,58 +8834,88 @@ msgstr "Usuarios que sigo"
msgid "Users in \"{0}\""
msgstr "Usuarios en \"{0}\""
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "Usuarios que les ha feito goyo este conteniu u perfil"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr "Usuarios que sigues"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Valor:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "Se requiere un correu electronico verificau"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr ""
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr ""
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Verificar rechistro DNS"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Finestra de verificación de correu electronico"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Verificar lo correu electronico nuevo"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Verificar agora"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Verificar fichero de texto"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Compreba lo tuyo correu"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Verifica lo tuyo correu electronico"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Versión {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "Video"
msgid "Video failed to process"
msgstr "Lo video no s'ha puesto procesar"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr "Canal de video"
@@ -8224,14 +8938,15 @@ msgstr "Video de {0}: {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Videojuegos"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr "Lo video ye en pausa"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr "Lo video se ye reproducindo"
@@ -8239,11 +8954,11 @@ msgstr "Lo video se ye reproducindo"
msgid "Video not found."
msgstr "Video no trobau."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Configuración d'o video"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Video cargau"
@@ -8251,31 +8966,32 @@ msgstr "Video cargau"
msgid "Video: {0}"
msgstr "Video: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "Videos"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "Veyer l'avatar de {0}"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "Veyer lo perfil de {0}"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "Veyer lo perfil de {displayName}"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "Veyer lo perfil de l'usuario blocau"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "Veyer dentrada de depuración"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Veyer detalles"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "Veyer mas detalles sobre cómo reportar una violación de Dreitos d'Autor"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Veyer filo completo"
@@ -8308,18 +9024,17 @@ msgstr "Veyer información sobre estas etiquetas"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "Veyer mas"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Veyer perfil"
@@ -8331,7 +9046,11 @@ msgstr "Veyer l'avatar"
msgid "View the labeling service provided by @{0}"
msgstr "Veyer lo servicio de etiquetau proporcionau per @{0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "Veyer usuarios a qui les fa goyo esta canal"
@@ -8339,11 +9058,11 @@ msgstr "Veyer usuarios a qui les fa goyo esta canal"
msgid "View video"
msgstr "Mirar lo video"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Veyer las tuyas cuentas blocadas"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr "Veyer la configuración d'as interaccions per defecto en as tuyas publicacions"
@@ -8352,14 +9071,18 @@ msgstr "Veyer la configuración d'as interaccions per defecto en as tuyas public
msgid "View your feeds and explore more"
msgstr "Veyer las tuyas canals y explorar mas"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Veyer las tuyas listas de moderación"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "Veyer las tuyas cuentas silenciadas"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "Advertir de conteniu"
msgid "Warn content and filter from feeds"
msgstr "Advertir de conteniu y filtrar d'as canals"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr ""
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "No hemos puesto trobar resultaus pa ixe hashtag."
@@ -8400,7 +9128,7 @@ msgstr "No hemos puesto trobar resultaus pa ixe hashtag."
msgid "We couldn't find any results for that topic."
msgstr "No hemos puesto trobar resultaus pa este tema."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "No hemos puesto cargar esta conversación"
@@ -8420,6 +9148,14 @@ msgstr "Esperemos que lo pases bien. Recuerda, Bluesky ye:"
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "S'han acabau las publicacions d'os tuyos seguius. Aquí ye la zaguera de <0/>."
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "No hemos puesto determinar si tiens permiso pa puyar videos. Per favor, torna a intentar-lo. xxxxxxxxxxxxxxxxxxxxxxxxxx"
@@ -8428,7 +9164,7 @@ msgstr "No hemos puesto determinar si tiens permiso pa puyar videos. Per favor,
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "No hemos puesto cargar las tuyas preferencias de data de naixencia. Per favor, intenta de nuevo."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:428
msgid "We were unable to load your configured labelers at this time."
msgstr "No hemos puesto cargar los tuyos etiquetadors configuraus en este momento."
@@ -8440,20 +9176,28 @@ msgstr "No hemos puesto connectar-nos. Per favor, intenta de nuevo pa continar c
msgid "We will let you know when your account is ready."
msgstr "T'informaremos cuan la tuya cuenta sía lista."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "Usaremos esto pa aduyar a personalizar la tuya experiencia."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "Somos tenendo problemas de ret, intenta de nuevo"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr ""
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "Ye nuestro placer tener-te aquí!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Vai, no hemos puesto resolver esta lista. Si esto persiste, per favor contacta a lo creador d'a lista, @{handleOrDid}."
@@ -8461,11 +9205,11 @@ msgstr "Vai, no hemos puesto resolver esta lista. Si esto persiste, per favor co
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Vai, pero no hemos puesto cargar las tuyas parolas silenciadas en este momento. Per favor, intenta de nuevo."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Vai, no s'ha puesto completar la tuya busqueda. Torna-lo a intentar uns minutos."
-#: src/view/com/composer/Composer.tsx:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Vai! La publicación a la cual yes respondendo ha estau eliminada."
@@ -8474,7 +9218,7 @@ msgstr "Vai! La publicación a la cual yes respondendo ha estau eliminada."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Vai! No trobamos la pachina que buscabas."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Vai! Nomás puez subscribir-te a vinte etiquetadors, y has alcanzau lo tuyo limite de vinte."
@@ -8494,16 +9238,16 @@ msgstr "Cuáls son los tuyos intereses?"
msgid "What do you want to call your starter pack?"
msgstr "Cómo quiers clamar a lo tuyo paquet d'inicio?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "Sobre qué ye charrando la chent."
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "Qué fas?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr ""
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "En qué idioma ye esta publicación?"
@@ -8520,14 +9264,18 @@ msgstr "Quí puede interactuar con esta publicación?"
msgid "Who can reply"
msgstr "Quí puede responder"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "Vai!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr "Vai! No s'han puesto cargar los videos populars."
@@ -8574,11 +9322,11 @@ msgstr "Per qué creyes que este usuario ha d'estar revisau?"
msgid "Write a message"
msgstr "Escribe un mensache"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Redacta una publicación"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Redacta una respuesta"
@@ -8588,11 +9336,16 @@ msgstr "Redacta una respuesta"
msgid "Writers"
msgstr "Escritors"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "Lo servidor ha tornau un DID incorrecto. Recibiu: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Sí xxxxxxxxxxxxxxxxxxx"
@@ -8601,15 +9354,15 @@ msgstr "Sí xxxxxxxxxxxxxxxxxxx"
msgid "Yes, deactivate"
msgstr "Sí, desactivar"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Sí, eliminar este paquet d'inicio"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Sí, deseparar"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Sí, amagar"
@@ -8625,7 +9378,11 @@ msgstr "Ahiere"
msgid "You"
msgstr "Tu"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr ""
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
msgstr ""
@@ -8633,6 +9390,19 @@ msgstr ""
msgid "You are in line."
msgstr "Yes en ringlera."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr ""
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr ""
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr ""
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "No tiens permiso pa puyar videos."
@@ -8641,6 +9411,27 @@ msgstr "No tiens permiso pa puyar videos."
msgid "You are not following anyone."
msgstr "No yes seguindo a dengún."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr "Puez establir la tuya configuración per defecto en as interaccions en <
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "Puez actualizar-lo mas enta debant dende la tuya configuración."
@@ -8682,7 +9472,7 @@ msgstr "No tiens garra seguidor."
msgid "You don't follow any users who follow @{name}."
msgstr "No sigues a garra usuario que sigue a @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr ""
@@ -8736,24 +9526,24 @@ msgstr "Has silenciau esta cuenta."
msgid "You have muted this user"
msgstr "Has silenciau esta cuenta"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "No tiens garra conversacion. Encomienza-ne una!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "No tiens garra canal."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "No tiens garra lista."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Encara no has blocau garra cuenta. Pa blocar una cuenta, veye a lo suyo perfil y tría \"Blocar cuenta\" en o menú d'a suya cuenta."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Encara no has silenciau garra cuenta. Pa silenciar una cuenta, veye a lo suyo perfil y tría \"Silenciar cuenta\" en o menú d'a suya cuenta."
@@ -8761,11 +9551,15 @@ msgstr "Encara no has silenciau garra cuenta. Pa silenciar una cuenta, veye a lo
msgid "You have reached the end"
msgstr "Has arribau a la fin"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr ""
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Has alcanzau temporalment lo limite de puyadas de videos. Torna a intentar-lo mas enta debant."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "Encara no has creau un paquet d'inicio!"
@@ -8787,22 +9581,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Puez apelar estas etiquetas si sientes que estioron colocadas per error."
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "Nomás puez anyadir dica {STARTER_PACK_MAX_SIZE} perfils"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Nomás puez anyadir dica 3 canals"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "No puez triar mas de 4 imachens"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "Has de tener 13 anyos u mas pa poder crear una cuenta."
+msgid "You must be 13 years of age or older to create an account."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Has de seguir a lo menos a siet personas mas pa chenerar un paquet d'inicio."
@@ -8810,28 +9604,40 @@ msgstr "Has de seguir a lo menos a siet personas mas pa chenerar un paquet d'ini
msgid "You must grant access to your photo library to save a QR code"
msgstr "Has d'atorgar acceso a la tuya biblioteca de fotos pa alzar un codigo QR"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "Has d'atorgar acceso a la tuya biblioteca de fotos pa alzar la imachen."
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "Has de triar a lo menos un etiquetador pa un informe"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr ""
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "Dinantes hebas desactivau a @{0}."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "Saldrás de totas las tuyas cuentas."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "Ya no recibirás notificacions d'este filo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Agora recibirás notificacions d'este filo"
@@ -8839,23 +9645,23 @@ msgstr "Agora recibirás notificacions d'este filo"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Ninviamos un codigo de reinicio a lo tuyo correu. Escribe ixe codigo aquí y dimpués escribe la tuya nueva clau."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "Lo tuyo: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Tu: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "Tu: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "Malas que remates de crear la tuya cuenta podrás seguir usuarios y canals sucheridas!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "Prencipiarás a seguir a los usuarios sucherius malas que remates de crear la tuya cuenta!"
@@ -8867,7 +9673,7 @@ msgstr "Prencipiarás a seguir a estas personas y a {0} mas"
msgid "You'll follow these people right away"
msgstr "Prencipiarás a seguir a estas personas a l'inte"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "Recibirás un correu electronico en <0>{0}0> pa verificar que yes tu."
@@ -8901,6 +9707,10 @@ msgstr "Has trobau cualques persona a qui seguir"
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Has harribau a la fin d'a tuya canal! Troba mas cuentas pa seguir."
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Has alcanzau lo tuyo limite diario de carga de videos (masiaus bytes)"
@@ -8909,11 +9719,11 @@ msgstr "Has alcanzau lo tuyo limite diario de carga de videos (masiaus bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Has alcanzau lo tuyo limite diario de carga de videos (masiaus videos)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Ya has visto toz los videos que i heba. Y si te descansas una mica?"
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "La tuya cuenta"
@@ -8941,7 +9751,7 @@ msgstr "La tuya cuenta ha trencau las <0>las Condicions de servicio de Bluesky S
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr "Hemos recibiu lo tuyo recurso. Si s'acepta, t'avisaremos per correu electronico."
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "La tuya data de naixencia"
@@ -8953,26 +9763,30 @@ msgstr "Lo tuyo navegador no soporta este formato de video. Per favor intenta-lo
msgid "Your chats have been disabled"
msgstr "Los tuyos chats son estau deshabilitaus"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "La tuya tría será alzada. Puez cambiar esto en os achustes dimpués."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "Lo tuyo identificador actual <0>{0}0> quedará automaticament reservau pa tu. Puez tornar-ie en cualsequier momento dende esta cuenta."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Lo tuyo correu electronico pareixe no estar valido."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "Lo tuyo correu electronico ha estau actualizau pero no comprebau. Compreba lo tuyo nuevo correu electronico."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Lo tuyo correu electronico encara no ha estau comprebau. Per la tuya seguranza, recomendamos que lo comprebes."
@@ -8988,14 +9802,31 @@ msgstr "Los tuyos seguidors"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "La tuya canal de Seguindo ye vueda! Sigue a mas usuarios pa veyer las suyas publicacions aquí."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "Lo tuyo identificador completo será <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr "Lo tuyo nombre d'usuario completo será <0>@{0}0>"
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr ""
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Las tuyas parolas silenciadas"
@@ -9004,15 +9835,15 @@ msgstr "Las tuyas parolas silenciadas"
msgid "Your password has been changed successfully!"
msgstr "S'ha cambiau con exito la tuya clau!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr "La tuya ha de tener a lo menos 8 carácters."
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "S'ha publicau la tuya publicación"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "S'han publicau las tuyas publicacions"
@@ -9024,14 +9855,22 @@ msgstr "Las tuyas publicacions, a qué le das \"me fa goyo\" y a quí blocas son
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Lo tuyo perfil, publicacions, canals y listas no tornarán a estar visibles pa atros usuarios de Bluesky. Puez reactivar la tuya cuenta dentrando-ie en cualsequier momento."
-#: src/view/com/composer/Composer.tsx:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Respuesta publicada"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr "La tuya denuncia se ninviará a <0>{0}0>."
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Lo tuyo reporte s'ha ninviau a lo servicio de moderación de Bluesky"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr ""
diff --git a/src/locale/locales/ast/messages.po b/src/locale/locales/ast/messages.po
index 761e683967..4b9bf09175 100644
--- a/src/locale/locales/ast/messages.po
+++ b/src/locale/locales/ast/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ast\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 03:35\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Asturian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(contién elementos incrustaos)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(ensin direición de corréu)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {# republicación} other {# republicaciones}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# segundu} other {# segundos}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -90,17 +90,17 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {siguidor} other {siguidores}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {préstame} other {préstames}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {préstame} other {préstames}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {publicación} other {publicaciones}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {cita} other {cites}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {republicación} other {republicaciones}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr ""
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr ""
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0> n'<1>etiquetes1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>en <1>testu y etiquetes1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr ""
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} xunióse esta selmana"
@@ -139,11 +156,16 @@ msgstr "{0} de {1}"
msgid "{0} out of 50"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "¡{0} persones usaron esti paquete d'iniciación!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr ""
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "Avatar de: {0}"
@@ -175,7 +197,7 @@ msgstr "{0} m"
msgid "{0}s"
msgstr "{0} s"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {hores}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {minutu} other {minutos}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}}0> siguiéronte"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}}0> prestó-yos la publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}}0> republicaron la publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}}0> rexistróse col to paquete d'iniciación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} siguióte"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} siguióte tamién"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "A {firstAuthorLink} prestó-y el to feed personalizáu"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "A {firstAuthorLink} prestó-y la publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} republicó la publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} rexistróse col to paquete d'iniciación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} siguiéronte"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "A {firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} prestó-yos la publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} republicaron la publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} siguióte"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} siguióte tamién"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "A {firstAuthorName} prestó-y la publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} republicó la publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} rexistróse col to paquete d'iniciación"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "Sigue a {following}"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "Nun se puen unviar mensaxes a {handle}"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr ""
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr ""
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -301,6 +404,34 @@ msgstr "{profileName} xunióse a Bluesky hai {0}"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} xunióse a Bluesky con un paquete d'iniciación hai {0}"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr ""
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr ""
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr ""
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr ""
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr ""
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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> y {2, plural, one {# más} other {# más}} inclúinse nel paquete d'iniciación"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {siguidor} other {siguidores}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "{1, plural, one {Sigue a} other {Sigue a}} <0>{0}0>"
@@ -343,7 +474,7 @@ msgstr ""
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>Tu0> y <1>1><2>{0}2> tais incluyíos nel paquete d'iniciación"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠L'indicador ye inválidu"
@@ -363,19 +494,28 @@ msgstr "30 díes"
msgid "7 days"
msgstr "7 díes"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr ""
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Tocante a"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr ""
@@ -385,37 +525,37 @@ msgid "Accept Request"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Accesibilidá"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Configuración d'accesibilidá"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Cuenta"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
msgstr ""
@@ -429,33 +569,37 @@ msgstr ""
msgid "Account Muted by List"
msgstr ""
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr ""
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Quitóse la cuenta del accesu rápidu"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
msgstr ""
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Amestar"
@@ -473,8 +617,12 @@ msgstr ""
msgid "Add a content warning"
msgstr ""
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr ""
@@ -485,7 +633,7 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr ""
msgid "Add alt text"
msgstr ""
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr ""
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Amestar otra cuenta"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Amestar otra publicación"
@@ -518,8 +666,12 @@ msgstr ""
msgid "Add App Password"
msgstr "Crear una contraseña d'aplicación"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr ""
@@ -531,15 +683,23 @@ msgstr ""
msgid "Add muted words and tags"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Amestar una publicación nueva"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Amestar persones"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr ""
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Amestar los feeds aconseyaos"
@@ -552,27 +712,28 @@ msgstr "¡Amiesta dalgunos feeds al paquete d'iniciación!"
msgid "Add the default feed of only people you follow"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Amiesta'l rexistru DNS siguiente al to dominiu:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
-msgstr ""
-
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Amestar a Llistes"
+msgstr "Amestar a llistes"
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Amestar a los mios feeds"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Amestóse a la llista"
@@ -581,22 +742,22 @@ msgstr "Amestóse a la llista"
msgid "Added to my feeds"
msgstr "Amestóse a los mios feeds"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "P'adultos"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Conteníu p'adultos"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "El conteníu p'adultos namás se pue activar pela web en <0>bsky.app0>."
@@ -604,30 +765,35 @@ msgstr "El conteníu p'adultos namás se pue activar pela web en <0>bsky.app0>
msgid "Adult content is disabled."
msgstr "El conteníu p'adultos ta desactiváu."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Etiquetes de conteníu p'adultos"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Opciones avanzaes"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr ""
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Too"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr ""
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "Toles llingües"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "Tolos feeds que guardesti, nun llugar."
@@ -671,10 +837,10 @@ msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Testu alternativu"
@@ -688,19 +854,18 @@ msgstr "El testu alternativu describe imáxenes pa persones ciegues o con proble
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
msgstr ""
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "Unvióse un mensaxe a {0}. Inclúi un códigu de confirmación que pues introducir abaxo."
-#: src/view/com/modals/ChangeEmail.tsx:114
-msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
-msgstr "Unvióse un mensaxe a la to direición de corréu anterior, {0}. Inclúi un códigu de confirmación que pues introducir abaxo."
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "¡Unvióse un mensaxe! Introduz abaxo'l códigu de confirmación que s'inclúi nelli."
@@ -716,7 +881,11 @@ msgstr "Prodúxose un error"
msgid "An error occurred while compressing the video."
msgstr "Prodúxose un error mentanto se comprimía'l videu."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Prodúxose un error mentanto se xeneraba'l paquete d'iniciación. ¿Quies volver tentalo?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "Prodúxose un error mentanto se cargaba'l videu. Volvi tentalo."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "¡Prodúxose un error mentanto se guardaba'l códigu QR!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "Prodúxose un error mentanto se seleicionaba'l videu"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "Prodúxose un error al tentar de siguir a toles cuentes"
@@ -746,12 +914,17 @@ msgstr "Prodúxose un error al tentar de siguir a toles cuentes"
msgid "An error occurred while uploading the video."
msgstr "Prodúxose un error mentanto se xubía'l videu."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Un problema que nun s'inclúi nestes opciones"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "Prodúxose un problema al aniciar la charra"
@@ -761,13 +934,17 @@ msgstr "Prodúxose un error al tentar d'abrir la charra"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Prodúxose un problema. Volvi tentalo."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "prodúxose un error desconocíu"
@@ -790,6 +967,10 @@ msgstr "Animales"
msgid "Animated GIF"
msgstr "GIF animáu"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Comportamientu antisocial"
msgid "Anybody can interact"
msgstr "Tol mundu pue interactuar"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "Llingua de l'aplicación"
@@ -817,7 +998,7 @@ msgstr "Contraseña d'aplicación"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "Desanicióse la contraseña d'aplicación"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
@@ -836,7 +1017,7 @@ msgstr "Los nomes de les contraseñes d'aplicación han tener polo menos 4 cará
msgid "App passwords"
msgstr "Contraseñes d'aplicación"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Contraseñes d'aplicación"
@@ -854,7 +1035,7 @@ msgstr ""
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "Unvióse l'apellación"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -872,10 +1053,10 @@ msgstr ""
msgid "Appeal this decision"
msgstr "Apellar esta decisión"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Aspeutu"
@@ -884,12 +1065,12 @@ msgstr "Aspeutu"
msgid "Apply default recommended feeds"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Archivóse la publicación"
@@ -897,15 +1078,15 @@ msgstr "Archivóse la publicación"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "¿De xuru que quies desaniciar la contraseña d'aplicación «{0}»?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
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:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "¿De xuru que quies desaniciar esti elementu del paquete d'iniciación?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "¿De xuru que quies escartar los cambeos?"
@@ -921,15 +1102,15 @@ msgstr ""
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "¿De xuru que quies quitar «{0}» de los tos feeds?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "¿De xuru que quies quitar esti elementu de los tos feeds?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "¿De xuru que quies escartar esti borrador?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "¿De xuru que quies escartar esta publicación?"
@@ -937,7 +1118,7 @@ msgstr "¿De xuru que quies escartar esta publicación?"
msgid "Are you sure?"
msgstr ""
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "¿Tas escribiendo na llingua «<0>{suggestedLanguageName}0>»?"
@@ -946,11 +1127,16 @@ msgstr "¿Tas escribiendo na llingua «<0>{suggestedLanguageName}0>»?"
msgid "Art"
msgstr "Arte"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Desnudos artísticos o que nun son eróticos."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "Ye de 3 caráuteres polo menos"
@@ -963,12 +1149,12 @@ msgstr ""
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Les opciones de reproducción automática treslladáronse a <0>Configuración del conteníu multimedia0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Reproducir automáticamente vídeos y GIFs"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Reproducir automáticamente vídeos y GIFs"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Atrás"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr ""
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Enantes de crear una llista, primero tienes de verificar la direición de corréu."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Enantes de publicar, primero tienes de verificar la direición de corréu."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Enantes de crear un paquete d'iniciación, tienes de verificar primero la direición de corréu."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "Enantes de poder unviar un mensaxe a otru usuariu, primero tienes de verificar la direición de corréu."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
+msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Aniversariu"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Bloquiar la cuenta"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "¿Quies bloquiar la cuenta?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Bloquiar les cuentes"
@@ -1054,7 +1241,7 @@ msgstr ""
msgid "Block and/or delete this conversation"
msgstr ""
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Bloquiar la llista"
@@ -1062,7 +1249,7 @@ msgstr "Bloquiar la llista"
msgid "Block or report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "¿Quies bloquiar estes cuentes?"
@@ -1079,21 +1266,21 @@ msgstr ""
msgid "Blocked"
msgstr "Bloquióse"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Cuentes bloquiaes"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Cuentes bloquiaes"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Les cuentes bloquiaes nun puen responder nos tos filos, mentante nin interactuar contigo de nenguna forma."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 cuentes bloquiaes nun puen responder nos tos filos, mentante nin interactuar contigo de nenguna forma. Tampoco vas ver el so conteníu nin ellos el de to."
@@ -1101,19 +1288,19 @@ msgstr "Les cuentes bloquiaes nun puen responder nos tos filos, mentante nin int
msgid "Blocked post."
msgstr "Bloquióse la publicación."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "El bloquéu nun impide qu'esti etiquetador aplique etiquetes a la to cuenta."
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "El bloquéu ye públicu. Les cuentes bloquiaes nun puen responder nos tos filos, mentante nin interactuar contigo de nenguna forma."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "El bloquéu nun impide que les etiquetes s'apliquen a la to cuenta, mas nun va dexar qu'esta cuenta respuenda a los tos filos o interactúe contigo."
-#: src/view/com/auth/SplashScreen.web.tsx:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blogue"
@@ -1122,7 +1309,7 @@ msgstr "Blogue"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky nun pue verificar l'autenticidá de la data indicada."
@@ -1148,7 +1335,7 @@ msgstr "¡Bluesky ye meyor con compaña!"
msgid "Bluesky Social Terms of Service"
msgstr "Términos del serviciu de Bluesky Social"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
@@ -1156,6 +1343,10 @@ msgstr ""
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky nun va amosar el perfil nin les publicaciones a los usuarios que nun aniciaren la sesión. Ye posible qu'otres aplicaciones nun respeten esta solicitú. Esta opción nun fai que la cuenta seya privada."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr ""
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr ""
msgid "Books"
msgstr "Llibros"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "Restolar más cuentes na páxina «Esploración»"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "Restolar más feeds na páxina «Esploración»"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Restolar más suxerencies"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "Restolar más suxerencies na páxina «Esploración»"
@@ -1214,20 +1405,26 @@ msgstr ""
msgid "Browse starter pack {displayName}"
msgstr ""
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr ""
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Negocios"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "Por «{0}»"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
@@ -1243,44 +1440,51 @@ msgstr "Al crear una cuenta aceptes los <0>términos del serviciu0> y la <1>po
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Al crear una cuenta aceptes los <0>términos del serviciu0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr ""
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Cámara"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Encaboxar"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr ""
msgid "Cancel image crop"
msgstr ""
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Anular la cita"
@@ -1308,8 +1512,7 @@ msgstr "Anular la cita"
msgid "Cancel reactivation and sign out"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr ""
@@ -1317,24 +1520,23 @@ msgstr ""
msgid "Cancels opening the linked website"
msgstr ""
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "Nun se pue interactuar con un usuariu bloquiáu"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Sotítulos (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Sotítulos y testu alternativu"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr ""
@@ -1347,46 +1549,41 @@ msgstr ""
msgid "Change app icon to \"{0}\""
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Camudar la direición de corréu"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Cambéu del identificador"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr ""
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Cambéu de la contraseña"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Confirmación de la direición de corréu"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr ""
@@ -1394,20 +1591,20 @@ msgstr ""
msgid "Changes app icon"
msgstr ""
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr ""
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Charra"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
msgstr ""
@@ -1415,22 +1612,21 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "Silencióse la charra"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr ""
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Configuración de la charra"
@@ -1441,10 +1637,10 @@ msgstr "Configuración de les charres"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "La charra dexó de tar silenciada"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr ""
@@ -1461,7 +1657,7 @@ msgstr ""
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr ""
@@ -1469,7 +1665,7 @@ msgstr ""
msgid "Choose Feeds"
msgstr "Seleición de feeds"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Escoyer por min"
@@ -1477,10 +1673,6 @@ msgstr "Escoyer por min"
msgid "Choose People"
msgstr "Escueyi persones"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Escueyi les etiquetes aplicables al elementu multimedia que tas publicando. Si nun se seleiciona nenguna, esta publicación ye afayadiza pa tolos públicos."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr ""
@@ -1493,27 +1685,31 @@ msgstr ""
msgid "Choose your account provider"
msgstr ""
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "¡Escueyi les llinies temporales que quieras! Feeds creaos pola comunidá que t'ayuden a atopar el conteníu que te presta pola vida."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Escueyi una contraseña"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "L'identificador"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr ""
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr ""
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr ""
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr ""
@@ -1522,6 +1718,14 @@ msgstr ""
msgid "click here"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Calca pa desactivar les cites d'esta publicación."
@@ -1534,7 +1738,7 @@ msgstr "Calca pa activar les cites d'esta publicación."
msgid "Click to open tag menu for {tag}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Calca pa volver unviar el mensaxe que falló"
@@ -1546,24 +1750,34 @@ msgstr "Clima"
msgid "Clip 🐴 clop 🐴"
msgstr "Tocotó 🐴 tocotó 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Zarrar"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Zarrar el diálogu activu"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Zarrar el caxón baxeru"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Zarrar el diálogu"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr ""
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr ""
@@ -1600,7 +1816,13 @@ msgstr "Zarrar la imaxe"
msgid "Close image viewer"
msgstr "Zarrar el visor d'imáxenes"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr ""
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Zarrar esti diálogu"
@@ -1608,8 +1830,12 @@ msgstr "Zarrar esti diálogu"
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr ""
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr ""
@@ -1617,11 +1843,11 @@ msgstr ""
msgid "Closes viewer for header image"
msgstr "Zarra'l visor de la imaxe de la testera"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Contrayer la llista d'usuarios"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Contrái la llista d'usuarios d'una notificación apurrida"
@@ -1644,7 +1870,7 @@ msgstr "Comedia"
msgid "Comics"
msgstr "Cómics"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Pautes de la Comunidá"
@@ -1653,23 +1879,23 @@ msgstr "Pautes de la Comunidá"
msgid "Complete onboarding and start using your account"
msgstr ""
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Completa'l retu"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Comprimiendo'l videu…"
@@ -1681,23 +1907,17 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Configuróse nes <0>opciones de moderación0>."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr ""
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr ""
@@ -1706,26 +1926,27 @@ msgstr ""
msgid "Confirm delete account"
msgstr ""
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr ""
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Códigu de confirmación"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Códigu de confirmación"
@@ -1733,22 +1954,22 @@ msgstr "Códigu de confirmación"
msgid "Connecting..."
msgstr "Conectando…"
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr ""
@@ -1756,15 +1977,15 @@ msgstr ""
msgid "Content Blocked"
msgstr ""
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr ""
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Llingües del conteníu"
@@ -1785,16 +2006,16 @@ msgstr ""
msgid "Content warnings"
msgstr ""
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Siguir"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr ""
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Siguir col filu…"
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Dir al pasu siguiente"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Desanicióse la conversación"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Desanicióse la conversación"
@@ -1826,16 +2047,17 @@ msgstr "Cocina"
msgid "Copied"
msgstr "Copióse"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "La versión de la compilación copióse nel cartafueyu"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Copióse nel cartafueyu"
@@ -1844,25 +2066,29 @@ msgstr "Copióse nel cartafueyu"
msgid "Copied!"
msgstr "¡Copióse!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Copiar"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr ""
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Copiar la contraseña d'aplicación"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr ""
@@ -1871,57 +2097,69 @@ msgstr ""
msgid "Copy code"
msgstr "Copiar el códigu"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Copiar el DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Copiar l'agospiador"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Copiar l'enllaz"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Copiar l'enllaz"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Copiar l'enllaz de la llista"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Copiar l'enllaz de la publicación"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Copiar el testu del mensaxe"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Copiar el testu de la publicación"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Copiar el códigu QR"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "Copiar el valor de rexistru TXT"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Política de derechos d'autor"
@@ -1931,11 +2169,11 @@ msgstr "Política de derechos d'autor"
msgid "Could not leave chat"
msgstr "Nun se pudo colar de la charra"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "Nun se pudo cargar el feed"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "Nun se pudo cargar la llista"
@@ -1947,28 +2185,28 @@ msgstr "Nun se pudo silenciar la charra"
msgid "Could not process your video"
msgstr "Nun se pudo procesar el videu"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Crear"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr ""
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr ""
msgid "Create account"
msgstr "Crear una cuenta"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Creación d'una cuenta"
@@ -1985,11 +2223,16 @@ msgstr "Creación d'una cuenta"
msgid "Create an account"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Crear un avatar"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr ""
@@ -1998,7 +2241,7 @@ msgstr ""
msgid "Create new account"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr ""
@@ -2053,17 +2296,17 @@ msgstr "Mou escuru"
msgid "Dark theme"
msgstr "Estilu escuru"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Data de nacencia"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Desactivación de la cuenta"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr ""
@@ -2079,19 +2322,19 @@ msgstr "La predeterminada"
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Desaniciar"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Desaniciar la cuenta"
@@ -2107,19 +2350,19 @@ msgstr "Desaniciar la contraseña d'aplicación"
msgid "Delete app password?"
msgstr "¿Quies desaniciar la contraseña d'aplicación?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr ""
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr ""
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr ""
@@ -2127,19 +2370,19 @@ msgstr ""
msgid "Delete Conversation"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Desaniciar pa min"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
-msgstr "Desaniciar la llista"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr ""
@@ -2147,26 +2390,26 @@ msgstr ""
msgid "Delete my account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Desaniciar la publicación"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "¿Quies desaniciar el paquete d'iniciación?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "¿Quies desaniciar esta llista?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "¿Quies desaniciar esti artículu?"
@@ -2174,8 +2417,8 @@ msgstr "¿Quies desaniciar esti artículu?"
msgid "Deleted"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr ""
@@ -2183,48 +2426,48 @@ msgstr ""
msgid "Deleted post."
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Descripción"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "La descripción ye mui llonga"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "La descripción ye mui llonga. El númberu máximu de caráuteres ye {DESCRIPTION_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Testu alternativu descriptivu"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Separtar la cita"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "¿Quies separtar la cita?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
msgstr ""
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr ""
@@ -2236,6 +2479,15 @@ msgstr "Diálogu: configura quién pue interactuar con esta publicación"
msgid "Dim"
msgstr "Lleve"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr ""
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr ""
@@ -2254,25 +2506,25 @@ msgstr "Desactivar los sotítulos"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Desactivóse"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Escartar"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "¿Quies escartar los cambeos?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "¿Quies escartar el borrador?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "¿Quies escartar la publicación?"
@@ -2281,24 +2533,24 @@ msgstr "¿Quies escartar la publicación?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr ""
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Descubrimientu de feeds nuevos"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Descubri feeds nuevos"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Escartar l'error"
@@ -2306,6 +2558,10 @@ msgstr "Escartar l'error"
msgid "Dismiss getting started guide"
msgstr ""
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr ""
@@ -2315,27 +2571,27 @@ msgstr ""
msgid "Display larger alt text badges"
msgstr "Amosar los indicadores de testu alternativu más grandes"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Nome visible"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Nome visible"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "El nome visible ye mui llongu"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "El nome visible ye mui llongu. El númberu máximu de caráuteres ye {DISPLAY_NAME_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "Panel de DNS"
@@ -2347,37 +2603,45 @@ msgstr ""
msgid "Does not include nudity."
msgstr "Nun inclúin desnudos."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "Nun comienza nin acaba per un guión"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "¡Verificóse'l dominiu!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Fecho"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Fecho"
msgid "Done{extraText}"
msgstr ""
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr ""
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr ""
@@ -2413,23 +2681,23 @@ msgstr ""
msgid "Duration:"
msgstr "Duración:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "p. exem. alicia"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr ""
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "p. exem. Alicia Hevia"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "p. exem. alicia.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "p. exem. Artista, amante de los animales y adicta a los llibros."
@@ -2437,19 +2705,19 @@ msgstr "p. exem. Artista, amante de los animales y adicta a los llibros."
msgid "E.g. artistic nudes."
msgstr "p. exem. desnudos artísticos."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "p. exem. Perfiles de spam"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "p. exem. Usuarios que respuenden de contino con anuncios."
@@ -2457,20 +2725,21 @@ msgstr "p. exem. Usuarios que respuenden de contino con anuncios."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Editar"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Editar"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Editar l'avatar"
@@ -2478,31 +2747,41 @@ msgstr "Editar l'avatar"
msgid "Edit Feeds"
msgstr "Editar los feeds"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Editar la imaxe"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Editar la configuración de les interaiciones"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Editar los detalles de la llista"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr ""
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Edición de los mios feeds"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Edición del mio perfil"
@@ -2515,23 +2794,23 @@ msgstr "Edición de les persones"
msgid "Edit post interaction settings"
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Edición del perfil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Editar el perfil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Edición de la llista d'usuarios"
@@ -2539,15 +2818,15 @@ msgstr "Edición de la llista d'usuarios"
msgid "Edit who can reply"
msgstr ""
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr ""
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr ""
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr ""
@@ -2560,9 +2839,8 @@ msgstr "Educación"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "Direición de corréu"
@@ -2583,19 +2861,16 @@ msgstr "Direición de corréu electrónicu"
msgid "Email Resent"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
msgstr ""
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
@@ -2608,8 +2883,8 @@ msgstr ""
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Incrustar la publicación"
@@ -2617,12 +2892,13 @@ msgstr "Incrustar la publicación"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Incrusta esta publicación nel to sitiu web. Namás copia'l fragmentu de testu siguiente y apiégalu nel códigu HTML del sitiu web."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr ""
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Activar"
@@ -2630,12 +2906,12 @@ msgstr "Activar"
msgid "Enable {0} only"
msgstr "Activar namás «{0}»"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Activar el conteníu p'adultos"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:81
@@ -2660,30 +2936,30 @@ msgstr ""
msgid "Enable this source only"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr ""
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Activóse"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Fin del feed"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr ""
@@ -2696,14 +2972,15 @@ msgstr ""
msgid "Enter a word or tag"
msgstr "Introduz una pallabra o etiqueta"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
msgid "Enter Code"
msgstr "Introducción d'un códigu"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr ""
-
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
msgstr ""
@@ -2712,7 +2989,7 @@ msgstr ""
msgid "Enter the code you received to change your password."
msgstr "Introduz el códigu que recibiesti pa camudar la contraseña."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Introduz el dominiu que quies usar"
@@ -2720,20 +2997,20 @@ msgstr "Introduz el dominiu que quies usar"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Introduz la direición de corréu electrónicu qu'usesti pa crear la cuenta. Vamos unviate un «códigu de restauración» pa que puedas afitar una contraseña nueva."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Introduz la to direición de corréu electrónicu"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr ""
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Introduz abaxo la to direición de corréu nueva."
@@ -2749,7 +3026,11 @@ msgstr "Introduz l'identificador y la contraseña de to"
msgid "Enters full screen"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Error"
@@ -2758,15 +3039,18 @@ msgstr "Error"
msgid "Error occurred while saving file"
msgstr "Prodúxose un error mentanto se guardaba'l ficheru"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Error:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Tol mundu"
@@ -2818,30 +3102,22 @@ msgstr ""
msgid "Exits image view"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr ""
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr ""
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -2864,6 +3140,10 @@ msgstr ""
msgid "Expires in {0}"
msgstr ""
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr ""
msgid "Explicit sexual images."
msgstr "Imáxenes sexuales esplícites."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Esportar los mios datos"
@@ -2882,8 +3169,8 @@ msgstr "Esportar los mios datos"
msgid "Export My Data"
msgstr "Esportación de los mios datos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "Conteníu multimedia esternu"
@@ -2897,17 +3184,22 @@ msgstr "Conteníu multimedia esternu"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "El conteníu multimedia esternu pue permitir que los sitios web recueyan información de ti y del preséu. Nun s'unvia nin se solicita nenguna información hasta que nun primas el botón «Reproducir»."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Preferencies del conteníu multimedia esternu"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "El cambéu del identificador falló. Volvi tentalo."
@@ -2915,7 +3207,7 @@ msgstr "El cambéu del identificador falló. Volvi tentalo."
msgid "Failed to create app password. Please try again."
msgstr "La creación de la contraseña d'aplicación falló. Volvi tentalo."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr ""
@@ -2924,35 +3216,37 @@ msgstr ""
msgid "Failed to create starter pack"
msgstr "La creación del paquete d'iniciación falló"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "La creación de la llista falló. Comprueba la conexón a internet y volvi tentalo."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "El desaniciu del mensaxe falló"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "El desaniciu de la publicación falló. Volvi tentalo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "El desaniciu del paquete d'iniciación falló"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "La carga de les preferencies de los feeds falló"
@@ -2964,17 +3258,19 @@ msgstr "La carga de los GIFs falló"
msgid "Failed to load past messages"
msgstr "La carga de los mensaxes anteriores falló"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "La carga de los feeds suxeríos falló"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "La carga de los perfiles suxeríos falló"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr ""
@@ -2982,7 +3278,16 @@ msgstr ""
msgid "Failed to pin post"
msgstr "Nun se pudo fixar la publicación"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr ""
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Nun se pudo guardar la imaxe: {0}"
@@ -2994,20 +3299,39 @@ msgstr "Nun se pudo guardar les preferencies de los avisos. Volvi tentalo"
msgid "Failed to save settings. Please try again."
msgstr ""
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "L'unviu falló"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "L'unviu de l'apellación falló. Volvi tentalo."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr ""
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "L'anovamientu de los feeds falló"
@@ -3022,20 +3346,24 @@ msgstr "L'anovamientu de la configuración falló"
msgid "Failed to upload video"
msgstr "La xuba del videu falló"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "La verificación del identificador falló. Volvi tentalo."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Feed"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Feed de {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr ""
@@ -3043,26 +3371,26 @@ msgstr ""
msgid "Feed toggle"
msgstr ""
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Opinar"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "¡Unvióse la opinión!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Feeds"
@@ -3070,13 +3398,13 @@ msgstr "Feeds"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Los feeds son algoritmos personalizaos que los usuarios creen con poco conocimientu de programación. <0/> pa consiguir más información."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "¡Anováronse los feeds!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr ""
@@ -3092,11 +3420,11 @@ msgstr "¡El ficheru guardóse correutamente!"
msgid "Filter from feeds"
msgstr ""
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr ""
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr ""
@@ -3110,13 +3438,13 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "Atopar cuentes pa siguir"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr ""
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
@@ -3148,11 +3476,11 @@ msgid "Flexible"
msgstr "Flexible"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Siguir"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Siguir"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr ""
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr ""
msgid "Follow 7 accounts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Siguir tamién"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Siguir tamién"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "Sigui más cuentes pa conectar lo que t'interesa y crear una rede personal."
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr ""
@@ -3224,7 +3544,7 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Siguidores de @{0} que conoces"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Siguidores que conoces"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Siguiendo"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr ""
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Preferencies del feed «Siguiendo»"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Preferencies del feed «Siguiendo»"
@@ -3301,6 +3617,10 @@ msgstr "Por motivos de seguranza, nun vas ser a volver vela. Si pierdes esta con
msgid "For the best experience, we recommend using the theme font."
msgstr "Pa tener la meyor esperiencia, aconseyamos usar la fonte del estilu."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Siempre"
@@ -3327,7 +3647,7 @@ msgstr "Publica conteníu non deseáu frecuentemente"
msgid "From @{sanitizedAuthor}"
msgstr "De @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr ""
@@ -3336,28 +3656,30 @@ msgstr ""
msgid "Gallery"
msgstr "Galería"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Xeneración d'un paquete d'iniciación"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "Comenzar"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr ""
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Comienzu"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Pon cara al perfil"
@@ -3366,17 +3688,17 @@ msgstr "Pon cara al perfil"
msgid "Glaring violations of law or terms of service"
msgstr "Incumplimientos evidentes de la llei o de los términos del serviciu"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Dir p'atrás"
@@ -3384,10 +3706,10 @@ msgstr "Dir p'atrás"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Dir p'atrás"
@@ -3408,7 +3730,27 @@ msgstr ""
msgid "Go Home"
msgstr "Dir al aniciu"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr ""
@@ -3427,8 +3769,8 @@ msgstr "Dir al perfil del usuariu"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Conteníu gráficu"
@@ -3437,21 +3779,21 @@ msgstr "Conteníu gráficu"
msgid "Half way there!"
msgstr "¡Tas a metá de camín!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Identificador"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "L'identificador yá ta asignáu. Prueba con otru."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "¡L'identificador camudó!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "L'identificador ye mui llongu. Prueba con otru."
@@ -3464,7 +3806,7 @@ msgstr "Función háptica"
msgid "Harassment, trolling, or intolerance"
msgstr "Acosu, troléu o intolerancia"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Etiqueta"
@@ -3472,19 +3814,24 @@ msgstr "Etiqueta"
msgid "Hashtag {tag}"
msgstr ""
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "¿Tienes dalgún problema?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Ayuda"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Ayuda a que les persones sepan que nun yes un robó xubiendo una semeya o creando un avatar."
@@ -3497,7 +3844,7 @@ msgstr "¡Equí tienes la contraseña d'aplicación!"
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr ""
@@ -3509,18 +3856,17 @@ msgstr ""
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Esconder"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Esconder"
@@ -3529,38 +3875,40 @@ msgstr "Esconder"
msgid "Hide customization options"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Escondeme la publicación"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Esconder la rempuesta pa tol mundu"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Escondeme la rempuesta"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "¿Quies esconder esta publicación?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "¿Quies esconder esta rempuesta?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr ""
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "¿Quies esconder los temes en tendencia?"
@@ -3569,10 +3917,15 @@ msgstr "¿Quies esconder los temes en tendencia?"
msgid "Hide trending videos?"
msgstr "¿Quies esconder los vídeos en tendencia?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Esconder la llista d'usuarios"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "Umm… El sirvidor del feed fornió una rempuesta incorreuta. Coménta-y
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Umm… Tenemos problemes p'atopar esti feed. Ye posible que lu desaniciaren."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Umm… Paez que tenemos problemes pa cargar estos datos. Consulta abaxo los detalles y si sigue'l problema, ponte en contautu con nós."
@@ -3610,15 +3963,15 @@ msgstr "Umm… Nun pudimos cargar el serviciu de moderación."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Aniciu"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "Agospiador:"
@@ -3627,34 +3980,33 @@ msgstr "Agospiador:"
msgid "Hosting provider"
msgstr "Agospiador"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr ""
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "Les rempuestes más populares primero"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "¿Cómo habríemos abrir esti enllaz?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Tengo un códigu"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Tengo un códigu"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Tengo un códigu de confirmación"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Tengo un dominiu propiu"
@@ -3667,22 +4019,30 @@ msgstr "Entiéndolo"
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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 "Entá nun yes una persona adulta según les lleis del to país, el to tutor llegal ha lleer estos términos nel to nome."
-#: src/view/screens/ProfileList.tsx:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "Si desanicies esta llista, nun vas ser a recuperala."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Si tienes un dominiu pues usalu como identificador. Esto permítete verificar la to identidá. <0>Conoz más equí.0>"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Si quites esta publicación, nun vas ser a recuperala."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr ""
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Si quies camudar la contraseña, vamos unviate un códigu pa verificar qu'esta cuenta ye de to."
@@ -3704,9 +4064,22 @@ msgstr "Illegal y urxente"
msgid "Image"
msgstr "Imaxe"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "¡La imaxe guardóse nel carrete!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr ""
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr ""
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr ""
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "Enllaces esplícitos o mensaxes que nun son afayadizos"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr ""
@@ -3752,15 +4125,11 @@ msgstr ""
msgid "Input the code which has been emailed to you"
msgstr ""
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr ""
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Llendóse la interaición"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr ""
@@ -3769,11 +4138,11 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "L'identificador ye inválidu. Prueba con otru."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr ""
@@ -3789,11 +4158,11 @@ msgstr ""
msgid "Invite a Friend"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Códigu d'invitación"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Refugóse'l códigu d'invitación. Comprueba que lu introduxeres correutamente y volvi tentalo."
@@ -3805,7 +4174,7 @@ msgstr "Códigos d'invitación: {0} disponibles"
msgid "Invite codes: 1 available"
msgstr "Códigos d'invitación: 1 disponible"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr ""
@@ -3817,7 +4186,7 @@ msgstr ""
msgid "Invites, but personal"
msgstr "Invitaciones, mas personales"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr ""
@@ -3825,19 +4194,19 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "¡Namás tas tu! Amiesta más persones al paquete d'iniciación buscando arriba."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "ID de trabayu: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Trabayu"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr ""
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr ""
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Etiquetes"
@@ -3868,7 +4237,7 @@ msgstr "Etiquetes"
msgid "Labels added"
msgstr "Amestáronse les etiquetes"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr ""
@@ -3884,13 +4253,13 @@ msgstr ""
msgid "Language selection"
msgstr "Seleición de llingua"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Configuración de llingua"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Llingües"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Grande"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "Lo último"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "saber más"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Saber más tocante a Bluesky"
@@ -3933,6 +4311,11 @@ msgstr "Saber más tocante a la moderación que s'aplicó a esti conteníu."
msgid "Learn more about this warning"
msgstr "Saber más tocante a esta alvertencia"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr ""
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr ""
msgid "left to go."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Dexame escoyer"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Claru"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "Dar préstame"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -4013,17 +4397,16 @@ msgstr "10 préstames"
msgid "Like 10 posts to train the Discover feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr ""
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "A quién-y prestó"
@@ -4033,43 +4416,43 @@ msgstr "A quién-y prestó"
msgid "Liked By"
msgstr "A quién-y prestó"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "{0, plural, one {Prestó-y a # usuariu} other {Prestó-yos a # usuarios}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "{likeCount, plural, one {Prestó-y a # usuariu} other {Prestó-yos a # usuarios}}"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "Préstames"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "Préstames d'esta publicación"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "Socesión llinial"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Avatar de la llista"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "Bloquióse la llista"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4084,7 +4467,7 @@ msgstr ""
msgid "List by you"
msgstr ""
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
msgstr ""
@@ -4093,35 +4476,35 @@ msgstr ""
msgid "List has been hidden"
msgstr ""
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr ""
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Nome de la llista"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
msgstr ""
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Llistes"
@@ -4129,34 +4512,47 @@ msgstr "Llistes"
msgid "Lists blocking this user:"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr ""
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr ""
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Cargar más"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "Cargar más feeds suxeríos"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Cargar más perfiles suxeríos"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Cargar los avisos nuevos"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Cargar les publicaciones nueves"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Cargando…"
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Rexistru"
@@ -4164,12 +4560,12 @@ msgstr "Rexistru"
msgid "Logged-out visibility"
msgstr ""
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logotipu de <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "Paez que lliberesti tolos feeds. Por embargu, nun t'esmolezas porque aba
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "Crear unu por min"
@@ -4201,18 +4601,22 @@ msgstr "Crear unu por min"
msgid "Make sure this is where you intend to go!"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "Xestionar los feeds guardaos"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr ""
@@ -4221,16 +4625,23 @@ msgstr ""
msgid "Mark as read"
msgstr "Marcar como lleíu"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr ""
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Conteníu multimedia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Elementos multimedia que puen molestar o nun ser afayadizos pa dalgunos públicos."
@@ -4246,23 +4657,27 @@ msgstr "Usuarios mentaos"
msgid "Mentions"
msgstr "Menciones"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Menú"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Desanicióse'l mensaxe"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Desanicióse'l mensaxe"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr ""
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Mensaxe del sirvidor: {0}"
@@ -4276,7 +4691,11 @@ msgstr ""
msgid "Message is too long"
msgstr "El mensaxe ye mui llongu"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr ""
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Mensaxes"
@@ -4295,10 +4714,10 @@ msgstr "Cuenta engañosa"
msgid "Misleading Post"
msgstr "Publicación engañosa"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Moderación"
@@ -4320,22 +4739,22 @@ msgstr ""
msgid "Moderation list by you"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "Creóse la llista de moderación"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "Anovóse la llista de moderación"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Llistes de moderación"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Llistes de moderación"
@@ -4343,11 +4762,11 @@ msgstr "Llistes de moderación"
msgid "moderation settings"
msgstr ""
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr ""
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Ferramientes de moderación"
@@ -4356,7 +4775,7 @@ msgstr "Ferramientes de moderación"
msgid "Moderator has chosen to set a general warning on the content."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Más"
@@ -4365,9 +4784,9 @@ msgstr "Más"
msgid "More feeds"
msgstr "Más feeds"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Más opciones"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "Lo que más presta primero"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Les rempuestes que más prestaron primero"
@@ -4400,14 +4819,14 @@ msgstr "Desactivar el volume"
msgid "Mute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr ""
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr ""
@@ -4420,11 +4839,11 @@ msgstr "Silenciar la conversación"
msgid "Mute in:"
msgstr "Silenciar en:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr ""
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr ""
@@ -4452,26 +4871,26 @@ msgstr ""
msgid "Mute this word until you unmute it"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Silenciar el filu"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Silenciar pallabres y etiquetes"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Cuentes silenciaes"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Cuentes silenciaes"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr ""
@@ -4479,11 +4898,11 @@ msgstr ""
msgid "Muted by \"{0}\""
msgstr ""
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Pallabres y etiquetes silenciaes"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr ""
@@ -4492,15 +4911,15 @@ msgstr ""
msgid "My Birthday"
msgstr "El mio aniversariu"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "Los mios feeds"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Nome"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "El nome ye obligatoriu"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Natura"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr ""
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr ""
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "¿Precises camudala?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "¿Precises informar d'un incumplimientu de derechos d'autor?"
@@ -4547,30 +4971,43 @@ msgstr "¿Precises informar d'un incumplimientu de derechos d'autor?"
msgid "Never lose access to your followers or data."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "Crear un identificador"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Nueva"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Nueva"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "Charra nueva"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "Identificador nuevu"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "Llista nueva"
@@ -4578,7 +5015,7 @@ msgstr "Llista nueva"
msgid "New messages"
msgstr "Mensaxes nuevos"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Llista de moderación nueva"
@@ -4590,12 +5027,12 @@ msgstr "Contraseña nueva"
msgid "New Password"
msgstr "Contraseña nueva"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Publicación nueva"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "Publicación nueva"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Publicación nueva"
@@ -4613,19 +5050,20 @@ msgstr "Publicación nueva"
msgid "New user info dialog"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Llista d'usuarios nueva"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "Les rempuestes nueves primero"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Noticies"
@@ -4655,11 +5093,15 @@ msgstr "Imaxe siguiente"
msgid "No app passwords yet"
msgstr "Nun hai nenguna contraseña d'aplicación"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "Ensin panel de DNS"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "Nun s'atopó nengún GIF destacáu. Pue haber dalgún problema con Tenor."
@@ -4668,21 +5110,25 @@ msgstr "Nun s'atopó nengún GIF destacáu. Pue haber dalgún problema con Tenor
msgid "No feeds found. Try searching for something else."
msgstr "Nun s'atopó nengún feed. Prueba a buscar otra cosa."
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr ""
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "Nun hai nengún préstame"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "Yá nun sigues a {0}"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "Nun hai nengún mensaxe"
@@ -4711,31 +5157,38 @@ msgstr "Nun hai nenguna cita"
msgid "No reposts yet"
msgstr "Nun hai nenguna republicación"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Nun hai nengún resultáu"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "Nun hai nengún resultáu"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr ""
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "Nun s'atopó nengún resultáu"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "Nun s'atopó nengún resultáu pa: {query}"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "Nun s'atopó nengún resultáu pa: {query}"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "Nun s'atopó nengún resultáu de busca pa «{search}»."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Naide"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr ""
@@ -4775,19 +5227,15 @@ msgstr ""
msgid "Not followed by anyone you're following"
msgstr ""
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "Nun s'atopó"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "Agora non"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Nota sobre compartir"
@@ -4795,7 +5243,7 @@ msgstr "Nota sobre compartir"
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr ""
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Equí nun hai nada"
@@ -4803,7 +5251,7 @@ msgstr "Equí nun hai nada"
msgid "Notification filters"
msgstr ""
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr ""
@@ -4820,11 +5268,11 @@ msgstr "Soníos d'avisu"
msgid "Notification Sounds"
msgstr "Soníos d'avisu"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Avisos"
@@ -4832,12 +5280,12 @@ msgstr "Avisos"
msgid "now"
msgstr "agora"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Agora"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Desnudos"
@@ -4859,21 +5307,23 @@ msgstr "¡Oh, non!"
msgid "Oh no! Something went wrong."
msgstr "¡Meca! Prodúxose dalgún error."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "D'acuerdu"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "Les rempuestes antigües primero"
@@ -4881,19 +5331,19 @@ msgstr "Les rempuestes antigües primero"
msgid "on<0><1/><2><3/>2>0>"
msgstr ""
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "A unu o más GIFs fálta-yos el testu alternativu."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "A una o más imáxenes fálta-yos el testu alternativu."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "A unu o más vídeos fálta-yos el testu alternativu."
@@ -4905,11 +5355,11 @@ msgstr "Namás son compatibles los ficheros .jpg y .png"
msgid "Only {0} can reply."
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Contién namás lletres, númberos y guiones"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr ""
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "¡Meca! Prodúxose dalgún error."
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "¡Meca!"
@@ -4935,67 +5385,80 @@ msgstr "¡Meca!"
msgid "Open"
msgstr "Abiertu"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr ""
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Abrir el creador d'avatares"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr ""
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Abrir el selector de fustaxes"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr ""
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr ""
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr ""
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr ""
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr ""
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr ""
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr ""
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr ""
@@ -5015,19 +5478,19 @@ msgstr "Abre un diálogu pa escoyer quién pue responder a esti filu"
msgid "Opens additional details for a debug entry"
msgstr "Abre los detalles adicionales d'una entrada de depuración"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Abre la cámara del preséu"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr ""
@@ -5039,7 +5502,7 @@ msgstr "Abre'l compositor"
msgid "Opens device photo gallery"
msgstr "Abre la galería de semeyes del preséu"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr ""
@@ -5057,7 +5520,7 @@ msgstr ""
msgid "Opens GIF select dialog"
msgstr "Abre'l diálogu de seleición de GIFs"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr ""
@@ -5065,6 +5528,10 @@ msgstr ""
msgid "Opens list of invite codes"
msgstr "Abre la llista de códigos d'invitación"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr ""
@@ -5073,12 +5540,12 @@ msgstr ""
msgid "Opens the linked website"
msgstr "Abre'l sitiu web enllaciáu"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Abre esti perfil"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Abre'l selector de vídeos"
@@ -5121,11 +5588,11 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Otru tipu"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Otra cuenta"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Nun s'atopó la páxina"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr ""
msgid "Pause video"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "Persones"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "Persones siguíes por @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "Persones que siguen a @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "El permisu p'acceder al carrete ye obligatoriu."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "Negóse'l permisu p'acceder al carrete. Actívalu na configuración del sistema."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr ""
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "Animales de compaña"
msgid "Photography"
msgstr "Fotografía"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Semeyes destinaes a adultos."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr "Fixar"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "Fixar el feed"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr "Fixa'l feed de vídeos en tendencia na pantalla d'aniciu p'acceder fácilmente a ellos"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr ""
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Fixar nel aniciu"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Fixar nel aniciu"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Fixar nel to perfil"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Fixóse"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "Fixesti «{0}» nel aniciu"
@@ -5263,7 +5722,7 @@ msgstr "Fixesti «{0}» nel aniciu"
msgid "Pinned Feeds"
msgstr "Feeds fixaos"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr ""
@@ -5302,24 +5761,28 @@ msgstr "Reproduz el GIF"
msgid "Plays the video"
msgstr ""
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr ""
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Escueyi un identificador."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Escueyi una contraseña."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr ""
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Completa'l captcha de verificación."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Confirma la to direición de corréu enantes de camudala. Esti requerimientu, que va quitase pronto, ye temporal mentanto s'amiesten les ferramientes p'anovar direiciones de corréu."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr ""
@@ -5335,19 +5798,41 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Introduz un nome únicu pa esta contraseña d'aplicación o usa'l xeneráu aleatoriamente."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr ""
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr ""
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Introduz la to direición de corréu eletrónicu."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Introduz el to códigu d'invitación."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr ""
@@ -5381,24 +5866,25 @@ msgstr ""
msgid "Please sign in as @{0}"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr ""
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Política"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr "Los vídeos que son populares na to rede."
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Pornu"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Publicar"
@@ -5408,23 +5894,23 @@ msgctxt "description"
msgid "Post"
msgstr "Publicar"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Publicar too"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr ""
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
msgstr ""
@@ -5433,7 +5919,7 @@ msgstr ""
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "La xuba de la publicación falló. Comprueba la conexón a internet y volvi tentalo."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr ""
@@ -5455,7 +5941,7 @@ msgstr ""
msgid "Post interaction settings"
msgstr "Configuración de les interaiciones de la publicación"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr ""
@@ -5476,15 +5962,16 @@ msgstr "Nun s'atopó la publicación"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "Fixóse la publicación"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "Lliberóse la publicación"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Publicaciones"
@@ -5503,7 +5990,7 @@ msgstr "Enllaz potencialmente engañosu"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "Guardóse la preferencia"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -5524,7 +6011,7 @@ msgstr "Primi pa ver los siguidores d'esta cuenta que tamién te siguen"
msgid "Previous image"
msgstr "Imaxe anterior"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Llingua primaria"
@@ -5537,31 +6024,31 @@ msgstr ""
msgid "Priority notifications"
msgstr "Avisos prioritarios"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Privacidá"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "Privacidá y seguranza"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Privacidá y seguranza"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Política de privacidá"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Procesando'l videu…"
@@ -5570,23 +6057,23 @@ msgstr "Procesando'l videu…"
msgid "Processing..."
msgstr "Procesando…"
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Perfil"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "Anovóse'l perfil"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
@@ -5600,6 +6087,26 @@ msgstr ""
msgid "Public, sharable lists which can be used to drive feeds."
msgstr ""
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr ""
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr ""
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr ""
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr ""
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "¡El códigu QR copióse nel cartafueyu!"
@@ -5612,25 +6119,25 @@ msgstr ""
msgid "QR code saved to your camera roll!"
msgstr "¡El códigu QR guardóse nel carrete!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Citar"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "La cita volvió axuntase"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "La cita separtóse correutamente"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "Desactiváronse les cites"
@@ -5642,39 +6149,48 @@ msgstr "Configuración de les cites"
msgid "Quotes"
msgstr "Cites"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "Cites d'esta publicación"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Aleatories (como la ruleta d'un casinu)"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr ""
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr ""
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr ""
@@ -5697,11 +6213,11 @@ msgstr ""
msgid "Reason:"
msgstr "Motivu:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Busques de recién"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr ""
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr ""
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Volver cargar les conversaciones"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Quitar"
msgid "Remove {displayName} from starter pack"
msgstr ""
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr ""
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Quitar la cuenta"
@@ -5752,13 +6268,13 @@ msgstr "Quitar la cuenta"
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Quitar l'avatar"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr ""
@@ -5776,24 +6292,25 @@ msgstr ""
msgid "Remove feed?"
msgstr "¿Quies quitar el feed?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Quitar de los mios feeds"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr ""
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr ""
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr ""
@@ -5802,11 +6319,16 @@ msgstr ""
msgid "Remove image"
msgstr ""
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr ""
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr ""
@@ -5814,12 +6336,12 @@ msgstr ""
msgid "Remove quote"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Quitar la republicación"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr ""
@@ -5827,6 +6349,21 @@ msgstr ""
msgid "Remove this feed from your saved feeds"
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr ""
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr ""
@@ -5835,7 +6372,7 @@ msgstr ""
msgid "Removed by you"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Quitóse de la llista"
@@ -5845,18 +6382,17 @@ msgid "Removed from my feeds"
msgstr "Quitóse de los mios feeds"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Quitóse de los feeds guardaos"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Quitóse de los tos feeds"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
msgstr ""
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
@@ -5868,7 +6404,7 @@ msgstr ""
msgid "Replace with Discover"
msgstr ""
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Rempuestes"
@@ -5880,12 +6416,13 @@ msgstr ""
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Responder"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -5907,86 +6444,86 @@ msgstr "Configuración de les rempuestes"
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr ""
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "En rempuesta a <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr ""
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr ""
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Respondióte"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "Anovóse la visibilidá de les rempuestes"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "La rempuesta escondióse correutamente"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Informar de la conversación"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Informar del feed"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Informar de la publicación"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr ""
@@ -6030,25 +6567,26 @@ msgstr ""
msgid "Report this user"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Republicar"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Republicar"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Reespubluzar o citar"
@@ -6056,27 +6594,27 @@ msgstr "Reespubluzar o citar"
msgid "Reposted By"
msgstr "Quién republicó"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "{0} republicó"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "<0><1/>0> republicó"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "Republiquesti"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "Republicaciones d'esta publicación"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "Solicitar el cambéu"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr ""
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6088,11 +6626,11 @@ msgstr "Solicitar un códigu"
msgid "Require alt text before posting"
msgstr "Riquir un testu alternativu enantes de publicar"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr ""
@@ -6100,13 +6638,19 @@ msgstr ""
msgid "Required in your region"
msgstr ""
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr ""
@@ -6123,8 +6667,8 @@ msgstr ""
msgid "Reset Code"
msgstr ""
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr ""
@@ -6141,16 +6685,16 @@ msgstr ""
msgid "Retries the last action, which errored out"
msgstr "Volvi tentar la última aición, la que produxo l'error"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "Volvi tentar la última aición, la que produxo l'error"
msgid "Retry"
msgstr "Retentar"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr ""
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr ""
@@ -6175,11 +6719,11 @@ msgstr ""
msgid "Returns to home page"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr ""
@@ -6190,24 +6734,26 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Guardar"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Guardar"
@@ -6221,12 +6767,12 @@ msgstr ""
msgid "Save changes"
msgstr "Guardar los cambeos"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Guardar los cambeos"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr ""
@@ -6234,16 +6780,16 @@ msgstr ""
msgid "Save image crop"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Guardar l'identificador nuevu"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Guardar nos mios feeds"
@@ -6251,16 +6797,12 @@ msgstr "Guardar nos mios feeds"
msgid "Saved Feeds"
msgstr "Feeds guardaos"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "Guardóse nel carrete"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "Guardóse nos tos feeds"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr ""
@@ -6270,8 +6812,8 @@ msgstr ""
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "¡Saluda!"
@@ -6280,45 +6822,42 @@ msgstr "¡Saluda!"
msgid "Science"
msgstr "Ciencia"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Buscar"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr ""
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "Buscar nos feeds"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr ""
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Buscar «{query}»"
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr ""
@@ -6326,29 +6865,33 @@ msgstr ""
msgid "Search for feeds that you want to suggest to others."
msgstr "Busca feeds que quieras suxerir a otres persones."
-#: src/view/screens/Search/Search.tsx:875
-msgid "Search for posts, users, or feeds"
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Buscar usuarios"
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr ""
+
+#: src/screens/Search/Shell.tsx:334
+msgid "Search for posts, users, or feeds"
+msgstr ""
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr ""
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr ""
@@ -6356,16 +6899,20 @@ msgstr ""
msgid "Search Tenor"
msgstr "Buscar en Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr ""
@@ -6385,7 +6932,7 @@ msgstr ""
msgid "See #{tag} posts by user"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr ""
@@ -6405,6 +6952,10 @@ msgstr ""
msgid "Select account"
msgstr ""
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr ""
@@ -6413,10 +6964,22 @@ msgstr ""
msgid "Select an emoji"
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr ""
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr ""
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Seleiciona una cuenta esistente"
@@ -6433,15 +6996,15 @@ msgstr ""
msgid "Select how long to mute this word for."
msgstr ""
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Seleicionar llingües"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr ""
@@ -6449,6 +7012,10 @@ msgstr ""
msgid "Select moderator"
msgstr ""
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr ""
msgid "Select the moderation service(s) to report to"
msgstr "Seleiciona los servicios de moderación a los que quies informar"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr ""
@@ -6470,23 +7037,24 @@ msgstr ""
msgid "Select what content this mute word should apply to."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Seleiciona qué llingües quies qu'incluyan los feeds a los que te soscribiesti. Si nun seleiciones nenguna, van amosase toles llingües."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "Seleiciona la llingua que prefieres pa les traducciones del feed."
@@ -6498,19 +7066,17 @@ msgstr ""
msgid "Send a neat website!"
msgstr "¡Unvia un sitiu web curiosu!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Unviar el mensaxe de confirmación"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr ""
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Unviar un mensaxe per corréu electrónicu"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr ""
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr ""
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr ""
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Unviar la publicación a…"
@@ -6544,17 +7114,20 @@ msgstr "Unviar l'informe"
msgid "Send report to {0}"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Unviar per mensaxe direutu"
@@ -6570,7 +7143,7 @@ msgstr "Direición del sirvidor"
msgid "Set app icon to {0}"
msgstr ""
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr ""
@@ -6586,10 +7159,10 @@ msgstr ""
msgid "Sets email for password reset"
msgstr ""
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Configuración"
@@ -6598,7 +7171,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Actividá sexual o desnudos eróticos."
@@ -6606,21 +7179,15 @@ msgstr "Actividá sexual o desnudos eróticos."
msgid "Sexually Suggestive"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Compartir"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Compartir"
@@ -6633,15 +7200,19 @@ msgstr "¡Comparti una historia interesante!"
msgid "Share a fun fact!"
msgstr "¡Comparti un fechu graciosu!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Compartir de toes toes"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr ""
@@ -6650,32 +7221,46 @@ msgstr ""
msgid "Share Link"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Compartir el códigu QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "Comparti esti paquete d'iniciación y ayuda a la xente a xunise a la to comunidá en Bluesky."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr ""
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "¡Comparti'l to feed preferíu!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr ""
@@ -6685,7 +7270,7 @@ msgstr "Comparte'l sitiu web enllaciáu"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Amosar"
@@ -6696,8 +7281,8 @@ msgstr "Amosar el testu alternativu"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Amosar de toes toes"
@@ -6718,8 +7303,8 @@ msgstr ""
msgid "Show hidden replies"
msgstr "Amosar les rempuestes escondíes"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "Amosar menos d'esto"
@@ -6727,14 +7312,14 @@ msgstr "Amosar menos d'esto"
msgid "Show list anyway"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Amosar más"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Amosar más d'esto"
@@ -6752,7 +7337,7 @@ msgstr "Amosar les cites"
msgid "Show replies"
msgstr "Amosar les rempuestes"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "Amosar les rempuestes como"
@@ -6764,8 +7349,8 @@ msgstr ""
msgid "Show replies by people you follow before all other replies"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr ""
@@ -6787,11 +7372,11 @@ msgstr ""
msgid "Show warning and filter from feeds"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr ""
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr ""
@@ -6809,8 +7394,8 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr ""
msgid "Sign in"
msgstr "Aniciar la sesión"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr ""
@@ -6826,16 +7411,16 @@ msgstr ""
msgid "Sign in as..."
msgstr "Aniciar la sesión como…"
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr ""
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "¡Anicia la sesión o crea una cuenta pa xunite a la conversación!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr ""
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr ""
@@ -6843,15 +7428,15 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Zarrar la sesión"
@@ -6859,8 +7444,8 @@ msgstr "Zarrar la sesión"
msgid "Sign Out"
msgstr ""
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "¿Quies zarrar la sesión?"
@@ -6874,11 +7459,6 @@ msgstr ""
msgid "Signed in as @{0}"
msgstr "Aniciesti la sesión como @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr ""
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Cuentes asemeyaes"
@@ -6896,12 +7476,21 @@ msgstr ""
msgid "Smaller"
msgstr "Pequeña"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr ""
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr ""
@@ -6909,23 +7498,31 @@ msgstr ""
msgid "Some people can reply"
msgstr "Dalgunes persones puen responder"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Prodúxose dalgún error"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Prodúxose dalgún error, volvi tentalo"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Prodúxose dalgún error, volvi tentalo."
@@ -6934,16 +7531,16 @@ msgstr "Prodúxose dalgún error, volvi tentalo."
msgid "Something went wrong!"
msgstr "¡Prodúxose dalgún error!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "¿Hai daqué mal? Coméntanoslo."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "La sesión caducó. Volvi aniciala."
@@ -6978,34 +7575,39 @@ msgstr ""
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Deportes"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Charra nueva"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr ""
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "Amestar persones"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr ""
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Paquete d'iniciación"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr ""
@@ -7013,38 +7615,39 @@ msgstr ""
msgid "Starter pack by <0/>"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "El paquete d'iniciación ye inválidu"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "Paquetes d'iniciación"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Los paquetes d'iniciación déxente compartir fácilmente los feeds y les persones que prefieres coles amistaes."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Páxina d'estáu"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "Pasu {0} de {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "Borróse l'almacenamientu y agora tienes de reaniciar l'aplicación."
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr ""
@@ -7063,46 +7666,51 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr ""
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr ""
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
-msgstr "Cuentes suxeríes"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
+msgstr ""
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Suxerencies pa ti"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Suxerente"
@@ -7116,16 +7724,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr ""
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Cambiar de cuenta"
@@ -7134,11 +7742,11 @@ msgstr "Cambiar de cuenta"
msgid "Switch Account"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr ""
@@ -7149,9 +7757,9 @@ msgstr ""
msgid "System"
msgstr "Del sistema"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Rexistru del sistema"
@@ -7159,6 +7767,12 @@ msgstr "Rexistru del sistema"
msgid "Tags only"
msgstr "Namás etiquetes"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr ""
@@ -7184,7 +7798,7 @@ msgstr "Teunoloxía"
msgid "Tell a joke!"
msgstr "¡Cunta un chiste!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr ""
@@ -7192,17 +7806,17 @@ msgstr ""
msgid "Tell us a little more"
msgstr ""
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Términos"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Términos del serviciu"
@@ -7230,7 +7844,11 @@ msgstr "Campu de testu"
msgid "Text input field"
msgstr "Campu pa introducir testu"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "¡Gracies! Verificóse la direición de corréu electrónicu."
@@ -7242,7 +7860,7 @@ msgstr "Gracies. Unvióse l'informe."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Gracies, verifiquesti la direición de corréu correutamente. Pues zarrar esti diálogu."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "Que contenga lo siguiente:"
@@ -7250,10 +7868,10 @@ msgstr "Que contenga lo siguiente:"
msgid "That handle is already taken."
msgstr "Esi identificador yá ta asignáu."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "Nun se pudo atopar esi paquete d'iniciación."
msgid "That's all, folks!"
msgstr "Alón."
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "La cuenta va ser a interactuar contigo dempués de desbloquiala."
@@ -7282,7 +7900,7 @@ msgstr "Va reaniciase l'aplicación"
msgid "The author of this thread has hidden this reply."
msgstr "L'autor d'esti filu escondió esta rempuesta."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "L'aplicación web de Bluesky"
@@ -7302,6 +7920,10 @@ msgstr "El feed «Descubrimientu»"
msgid "The Discover feed now knows what you like"
msgstr "Agora'l feed «Descubrimientu» sabe qué te presta"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "La esperiencia ye meyor na aplicación. Baxa Bluesky agora y llevámoste a onde lo dexesti."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "La política de privacidá treslladóse a <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "El videu seleicionáu supera los 50 MB."
+msgid "The selected video is larger than 100 MB."
+msgstr "El videu seleicionáu supera los 100 MB."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "El sirvidor paez que sufre problemes. Volvi tentalo nun momentu."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr ""
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "Treslladóse'l formulariu de sofitu. Si precises ayuda, <0/> o visita {HELP_DESK_URL} pa ponete en contautu con nós."
@@ -7367,15 +7994,15 @@ msgstr ""
msgid "There was an issue connecting to Tenor."
msgstr "Hebo un problema al conectase con Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "Hebo un problema al conectase col sirvidor"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Hebo un problema al conectase col sirvidor. Comprueba la conexón a internet y volvi tentalo."
@@ -7388,11 +8015,12 @@ msgstr "Hebo un problema al conectase col to sirvidor"
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Hebo un problema al catar los avisos. Toca equí pa volver tentalo."
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Hebo un problema al catar les publicaciones. Toca equí pa volver tentalo."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Hebo un problema al catar la llista. Toca equí pa volver tentalo."
@@ -7400,12 +8028,12 @@ msgstr "Hebo un problema al catar la llista. Toca equí pa volver tentalo."
msgid "There was an issue fetching your app passwords"
msgstr "Hebo un problema al catar les contraseñes d'aplicación"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Hebo un problema al catar les tos llistes. Toca equí pa volver tentalo."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "Hebo un problema al catar la información del serviciu"
@@ -7418,26 +8046,26 @@ msgstr "Hebo un problema al quitar esti feed. Comprueba la conexón a internet y
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Hebo un problema al unviar l'informe. Comprueba la conexón a internet."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "Hebo un error al anovar los feeds. Comprueba la conexón a internet y volvi tentalo."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "¡Hebo un problema! {0}"
@@ -7445,10 +8073,10 @@ msgstr "¡Hebo un problema! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Hebo un problema. Comprueba la conexón a internet y volvi tentalo."
@@ -7469,6 +8097,14 @@ msgstr "Esta configuración namás s'aplica al feed «Siguiendo»."
msgid "This {screenDescription} has been flagged:"
msgstr ""
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "Esta cuenta solicitó que los usuarios anicien la sesión pa ver el so perfil."
@@ -7477,6 +8113,10 @@ msgstr "Esta cuenta solicitó que los usuarios anicien la sesión pa ver el so p
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 "Esta cuenta ta bloquiada por una o más llistes de moderación. Pa desbloquiala, consulta direutamente les llistes y quita esti usuariu."
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Esta apellación va unviase a <0>{sourceName}0>."
@@ -7510,14 +8150,22 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr "Esti conteníu nun se pue ver ensin una cuenta de Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Esta conversación ye con una cuenta desaniciada o desactivada. Primi pa consiguir opciones"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "Esta función ta en beta. Pues lleer más información tocante a les esportaciones de depósitos <0>nesta entrada del blogue0>."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr ""
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "Esta función nun ta disponible mentanto uses una contraseña d'aplicación. Anicia la sesión cola contraseña principal."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "¡Esti feed ta baleru! Ye posible que tengas de siguir más usuarios o camudar la configuración de llingua."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Esti feed ta baleru."
@@ -7540,7 +8188,7 @@ msgstr "Esti feed ta baleru."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "Esti identificador ta acutáu. Prueba con otru."
@@ -7548,8 +8196,9 @@ msgstr "Esti identificador ta acutáu. Prueba con otru."
msgid "This information is not shared with other users."
msgstr "Esta información nun se comparte con otros usuarios."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
msgstr ""
#: src/components/moderation/ModerationDetailsDialog.tsx:168
@@ -7560,7 +8209,7 @@ msgstr "L'autor aplicó esta etiqueta."
msgid "This label was applied by you."
msgstr "Apliquesti esta etiqueta."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "Esti etiquetador nun declaró qué etiquetes publica y ye posible que nun tea activu."
@@ -7576,7 +8225,7 @@ msgstr ""
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr ""
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "Esta llista ta balera."
@@ -7584,7 +8233,7 @@ msgstr "Esta llista ta balera."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Esti serviciu de moderación nun ta disponible. Consulta abaxo los detalles y si sigue'l problema, ponte en contautu con nós."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Indicóse qu'esta publicación se creó'l <0>{0}0> mas la primer vegada que se creó en Bluesky foi'l <1>{1}1>."
@@ -7592,28 +8241,29 @@ msgstr "Indicóse qu'esta publicación se creó'l <0>{0}0> mas la primer vegad
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr "Esta publicación contién un tipu desconocíu de «threadgate». Ye posible que l'aplicación nun tea anovada."
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "Desanicióse esta publicación."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Esta publicación nun va apaecer nos feeds nin nos filos. Esta aición nun se pue desfacer."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "L'autor d'esta publicación desactivó les cites."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
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 ""
@@ -7621,10 +8271,14 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Esti serviciu nun fornió los términos del serviciu nin una política de privacidá."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "Esto habría crear un rexistru de dominiu en:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr ""
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "Esti usuariu nun tien nengún siguidor."
@@ -7662,21 +8316,21 @@ msgstr "Esti usuariu nun sigue a naide."
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr ""
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "Esta aición va quitar la publicación d'esta cita pa tolos usuarios y va sustituyila con un espaciu acutáu."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Peferencies de los filos"
@@ -7684,8 +8338,8 @@ msgstr "Peferencies de los filos"
msgid "Thread Preferences"
msgstr "Preferencies de los filos"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "Filos"
@@ -7693,7 +8347,7 @@ msgstr "Filos"
msgid "Threaded mode"
msgstr ""
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Preferencies de los filos"
@@ -7705,14 +8359,15 @@ msgstr ""
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr ""
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "Pa informar d'una conversación, informa d'unu de los sos mensaxes pela pantalla de conversación. Esta aición va permitir a los moderadores entender el contestu del problema."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Pa xubir vídeos a Bluesky, tienes de verificar primero la to direición de corréu."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "¿A quién quies unviar esti informe?"
@@ -7725,7 +8380,7 @@ msgstr "Güei"
msgid "Toggle dropdown"
msgstr ""
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr ""
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr ""
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Lo destacao"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "Tema"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Traducir"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "En tendencia"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "Vídeos en tendencia"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr ""
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "TV"
msgid "Two-factor authentication (2FA)"
msgstr "Autenticación en dos pasos (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Teclexa l'identificador que quies"
@@ -7783,18 +8440,11 @@ msgstr "Teclexa l'identificador que quies"
msgid "Type your message here"
msgstr "Escribi'l to mensaxe equí"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Tipu:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Desbloquiar la llista"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr ""
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "Nun ye posible conectase. Comprueba la conexón a internet y volvi tentalo."
@@ -7809,7 +8459,7 @@ msgstr "Nun ye posible conectase. Comprueba la conexón a internet y volvi tenta
msgid "Unable to contact your service. Please check your Internet connection."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "Nun ye posible desaniciar"
@@ -7817,36 +8467,41 @@ msgstr "Nun ye posible desaniciar"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Desbloquiar la cuenta"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "¿Quies desbloquiar la cuenta?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Desfacer la republicación"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Dexar de siguir"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr "Dexa de siguir al usuariu"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr ""
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr ""
@@ -7895,10 +8555,10 @@ msgstr ""
msgid "Unmute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr ""
@@ -7906,8 +8566,12 @@ msgstr ""
msgid "Unmute conversation"
msgstr "Dexar de silenciar la conversación"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Dexar de silenciar el filu"
@@ -7915,38 +8579,47 @@ msgstr "Dexar de silenciar el filu"
msgid "Unmute video"
msgstr ""
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Lliberar"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "Lliberar el feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Lliberar del aniciu"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "Lliberar del perfil"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Lliberar la llista de moderación"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "Lliberésti'l feed «{0}» del aniciu"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Lliberóse de los tos feeds"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Dase de baxa"
@@ -7955,7 +8628,7 @@ msgstr "Dase de baxa"
msgid "Unsubscribe from list"
msgstr "Dase de baxa de la llista"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Dase de baxa d'esti etiquetador"
@@ -7963,11 +8636,11 @@ msgstr "Dase de baxa d'esti etiquetador"
msgid "Unsubscribed from list"
msgstr "Diéstite de baxa d'esta llista"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr ""
@@ -7987,49 +8660,60 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
-msgctxt "toast"
-msgid "Updating quote attachment failed"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
+msgctxt "toast"
+msgid "Updating quote attachment failed"
+msgstr "L'anovamientu del elementu axuntu de la cita falló"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "L'anovamientu de la visibilidá de la rempuesta falló"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "Anovando…"
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Xubir una semeya"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Xubi un ficheru de testu a:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Xubir dende Cámara"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Xubir dende Ficheros"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Xubir dende Biblioteca"
@@ -8042,7 +8726,7 @@ msgstr "Xubiendo les imáxenes…"
msgid "Uploading link thumbnail..."
msgstr "Xubiendo la miniatura del enllaz…"
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "Xubiendo'l videu…"
@@ -8050,22 +8734,22 @@ msgstr "Xubiendo'l videu…"
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr ""
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Usar el restolador web na aplicación"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Usar el restolador web dientro de l'aplicación p'abrir enllaces"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Usar el restolador predetermináu"
@@ -8119,15 +8803,15 @@ msgstr ""
msgid "User list by you"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "Creóse la llista d'usuarios"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "Anovóse la llista d'usuarios"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8150,58 +8834,88 @@ msgstr "Usuarios que sigo"
msgid "Users in \"{0}\""
msgstr ""
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Valor:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr ""
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr ""
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Verificar el rexistru DNS"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr ""
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr ""
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Verificar el ficheru de testu"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Verificar la direición de corréu"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Verificación de la direición de corréu"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Versión {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "Videu"
msgid "Video failed to process"
msgstr "Nun se pudo procesar el videu"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr ""
@@ -8224,14 +8938,15 @@ msgstr ""
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Videoxuegos"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr ""
@@ -8239,11 +8954,11 @@ msgstr ""
msgid "Video not found."
msgstr "Nun s'atopó'l videu."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Xubióse'l videu"
@@ -8251,31 +8966,32 @@ msgstr "Xubióse'l videu"
msgid "Video: {0}"
msgstr "Videu: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "Vídeos"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "Ver l'avatar de {0}"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "Ver el perfil de {0}"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "Ver el perfil de: {displayName}"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr ""
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "Ver la entrada de depuración"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Ver los detalles"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "Ver los detalles pa informar d'un incumplimientu de los derechos d'autor"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Ver el filu completu"
@@ -8308,18 +9024,17 @@ msgstr "Ver la información d'estes etiquetes"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "Ver más"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Ver el perfil"
@@ -8331,7 +9046,11 @@ msgstr ""
msgid "View the labeling service provided by @{0}"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "Ver a qué usuarios-yos prestó esti feed"
@@ -8339,11 +9058,11 @@ msgstr "Ver a qué usuarios-yos prestó esti feed"
msgid "View video"
msgstr ""
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Ver les cuentes que bloquiesti"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr ""
@@ -8352,14 +9071,18 @@ msgstr ""
msgid "View your feeds and explore more"
msgstr ""
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Ver les tos llistes de moderación"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr ""
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr ""
msgid "Warn content and filter from feeds"
msgstr ""
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr ""
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "Nun pudimos atopar nengún resultáu pa esa etiqueta."
@@ -8400,7 +9128,7 @@ msgstr "Nun pudimos atopar nengún resultáu pa esa etiqueta."
msgid "We couldn't find any results for that topic."
msgstr "Nun pudimos atopar nengún resultáu pa esi tema."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "Nun pudimos cargar esta conversación"
@@ -8420,6 +9148,14 @@ msgstr "Esperamos que lo pases podre. Recuerda que Bluesky ye:"
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Escosemos les publicaciones de los perfiles que sigues. Equí tienes lo último de: <0/>"
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Nun fuimos a determinar si tienes permisu pa xubir vídeos. Volvi tentalo."
@@ -8428,7 +9164,7 @@ msgstr "Nun fuimos a determinar si tienes permisu pa xubir vídeos. Volvi tental
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:428
msgid "We were unable to load your configured labelers at this time."
msgstr "Nesti momentu nun fuimos a cargar los etiquetadores configuraos."
@@ -8440,20 +9176,28 @@ msgstr ""
msgid "We will let you know when your account is ready."
msgstr "Vamos avisate cuando la cuenta tea preparada."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "Vamos usar esta información pa personalizar la to esperiencia."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "Tenemos problemes de rede. Volvi tentalo"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr ""
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "¡Allégranos muncho tenete con nós!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Nun fuimos a resolver esta llista. Si sigue'l problema, ponte en contautu col creador de la llista, @{handleOrDid}."
@@ -8461,11 +9205,11 @@ msgstr "Nun fuimos a resolver esta llista. Si sigue'l problema, ponte en contaut
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Nesti momentu nun fuimos a cargar la llista de pallabres silenciaes. Volvi tentalo."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "La busca nun se completó. Volvi tentalo nunos minutos."
-#: src/view/com/composer/Composer.tsx:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Desanicióse la publicación a la que tas respondiendo."
@@ -8474,7 +9218,7 @@ msgstr "Desanicióse la publicación a la que tas respondiendo."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Nun podemos atopar la páxina que buscabes."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Namás pues soscribite a venti etiquetadores y yá algamesti esa llende."
@@ -8494,16 +9238,16 @@ msgstr "¿Qué t'interesa?"
msgid "What do you want to call your starter pack?"
msgstr "¿Cómo quies llamar al paquete d'iniciación?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr ""
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "¿Que pasó?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr ""
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "¿Qué llingües s'usaron nesta publicación?"
@@ -8520,14 +9264,18 @@ msgstr "¿Quién pue interactuar con esta publicación?"
msgid "Who can reply"
msgstr "Quién pue responder"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "¡Meca!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr "¡Meca! La carga de los vídeos en tendencia falló."
@@ -8574,11 +9322,11 @@ msgstr "¿Por qué habría revisase esti usuariu?"
msgid "Write a message"
msgstr ""
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Escribir una rempuesta"
@@ -8588,11 +9336,16 @@ msgstr "Escribir una rempuesta"
msgid "Writers"
msgstr "Escritores"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "El sirvidor devolvió un DID incorreutu. Recibióse: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Sí"
@@ -8601,15 +9354,15 @@ msgstr "Sí"
msgid "Yes, deactivate"
msgstr "Sí, desactivar"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Sí, desanicialu"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Sí, separtar"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Sí, esconder"
@@ -8625,7 +9378,11 @@ msgstr "Ayeri"
msgid "You"
msgstr "Tu"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr ""
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
msgstr ""
@@ -8633,6 +9390,19 @@ msgstr ""
msgid "You are in line."
msgstr ""
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr ""
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr ""
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr ""
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "Nun tienes permisu pa xubir vídeos."
@@ -8641,6 +9411,27 @@ msgstr "Nun tienes permisu pa xubir vídeos."
msgid "You are not following anyone."
msgstr "Nun sigues a naide."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr ""
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr ""
@@ -8682,7 +9472,7 @@ msgstr "Nun te sigue nenguna cuenta."
msgid "You don't follow any users who follow @{name}."
msgstr "Nun sigues a nengún usuariu que sigua a @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr ""
@@ -8736,24 +9526,24 @@ msgstr "Silenciesti esta cuenta."
msgid "You have muted this user"
msgstr "Silenciesti esti usuariu"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "Nun tienes nenguna conversación. ¡Anicia una!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "Nun tienes nengún feed."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "Nun tienes nenguna llista."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Nun bloquiesti nenguna cuenta. Pa bloquiar una, ve al so perfil y seleiciona «Bloquiar la cuenta» nel menú de la so cuenta."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Nun silenciesti nenguna cuenta. Pa silenciar una, ve al so perfil y seleiciona «Silenciar la cuenta» nel menú de la so cuenta."
@@ -8761,11 +9551,15 @@ msgstr "Nun silenciesti nenguna cuenta. Pa silenciar una, ve al so perfil y sele
msgid "You have reached the end"
msgstr "Aportesti a la fin"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr ""
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Algamesti temporalmente la llende vídeos xubíos. Volvi tentalo dempués."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "¡Nun creesti nengún paquete d'iniciación!"
@@ -8787,22 +9581,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Pues apellar estes etiquetes si te paez que s'aplicaron por error."
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "Namás pues amestar hasta {STARTER_PACK_MAX_SIZE} perfiles"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Namás pues amestar hasta 3 feeds"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "Namás pues seleicionar hasta 4 imáxenes"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "Tienes de tener 13 o más p'aniciar la sesión."
+msgid "You must be 13 years of age or older to create an account."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Tienes de siguir a, polo menos, siete persones más pa xenerar un paquete d'iniciación."
@@ -8810,28 +9604,40 @@ msgstr "Tienes de siguir a, polo menos, siete persones más pa xenerar un paquet
msgid "You must grant access to your photo library to save a QR code"
msgstr "Tienes de conceder l'accesu a la biblioteca de semeyes pa guardar un códigu QR"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "Tienes de conceder l'accesu a la biblioteca de semeyes pa guardar la imaxe."
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "Tienes de seleicionar polo menos un etiquetador pa informar"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr ""
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "Desactivesti @{0} anteriormente."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "Vas zarrar la sesión de toles cuentes."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "Yá nun vas recibir avisos d'esti filu"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Agora vas recibir avisos d'esti filu"
@@ -8839,23 +9645,23 @@ msgstr "Agora vas recibir avisos d'esti filu"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Vas recibir un mensaxe per corréu electrónicu con un códigu. Introduzlu equí y escribi la contraseña nueva."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "Tu: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Tu: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "Tu: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "Namás qu'acabes de crear la cuenta, vas siguir a los usuarios y feeds suxeríos."
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "Namás qu'acabes de crear la cuenta, vas sigur a los usuarios suxeríos."
@@ -8867,7 +9673,7 @@ msgstr "Vas siguir a estes persones y a {0} más"
msgid "You'll follow these people right away"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "Vas recibir un mensaxe en <0>{0}0> pa verificar que yes tu."
@@ -8901,6 +9707,10 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "¡Algamesti la fin del feed! Atopa dalgunes cuentes más y síguiles."
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Algamesti la llende diaria de vídeos xubíos (milenta bytes)"
@@ -8909,11 +9719,11 @@ msgstr "Algamesti la llende diaria de vídeos xubíos (milenta bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Algamesti la llende diaria de vídeos xubíos (milenta vídeos)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "La cuenta"
@@ -8941,7 +9751,7 @@ msgstr "Detectóse que la cuenta incumplió los <0>términos del serviciu de Blu
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr "Unvióse l'apellación. Si s'acepta, vas recibir un mensaxe per corréu electrónicu."
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "Data de nacencia"
@@ -8953,26 +9763,30 @@ msgstr "El restolador nun ye compatible col formatu del videu. Prueba con otru r
msgid "Your chats have been disabled"
msgstr "Desactiváronse les charres"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "Va guardase la opción qu'escueyas, mas pues camudala dempués na configuración."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "L'identificador actual <0>{0}0> vas tenelu acutáu. Pues volver usalu en cualesquier momentu dende esta cuenta."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "La direición de corréu paez ser inválida."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "La direición de corréu nun se verificó. Facelo ye un pasu mui importante qu'aconseyamos."
@@ -8988,14 +9802,31 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "¡El feed siguiente ta baleru! Sigui a más usuarios pa ver qué pasó."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "L'identificador completu va ser <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr ""
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr ""
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Pallabres que silenciesti"
@@ -9004,15 +9835,15 @@ msgstr "Pallabres que silenciesti"
msgid "Your password has been changed successfully!"
msgstr "¡Camudesti la contraseña correutamente!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "Publicóse la entrada"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "Publicáronse les entraes"
@@ -9024,14 +9855,22 @@ msgstr "Los préstames, les publicaciones y los bloqueos de to son públicos. Lo
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "El perfil, les publicaciones, los feeds y les llistes yá nun van ser visibles pa otros usuarios de Bluesky. Pues volver activar la cuenta en cualesquier momentu aniciando la sesión."
-#: src/view/com/composer/Composer.tsx:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Publicóse la rempuesta"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "L'informe va unviase al serviciu de moderación de Bluesky"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr ""
diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po
index 6ec210551e..c31a2a690b 100644
--- a/src/locale/locales/ca/messages.po
+++ b/src/locale/locales/ca/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ca\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 03:35\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Catalan\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(actiu)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(té contingut incrustat)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(sense correu)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {# republicació} other {# republicacions}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# segon} other {# segons}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# element sense llegir} other {# elements sense llegir}}"
@@ -90,17 +90,17 @@ msgstr "{0, plural, one {# element sense llegir} other {# elements sense llegir}
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# mes} other {# mesos}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {seguidor} other {seguidors}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {seguint} other {seguint}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {m'agrada} other {m'agrades}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {m'agrada} other {m'agrades}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {publicació} other {publicacions}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citació} other {citacions}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {republicació} other {republicacions}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, one {}other {{1} publicacions}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "{0, plural, other {# persones han}} utilitzat aquest starter pack!"
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0>en <1>etiquetes1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>en <1>text i etiquetes1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr "{0} emet en directe"
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr "{0} no és una adreça URL vàlida"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} s'han unit aquesta setmana"
@@ -137,13 +154,18 @@ msgstr "{0} de {1}"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
-msgstr ""
+msgstr "{0} de 50"
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0} persones han utilitzat aquest starter pack"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "{0} ha reaccionat amb {1}"
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "{0} ha reaccionat amb {1} a {2}"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "Avatar de {0}"
@@ -175,7 +197,7 @@ msgstr "{0} min"
msgid "{0}s"
msgstr "{0} s"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# element sense llegir} other {# elements sense llegir}}"
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {hores}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {minut} other {minuts}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}}0> t'han seguit"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}}0> els ha agradat el teu canal personalitzat"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}}0> els ha agradat la teva publicació"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}}0> els ha agradat la teva republicació"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}}0> han tret la seva verificació del teu compte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}}0> han republicat la teva publicació"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}}0> han republicat la teva republicació"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}}0> s'han registrat amb el teu starter pack"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}}0> t'han verificat"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} t'ha seguit"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} t'ha seguit de tornada"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "{firstAuthorLink} li ha agradat el teu canal personalitzat"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "{firstAuthorLink} li ha agradat la teva publicació"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr "{firstAuthorLink} li ha agradat la teva republicació"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr "{firstAuthorLink} ha tret la seva verificació del teu compte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} ha republicat la teva publicació"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr "{firstAuthorLink} ha republicat la teva republicació"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} s'ha registrat amb el teu starter pack"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr "{firstAuthorLink} t'ha verificat"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} t'han seguit"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} els ha agradat el teu canal personalitzat"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} els ha agradat la teva publicació"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} els ha agradat la teva republicació"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} han tret la seva verificació del teu compte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} han republicat la teva publicació"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} han republicat la teva republicació"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} s'han registrat amb el teu starter pack"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr "{firstAuthorName} i{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} t'han verificat"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} t'ha seguit"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} t'ha seguit de tornada"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "{firstAuthorName} li ha agradat el teu canal personalitzat"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "{firstAuthorName} li ha agradat la teva publicació"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr "{firstAuthorName} li ha agradat la teva republicació"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr "{firstAuthorName} ha tret la seva verificació del teu compte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} ha republicat la teva publicació"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr "{firstAuthorName} ha republicat la teva republicació"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} s'ha registrat amb el teu starter pack"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr "{firstAuthorName} t'ha verificat"
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} seguint"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "No es poden enviar missatges a {handle}"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr "{hours, plural, one {# hora{minutesString}} other {# hores{minutesString}}}"
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr "{hours, plural, one {# hora} other {# hores}}"
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "{joinedAllTimeCount, plural, one {}other {# usuaris s'han}} unit!"
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr "{minutes, plural, one {# minut} other {# minuts}}"
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# element sense llegir} other {# elements sense llegir}}"
@@ -301,6 +404,34 @@ msgstr "{profileName} s'uní a Bluesky fa {0}"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} s'uní a Bluesky amb un starter pack, fa {0}"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "fa {type} h"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr "{userName} és un verificador de confiança"
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr "{userName} està verificat"
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr "Verificacions de {userName}"
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "+{computedTotal}"
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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>i {2, plural, one {# altre} other {# altres}} estan inclosos al teu starter pack"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
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:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {seguint} other {seguint}}"
@@ -343,7 +474,7 @@ msgstr "<0>Experimental:0> Quan aquesta preferència està activada, només re
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>Tu0> i<1> 1><2>{0} 2>esteu inclosos al teu starter pack"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Identificador invàlid"
@@ -363,62 +494,71 @@ msgstr "30 dies"
msgid "7 days"
msgstr "7 dies"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "un missatge"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr "Una nova forma de verificació"
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Sobre"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
-msgstr ""
+msgstr "Accepta"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
-msgstr ""
+msgstr "Accepta la sol·licitud de xat"
#. Accept a chat request
#: src/screens/Messages/components/RequestListItem.tsx:42
msgid "Accept Request"
-msgstr ""
+msgstr "Accepta la sol·licitud"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Accessibilitat"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Configuració d'accessibilitat"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Compte"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "Compte bloquejat"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "Compte seguit"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "Compte silenciat"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
@@ -429,33 +569,37 @@ msgstr "Compte silenciat"
msgid "Account Muted by List"
msgstr "Compte silenciat per una llista"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Opcions del compte"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Compte eliminat de l'accés ràpid"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "Compte desbloquejat"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "Compte no seguit"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
-msgstr ""
+msgstr "Compte no silenciat"
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+msgstr "Els comptes amb una marca de verificació blava<0><1/>0>poden verificar-ne altres. Bluesky selecciona aquests verificadors de confiança."
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Afegeix"
@@ -473,8 +617,12 @@ msgstr "Afegeix {displayName} al teu starter pack"
msgid "Add a content warning"
msgstr "Afegeix una advertència de contingut"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr "Afegeix un estat en directe temporal al teu perfil. Quan algú faci clic al teu avatar, veurà informació sobre el teu esdeveniment en directe."
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "Afegeix un usuari a aquesta llista"
@@ -485,7 +633,7 @@ msgstr "Afegeix un compte"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Afegeix un compte"
msgid "Add alt text"
msgstr "Afegeix text alternatiu"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Afegeix text alternatiu (opcional)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Afegeix un altre compte"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Afegeix una altra publicació"
@@ -518,8 +666,12 @@ msgstr "Afegeix una contrasenya d'aplicació"
msgid "Add App Password"
msgstr "Afegeix una contrasenya d'aplicació"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr "Afegeix una reacció d'emoji"
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr "Afegeix més detalls (opcional)"
@@ -531,15 +683,23 @@ msgstr "Afegeix la paraula silenciada amb la configuració escollida"
msgid "Add muted words and tags"
msgstr "Afegeix les paraules i etiquetes silenciades"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Afegeix una nova publicació"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Afegeix gent"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr "Afegeix gent a la llista"
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr "Afegeix una reacció"
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Afegeix els canals recomanats"
@@ -552,27 +712,28 @@ msgstr "Afegiu alguns canals al teu starter pack"
msgid "Add the default feed of only people you follow"
msgstr "Afegeix el canal per defecte només de la gent que segueixes"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Afegeix el següent registre DNS al teu domini:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Afegeix aquest canal als teus canals"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "Afegeix a les llistes"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Afegeix a les llistes"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Afegeix als meus canals"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr "Afegeix usuaris a la llista"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Afegit a la llista"
@@ -581,22 +742,22 @@ msgstr "Afegit a la llista"
msgid "Added to my feeds"
msgstr "Afegit als meus canals"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr "Detalls addicionals (límit de 300 caràcters)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Adults"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Contingut per a adults"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
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>."
@@ -604,30 +765,35 @@ 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/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Etiquetes de contingut per a adults"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Avançat"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr "josepmaria@exemple.cat"
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Totes"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "S'han seguit tots els comptes!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "Tots els idiomes"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "Tots els canals que has desat, en un sol lloc."
@@ -671,10 +837,10 @@ msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Text alternatiu"
@@ -688,19 +854,18 @@ msgstr "El text alternatiu descriu les imatges per a les persones cegues o amb p
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "El text alternatiu es tallarà. Límit: {0} caràcters."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr "El text alternatiu sortirà retallat. {MAX_ALT_TEXT, plural, one {}other {Límit: {0} caràcters.}}"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "S'ha enviat un correu a {0}. Inclou un codi de confirmació que has d'entrar aquí sota."
-#: src/view/com/modals/ChangeEmail.tsx:114
-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/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr "S'ha enviat un correu a la teva adreça prèvia, {currentEmail}. Inclou un codi de confirmació que has d'entrar aquí sota."
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "S'ha enviat un correu. Entra el codi de confirmació que t'ha arribat per correu."
@@ -716,7 +881,11 @@ msgstr "Hi ha hagut un error"
msgid "An error occurred while compressing the video."
msgstr "Hi ha hagut un error mentre es comprimia el vídeo."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr "S'ha produït un error en anar a buscar el canal."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
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?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "Hi ha hagut un error mentre es carregava el vídeo. Prova-ho més tard."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "S'ha produït un error en desar el codi QR!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "Hi ha hagut un error mentre es seleccionava el vídeo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "S'ha produït un error en intentar seguir-ho tot"
@@ -746,12 +914,17 @@ msgstr "S'ha produït un error en intentar seguir-ho tot"
msgid "An error occurred while uploading the video."
msgstr "Hi ha hagut un error mentre es pujava el vídeo."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr "Una il·lustració que mostra que Bluesky selecciona verificadors de confiança i, al seu torn, els verificadors de confiança verifiquen els comptes d'usuari individuals."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: 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:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "Hi ha hagut un problema en inciar el xat"
@@ -761,13 +934,17 @@ 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:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Hi ha hagut un problema, prova-ho de nou."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr "Una maqueta d'un iPhone que mostra l'aplicació Bluesky oberta al perfil d'un usuari verificat amb una marca de verificació blava al costat del seu nom de visualització."
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "hi ha hagut un problema desconegut"
@@ -790,6 +967,10 @@ msgstr "Animals"
msgid "Animated GIF"
msgstr "GIF animat"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr "Anunciant la verificació a Bluesky"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Comportament antisocial"
msgid "Anybody can interact"
msgstr "Qualsevol pot interactuar"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "Icona de l'aplicació"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "Idioma de l'aplicació"
@@ -817,7 +998,7 @@ msgstr "Contrasenya de l'aplicació"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "Contrasenya de l'aplicació esborrada"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
@@ -836,7 +1017,7 @@ msgstr "Els noms de contrasenyes d'aplicació han de tenir almenys 4 caràcters"
msgid "App passwords"
msgstr "Contrasenyes de l'aplicació"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Contrasenyes de l'aplicació"
@@ -854,7 +1035,7 @@ msgstr "Apel·la \"{0}\" etiqueta"
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "Apel·lació enviada"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -872,10 +1053,10 @@ msgstr "Apel·la la suspensió"
msgid "Appeal this decision"
msgstr "Apel·la aquesta decisió"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Aparença"
@@ -884,12 +1065,12 @@ msgstr "Aparença"
msgid "Apply default recommended feeds"
msgstr "Aplica els canals recomanats per defecte"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Arxivat del dia {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Publicació arxivada"
@@ -897,21 +1078,21 @@ msgstr "Publicació arxivada"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Segur que voleu suprimir la contrasenya de l'aplicació \"{0}\"?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
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:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "Estàs segur que vols eliminar aquest starter pack?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "Estàs segur que vols descartar els canvis?"
#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation?"
-msgstr ""
+msgstr "Segur que vols abandonar la conversa?"
#: src/components/dms/LeaveConvoPrompt.tsx:45
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
@@ -921,15 +1102,15 @@ msgstr "Estàs segur que vols abandonar aquesta conversa? Els missatges s'esborr
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:312
+#: src/components/FeedCard.tsx:340
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:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "Confirmes que vols descartar aquest esborrany?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "Estàs segur que vols descartar aquesta publicació?"
@@ -937,7 +1118,7 @@ msgstr "Estàs segur que vols descartar aquesta publicació?"
msgid "Are you sure?"
msgstr "Ho confirmes?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "Estàs escrivint en <0>{suggestedLanguageName}0>?"
@@ -946,29 +1127,34 @@ msgstr "Estàs escrivint en <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Art"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Nuesa artística o no eròtica."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr "Assigna un tema per a l'algoritme"
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "Almenys 3 caràcters"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40
msgctxt "Name of app icon variant"
msgid "Aurora"
-msgstr ""
+msgstr "Aurora"
#: src/screens/Settings/AccessibilitySettings.tsx:105
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Les opcions de reproducció automàtica s'han mogut a la <0>Configuració de contingut i multimèdia0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Reprodueix automàticament vídeos i GIFs"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Reprodueix automàticament vídeos i GIFs"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Endarrere"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
-msgstr ""
+msgstr "Torna als xats"
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Abans de crear una llista, primer has de verificar el teu correu."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Abans de crear una publicació, primer has de verificar el teu correu."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr "Abans de crear una publicació o respondre-la, primer has de verificar el teu correu."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Abans de crear un starter pack, primer has de verificar el teu correu."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr "Abans d'acceptar aquest xat, primer has de verificar el teu correu."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
msgstr "Abans de poder enviar missatges a un altre usuari, primer has de verificar el teu correu."
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BETA"
-
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Aniversari"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Bloqueja"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Bloqueja el compte"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "Vols bloquejar el compte?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Bloqueja comptes"
@@ -1054,15 +1241,15 @@ msgstr "Bloqueja i elimina"
msgid "Block and/or delete this conversation"
msgstr "Bloqueja i/o elimina la conversa"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Bloqueja una llista"
#: src/screens/Messages/components/ChatStatusInfo.tsx:46
msgid "Block or report"
-msgstr ""
+msgstr "Bloqueja o denuncia"
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "Vols bloquejar aquests comptes?"
@@ -1079,21 +1266,21 @@ msgstr "Bloqueja l'usuari"
msgid "Blocked"
msgstr "Bloquejada"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Comptes bloquejats"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Comptes bloquejats"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Els comptes bloquejats no poden respondre cap fil teu, ni anomenar-te ni interactuar amb tu de cap manera."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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."
@@ -1101,19 +1288,19 @@ msgstr "Els comptes bloquejats no poden respondre a cap fil teu, ni anomenar-te
msgid "Blocked post."
msgstr "Publicació bloquejada."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
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:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "El bloqueig és públic. Els comptes bloquejats no poden respondre els teus fils, ni mencionar-te ni interactuar amb tu de cap manera."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
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:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blog"
@@ -1122,14 +1309,14 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky no pot confirmar l'autenticitat de la data declarada."
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129
msgctxt "Name of app icon variant"
msgid "Bluesky Classic™"
-msgstr ""
+msgstr "Bluesky Classic™"
#: src/view/com/auth/server-input/index.tsx:212
msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server."
@@ -1148,7 +1335,7 @@ msgstr "Bluesky és millor amb col·legues!"
msgid "Bluesky Social Terms of Service"
msgstr "Condicions del servei de Bluesky Social"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
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."
@@ -1156,6 +1343,10 @@ msgstr "Bluesky triarà un conjunt de comptes recomanats de les persones de la t
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky no mostrarà el teu perfil ni les publicacions als usuaris que no estiguin registrats. Altres aplicacions poden no seguir aquesta demanda. Això no fa que el teu compte sigui privat."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr "Bluesky verificarà de manera proactiva comptes notables i autèntics."
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "Difumina les imatges i filtra-ho dels canals"
msgid "Books"
msgstr "Llibres"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "Explora més comptes a la pàgina Explora"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "Explora més canals a la pàgina Explora"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Explora més recomanacions"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "Explora més recomanacions a la pàgina Explora"
@@ -1214,20 +1405,26 @@ msgstr "Explora les publicacions etiquetades amb {displayName}"
msgid "Browse starter pack {displayName}"
msgstr "Explora l'Starter pack de {displayName}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr "Explora les publicacions del tema {0}"
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "Explora les publicacions del tema {displayName}"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Negocis"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "Per {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Per <0>{0}0>"
@@ -1243,44 +1440,51 @@ msgstr "Creant un compte indiques que estàs d'acord amb les <0>Condicions del s
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Creant un compte indiques que estàs d'acord amb les <0>Condicions del servei0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr "Per tu"
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Càmera"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Cancel·la"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "Cancel·la la supressió del compte"
msgid "Cancel image crop"
msgstr "Cancel·la la retallada de la imatge"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Cancel·la l'edició del perfil"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Cancel·la la citació de la publicació"
@@ -1308,8 +1512,7 @@ msgstr "Cancel·la la citació de la publicació"
msgid "Cancel reactivation and sign out"
msgstr "Cancel·la la reactivació i surt"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Cancel·la la cerca"
@@ -1317,24 +1520,23 @@ msgstr "Cancel·la la cerca"
msgid "Cancels opening the linked website"
msgstr "Cancel·la obrir la web enllaçada"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "No pots interactuar amb un usuari bloquejat"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Subtítols (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Subtítols i text alternatiu"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Canvia"
@@ -1347,46 +1549,41 @@ msgstr "Canvia la icona de l'aplicació"
msgid "Change app icon to \"{0}\""
msgstr "Canvia la icona de l'aplicació a \"{0}\\"
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Canvia l'adreça de correu"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr "Canvia l'idioma de l'aplicació"
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Canvia l'adreça de correu"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Canvia l'identificador"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr "Canvia el servei de moderació"
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Canvia el meu correu"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Canvia la contrasenya"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "Canvia l'idioma de la publicació a {suggestedLanguageName}"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr "Canvia"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Canvia el teu correu"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Canvia la teva adreça de correu"
@@ -1394,43 +1591,42 @@ msgstr "Canvia la teva adreça de correu"
msgid "Changes app icon"
msgstr "Canvia la icona de l'aplicació"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr "Canvia el proveïdor d'allotjament"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Xat"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
-msgstr ""
+msgstr "Xat esborrat"
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "Xat silenciat"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
-msgstr ""
+msgstr "Safata de sol·licituds de xat"
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
-msgstr ""
+msgstr "Sol·licituds de xat"
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Configuració del xat"
@@ -1441,12 +1637,12 @@ msgstr "Configuració del xat"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "Xat no silenciat"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
-msgstr ""
+msgstr "Xats"
#: src/screens/SignupQueued.tsx:78
#: src/screens/SignupQueued.tsx:82
@@ -1461,7 +1657,7 @@ msgstr "Comprova el teu correu electrònic per a obtenir un codi d'inici de sess
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Comprova el teu correu per a rebre el codi de confirmació i entra'l aquí sota:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Tria el mètode de verificació del domini"
@@ -1469,7 +1665,7 @@ msgstr "Tria el mètode de verificació del domini"
msgid "Choose Feeds"
msgstr "Tria els canals"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Tria per mi"
@@ -1477,10 +1673,6 @@ msgstr "Tria per mi"
msgid "Choose People"
msgstr "Tria les persones"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Tria les autoetiquetes que siguin aplicables als mitjans que publiques. Si no se'n selecciona cap, aquesta publicació es considerarà apta per a tots els públics."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Tria els algoritmes que alimentaran els teus canals personalitzats."
@@ -1493,27 +1685,31 @@ msgstr "Tria aquest color com el teu avatar"
msgid "Choose your account provider"
msgstr "Tria el teu proveïdor de compte"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Tria la teva pròpia línia de temps! Els canals creats per la comunitat t'ajuden a trobar el contingut que t'agrada."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Tria la teva contrasenya"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "El teu identificador d'usuari"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Esborra totes les dades emmagatzemades"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Esborra totes les dades emmagatzemades (i després reinicia)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr "Esborra la memòria cau d'imatges"
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Esborra la cerca"
@@ -1522,6 +1718,14 @@ msgstr "Esborra la cerca"
msgid "click here"
msgstr "clica aquí"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr "Fes clic aquí per reiniciar el procés de verificació."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr "Fes clic aquí per actualitzar el teu correu"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Clica per a deshabilitar les citacions d'aquesta publicació."
@@ -1534,7 +1738,7 @@ msgstr "Clica per a habilitar les citacions d'aquesta publicació."
msgid "Click to open tag menu for {tag}"
msgstr "Fes clic per a obrir el menú d'etiquetes per a {tag}"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Clica aquí per provar d'enviar el missatge de nou"
@@ -1546,24 +1750,34 @@ msgstr "Clima"
msgid "Clip 🐴 clop 🐴"
msgstr "Clop 🐴 clop 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Tanca"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Tanca el diàleg actiu"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Tanca el calaix inferior"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Tanca el diàleg"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr "Tanca el menú lateral"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "Tanca el selector d'emojis"
@@ -1600,7 +1816,13 @@ msgstr "Tanca la imatge"
msgid "Close image viewer"
msgstr "Tanca el visor d'imatges"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr "Tanca el menú"
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Tanca aquest diàleg"
@@ -1608,8 +1830,12 @@ msgstr "Tanca aquest diàleg"
msgid "Closes password update alert"
msgstr "Tanca l'alerta d'actualització de contrasenya"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr "Tanca l'editor de la publicació i descarta l'esborrany"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr "Tanca el selector d'emojis"
@@ -1617,11 +1843,11 @@ msgstr "Tanca el selector d'emojis"
msgid "Closes viewer for header image"
msgstr "Tanca la visualització de la imatge de la capçalera"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Plega la llista d'usuaris"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Plega la llista d'usuaris per una notificació concreta"
@@ -1632,7 +1858,7 @@ msgstr "Mode de color"
#: src/components/dialogs/Embed.tsx:151
msgid "Color theme"
-msgstr ""
+msgstr "Color del tema"
#: src/screens/Onboarding/index.tsx:38
#: src/screens/Onboarding/state.ts:97
@@ -1644,7 +1870,7 @@ msgstr "Comèdia"
msgid "Comics"
msgstr "Còmics"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Directrius de la comunitat"
@@ -1653,23 +1879,23 @@ msgstr "Directrius de la comunitat"
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:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Completa la prova"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Crea una nova publicació"
-#: src/view/com/composer/Composer.tsx:834
-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/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr "Crear publicacions de fins a {0, plural, one {}other {# caràcters}} de longitud"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Redacta una resposta"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Comprimint el vídeo..."
@@ -1681,23 +1907,17 @@ msgstr "Configura els filtres de continguts per la categoria: {name}"
msgid "Configured in <0>moderation settings0>."
msgstr "Configurat a <0>configuració de moderació0>."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Confirma"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Confirma el canvi"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Confirma la configuració de l'idioma del contingut"
@@ -1706,26 +1926,27 @@ msgstr "Confirma la configuració de l'idioma del contingut"
msgid "Confirm delete account"
msgstr "Confirma l'eliminació del compte"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Confirma la teva edat:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Confirma la teva data de naixement"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Codi de confirmació"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Codi de confirmació"
@@ -1733,22 +1954,22 @@ msgstr "Codi de confirmació"
msgid "Connecting..."
msgstr "Connectant…"
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Contacta amb suport"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "Contingut i multimèdia"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Contingut i multimèdia"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Contingut i multimèdia"
@@ -1756,15 +1977,15 @@ msgstr "Contingut i multimèdia"
msgid "Content Blocked"
msgstr "Contingut bloquejat"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Filtres de contingut"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr "Contingut de tota la xarxa que et podria agradar"
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Idiomes del contingut"
@@ -1785,16 +2006,16 @@ msgstr "Advertència del contingut"
msgid "Content warnings"
msgstr "Advertències del contingut"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
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:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Continua"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Continua com a {0} (sessió actual)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Continua el fil..."
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Continua"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversa esborrada"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Conversa esborrada"
@@ -1826,16 +2047,17 @@ msgstr "Cuina"
msgid "Copied"
msgstr "Copiat"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Número de versió copiat en memòria"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Copiat en memòria"
@@ -1844,25 +2066,29 @@ msgstr "Copiat en memòria"
msgid "Copied!"
msgstr "Copiat"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr "Copia la versió de construcció al porta-retalls"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Copia"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr "Copia de totes maneres"
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Copia la contrasenya d'aplicació"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr "Copia at:// URI"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr "Copia DID de l'autor"
@@ -1871,57 +2097,69 @@ msgstr "Copia DID de l'autor"
msgid "Copy code"
msgstr "Copia el codi"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Copia DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Copia l'amfitrió"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Copia l'enllaç"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Copia l'enllaç"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Copia l'enllaç a la llista"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Copia l'enllaç a la publicació"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr "Copia l'enllaç al perfil"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr "Copia l'enllaç a l'starter pack"
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Copia el text del missatge"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr "Copia at:// URI de la publicació"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Copia el text de la publicació"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Copia el codi QR"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "Copia el valor del registre TXT"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Política de drets d'autor"
@@ -1931,11 +2169,11 @@ msgstr "Política de drets d'autor"
msgid "Could not leave chat"
msgstr "No s'ha pogut abandonar el xat"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "No s'ha pogut carregar el canal"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "No s'ha pogut carregar la llista"
@@ -1947,28 +2185,28 @@ msgstr "No s'ha pogut silenciar el xat"
msgid "Could not process your video"
msgstr "No s'ha pogut processar el teu vídeo"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Crea"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "Crea un codi QR per a un starter pack"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Crea un starter pack"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Crea un starter pack per a mi"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Crea un starter pack per a mi"
msgid "Create account"
msgstr "Registra't"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Crea un compte"
@@ -1985,11 +2223,16 @@ msgstr "Crea un compte"
msgid "Create an account"
msgstr "Crea un compte"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr "Crea un compte sense utilitzar aquest starter pack"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Enlloc d'això, crea un avatar"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Crea'n un altre"
@@ -1998,7 +2241,7 @@ msgstr "Crea'n un altre"
msgid "Create new account"
msgstr "Crea un nou compte"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Crea un informe per a {0}"
@@ -2023,7 +2266,7 @@ msgstr "Personalitzat"
#: src/components/dialogs/Embed.tsx:144
msgid "Customization options"
-msgstr ""
+msgstr "Opcions de personalització"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103
msgid "Customize who can interact with this post."
@@ -2053,17 +2296,17 @@ msgstr "Mode fosc"
msgid "Dark theme"
msgstr "Tema fosc"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Data de naixement"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Desactiva el compte"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Moderació de depuració"
@@ -2079,19 +2322,19 @@ msgstr "Per defecte"
msgid "Default icons"
msgstr "Icones per defecte"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Elimina"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Elimina el compte"
@@ -2107,19 +2350,19 @@ msgstr "Elimina la contrasenya d'aplicació"
msgid "Delete app password?"
msgstr "Vols eliminar la contrasenya d'aplicació?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
-msgstr ""
+msgstr "Elimina el xat"
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Suprimeix el registre de declaració de xat"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "Elimina la conversa"
@@ -2127,19 +2370,19 @@ msgstr "Elimina la conversa"
msgid "Delete Conversation"
msgstr "Elimina la conversa"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Elimina-ho per mi"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
msgstr "Elimina la llista"
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Elimina el missatge"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Elimina el missatge per mi"
@@ -2147,26 +2390,26 @@ msgstr "Elimina el missatge per mi"
msgid "Delete my account"
msgstr "Elimina el meu compte"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Elimina la publicació"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Elimina l'starter pack"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "Vols eliminar l'starter pack?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "Vols eliminar aquesta llista?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "Vols eliminar aquesta publicació?"
@@ -2174,8 +2417,8 @@ msgstr "Vols eliminar aquesta publicació?"
msgid "Deleted"
msgstr "Eliminat"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Compte eliminat"
@@ -2183,48 +2426,48 @@ msgstr "Compte eliminat"
msgid "Deleted post."
msgstr "Publicació eliminada."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Descripció"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "La descripció és massa llarga"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "La descripció és massa llarga. El nombre màxim de caràcters és {DESCRIPTION_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "La descripció és massa llarga. {DESCRIPTION_MAX_GRAPHEMES, plural, one {}other {El nombre màxim de caràcters és #.}}"
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Text alternatiu descriptiu"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Desenganxa la citació"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "Vols desenganxar la citació?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
-msgstr ""
+msgstr "Mode desenvolupador deshabilitat"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
-msgstr ""
+msgstr "Mode desenvolupador habilitat"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Opcions de desenvolupador"
@@ -2236,6 +2479,15 @@ msgstr "Diàleg: ajusta qui pot interactuar amb aquesta publicació"
msgid "Dim"
msgstr "Tènue"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr "Deshabilita la verificació en dos passos"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr "Deshabilita la verificació en dos passos per correu"
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "Desactiva el correu 2FA"
@@ -2254,25 +2506,25 @@ msgstr "Deshabilita els subtítols"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Desactivat"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Descarta"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "Vols descartar els canvis?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "Vols descartar l'esborrany?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "Vols descartar la publicació?"
@@ -2281,24 +2533,24 @@ msgstr "Vols descartar la publicació?"
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/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr "Descobreix canals"
+
#: 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:425
-msgid "Discover new feeds"
-msgstr "Descobreix nous canals"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Descobreix nous canals"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Descarta"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Descarta l'error"
@@ -2306,6 +2558,10 @@ msgstr "Descarta l'error"
msgid "Dismiss getting started guide"
msgstr "Ignora la guia d'inici"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr "Descarta interessos"
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr "Amaga aquesta secció"
@@ -2315,27 +2571,27 @@ msgstr "Amaga aquesta secció"
msgid "Display larger alt text badges"
msgstr "Mostra insígnies de text alternatiu més grans"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Nom mostrat"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Nom mostrat"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "El nom de visualització és massa llarg"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "El nom de visualització és massa llarg. El nombre màxim de caràcters és {DISPLAY_NAME_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "El nom per mostrar és massa llarg. {DISPLAY_NAME_MAX_GRAPHEMES, plural, one {}other {El nombre màxim de caràcters és #.}}"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "Panell de DNS"
@@ -2347,37 +2603,45 @@ msgstr "No silenciïs aquesta paraula als usuaris que segueixo"
msgid "Does not include nudity."
msgstr "No inclou nuesa."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "No comença ni acaba amb un guionet"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "Domini verificat!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr "No tens un codi o en necessites un? <0>Clica aquí.0>"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr "No has rebut el correu? <0>Clica aquí per a reenviar-lo.0>"
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Fet"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Fet"
msgid "Done{extraText}"
msgstr "Fet{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr "Fes un toc doble o premeu llargament el missatge per a afegir una reacció"
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Fes doble toc per tancar el diàleg"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr "Fes dos tocs per a fer m'agrada"
@@ -2413,23 +2681,23 @@ msgstr "Deixa anar a afegir imatges"
msgid "Duration:"
msgstr "Durada:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "p. ex. jordi"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "p. ex. Jordi Cognom"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "p. ex. Jordi Guix"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "p. ex. jordi.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "p. ex. Artista, amant dels gossos i amant de la lectura."
@@ -2437,19 +2705,19 @@ msgstr "p. ex. Artista, amant dels gossos i amant de la lectura."
msgid "E.g. artistic nudes."
msgstr "p. ex. nuesa artística."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "p. ex. Gent interessant"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "p. ex. Spammers"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "p. ex. Els que mai fallen."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "p. ex. Usuaris que sempre responen amb anuncis."
@@ -2457,20 +2725,21 @@ 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/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Edita"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Edita"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Edita l'avatar"
@@ -2478,31 +2747,41 @@ msgstr "Edita l'avatar"
msgid "Edit Feeds"
msgstr "Edita els canals"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Edita la imatge"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Edita les preferències de les interaccions"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr "Edita els interessos"
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Edita els detalls de la llista"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr "Edita l'estat en directe"
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Edita la llista de moderació"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Edita els meus canals"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Edita el meu perfil"
@@ -2515,23 +2794,23 @@ msgstr "Edita les persones"
msgid "Edit post interaction settings"
msgstr "Edita les preferències de les interaccions a la publicació"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Edita el perfil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Edita el perfil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Edita l'starter pack"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Edita la llista d'usuaris"
@@ -2539,15 +2818,15 @@ msgstr "Edita la llista d'usuaris"
msgid "Edit who can reply"
msgstr "Edita qui pot respondre"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Edita el teu nom mostrat"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Edita la descripció del teu perfil"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Edita el teu starter pack"
@@ -2560,16 +2839,15 @@ msgstr "Ensenyament"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "El creador d'aquesta llista t'ha bloquejat o l'has bloquejat tu."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "Correu"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "Correu 2FA desactivat"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
@@ -2583,20 +2861,17 @@ msgstr "Adreça de correu"
msgid "Email Resent"
msgstr "S'ha tornat a enviar el correu"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
-msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
+msgstr "Correu enviat!"
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "Correu actualitzat"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr "Correu actualitzat!"
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
-msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
+msgstr "Verificació per correu completada!"
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
msgid "Email Verified"
@@ -2608,8 +2883,8 @@ msgstr "Incrusta el codi HTML"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Incrusta la publicació"
@@ -2617,12 +2892,13 @@ msgstr "Incrusta la publicació"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Incrusta aquesta publicació al teu lloc web. Copia el fragment següent i enganxa'l al codi HTML del teu lloc web."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "Incrusta el reproductor de vídeo"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Habilita"
@@ -2630,13 +2906,13 @@ msgstr "Habilita"
msgid "Enable {0} only"
msgstr "Habilita només {0}"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Habilita el contingut per a adults"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr "Activa el correu 2FA"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr "Habilita la verificació en dos passos per correu"
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2660,30 +2936,30 @@ msgstr "Habilita els subtítols"
msgid "Enable this source only"
msgstr "Habilita només per aquesta font"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "Activa els temes del moment "
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr "Activa els vídeos populars al canal Discover"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr "Activa els vídeos populars al canal Discover."
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Habilitat"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Fi del canal"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Assegura't que has seleccionat un idioma per a cada fitxer de subtítols."
@@ -2696,13 +2972,14 @@ msgstr "Introdueix una contrasenya"
msgid "Enter a word or tag"
msgstr "Introdueix una lletra o etiqueta"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
-msgid "Enter Code"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
msgstr "Entra el codi"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Entra el codi de confirmació"
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
+msgid "Enter Code"
+msgstr "Entra el codi"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
@@ -2712,7 +2989,7 @@ msgstr "Entra a pantalla completa"
msgid "Enter the code you received to change your password."
msgstr "Introdueix el codi que has rebut per a canviar la teva contrasenya."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Introdueix el domini que vols utilitzar"
@@ -2720,20 +2997,20 @@ msgstr "Introdueix el domini que vols utilitzar"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Introdueix el correu que vas fer servir per a crear el teu compte. T'enviarem un \"codi de restabliment\" perquè puguis posar una nova contrasenya."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr "Entra el nom d'usuari o el correu que vas utilitzar per a crear el teu compte"
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Introdueix la teva data de naixement"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Introdueix el teu correu"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Introdueix el teu correu a sobre"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Introdueix el teu nou correu a continuació."
@@ -2749,7 +3026,11 @@ msgstr "Introdueix el teu usuari i contrasenya"
msgid "Enters full screen"
msgstr "Canvia a pantalla completa"
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr "Entreteniment"
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Error"
@@ -2758,15 +3039,18 @@ msgstr "Error"
msgid "Error occurred while saving file"
msgstr "Ha ocorregut un error en desar el fitxer"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "Error en rebre la resposta al captcha."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Error:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr "Error: {error}"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Tothom"
@@ -2818,30 +3102,22 @@ msgstr "Surt del procés de retallar la imatge"
msgid "Exits image view"
msgstr "Surt de la visualització de la imatge"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Surt de la cerca"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Expandeix el text alternatiu"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Expandeix la llista d'usuaris"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "Expandeix o replega la publicació completa a la qual estàs responent"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr "Amplia o redueix el text de la publicació"
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr "Amplia o redueix la publicació a la qual estàs responent"
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "S'esperava que l'uri es resolgués en un registre"
@@ -2864,6 +3140,10 @@ msgstr "Caduca {0}"
msgid "Expires in {0}"
msgstr "Caduca {0}"
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr "Caduca en {0} a les {1}"
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "Contingut explícit o potencialment pertorbador."
msgid "Explicit sexual images."
msgstr "Imatges sexuals explícites."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr "Explora"
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Exporta les meves dades"
@@ -2882,8 +3169,8 @@ msgstr "Exporta les meves dades"
msgid "Export My Data"
msgstr "Exporta les meves dades"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "Contingut extern"
@@ -2897,17 +3184,22 @@ msgstr "Contingut extern"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "El contingut extern pot permetre que algunes webs recullin informació sobre tu i el teu dispositiu. No s'envia ni es demana cap informació fins que premis el botó \"reproduir\"."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Preferència del contingut extern"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
-msgstr ""
+msgstr "No s'ha pogut acceptar el xat"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr "No s'ha pogut afegir la reacció d'emoji"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "No s'ha pogut canviar l'identificador. Torna-ho a provar."
@@ -2915,44 +3207,46 @@ msgstr "No s'ha pogut canviar l'identificador. Torna-ho a provar."
msgid "Failed to create app password. Please try again."
msgstr "No s'ha pogut crear la contrasenya d'aplicació. Torna-ho a provar."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
-msgstr ""
+msgstr "No s'ha pogut crear la conversa"
#: src/screens/StarterPack/Wizard/index.tsx:233
#: src/screens/StarterPack/Wizard/index.tsx:241
msgid "Failed to create starter pack"
msgstr "No s'ha pogut crear l'starter pack"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "No s'ha pogut crear la llista. Comprova la teva connexió a internet i torna-ho a provar."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
-msgstr ""
+msgstr "No s'ha pogut esborrar el xat"
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "No s'ha pogut esborrar el missatge"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
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:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "No s'ha pogut eliminar l'starter pack"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
-msgstr ""
+msgstr "No s'han pogut carregar les converses"
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "No s'han pogut carregar les preferències dels canals"
@@ -2964,25 +3258,36 @@ msgstr "No s'han pogut carregar els GIF"
msgid "Failed to load past messages"
msgstr "No s'han pogut carregar els missatges anteriors"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "No s'han pogut carregar els canals suggerits"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "No s'han pogut carregar els comptes suggerits"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
-msgstr ""
+msgstr "No s'han pogut marcar totes les sol·licituds com a llegides"
#: src/state/queries/pinned-post.ts:75
msgid "Failed to pin post"
msgstr "No s'ha pogut fixar la publicació"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr "No s'ha pogut eliminar la reacció d'emoji"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr "No s'ha pogut eliminar la verificació"
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Error en desar la imatge: {0}"
@@ -2994,20 +3299,39 @@ msgstr "Error en desar les preferències de les notificacions, torna-ho a provar
msgid "Failed to save settings. Please try again."
msgstr "No s'ha pogut desar la configuració. Torna-ho a provar."
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr "No s'han pogut desar els teus interessos."
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "No s'ha pogut enviar"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr "No s'ha pogut enviar el correu. Torna-ho a provar."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/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/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
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:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr "No s'ha pogut actualitzar la configuració del doble factor per correu"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr "No s'ha pogut actualitzar el correu. Torna-ho a provar."
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "No s'han pogut actualitzar els canals"
@@ -3022,20 +3346,24 @@ msgstr "No s'ha pogut actualitzar la configuració"
msgid "Failed to upload video"
msgstr "No s'ha pogut pujar el vídeo"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr "No s'ha pogut verificar el correu. Torna-ho a provar."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "No s'ha pogut verificar l'identificador. Torna-ho a provar."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Canal"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Canal per {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "Menú del canal"
@@ -3043,26 +3371,26 @@ msgstr "Menú del canal"
msgid "Feed toggle"
msgstr "Alterna el canal"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Comentaris"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "Comentaris enviats!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Canals"
@@ -3070,19 +3398,19 @@ msgstr "Canals"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Els canals són algoritmes personalitzats creats per usuaris que coneixen una mica de codi. <0/> per a més informació."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "Canals actualitzats!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "Canals que creiem que t'agradaran."
#: src/screens/Settings/components/OTAInfo.tsx:58
msgid "Fetch update"
-msgstr ""
+msgstr "Cerca actualitzacions"
#: src/screens/Settings/components/ExportCarDialog.tsx:43
msgid "File saved successfully!"
@@ -3092,11 +3420,11 @@ msgstr "Fitxer desat amb èxit"
msgid "Filter from feeds"
msgstr "Filtra-ho dels canals"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr "Filtra la cerca per idioma"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr "Filtra la cerca per idioma (actualment: {currentLanguageLabel})"
@@ -3110,15 +3438,15 @@ msgstr "Finalitzant"
msgid "Find accounts to follow"
msgstr "Troba comptes per a seguir"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "Troba gent per seguir"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
-msgstr ""
+msgstr "Troba publicacions, usuaris i canals a Bluesky"
#: src/screens/StarterPack/Wizard/index.tsx:195
msgid "Finish"
@@ -3131,28 +3459,28 @@ msgstr "Exercici"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117
msgctxt "Name of app icon variant"
msgid "Flat Black"
-msgstr ""
+msgstr "Negre pla"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93
msgctxt "Name of app icon variant"
msgid "Flat Blue"
-msgstr ""
+msgstr "Blau pla"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105
msgctxt "Name of app icon variant"
msgid "Flat White"
-msgstr ""
+msgstr "Blanc pla"
#: src/screens/Onboarding/StepFinished.tsx:294
msgid "Flexible"
msgstr "Flexible"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Segueix"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Segueix"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Segueix {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr "Segueix {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Segueix a {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "Segueix 10 comptes"
msgid "Follow 7 accounts"
msgstr "Segueix 7 comptes"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "Segueix el compte"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Segueix-los a tots"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Segueix"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Segueix"
-#: src/view/screens/Search/Explore.tsx:370
-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."
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "Seguit per <0>{0}0>"
@@ -3224,7 +3544,7 @@ 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/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Seguidors de @{0} que coneixes"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Seguidors que coneixes"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Seguint"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "Seguint {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr "Seguint {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Seguint a {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Preferències del canal Seguint"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Preferències del canal Seguint"
@@ -3301,6 +3617,10 @@ msgstr "Per motius de seguretat, no podràs tornar a veure això. Si perds aques
msgid "For the best experience, we recommend using the theme font."
msgstr "Per obtenir la millor experiència, et recomanem utilitzar el tipus de lletra del tema."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr "Per a tu"
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Per sempre"
@@ -3327,7 +3647,7 @@ msgstr "Publica contingut no desitjat freqüentment"
msgid "From @{sanitizedAuthor}"
msgstr "De @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "De <0/>"
@@ -3336,28 +3656,30 @@ msgstr "De <0/>"
msgid "Gallery"
msgstr "Galeria"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Genera un starter pack"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Aconsegueix ajuda"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
msgstr "Comença"
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Començant"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Posa una cara al teu perfil"
@@ -3366,17 +3688,17 @@ 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/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Ves enrere"
@@ -3384,10 +3706,10 @@ msgstr "Ves enrere"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Ves enrere"
@@ -3408,7 +3730,27 @@ msgstr "Ves a l'inici"
msgid "Go Home"
msgstr "Ves a l'inici"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr "Emet en directe"
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr "Emet en directe"
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr "Emet en directe durant"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr "Vés al perfil de {firstAuthorName}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Ves a la conversa amb {0}"
@@ -3427,8 +3769,8 @@ msgstr "Ves al perfil de l'usuari"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Mitjans gràfics"
@@ -3437,21 +3779,21 @@ msgstr "Mitjans gràfics"
msgid "Half way there!"
msgstr "Ja ets a mig camí!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Identificador"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "Aquest identificador ja està agafat. Si us plau, prova'n un altre."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "S'ha canviat l'identificador!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "L'identificador és massa llarg. Si us plau, prova'n un de més curt."
@@ -3464,7 +3806,7 @@ msgstr "Hàptics"
msgid "Harassment, trolling, or intolerance"
msgstr "Assetjament, troleig o intolerància"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Etiqueta"
@@ -3472,19 +3814,24 @@ msgstr "Etiqueta"
msgid "Hashtag {tag}"
msgstr "Etiqueta: {tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr "Tens un codi?<0>Clica aquí.0>"
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "Tens problemes?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Ajuda"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Ajuda la gent a saber que no ets un bot penjant una imatge o creant un avatar."
@@ -3497,7 +3844,7 @@ msgstr "Aquí tens la teva contrasenya d'aplicació!"
msgid "Hidden"
msgstr "Amagat"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr "Amagat per la teva configuració de moderació."
@@ -3509,58 +3856,59 @@ msgstr "Llista amagada"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Amaga"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Amaga"
#: src/components/dialogs/Embed.tsx:128
msgid "Hide customization options"
-msgstr ""
+msgstr "Amaga les opcions de personalització"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Amaga'm aquesta publicació"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Amaga la resposta per a tothom"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Amaga'm la resposta"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr "Amaga aquesta targeta"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "Vols amagar aquesta entrada?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "Vols amagar aquesta resposta?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Amaga els temes del moment"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "Vols amagar els temes del moment?"
@@ -3569,10 +3917,15 @@ msgstr "Vols amagar els temes del moment?"
msgid "Hide trending videos?"
msgstr "Vols amagar els vídeos populars?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Amaga la llista d'usuaris"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr "Amaga les insígnies de verificació"
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "El servidor del canal ha donat una resposta incorrecta. Avisa al propiet
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Tenim problemes per a trobar aquest canal. Potser ha estat eliminat."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Tenim problemes per a carregar aquestes dades. Mira a continuació per a veure més detalls. Contacta amb nosaltres si aquest problema continua."
@@ -3610,15 +3963,15 @@ msgstr "No podem carregar el servei de moderació."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Espera! A poc a poc estem donant accés al vídeo i encara estàs a la cua. Torna més tard!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Inici"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "Allotjament:"
@@ -3627,34 +3980,33 @@ msgstr "Allotjament:"
msgid "Hosting provider"
msgstr "Proveïdor d'allotjament"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr "Candent"
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "Respostes candents primer"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "Com hem d'obrir aquest enllaç?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Tinc un codi"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Tinc un codi"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Tinc un codi de confirmació"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Tinc el meu propi domini"
@@ -3667,22 +4019,30 @@ msgstr "Ho entenc"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Si el text alternatiu és llarg, canvia l'estat expandit del text alternatiu"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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:758
+#: src/view/screens/ProfileList.tsx:765
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/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Si tens el teu propi domini, pots utilitzar-lo com a identificador. Això et permet autoverificar la teva identitat – <0>més informació0>."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr "Si necessites actualitzar el teu correu, <0>clica aquí0>."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Si esborres aquesta publicació no la podràs recuperar."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr "Si actualitzes el teu correu, es deshabilitarà la verificació en dos passos per correu."
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Si vols canviar la contrasenya t'enviarem un codi per a verificar que aquest compte és teu."
@@ -3704,9 +4064,22 @@ msgstr "Il·legal i urgent"
msgid "Image"
msgstr "Imatge"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "La imatge s'ha desat a la teva galeria!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr "S'ha esborrat la memòria cau d'imatges"
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr "S'ha esborrat la memòria cau d'imatges, s'ha alliberat {0}"
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr "Imatge desada"
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr "Les imatges no es poden desar si no es concedeix permís per a accedir a la biblioteca de fotos."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,9 +4097,9 @@ msgid "Inappropriate messages or explicit links"
msgstr "Missatges inapropiats o enllaços explícits"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
-msgstr ""
+msgstr "La safata està buida"
#: src/screens/Login/LoginForm.tsx:164
msgid "Incorrect username or password"
@@ -3752,15 +4125,11 @@ msgstr "Introdueix la contrasenya per a eliminar el compte"
msgid "Input the code which has been emailed to you"
msgstr "Introdueix el codi que has rebut per correu"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "Introdueix el nom d'usuari o correu que vas utilitzar per a registrar-te"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Interacció limitada"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr "Configuració de les interaccions"
@@ -3769,11 +4138,11 @@ msgstr "Configuració de les interaccions"
msgid "Invalid 2FA confirmation code."
msgstr "El codi de confirmació 2FA no és vàlid."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Identificador no vàlid. Si us plau, prova'n un altre."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "Registre de publicació no vàlid o no admès"
@@ -3789,11 +4158,11 @@ msgstr "Codi de verificació invàlid"
msgid "Invite a Friend"
msgstr "Convida un amic"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Codi d'invitació"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
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."
@@ -3805,7 +4174,7 @@ msgstr "Codis d'invitació: {0} disponible"
msgid "Invite codes: 1 available"
msgstr "Codis d'invitació: 1 disponible"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "Convida a gent a aquest starter pack!"
@@ -3817,7 +4186,7 @@ msgstr "Convida els teus amics a seguir els teus canals i persones preferides"
msgid "Invites, but personal"
msgstr "Convida a Bluesky de manera més personalitzada"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "És correcte"
@@ -3825,19 +4194,19 @@ msgstr "És correcte"
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/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "Identificador de la tasca: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Tasques"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Uneix-te a Bluesky"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "Etiquetat per l'autor."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Etiquetes"
@@ -3868,7 +4237,7 @@ msgstr "Etiquetes"
msgid "Labels added"
msgstr "Etiquetes afegides"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "Les etiquetes són anotacions sobre els usuaris i el contingut. Poden ser utilitzades per a ocultar, advertir i categoritzar la xarxa."
@@ -3884,13 +4253,13 @@ msgstr "Etiquetes al teu contingut"
msgid "Language selection"
msgstr "Tria l'idioma"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Configuració d'idioma"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Idiomes"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Més gran"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "El més recent"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "més informació"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr "Més informació"
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Més informació"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Més informació sobre Bluesky"
@@ -3933,6 +4311,11 @@ msgstr "Més informació sobre la moderació que s'ha aplicat a aquest contingut
msgid "Learn more about this warning"
msgstr "Més informació d'aquesta advertència"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr "Més informació sobre la verificació a Bluesky"
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "Sortint de Bluesky"
msgid "left to go."
msgstr "queda."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Deixa'm triar"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Clar"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "M'agrada"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "M'agrada ({0, plural, one {# m'agrada} other {# m'agrades}})"
@@ -4013,17 +4397,16 @@ msgstr "Fes m'agrada a 10 publicacions"
msgid "Like 10 posts to train the Discover feed"
msgstr "Fes m'agrada a 10 publicacions per a entrenar el canal Discover"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Fes m'agrada a aquest canal"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr "Fes m'agrada a aquest etiquetador"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Li ha agradat a"
@@ -4033,43 +4416,43 @@ msgstr "Li ha agradat a"
msgid "Liked By"
msgstr "Li ha agradat a"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Li ha agradat a {0, plural, one {# usuari} other {# usuaris}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Li ha agradat a {likeCount, plural, one {# usuari} other {# usuaris}}"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "M'agrades"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "M'agrades a aquesta publicació"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "Lineal"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Llista"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Avatar de la llista"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "Llista bloquejada"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4084,44 +4467,44 @@ msgstr "Llista per <0/>"
msgid "List by you"
msgstr "Llista teva"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "Llista eliminada"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
msgstr "S'ha amagat la llista"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "Llista amagada"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "Llista silenciada"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Nom de la llista"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "Llista desbloquejada"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "Llista no silenciada"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Llistes"
@@ -4129,34 +4512,47 @@ msgstr "Llistes"
msgid "Lists blocking this user:"
msgstr "Llistes que bloquegen aquest usuari:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr "EN DIRECTE"
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr "La funció en directe està en fase beta de proves"
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr "Enllaç de l'emissió en directe"
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Carrega'n més"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "Carrega més canals suggerits"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Carrega més suggerencies d'usuaris per seguir"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Carrega noves notificacions"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Carrega noves publicacions"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Carregant…"
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Registre"
@@ -4164,12 +4560,12 @@ msgstr "Registre"
msgid "Logged-out visibility"
msgstr "Visibilitat pels usuaris no connectats"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo per @sawaratsuki.bsky.social"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo per <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "Sembla que has deixat tots els teus canals sense fixar. No passa res, en
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Sembla que et falta el canal dels Seguits. <0>Clica aquí per a afegir-ne un.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr "Fes ajustaments a la configuració del correu del teu compte"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "Fes-ne un per mi"
@@ -4201,36 +4601,47 @@ 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/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "Gestiona els canals desats"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr "Gestiona la configuració de verificació"
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Gestiona les teves etiquetes i paraules silenciades"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
-msgstr ""
+msgstr "Marca-ho tot com a llegit"
#: src/components/dms/ConvoMenu.tsx:215
#: src/components/dms/ConvoMenu.tsx:218
msgid "Mark as read"
msgstr "Marca com a llegit"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
-msgstr ""
+msgstr "S'ha marcat tot com a llegit"
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr "Potser més tard"
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Contingut"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Continguts que poden ser inquietants o inadequats per a alguns públics."
@@ -4246,23 +4657,27 @@ msgstr "Usuaris mencionats"
msgid "Mentions"
msgstr "Mencions"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Menú"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Missatge {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Missatge esborrat"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Missatge esborrat"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr "Missatge de @ {0}: {1}"
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Missatge del servidor: {0}"
@@ -4276,14 +4691,18 @@ msgstr "Camp d'entrada del missatge"
msgid "Message is too long"
msgstr "El missatge és massa llarg"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr "Opcions del missatge"
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Missatges"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81
msgctxt "Name of app icon variant"
msgid "Midnight"
-msgstr ""
+msgstr "Mitjanit"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47
#: src/lib/moderation/useReportOptions.ts:47
@@ -4295,10 +4714,10 @@ msgstr "Compte enganyós"
msgid "Misleading Post"
msgstr "Publicació enganyosa"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Moderació"
@@ -4320,22 +4739,22 @@ msgstr "Llista de moderació per <0/>"
msgid "Moderation list by you"
msgstr "Llista de moderació teva"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "S'ha creat la llista de moderació"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "S'ha actualitzat la llista de moderació"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Llistes de moderació"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Llistes de moderació"
@@ -4343,11 +4762,11 @@ msgstr "Llistes de moderació"
msgid "moderation settings"
msgstr "preferències de moderació"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "Estats de moderació"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Eines de moderació"
@@ -4356,7 +4775,7 @@ msgstr "Eines de moderació"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "El moderador ha decidit establir un advertiment general sobre el contingut."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Més"
@@ -4365,9 +4784,9 @@ msgstr "Més"
msgid "More feeds"
msgstr "Més canals"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Més opcions"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "Amb més m'agrada primer"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Respostes amb més m'agrada primer"
@@ -4400,14 +4819,14 @@ msgstr "Silencia"
msgid "Mute {tag}"
msgstr "Silencia {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "Silencia el compte"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Silencia els comptes"
@@ -4420,11 +4839,11 @@ msgstr "Silencia la conversa"
msgid "Mute in:"
msgstr "Silencia a:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Silencia la llista"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "Vols silenciar aquests comptes?"
@@ -4452,26 +4871,26 @@ msgstr "Silencia aquesta paraula només a les etiquetes"
msgid "Mute this word until you unmute it"
msgstr "Silencia aquesta paraula fins que digui prou"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Silencia el fil de debat"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Silencia paraules i etiquetes"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Comptes silenciats"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Comptes silenciats"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
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."
@@ -4479,11 +4898,11 @@ msgstr "Les publicacions dels comptes silenciats seran eliminats del teu canal i
msgid "Muted by \"{0}\""
msgstr "Silenciat per \"{0}\""
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Paraules i etiquetes silenciades"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
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."
@@ -4492,15 +4911,15 @@ msgstr "Silenciar és privat. Els comptes silenciats poden interactuar amb tu, p
msgid "My Birthday"
msgstr "El meu aniversari"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "Els meus canals"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Nom"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "Es requereix un nom"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Natura"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "ves a {0}"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr "Ves a l'starter pack"
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "Navega a la pantalla següent"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Navega al teu perfil"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "Necessites canviar-lo?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "Necessites informar d'una infracció dels drets d'autor?"
@@ -4547,30 +4971,43 @@ msgstr "Necessites informar d'una infracció dels drets d'autor?"
msgid "Never lose access to your followers or data."
msgstr "No perdis mai accés als teus seguidors i les teves dades."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "Tant hi fa, crea'm un identificador"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Nou"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Nova"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "Xat nou"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr "Adreça de correu nova"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr "Funció nova"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "Nou identificador"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "Llista nova"
@@ -4578,7 +5015,7 @@ msgstr "Llista nova"
msgid "New messages"
msgstr "Nous missatges"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Nova llista de moderació"
@@ -4590,12 +5027,12 @@ msgstr "Nova contrasenya"
msgid "New Password"
msgstr "Nova contrasenya"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Nova publicació"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "Nova publicació"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Nova publicació"
@@ -4613,19 +5050,20 @@ msgstr "Nova publicació"
msgid "New user info dialog"
msgstr "Diàleg d'informació d'usuari nou"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Nova llista d'usuaris"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "Les respostes més noves primer"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Notícies"
@@ -4655,11 +5093,15 @@ msgstr "Següent imatge"
msgid "No app passwords yet"
msgstr "Encara no hi ha contrasenyes d'aplicació"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "No hi ha panell de DNS"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr "Sense caducitat definida"
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "No s'han trobat GIF destacats. Pot haver-hi un problema amb Tenor."
@@ -4668,21 +5110,25 @@ 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/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr "Sense imatge"
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "Encara no té cap m'agrada"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "Ja no segueixes a {0}"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr "No pot tenir més de {MAX_SERVICE_HANDLE_LENGTH} caràcters"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr "No pot contenir més de {MAX_SERVICE_HANDLE_LENGTH, plural, one {}other {# caràcters}}"
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "Encara no tens cap missatge"
@@ -4711,31 +5157,38 @@ msgstr "Encara no té cap citació"
msgid "No reposts yet"
msgstr "Encara no s'ha republicat"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Cap resultat"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "Cap resultat"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr "No s'han trobat resultats per \"{0}\"."
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "No s'han trobat resultats"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "No s'han trobat resultats per \"{query}\""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "No s'han trobat resultats per {query}"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr "Cap resultat."
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "No s'han trobat resultats de cerca per a \"{search}\"."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Ningú"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "A ningú encara li ha agradat això. Potser hauries de ser el primer!"
@@ -4773,21 +5225,17 @@ msgstr "Nuesa no sexual"
#: src/components/KnownFollowers.tsx:255
msgid "Not followed by anyone you're following"
-msgstr ""
+msgstr "No el segueix ningú a qui segueixes"
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "No s'ha trobat"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "Ara mateix no"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Nota sobre compartir"
@@ -4795,7 +5243,7 @@ msgstr "Nota sobre compartir"
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Nota: Bluesky és una xarxa oberta i pública. Aquesta configuració tan sols limita el teu contingut a l'aplicació de Bluesky i a la web, altres aplicacions poden no respectar-ho. El teu contingut pot ser mostrat a usuaris no connectats per altres aplicacions i webs."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Aquí no hi ha res"
@@ -4803,7 +5251,7 @@ msgstr "Aquí no hi ha res"
msgid "Notification filters"
msgstr "Filtres de les notificacions"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Configuració de les notificacions"
@@ -4820,11 +5268,11 @@ msgstr "Sons de les notificacions"
msgid "Notification Sounds"
msgstr "Sons de les notificacions"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Notificacions"
@@ -4832,12 +5280,12 @@ msgstr "Notificacions"
msgid "now"
msgstr "ara"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Ara"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Nuesa"
@@ -4859,21 +5307,23 @@ msgstr "Ostres!"
msgid "Oh no! Something went wrong."
msgstr "Ostres! Alguna cosa ha fallat."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "D'acord"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "D'acord"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "Respostes més antigues primer"
@@ -4881,19 +5331,19 @@ msgstr "Respostes més antigues primer"
msgid "on<0><1/><2><3/>2>0>"
msgstr "en<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Restableix la incorporació"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "Falta el text alternatiu a un o més GIFs."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "Falta el text alternatiu a una o més imatges."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "Falta el text alternatiu a un o més videos."
@@ -4905,11 +5355,11 @@ msgstr "Només s'accepten fitxers .jpg i .png"
msgid "Only {0} can reply."
msgstr "Només {0} poden respondre."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Només pot tenir lletres, nombres i guionets"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "Només s'admeten fitxers d'imatge"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "Ostres, alguna cosa ha anat malament!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "Ostres!"
@@ -4935,67 +5385,80 @@ msgstr "Ostres!"
msgid "Open"
msgstr "Obert"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "Obre el menú de drecera del perfil {name}"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Obre el creador d'avatars"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "Obre les opcions de les converses"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "Obre el menú del calaix"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Obre el selector d'emojis"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "Obre la pantalla d'informació del canal"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "Obre el menú de les opcions del canal"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr "Obre la llista completa d'emojis"
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "Obre l'enllaç a {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "Obre les opcions dels missatges"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "Obre la pàgina de depuració de moderació"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Obre la configuració de les paraules i etiquetes silenciades"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr "Obre el pack"
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "Obre el menú de les opcions de publicació"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr "Obre el perfil"
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr "Obre el menú de compatir"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "Obre el menú de l'starter pack"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Obre la pàgina d'historial"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Obre el registre del sistema"
@@ -5015,19 +5478,19 @@ msgstr "Obre un diàleg per triar qui pot respondre a aquest fil"
msgid "Opens additional details for a debug entry"
msgstr "Obre detalls addicionals per una entrada de depuració"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
-msgstr ""
+msgstr "Obre el diàleg de text alternatiu"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Obre la càmera del dispositiu"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
-msgstr ""
+msgstr "Obre el diàleg de subtítols i text alternatiu"
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr "Obre el diàleg de canvi d'identificador"
@@ -5039,7 +5502,7 @@ msgstr "Obre el compositor"
msgid "Opens device photo gallery"
msgstr "Obre la galeria fotogràfica del dispositiu"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr "Obre el selector d'emojis"
@@ -5057,7 +5520,7 @@ msgstr "Obre el procés per a iniciar sessió a un compte existent de Bluesky"
msgid "Opens GIF select dialog"
msgstr "Obre el diàleg per a triar GIF"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr "Obre el centre d'ajuda al navegador"
@@ -5065,6 +5528,10 @@ msgstr "Obre el centre d'ajuda al navegador"
msgid "Opens list of invite codes"
msgstr "Obre la llista de codis d'invitació"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr "Obre el quadre de diàleg d'estat en directe"
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Obre el formulari de restabliment de la contrasenya"
@@ -5073,12 +5540,12 @@ msgstr "Obre el formulari de restabliment de la contrasenya"
msgid "Opens the linked website"
msgstr "Obre la web enllaçada"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Obre aquest perfil"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Obre el selector de vídeos"
@@ -5105,27 +5572,27 @@ msgstr "O inicia sessió en un altre dels teus comptes."
#: src/screens/Settings/components/OTAInfo.tsx:52
msgid "OTA status: ..."
-msgstr ""
+msgstr "Estat de l'OTA: ..."
#: src/screens/Settings/components/OTAInfo.tsx:48
msgid "OTA status: Available!"
-msgstr ""
+msgstr "Estat de l'OTA: Disponible!"
#: src/screens/Settings/components/OTAInfo.tsx:50
msgid "OTA status: Error fetching update"
-msgstr ""
+msgstr "Estat de l'OTA: No s'han pogut cercar actualitzacions"
#: src/screens/Settings/components/OTAInfo.tsx:54
msgid "OTA status: None available"
-msgstr ""
+msgstr "Estat de l'OTA: Cap disponible"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Un altre"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Un altre compte"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Pàgina no trobada"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "Posa en pausa"
msgid "Pause video"
msgstr "Posa en pausa el vídeo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "Gent"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "Persones seguides per @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "Persones seguint a @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "Cal permís per a accedir al carret de la càmera."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "S'ha denegat el permís per a accedir a la càmera. Activa'l a la configuració del teu sistema."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr "S'ha denegat el permís per accedir a la teva biblioteca de fotos. Si us plau, activa-ho a la configuració del sistema."
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "Mascotes"
msgid "Photography"
msgstr "Fotografia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Imatges destinades a adults."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr "Fixa"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "Fixa el canal"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr "Fixa el canal de vídeos populars a la pantalla d'inici per a accedir fàcilment"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr "Fixa el canal"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Fixa a l'inici"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Fixa a l'Inici"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Fixa-ho al teu perfil"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Fixat"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "{0} fixat a l'inici"
@@ -5263,7 +5722,7 @@ msgstr "{0} fixat a l'inici"
msgid "Pinned Feeds"
msgstr "Canals de notícies fixats"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "Fixat als teus canals"
@@ -5302,24 +5761,28 @@ msgstr "Reprodueix el GIF"
msgid "Plays the video"
msgstr "Reprodueix el vídeo"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr "Afegeix les etiquetes d'advertència de contingut aplicables als continguts multimèdia que publiques."
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Tria el teu identificador."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Tria la teva contrasenya."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr "Fes clic a l'enllaç del correu que us acabem d'enviar per verificar la teva nova adreça electrònica. Aquest és un pas important per permetre't continuar gaudint de totes les funcions de Bluesky."
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Completa el captcha de verificació."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Confirma el teu correu abans de canviar-lo. Aquest és un requisit temporal mentre no s'afegeixin eines per a actualitzar el correu. Aviat no serà necessari."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr "Si us plau, comprova que has introduït la teva adreça de correu electrònic correctament."
@@ -5335,19 +5798,41 @@ msgstr "Introdueix una contrasenya. Ha de tenir almenys 8 caràcters."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Introdueix un nom únic per aquesta contrasenya d'aplicació o fes servir un nom generat aleatòriament."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr "Introdueix un codi vàlid."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr "Introdueix una adreça de correu vàlida."
+
#: 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"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr "Introdueix el codi que t'hem enviat a <0>{0}0> a continuació."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr "Introdueix el codi de seguretat que et vam enviar a la teva adreça de correu anterior."
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Introdueix el teu correu."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Entra el teu codi d'invitació."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr "Introdueix la teva nova adreça de correu."
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr "Introdueix la contrasenya"
@@ -5381,24 +5866,25 @@ msgstr "Selecciona un motiu per a aquest informe"
msgid "Please sign in as @{0}"
msgstr "Inicia sessió com a @{0}"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr "Verifica el teu correu"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Verifica el teu correu"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Política"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr "Vídeos populars de la teva xarxa."
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Pornografia"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Publica"
@@ -5408,32 +5894,32 @@ msgctxt "description"
msgid "Post"
msgstr "Publica"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Publica-ho tot"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "Publicació per {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "Publicació per @{0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "Publicació eliminada"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "No s'ha pogut penjar la publicació. Comprova la tevaa connexió a Internet i torna-ho a provar."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr "La publicació s'ha eliminat"
@@ -5455,7 +5941,7 @@ msgstr "Publicació amagada per tu"
msgid "Post interaction settings"
msgstr "Configuració de les interaccions de la publicació"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr "Configuració de les interaccions de la publicació"
@@ -5476,15 +5962,16 @@ msgstr "Publicació no trobada"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "Publicació fixada"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "Publicació sense fixar"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Publicacions"
@@ -5503,7 +5990,7 @@ msgstr "Enllaç potencialment enganyós"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "Preferència desada"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -5524,7 +6011,7 @@ msgstr "Prem per veure els seguidors d'aquest compte que també segueixes"
msgid "Previous image"
msgstr "Imatge anterior"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Idioma principal"
@@ -5537,31 +6024,31 @@ msgstr "Prioritza els usuaris que segueixes"
msgid "Priority notifications"
msgstr "Notificacions prioritàries"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Privacitat"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "Privadesa i seguretat"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Privadesa i seguretat"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Política de privacitat"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Processant el vídeo..."
@@ -5570,23 +6057,23 @@ msgstr "Processant el vídeo..."
msgid "Processing..."
msgstr "Processant…"
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Perfil"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "Perfil actualitzat"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
@@ -5600,6 +6087,26 @@ msgstr "Llistes públiques i compartibles d'usuaris per silenciar o bloquejar de
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "Llistes públiques i compartibles que es poden utilitzar per generar feeds."
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr "Publica la publicació"
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr "Publica les publicacions"
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr "Publica les respostes"
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr "Publica la resposta"
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "Codi QR copiat en memòria!"
@@ -5612,25 +6119,25 @@ msgstr "Codi QR descarregat!"
msgid "QR code saved to your camera roll!"
msgstr "Codi QR desat a la teva galeria"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Cita la publicació"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "La publicació citada s'ha tornat a enganxar"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "La publicació citada s'ha desenganxat amb èxit"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "S'han deshabilitat les citacions"
@@ -5642,39 +6149,48 @@ msgstr "Configuració de les citacions"
msgid "Quotes"
msgstr "Citacions"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "Citacions d'aquesta publicació"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Aleatori (també conegut com a \"Poster's Roulette\")"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "Has superat el límit – has intentat canviar l'identificador massa vegades en poc temps. Si us plau, espera un minut abans de tornar-ho a provar."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "Torna a enganxar la citació"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr "Reacciona amb {emoji}"
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Torna a activar el teu compte"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr "Llegeix la publicació del blog"
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr "Mostra'n menys"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr "Mostra'n més"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Llegeix el blog de Bluesky"
@@ -5697,11 +6213,11 @@ msgstr "Motiu de l'apel·lació"
msgid "Reason:"
msgstr "Raó:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Cerques recents"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "Recomanats"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "Torna a connectar"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
-msgstr ""
+msgstr "Rebutja"
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
-msgstr ""
+msgstr "Rebutja la sol·licitud de xat"
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Carrega les converses de nou"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Elimina"
msgid "Remove {displayName} from starter pack"
msgstr "Elimina a {displayName} de l'starter pack"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
-msgstr ""
+msgstr "Elimina {historyItem}"
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Elimina el compte"
@@ -5752,13 +6268,13 @@ msgstr "Elimina el compte"
msgid "Remove attachment"
msgstr "Elimina l'adjunt"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Elimina l'avatar"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "Elimina el bàner"
@@ -5776,24 +6292,25 @@ msgstr "Elimina el canal"
msgid "Remove feed?"
msgstr "Vols eliminar el canal?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Elimina dels meus canals"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "Vols eliminar-lo de l'accés ràpid?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "Elimina'l dels canals desats"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr "Vols eliminar-lo dels teus canals?"
@@ -5802,11 +6319,16 @@ msgstr "Vols eliminar-lo dels teus canals?"
msgid "Remove image"
msgstr "Elimina la imatge"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr "Elimina l'estat en directe"
+
#: 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:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Elimina el perfil"
@@ -5814,12 +6336,12 @@ msgstr "Elimina el perfil"
msgid "Remove quote"
msgstr "Elimina la citació"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Elimina la republicació"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Eliminar el fitxer de subtítols"
@@ -5827,6 +6349,21 @@ msgstr "Eliminar el fitxer de subtítols"
msgid "Remove this feed from your saved feeds"
msgstr "Elimina aquest canal dels meus canals"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr "Elimina l'usuari de la llista"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr "Elimina la verificació"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr "Vols eliminar la teva verificació d'aquest compte?"
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "Eliminat per l'autor"
@@ -5835,7 +6372,7 @@ msgstr "Eliminat per l'autor"
msgid "Removed by you"
msgstr "Tu l'has eliminat"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Elimina de la llista"
@@ -5845,19 +6382,18 @@ msgid "Removed from my feeds"
msgstr "Eliminat dels meus canals"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Eliminat dels canals desats"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Eliminat dels teus canals"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr "Elimina el perfil de l'historial de cerca"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr "Verificació eliminada"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
@@ -5868,7 +6404,7 @@ msgstr "Elimina la publicació amb la citació"
msgid "Replace with Discover"
msgstr "Canvia amb Discover"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Respostes"
@@ -5880,12 +6416,13 @@ msgstr "Respostes deshabilitades"
msgid "Replies to this post are disabled."
msgstr "Les respostes a aquesta publicació estan deshabilitades."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Respon"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Respostes ({0, plural, one {# resposta} other {# respostes}})"
@@ -5907,86 +6444,86 @@ msgstr "Configuració de les respostes"
msgid "Reply settings are chosen by the author of the thread"
msgstr "La configuració de les respostes la tria l'autor del fil de debat"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "Ordenació de respostes"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Resposta a <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Resposta a una publicació bloquejada"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "Resposta a una publicació"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Resposta a tu mateix"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "S'ha actualitzat la visibilitat de la resposta"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "La resposta s'ha amagat amb èxit"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Informa"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "Informa del compte"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Informa d'aquesta conversa"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "Diàleg de l'informe"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Informa del canal"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
-msgstr "Informa de la llista"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
+msgstr "Denuncia la llista"
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Informa del missatge"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Informa de la publicació"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "Informa sobre l'starter pack"
@@ -6030,25 +6567,26 @@ msgstr "Informa sobre aquest starter pack"
msgid "Report this user"
msgstr "Informa d'aquest usuari"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Republica"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Republica"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Republica ({0, plural, one {# republicació} other {# republicacions}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Republica o cita la publicació"
@@ -6056,26 +6594,26 @@ msgstr "Republica o cita la publicació"
msgid "Reposted By"
msgstr "Republicat per"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "Republicat per {0}"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "Republicat per <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "Republicat per tu"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "Republicacions d'aquesta publicació"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
msgstr "Demana un canvi"
#: src/view/com/modals/ChangePassword.tsx:253
@@ -6088,11 +6626,11 @@ msgstr "Demana un codi"
msgid "Require alt text before posting"
msgstr "Requereix un text alternatiu abans de publicar"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr "Sol·licita el codi de correu per a iniciar sessió al teu compte."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Requerit per aquest proveïdor"
@@ -6100,13 +6638,19 @@ msgstr "Requerit per aquest proveïdor"
msgid "Required in your region"
msgstr "Obligatori a la teva regió"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr "Torna'l a enviar"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "Torna a enviar el correu"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "Torna a enviar el correu"
@@ -6123,8 +6667,8 @@ msgstr "Codi de restabliment"
msgid "Reset Code"
msgstr "Codi de restabliment"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "Restableix l'estat de la incorporació"
@@ -6141,16 +6685,16 @@ msgstr "Torna a intentar iniciar sessió"
msgid "Retries the last action, which errored out"
msgstr "Torna a intentar l'última acció, que ha donat error"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "Torna a intentar l'última acció, que ha donat error"
msgid "Retry"
msgstr "Torna-ho a provar"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr "Torna a provar de carregar les opcions d'informe"
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Torna a la pàgina anterior"
@@ -6175,11 +6719,11 @@ msgstr "Torna a la pàgina anterior"
msgid "Returns to home page"
msgstr "Torna a la pàgina d'inici"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "Torna a la pàgina anterior"
@@ -6190,24 +6734,26 @@ msgstr "Ves al pas anterior"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Desa"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Desa"
@@ -6221,12 +6767,12 @@ msgstr "Desa la data de naixement"
msgid "Save changes"
msgstr "Desa els canvis"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Desa els canvis"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Desa la imatge"
@@ -6234,16 +6780,16 @@ msgstr "Desa la imatge"
msgid "Save image crop"
msgstr "Desa la imatge retallada"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Desa el nou identificador"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "Desa el codi QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Desa-ho als meus canals"
@@ -6251,16 +6797,12 @@ msgstr "Desa-ho als meus canals"
msgid "Saved Feeds"
msgstr "Canals desats"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "S'ha desat a la teva galeria d'imatges"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "S'ha desat als teus canals."
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "Desa qualsevol canvi al teu perfil"
@@ -6270,8 +6812,8 @@ msgstr "Desa la configuració de retall d'imatges"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "Digues hola!"
@@ -6280,45 +6822,42 @@ msgstr "Digues hola!"
msgid "Science"
msgstr "Ciència"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "Desplaça't cap a dalt"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Cerca"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Cerca a les publicacions de @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "Cerca per nom o interès"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "Cerca canals"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "Cerca per \"{interestsDisplayName}\"{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Cerca per \"{query}\""
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "Cerca per \"{searchText}\""
@@ -6326,29 +6865,33 @@ msgstr "Cerca per \"{searchText}\""
msgid "Search for feeds that you want to suggest to others."
msgstr "Cerca canals que vulgueu suggerir als altres."
-#: src/view/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr "Cerca més comptes"
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr "Cerca més canals"
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
msgstr "Cerca publicacions, usuaris o canals"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Cerca usuaris"
-
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "Cerca GIF"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr "Cerca a les meves publicacions"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr "Cerca publicacions"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Cerca perfils"
@@ -6356,16 +6899,20 @@ msgstr "Cerca perfils"
msgid "Search Tenor"
msgstr "Cerca Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr "Cerca..."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr "Cerca perfils"
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr "Es requereix un pas de seguretat"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Es requereix un pas de seguretat"
@@ -6385,7 +6932,7 @@ msgstr "Mostra les publicacions amb #{tag}"
msgid "See #{tag} posts by user"
msgstr "Mostra les publicacions amb #{tag} de l'usuari"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Veure les feines a Bluesky"
@@ -6405,6 +6952,10 @@ msgstr "Selecciona un color"
msgid "Select account"
msgstr "Selecciona el compte"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr "Selecciona un idioma de l'aplicació"
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Selecciona un avatar"
@@ -6413,10 +6964,22 @@ msgstr "Selecciona un avatar"
msgid "Select an emoji"
msgstr "Selecciona un emoji"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr "Selecciona una opció"
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr "Selecciona l'idioma de l'aplicació"
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Selecciona els idiomes del contingut"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr "Tria la durada"
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Selecciona d'un compte existent"
@@ -6433,15 +6996,15 @@ msgstr "Selecciona GIF \"{0}\""
msgid "Select how long to mute this word for."
msgstr "Tria per quant temps s'ha de silenciar aquesta paraula."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Selecciona l'idioma..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Selecciona els idiomes"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr "Selecciona un servei de moderació"
@@ -6449,6 +7012,10 @@ msgstr "Selecciona un servei de moderació"
msgid "Select moderator"
msgstr "Selecciona el moderador"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr "Selecciona l'idioma principal"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "Selecciona el {emojiName} emoji com al teu avatar"
msgid "Select the moderation service(s) to report to"
msgstr "Selecciona els serveis de moderació als quals voleu informar"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Selecciona el vídeo"
@@ -6470,23 +7037,24 @@ msgstr "Selecciona el vídeo"
msgid "Select what content this mute word should apply to."
msgstr "Tria a quin contingut s'ha d'aplicar aquesta paraula silenciada."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr "Selecciona quin idioma vols utilitzar per a la interfície d'usuari de l'aplicació."
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
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."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Selecciona la teva data de naixement"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "Selecciona els teus interessos d'entre aquestes opcions"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "Selecciona el teu idioma preferit per a les traduccions al teu canal."
@@ -6498,19 +7066,17 @@ msgstr "Selecciona l'opció {i} de {numItems}"
msgid "Send a neat website!"
msgstr "Envia un lloc web net!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
msgstr "Envia confirmació"
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Envia correu de confirmació"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Envia correu de confirmació"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Envia correu"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Envia correu"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Envia comentari"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Envia el missatge"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr "Envia la publicació a {name}"
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Envia el missatge a..."
@@ -6544,17 +7114,20 @@ msgstr "Envia informe"
msgid "Send report to {0}"
msgstr "Envia informe a {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr "Envia l'informe a {title}"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Envia un correu de verificació"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Envia per missatge directe"
@@ -6570,7 +7143,7 @@ msgstr "Adreça del servidor"
msgid "Set app icon to {0}"
msgstr "Estableix la icona de l'aplicació a {0}"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "Estableix la data de naixement"
@@ -6586,19 +7159,19 @@ msgstr "Configura el teu compte"
msgid "Sets email for password reset"
msgstr "Estableix un correu per a restablir la contrasenya"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Configuració"
#: src/screens/ModerationInteractionSettings/index.tsx:102
msgctxt "toast"
msgid "Settings saved"
-msgstr ""
+msgstr "Configuració desada"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Activitat sexual o nu eròtic."
@@ -6606,21 +7179,15 @@ msgstr "Activitat sexual o nu eròtic."
msgid "Sexually Suggestive"
msgstr "Suggerent sexualment"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Comparteix"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Comparteix"
@@ -6633,15 +7200,19 @@ msgstr "Comparteix una història interessant!"
msgid "Share a fun fact!"
msgstr "Comparteix una dada divertida!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Comparteix de totes maneres"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr "Comparteix el DID de l'autor"
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "Comparteix l'enllaç"
@@ -6650,32 +7221,46 @@ msgstr "Comparteix l'enllaç"
msgid "Share Link"
msgstr "Comparteix l'enllaç"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "Diàleg de compartició de l'enllaç"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr "Comparteix l'URI at:// de la publicació"
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Comparteix el codi QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "Comparteix aquest canal"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "Comparteix aquest starter pack"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "Comparteix aquest starter pack i ajuda la gent de la teva comunitat a unir-se a Bluesky."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr "Comparteix a través de..."
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "Comparteix el teu canal preferit!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "Comprovador de preferències compartides"
@@ -6685,7 +7270,7 @@ msgstr "Comparteix la web enllaçada"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Mostra"
@@ -6696,8 +7281,8 @@ msgstr "Mostra el text alternatiu"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Mostra igualment"
@@ -6712,14 +7297,14 @@ msgstr "Mostra la insígnia i filtra-ho dels canals"
#: src/components/dialogs/Embed.tsx:129
msgid "Show customization options"
-msgstr ""
+msgstr "Mostra les opcions de personalització"
#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22
msgid "Show hidden replies"
msgstr "Mostra les respostes ocultes"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "Mostra'n menys com aquest"
@@ -6727,14 +7312,14 @@ msgstr "Mostra'n menys com aquest"
msgid "Show list anyway"
msgstr "Mostra la llista de totes maneres"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Mostra més"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Mostra'n més com aquest"
@@ -6752,7 +7337,7 @@ msgstr "Mostra les publicacions citades"
msgid "Show replies"
msgstr "Mostra les respostes"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "Mostra les respostes com a"
@@ -6764,8 +7349,8 @@ msgstr "Mostra les respostes com a fils"
msgid "Show replies by people you follow before all other replies"
msgstr "Mostra les respostes dels comptes que segueixes abans que les altres"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "Mostra la resposta a tothom"
@@ -6787,11 +7372,11 @@ msgstr "Mostra l'advertiment"
msgid "Show warning and filter from feeds"
msgstr "Mostra l'advertiment i filtra-ho dels canals"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr "Mostra informació sobre quan es va crear aquesta publicació"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr "Mostra altres comptes als quals pots canviar"
@@ -6809,8 +7394,8 @@ msgstr "Mostra el contingut"
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr "Mostra el contingut"
msgid "Sign in"
msgstr "Inicia sessió"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Inicia sessió com a {0}"
@@ -6826,16 +7411,16 @@ msgstr "Inicia sessió com a {0}"
msgid "Sign in as..."
msgstr "Inicia sessió com a …"
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr "Inicia sessió o crea un compte"
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "Inicia sessió o crea el teu compte per a unir-te a la conversa"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "Inicia sessió o registra't"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "Inicia sessió a un compte que no està llistat"
@@ -6843,15 +7428,15 @@ msgstr "Inicia sessió a un compte que no està llistat"
msgid "Sign in to Bluesky or create a new account"
msgstr "Inicia sessió o crea el teu compte"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Tanca sessió"
@@ -6859,8 +7444,8 @@ msgstr "Tanca sessió"
msgid "Sign Out"
msgstr "Tanca la sessió"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "Tancar la sessió?"
@@ -6874,11 +7459,6 @@ msgstr "Es requereix iniciar sessió"
msgid "Signed in as @{0}"
msgstr "S'ha iniciat sessió com a @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "S'ha registrat sense cap starter pack"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Comptes semblants"
@@ -6896,12 +7476,21 @@ msgstr "Salta aquest flux"
msgid "Smaller"
msgstr "Més petit"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr "Posposa el recordatori"
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Desenvolupament de programari"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr "Algunes de les teves verificacions no són vàlides."
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "Alguns altres canals que potser t'agradaran"
@@ -6909,23 +7498,31 @@ msgstr "Alguns altres canals que potser t'agradaran"
msgid "Some people can reply"
msgstr "Algunes persones poden respondre"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr "Algú ha reaccionat amb {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr "Algú ha reaccionat amb {0} a {1}"
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Hi ha alguna cosa que no va bé amb les dades que intenteu informar. Contacteu amb suport."
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Alguna cosa ha fallat"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Alguna cosa ha fallat, torna-ho a provar"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Alguna cosa ha fallat, torna-ho a provar."
@@ -6934,16 +7531,16 @@ msgstr "Alguna cosa ha fallat, torna-ho a provar."
msgid "Something went wrong!"
msgstr "Alguna cosa ha fallat."
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr "Alguna cosa ha fallat, torna-ho a provar."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "Alguna cosa no va a l'hora? Fes-nos-ho saber."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "La teva sessió ha caducat. Torna a iniciar-la."
@@ -6978,34 +7575,39 @@ msgstr "Brossa; excessives mencions o respostes"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Esports"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr "Enceta una conversa i apareixerà aquí."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Comença un nou xat"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "Comença a afegir gent"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "Comença a afegir gent"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Comença un xat amb {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Starter pack"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "Starter pack de: {0}"
@@ -7013,38 +7615,39 @@ msgstr "Starter pack de: {0}"
msgid "Starter pack by <0/>"
msgstr "Starter pack de <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "Starter pack fet per tu"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "Aquest starter pack és invàlid"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "Starter packs"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Els starter packs et permeten compartir els teus canals i persones preferides amb els teus amics."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Pàgina d'estat"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "Pas {0} de {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
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:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "Historial"
@@ -7063,69 +7666,74 @@ msgstr "Envia l'apel·lació"
msgid "Submit Appeal"
msgstr "Envia l'apel·lació"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr "Envia l'informe"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Subscriure's"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "Subscriu-te a @{0} per a utilitzar aquestes etiquetes:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "Subscriu-te a l'etiquetador"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "Subscriu-te a aquest etiquetador"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "Subscriure's a la llista"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "Verificat"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr "Verificat correctament"
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
msgstr "Comptes suggerits"
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Suggeriments per tu"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Suggerent"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60
msgctxt "Name of app icon variant"
msgid "Sunrise"
-msgstr ""
+msgstr "Alba"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70
msgctxt "Name of app icon variant"
msgid "Sunset"
-msgstr ""
+msgstr "Ocàs"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Suport"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Canvia el compte"
@@ -7134,11 +7742,11 @@ msgstr "Canvia el compte"
msgid "Switch Account"
msgstr "Canvia el compte"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "Canvia de compte"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr "Canvia a {0}"
@@ -7149,9 +7757,9 @@ msgstr "Canvia a {0}"
msgid "System"
msgstr "Sistema"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Registres del sistema"
@@ -7159,6 +7767,12 @@ msgstr "Registres del sistema"
msgid "Tags only"
msgstr "Només etiquetes"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr "Toca per a tancar el menú contextual"
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Toca per a ignorar"
@@ -7184,7 +7798,7 @@ msgstr "Tecnologia"
msgid "Tell a joke!"
msgstr "Explica un acudit!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "Explica'ns més coses sobre tu"
@@ -7192,17 +7806,17 @@ msgstr "Explica'ns més coses sobre tu"
msgid "Tell us a little more"
msgstr "Explica'ns una mica més"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Condicions"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Condicions del servei"
@@ -7230,7 +7844,11 @@ msgstr "Camp de text"
msgid "Text input field"
msgstr "Camp d'introducció de text"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr "Gràcies pels teus comentaris! S'han enviat a l'operador del canal."
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "Gràcies, el teu correu està verificat."
@@ -7242,7 +7860,7 @@ msgstr "Gràcies. El teu informe s'ha enviat."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Gràcies, has verificat correctament el teu correu. Pots tancar aquest diàleg."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "Això conté els següents:"
@@ -7250,10 +7868,10 @@ msgstr "Això conté els següents:"
msgid "That handle is already taken."
msgstr "Aquest identificador ja està agafat."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "No s'ha pogut trobar aquest starter pack."
msgid "That's all, folks!"
msgstr "Això és tot, amics!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr "Això és tot!"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "El compte podrà interactuar amb tu després del desbloqueig."
@@ -7282,7 +7900,7 @@ msgstr ";'aplicació es reiniciarà"
msgid "The author of this thread has hidden this reply."
msgstr "L'autor d'aquest fil de debat ha amagat aquesta resposta."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "L'aplicació web de Bluesky"
@@ -7302,6 +7920,10 @@ msgstr "El canal Discover"
msgid "The Discover feed now knows what you like"
msgstr "El canal Discover ara sap el que t'agrada"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr "L'adreça de correu que has entrat és la mateixa que la que tens actualment."
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
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."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "La política de privacitat ha estat traslladada a <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "El vídeo triat és més gran de 50 MB."
+msgid "The selected video is larger than 100 MB."
+msgstr "El vídeo seleccionat supera els 100 MB."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "Sembla que el servidor està experimentant problemes. Torneu-ho a provar d'aquí a uns moments."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
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."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr "El tema del menú contextual"
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "El formulari de suport ha estat traslladat. Si necessites ajuda, <0/> o visita {HELP_DESK_URL} per a contactar amb nosaltres."
@@ -7367,15 +7994,15 @@ msgstr "No hi ha límit de temps per a la desactivació del compte, torna quan v
msgid "There was an issue connecting to Tenor."
msgstr "Hi ha hagut un problema per a connectar amb Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "Hi ha hagut un problema per a contactar amb el servidor"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "S'ha produït un problema en contactar amb el servidor, comprova la teva connexió a Internet i torna-ho a provar."
@@ -7388,11 +8015,12 @@ msgstr "Hi ha hagut un problema per a contactar amb el teu servidor"
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/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
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."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
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."
@@ -7400,12 +8028,12 @@ msgstr "Hi ha hagut un problema en obtenir la llista. Toca aquí per a tornar-ho
msgid "There was an issue fetching your app passwords"
msgstr "Hi ha hagut un problema en recuperar les contrasenyes de l'aplicació"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
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/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "Hi ha hagut un problema en recuperar la informació del teu servei"
@@ -7418,26 +8046,26 @@ msgstr "S'ha produït un problema en eliminar aquest canal. Comprova la teva con
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."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "S'ha produït un problema actualitzant els teus canals. Comprova la teva connexió a Internet i torna-ho a provar."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "Hi ha hagut un problema! {0}"
@@ -7445,10 +8073,10 @@ msgstr "Hi ha hagut un problema! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
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."
@@ -7469,6 +8097,14 @@ msgstr "Aquests paràmetres només s'apliquen al canal Seguint."
msgid "This {screenDescription} has been flagged:"
msgstr "Aquesta {screenDescription} ha estat etiquetada:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr "Aquest compte té una marca de verificació perquè ha estat verificat per fonts de confiança."
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr "Aquest compte té una o més verificacions, però actualment no està verificat."
+
#: src/components/moderation/ScreenHider.tsx:106
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."
@@ -7477,6 +8113,10 @@ msgstr "Aquest compte ha sol·licitat que els usuaris estiguin registrats per a
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 "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/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr "Aquesta acció es pot desfer en qualsevol moment."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Aquesta apel·lació s'enviarà a <0>{sourceName}0>."
@@ -7510,14 +8150,22 @@ msgstr "Aquest contingut no està disponible per culpa que un dels usuaris invol
msgid "This content is not viewable without a Bluesky account."
msgstr "Aquest contingut no es pot veure sense un compte de Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Aquesta conversa és amb un compte suprimit o desactivat. Prem per obtenir opcions"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr "Aquest correu ja està associat amb el teu compte."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "Aquesta funció està en versió beta. Podeu obtenir més informació sobre les exportacions de repositoris en <0>aquesta entrada de bloc0>."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr "Aquesta funció no està disponible mentre s'utilitza una contrasenya d'aplicació. Inicia la sessió amb la contrasenya principal."
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "Aquesta funció no està disponible mentre s'utilitza una contrasenya d'aplicació. Inicieu la sessió amb la contrasenya principal."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Aquest canal està buit! Necessites seguir més usuaris o modificar la teva configuració d'idiomes."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Aquest canal és buit."
@@ -7540,7 +8188,7 @@ msgstr "Aquest canal és buit."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Aquest canal ja no està en línia. En el seu lloc et mostrem <0>Discover0>."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "Aquest identificador està reservat. Si us plau, provi un altre."
@@ -7548,9 +8196,10 @@ msgstr "Aquest identificador està reservat. Si us plau, provi un altre."
msgid "This information is not shared with other users."
msgstr "Aquesta informació no es comparteix amb altres usuaris."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "Això és important si mai necessites canviar el teu correu o restablir la contrasenya."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr "Aquest enllaç no és vàlid"
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,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/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "Aquest etiquetador no ha declarat quines etiquetes publica i pot ser que no estigui actiu."
@@ -7576,7 +8225,7 @@ msgstr "Aquesta llista, creada per <0>{0}0>, conté possibles infraccions de l
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr "Aquesta llista - creada per tu - conté possibles infraccions de les directrius de la comunitat de Blues al seu nom o descripció."
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "Aquesta llista està buida."
@@ -7584,7 +8233,7 @@ msgstr "Aquesta llista està buida."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Aquest servei de moderació no està disponible. Mira a continuació per a obtenir més detalls. Si aquest problema persisteix, posa't en contacte amb nosaltres."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Aquesta publicació afirma haver estat creada el <0>{0}0>, però va ser vista per primera vegada per Bluesky el <1>{1}1>."
@@ -7592,28 +8241,29 @@ msgstr "Aquesta publicació afirma haver estat creada el <0>{0}0>, però va se
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr "Aquesta publicació té un tipus de threadgate desconegut. És possible que la teva aplicació estigui obsoleta."
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "Aquesta publicació ha estat esborrada."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed 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/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Aquesta publicació s'amagarà dels canals i fils. Això no es pot desfer."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "L'autor d'aquesta publicació ha deshabilitat les citacions."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Aquest perfil només és visible per als usuaris que han iniciat sessió. No serà visible per a les persones que no hagin iniciat sessió."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr "Aquesta resposta s'ordenarà en una secció oculta a la part inferior del fil i silenciarà les notificacions de les respostes posteriors, tant per a tu com per als altres."
@@ -7621,10 +8271,14 @@ msgstr "Aquesta resposta s'ordenarà en una secció oculta a la part inferior de
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."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "Això hauria de crear un registre de domini a:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr "Aquest usuari no té un nom de visualització i, per tant, no es pot verificar."
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "Aquest usuari no té cap seguidor."
@@ -7662,21 +8316,21 @@ msgstr "Aquest usuari no segueix a ningú."
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 el pots tornar a afegir més tard."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "Això eliminarà @{0} de la llista d'accés ràpid."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "Això eliminarà la teva publicació d'aquesta citació per a tots els usuaris i la substituirà per un marcador de posició."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "Opcions dels fils de debat"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Preferències dels fils de debat"
@@ -7684,8 +8338,8 @@ msgstr "Preferències dels fils de debat"
msgid "Thread Preferences"
msgstr "Preferències dels fils de debat"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "En mode fils de debat"
@@ -7693,7 +8347,7 @@ msgstr "En mode fils de debat"
msgid "Threaded mode"
msgstr "Mode fils de debat"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Preferències dels fils de debat"
@@ -7705,14 +8359,15 @@ msgstr "Temps restant: {0, plural, one {# segon} other {# segons}}"
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "per a desactivar el mètode 2FA de correu, verifica el teu accés a l'adreça de correu."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr "Per a desactivar el mètode 2FA de correu, verifica el teu accés a <0>{0}0>"
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "Per informar d'una conversa, informa d'un dels seus missatges a través de la pantalla de conversa. Això permet als nostres moderadors entendre el context del teu problema."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Primer has de verificar el teu correu per poder pujar vídeos a Bluesky."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "A qui vols enviar aquest informe?"
@@ -7725,7 +8380,7 @@ msgstr "Avui"
msgid "Toggle dropdown"
msgstr "Commuta el menú desplegable"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "Commuta per a habilitar o deshabilitar el contingut per a adults"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr "Commuta el so"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Superior"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "Tema"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Tradueix"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "Tendència"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "Vídeos populars"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr "La confiança sorgeix de les relacions, les comunitats i el context compartit, de manera que també estem habilitant <0>verificadors de confiança0>: organitzacions que poden emetre directament la verificació."
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "Televisió"
msgid "Two-factor authentication (2FA)"
msgstr "Autenticació de dos factors (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Introdueix el teu identificador d'usuari"
@@ -7783,18 +8440,11 @@ msgstr "Introdueix el teu identificador d'usuari"
msgid "Type your message here"
msgstr "Escriu aquí el teu missatge"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Tipus:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Desbloqueja la llista"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Deixa de silenciar la llista"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "No s'ha pogut connectar. Comprova la teva connexió a Internet i torna-ho a provar."
@@ -7809,7 +8459,7 @@ msgstr "No s'ha pogut connectar. Comprova la teva connexió a Internet i torna-h
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:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "No s'ha pogut eliminar"
@@ -7817,36 +8467,41 @@ msgstr "No s'ha pogut eliminar"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Desbloqueja"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Desbloqueja"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Desbloqueja el compte"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "Vols desbloquejar el compte?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr "Desbloqueja la llista"
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Desfés la republicació"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Desfés republicacions ({0, plural, one {# republicació} other {# republicacions}})"
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Deixa de seguir"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "Deixa de seguir a {0}"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "Deixa de seguir el compte"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr "Deixa de seguir l'usuari"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Malauradament, cap dels vostres etiquetadora subscrits admet aquest tipus d'informe."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr "Verificador desconegut"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "Desfés el m'agrada"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Desfés els m'agrades ({0, plural, one {# m'agrada} other {# m'agrades}})"
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr "Deixa de silenciar"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Deixa de silenciar"
@@ -7895,10 +8555,10 @@ msgstr "Deixa de silenciar"
msgid "Unmute {tag}"
msgstr "Deixa de silenciar {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "Deixa de silenciar el compte"
@@ -7906,8 +8566,12 @@ msgstr "Deixa de silenciar el compte"
msgid "Unmute conversation"
msgstr "Deixa de silenciar la conversa"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr "Deixa de silenciar la llista"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Deixa de silenciar el fil de debat"
@@ -7915,38 +8579,47 @@ msgstr "Deixa de silenciar el fil de debat"
msgid "Unmute video"
msgstr "Deixa de silenciar el vídeo"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Deixa de fixar"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "Deixa de fixar el canal"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr "Deixa de fixar el canal"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Deixa de fixar a l'inici"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "No fixis al perfil"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Desancora la llista de moderació"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "{0} ja no està fixat a l'inici"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Ja no està fix als teus canals"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr "Deixa de posposar el recordatori de correu"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Dona't de baixa"
@@ -7955,7 +8628,7 @@ msgstr "Dona't de baixa"
msgid "Unsubscribe from list"
msgstr "Dona't de baixa d'aquesta llista"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Dona't de baixa d'aquest etiquetador"
@@ -7963,11 +8636,11 @@ msgstr "Dona't de baixa d'aquest etiquetador"
msgid "Unsubscribed from list"
msgstr "T'has dona't de baixa de la llista"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "Tipus de vídeo no compatible"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "Tipus de vídeo no compatible: {0}"
@@ -7981,55 +8654,66 @@ msgstr "Contingut sexual no desitjat"
#: src/screens/Settings/components/OTAInfo.tsx:58
#: src/screens/Settings/components/OTAInfo.tsx:74
msgid "Update"
-msgstr ""
+msgstr "Actualitza"
#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update <0>{displayName}0> in Lists"
msgstr "Actualitza <0>{displayName}0> a les Llistes"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr "Actualitza el correu"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Actualitza a {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
+msgstr "Actualitza el teu correu"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
msgctxt "toast"
msgid "Updating quote attachment failed"
-msgstr ""
+msgstr "No s'ha pogut actualitzar el fitxer adjunt de la citació"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "No s'ha pogut actualitzar la visibilitat de la resposta"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "Actualitzant…"
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Enlloc d'això, penja una foto"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Puja un fitxer de text a:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Puja de la càmera"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Puja dels Fitxers"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Puja de la biblioteca"
@@ -8042,7 +8726,7 @@ msgstr "S'estan penjant imatges..."
msgid "Uploading link thumbnail..."
msgstr "S'està penjant la miniatura de l'enllaç..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "S'està penjant el vídeo..."
@@ -8050,22 +8734,22 @@ msgstr "S'està penjant el vídeo..."
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Utilitza contrasenyes d'aplicació per iniciar sessió a altres clients de Bluesky, sense haver de donar accés total al teu compte o contrasenya."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Utilitza el proveïdor predeterminat"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Utilitza el navegador de l'aplicació"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Utilitza el navegador de l'aplicació per obrir enllaços"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Utilitza el meu navegador predeterminat"
@@ -8084,7 +8768,7 @@ msgstr "Utilitzat per:"
#: src/components/dms/ReportDialog.tsx:324
msgctxt "toast"
msgid "User blocked"
-msgstr ""
+msgstr "Usuari bloquejat"
#: src/components/moderation/ModerationDetailsDialog.tsx:71
#: src/lib/moderation/useModerationCauseDescription.ts:63
@@ -8119,15 +8803,15 @@ msgstr "Llista d'usuaris per {0}"
msgid "User list by you"
msgstr "Llista d'usuaris feta per tu"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "Llista d'usuaris creada"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "Llista d'usuaris actualitzada"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8150,58 +8834,88 @@ msgstr "Els usuaris als quals segueixo"
msgid "Users in \"{0}\""
msgstr "Usuaris a \"{0}\""
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "Usuaris a qui els ha agradat aquest contingut o perfil"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr "Els usuaris als quals segueixes"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Valor:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "Es requereix un correu verificat"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr "La verificació ha fallat, torna-ho a provar."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr "Configuració de verificació"
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr "Configuració de verificació"
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr "Les verificacions a Bluesky funcionen de manera diferent que a altres plataformes. <0>Més informació aquí.0>"
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr "Verificat per:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr "Verifica el compte"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr "Verifica el codi"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Verifica els registres de DNS"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr "Verifica el correu"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr "Verifica el codi del correu"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Diàleg de verificació del correu"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Verifica el correu nou"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Verifica-ho ara"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Verifica el fitxer de text"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr "Vols verificar aquest compte?"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Verifica el teu correu"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Verifica el teu correu"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Versió {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "Vídeo"
msgid "Video failed to process"
msgstr "El vídeo no s'ha pogut processar"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr "Canal de vídeos"
@@ -8224,14 +8938,15 @@ msgstr "Vídeo de: {0}: {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Videojocs"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr "Vídeo en pausa"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr "Vídeo en reproducció"
@@ -8239,11 +8954,11 @@ msgstr "Vídeo en reproducció"
msgid "Video not found."
msgstr "No s'ha trobat el vídeo."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Configuració de vídeo"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Vídeo penjat"
@@ -8251,31 +8966,32 @@ msgstr "Vídeo penjat"
msgid "Video: {0}"
msgstr "Vídeo: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "Vídeos"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
-msgstr ""
+msgstr "Els vídeos han de durar menys de 3 minuts"
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "Veure l'avatar de {0}"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "Veure el perfil de {0}"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "Mostra el perfil de {displayName}"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "Veure el perfil de l'usuari bloquejat"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "Veure el registre de depuració"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Veure els detalls"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "Mostra els detalls per a informar d'una infracció dels drets d'autor"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Veure el fil de debat complet"
@@ -8308,18 +9024,17 @@ msgstr "Mostra informació sobre aquestes etiquetes"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "Mostra'n més"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Veure el perfil"
@@ -8331,7 +9046,11 @@ msgstr "Veure l'avatar"
msgid "View the labeling service provided by @{0}"
msgstr "Veure el servei d'etiquetatge proporcionat per @{0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr "Veure les verificacions d'aquest usuari"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "Veure els usuaris a qui els agrada aquest canal"
@@ -8339,11 +9058,11 @@ msgstr "Veure els usuaris a qui els agrada aquest canal"
msgid "View video"
msgstr "Reprodueix el vídeo"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Veure els teus comptes bloquejats"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr "Veure la configuració de les interaccions per defecte a les teves publicacions"
@@ -8352,14 +9071,18 @@ msgstr "Veure la configuració de les interaccions per defecte a les teves publi
msgid "View your feeds and explore more"
msgstr "Veure els teus canals i descobreix-ne més"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Veure les teves llistes de moderació"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "Veure els teus comptes silenciats"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr "Veure les teves verificacions"
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "Adverteix del contingut"
msgid "Warn content and filter from feeds"
msgstr "Adverteix del contingut i filtra-ho dels canals"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr "Mira ara"
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "No hem trobat cap resultat per a aquest hashtag."
@@ -8400,7 +9128,7 @@ msgstr "No hem trobat cap resultat per a aquest hashtag."
msgid "We couldn't find any results for that topic."
msgstr "No hem trobat cap resultat per a aquest tema"
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "No hem pogut carregar aquesta conversa"
@@ -8420,6 +9148,14 @@ msgstr "Esperem que t'ho passis pipa. Recorda que Bluesky és:"
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Ja no hi ha més publicacions dels usuaris que segueixes. Aquí n'hi ha altres de <0/>."
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr "Et recomanem que triïs almenys dos interessos."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Hem enviat un correu a <0>{0}0> amb un enllaç. Fes-hi clic per completar el procés de verificació del correu electrònic."
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "No hem pogut determinar si tens permís per pujar vídeos. Torna-ho a provar."
@@ -8428,7 +9164,7 @@ msgstr "No hem pogut determinar si tens permís per pujar vídeos. Torna-ho a pr
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:428
msgid "We were unable to load your configured labelers at this time."
msgstr "En aquest moment no hem pogut carregar els teus etiquetadors configurats."
@@ -8440,20 +9176,28 @@ msgstr "No ens hem pogut connectar. Torna-ho a provar per a continuar configuran
msgid "We will let you know when your account is ready."
msgstr "T'informarem quan el teu compte estigui llest."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Enviarem un correu a <0>{0}0> amb un enllaç. Fes-hi clic per completar el procés de verificació del correu electrònic."
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "Ho farem servir per a personalitzar la teva experiència."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "Tenim problemes de xarxa, torna-ho a provar"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr "Estem introduint una nova capa de verificació a Bluesky: una marca de verificació fàcil de veure."
+
+#: src/screens/Signup/index.tsx:109
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:115
+#: src/view/screens/ProfileList.tsx:117
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}."
@@ -8461,11 +9205,11 @@ msgstr "Ho sentim, però no hem pogut resoldre aquesta llista. Si això continua
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."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
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:425
+#: src/view/com/composer/Composer.tsx:421
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."
@@ -8474,7 +9218,7 @@ msgstr "Ho sentim! La publicació a la qual estàs responent s'ha suprimit."
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."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Ho sentim! Només pots subscriure't a vint etiquetadors i has arribat al teu límit de vint."
@@ -8494,16 +9238,16 @@ msgstr "Quins són els teus interessos?"
msgid "What do you want to call your starter pack?"
msgstr "Com vols anomenar al teu starter pack?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "Sobre què parla la gent."
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "Què hi ha de nou"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr "Quan toques un xec, veuràs quines organitzacions han concedit la verificació."
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "En quins idiomes està aquesta publicació?"
@@ -8520,14 +9264,18 @@ msgstr "Qui pot interactuar amb aquesta publicació?"
msgid "Who can reply"
msgstr "Qui hi pot respondre"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr "Qui pot verrificar?"
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "Vaja!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr "Vaja! No s'han pogut carregar els vídeos populars."
@@ -8574,11 +9322,11 @@ msgstr "Per què s'hauria de revisar aquest usuari?"
msgid "Write a message"
msgstr "Escriu un missatge"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Escriu una publicació"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Escriu la teva resposta"
@@ -8588,11 +9336,16 @@ msgstr "Escriu la teva resposta"
msgid "Writers"
msgstr "Escriptors"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "L'identificador DID incorrecte ha estat retornat pel servidor. Rebut: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr "www.mylivestream.tv"
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Sí"
@@ -8601,15 +9354,15 @@ msgstr "Sí"
msgid "Yes, deactivate"
msgstr "Sí, desactiva'l"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Sí, elimina aquest starter pack"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Sí, desenganxa'l"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Sí, amaga'l"
@@ -8625,14 +9378,31 @@ msgstr "Ahir"
msgid "You"
msgstr "Tu"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr "Ets un verificador de confiança"
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
-msgstr ""
+msgstr "Estàs creant un compte a"
#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
msgstr "Estàs a la cua."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr "Estàs emetent en directe"
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr "Ja no estàs emetent en directe"
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr "No t'és permès emetre en directe"
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "No t'és permès pujar vídeos."
@@ -8641,6 +9411,27 @@ msgstr "No t'és permès pujar vídeos."
msgid "You are not following anyone."
msgstr "No segueixes a ningú."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr "Estàs emetent en directe!"
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr "Estàs verificat"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr "Estàs verificat. Perdràs el teu estat de verificació si canvies el nom de visualització. <0>Més informació.0>"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr "Estàs verificat. Perdràs el teu estat de verificació si canvies el teu identificador. <0>Més informació.0>"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr "Pots ajustar els teus interessos en qualsevol moment a la configuració de \"Contingut i multimèdia\"."
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr "Pots establir la teva configuració per defecte a les interaccions a <0>
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "Pots actualitzar-ho més tard des de la teva configuració."
@@ -8682,9 +9472,9 @@ msgstr "No tens cap seguidor."
msgid "You don't follow any users who follow @{name}."
msgstr "No segueixes cap usuari que segueixi @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
-msgstr ""
+msgstr "No tens cap sol·licitud de xat ara mateix."
#: src/view/com/modals/InviteCodes.tsx:67
msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer."
@@ -8736,24 +9526,24 @@ msgstr "Has silenciat aquest compte."
msgid "You have muted this user"
msgstr "Has silenciat aquest usuari"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "Encara no tens cap conversa. Comença'n una!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "No tens canals."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "No tens llistes."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Encara no has bloquejat cap compte. Per a bloquejar un compte, ves al seu perfil i selecciona \"Bloqueja el compte\" al menú del seu compte."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Encara no has silenciat cap compte. per a silenciar un compte, ves al seu perfil i selecciona \"Silencia el compte\" al menú del seu compte."
@@ -8761,11 +9551,15 @@ msgstr "Encara no has silenciat cap compte. per a silenciar un compte, ves al se
msgid "You have reached the end"
msgstr "Has arribat al final"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr "Has verificat correctament el teu correu. Pots tancar aquest diàleg."
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Has arribat temporalment al límit de pujades de vídeos. Torna-ho a provar més tard."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "Encara no has creat cap starter pack!"
@@ -8787,22 +9581,22 @@ 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:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "Només pots afegir fins a {STARTER_PACK_MAX_SIZE} perfils"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr "Només pots afegir un total de {STARTER_PACK_MAX_SIZE, plural, one {}other {{STARTER_PACK_MAX_SIZE} perfils}}"
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Només pots afegir 3 canals"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "Només podeu seleccionar fins a 4 imatges"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-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"
+msgid "You must be 13 years of age or older to create an account."
+msgstr "Has de tenir 13 anys o més per a crear un compte."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Has de seguir almenys set persones més per generar un starter pack."
@@ -8810,28 +9604,40 @@ msgstr "Has de seguir almenys set persones més per generar un starter pack."
msgid "You must grant access to your photo library to save a QR code"
msgstr "Has de concedir accés a la teva galeria per desar un codi QR"
-#: src/components/StarterPack/ShareDialog.tsx:68
-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:211
msgid "You must select at least one labeler for a report"
msgstr "Has d'escollir almenys un etiquetador per a un informe"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr "Has de verificar el teu correu abans de poder habilitar la verificació en dos passos."
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "Abans has desactivat @{0}."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr "Segurament vols reiniciar l'aplicació ara."
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr "Has reaccionat amb {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr "Has reaccionat amb {0} a {1}"
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "Es tancarà la sessió de tots els teus comptes."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
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/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Ara rebràs notificacions d'aquest debat"
@@ -8839,23 +9645,23 @@ msgstr "Ara rebràs notificacions d'aquest debat"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Rebràs un correu amb un \"codi de restabliment\". Introdueix aquí el codi i després la teva contrasenya nova."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "Tu: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Tu: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "Tu: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
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:116
+#: src/screens/Signup/index.tsx:130
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!"
@@ -8867,7 +9673,7 @@ msgstr "Seguiràs aquestes persones i {0} altres"
msgid "You'll follow these people right away"
msgstr "Seguiràs a aquesta gent de seguida"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "Rebràs un correu a <0>{0}0> per verificar que ets tu."
@@ -8901,6 +9707,10 @@ msgstr "Has trobat algunes persones per seguir"
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Has arribat al final del teu canal! Cerca alguns comptes més per a seguir."
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr "Has arribat al nombre màxim de sol·licituds permeses. Torna-ho a provar més tard."
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Has assolit el teu límit diari de pujades de vídeos (massa bytes)"
@@ -8909,11 +9719,11 @@ msgstr "Has assolit el teu límit diari de pujades de vídeos (massa bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Has assolit el teu límit diari de pujades de vídeos (massa vídeos)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "T'has acabat els vídeos. Potser és un bon moment per a fer un descans."
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "El teu compte"
@@ -8935,13 +9745,13 @@ msgstr "El repositori del teu compte, que conté tots els registres de dades pú
#: src/screens/Takendown.tsx:214
msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service0>. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error."
-msgstr "S'ha detectat que el teu compte incompleix les <0>Condicions del servei de Bluesky Social0>. Se t'ha enviat un correu electrònic que detalla la infracció específica i el període de suspensió, si escau. Pots apel·lar aquesta decisió si creu que s'ha comès un error."
+msgstr "S'ha detectat que el teu compte incompleix les <0>Condicions del servei de Bluesky Social0>. Se t'ha enviat un correu electrònic que detalla la infracció específica i el període de suspensió, si escau. Pots apel·lar aquesta decisió si creus que s'ha comès un error."
#: src/screens/Takendown.tsx:154
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr "S'ha enviat l'apel·lació. Si s'accepta l'apel·lació, rebràs un correu electrònic."
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "La teva data de naixement"
@@ -8953,26 +9763,30 @@ msgstr "El teu navegador no admet el format de vídeo. Prova amb un altre navega
msgid "Your chats have been disabled"
msgstr "Els teus xats s'han desactivat"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "La teva elecció es desarà, però es pot canviar més endavant a la configuració."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr "La teva elecció es recordarà per a futurs enllaços. Pots canviar-la en qualsevol moment a la configuració."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "El teu identificador actual <0>{0}0> romandrà automàticament reservat per a tu. Pots tornar-hi en qualsevol moment des d'aquest compte."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr "El teu correu s'ha actualitzat, però no ha estat verificat. En el pas següent cal que verifiquis el teu correu."
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "El teu correu no sembla vàlid."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "El teu correu s'ha actualitzat, però no ha estat verificat. En el pas següent cal que verifiquis el teu correu."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr "El teu correu encara no s'ha verificat. Verifica'l per gaudir de totes les funcions de Bluesky."
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
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."
@@ -8988,14 +9802,31 @@ msgstr "Els teus seguidors"
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/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "El teu identificador complet serà <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr "El teu nom d'usuari complet serà <0>@{0}0>"
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr "Els teus interessos"
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr "S'han actualitzat els teus interessos!"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr "Els teus interessos ens ajuden a trobar el que t'agrada!"
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Les teves paraules silenciades"
@@ -9004,15 +9835,15 @@ msgstr "Les teves paraules silenciades"
msgid "Your password has been changed successfully!"
msgstr "S'ha canviat la teva contrasenya!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr "La contrasenya ha de tenir almenys 8 caràcters."
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "S'ha publicat"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "S'han publicat les teves publicacions"
@@ -9024,14 +9855,22 @@ msgstr "Les teves publicacions, m'agrades i bloquejos són públics. Els comptes
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "El teu perfil, publicacions, canals i llistes ja no seran visibles per a altres usuaris de Bluesky. Pots reactivar el teu compte en qualsevol moment iniciant sessió."
-#: src/view/com/composer/Composer.tsx:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "S'ha publicat la teva resposta"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr "El teu informe s'enviarà a <0>{0}0>."
#: src/components/dms/ReportDialog.tsx:200
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/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr "Seleccionar els teus interessos ens ajuda a mostrar-te el contingut que t'importa."
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr "Les teves verificacions"
diff --git a/src/locale/locales/cy/messages.po b/src/locale/locales/cy/messages.po
index 0d604b88c9..1a650a40f0 100644
--- a/src/locale/locales/cy/messages.po
+++ b/src/locale/locales/cy/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: cy\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 16:40\n"
+"PO-Revision-Date: 2025-05-30 23:41\n"
"Last-Translator: \n"
"Language-Team: Welsh\n"
"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))));\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(gweithredol)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(yn cynnwys cynnwys wedi'i fewnosod)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(dim e-bost)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {# ailbostiad} other {# ailbostiad}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# eiliad} other {# eiliad}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# eitem heb ei ddarllen} other {# eitem heb ei ddarllen}}"
@@ -90,17 +90,17 @@ msgstr "{0, plural, one {# eitem heb ei ddarllen} other {# eitem heb ei ddarllen
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {#mis} other {#mis}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {dilynwr} other {dilynwr}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {yn dilyn} other {yn dilyn}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {hoffi} other {hoffi}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {hoffi} other {hoffi}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {postiad} other {postiad}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {dyfyniad} other {dyfyniad}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {ailbostiad} other {ailbostiad}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr ""
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr ""
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0>in <1>tagiau1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>in <1>testun a thagiau1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr ""
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "Ymunodd {0} yr wythnos hon"
@@ -137,13 +154,18 @@ msgstr "{0} o {1}"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
+msgstr "{0} allan 50"
+
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "Mae {0} o bobl wedi defnyddio'r pecyn cychwyn hwn!"
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr ""
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "afatar {0}"
@@ -175,7 +197,7 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}e"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# eitem heb ei ddarllen} other {# eitemau heb eu darllen}}"
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, one {awr} other {awr}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {munud} other {munud}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "Mae {firstAuthorLink} a <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other{{formattedAuthorsCount} arall}}0> wedi'ch dilyn chi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "Mae {firstAuthorLink} a <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}}0> wedi hoffi eich llif cyfaddas"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "Mae {firstAuthorLink} a <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}}0> wedi hoffi eich postiad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "Mae {firstAuthorLink} ad <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}}0> wedi ailbostio eich postiad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "Mae {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}}0> wedi ymuno â'ch pecyn cychwyn"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "Mae {firstAuthorLink} wedi eich dilyn"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "Mae {firstAuthorLink} wedi eich dilyn yn ôl"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "Hoffodd {firstAuthorLink} eich ffrwd gyfaddas"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "Hoffodd {firstAuthorLink} eich postiad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "Mae {firstAuthorLink} wedi ailbostio'ch postiad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "Mae {firstAuthorLink} wedi cofrestru gyda'ch pecyn cychwyn"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi eich dilyn"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi hoffi eich ffrwd gyfaddas"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi hoffi eich postiad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi ailbostio eich postiad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi ymuno â'ch pecyn cychwyn"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "Mae {firstAuthorName} wedi eich dilyn"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "Mae {firstAuthorName} wedi eich dilyn yn ôl"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "Hoffodd {firstAuthorName} eich ffrwd gyfaddas"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "Hoffodd {firstAuthorName} eich postiad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "Mae {firstAuthorName} wedi ailbostio'ch postiad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "Mae {firstAuthorName} wedi ymuno â'ch pecyn cychwyn"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} yn dilyn"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "Nid oes modd anfon neges at {handle}"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr ""
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr ""
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# eitem heb ei darllen} other {# eitem heb eu darllen}}"
@@ -301,6 +404,34 @@ msgstr "Ymunodd {profileName} â Bluesky {0} yn ôl"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "Ymunodd {profileName} â Bluesky gan ddefnyddio pecyn cychwyn {0} yn ôl"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr ""
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr ""
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr ""
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr ""
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr ""
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -309,13 +440,13 @@ msgstr "Mae <0>{0}, 0><1>{1}, 1> a {2, plural, one {# arall} other {# arall}
#: src/screens/StarterPack/Wizard/index.tsx:502
msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
-msgstr "Mae <0>{0}, 0><1>{1}, 1> a {2, plural, one {# arall} other {# arall}} wedi'u cynnwys yn eich pecyn cychwyn"
+msgstr "Mae <0>{0}, 0><1>{1}, 1>a {2, plural, one {# arall} other {# arall}} wedi'u cynnwys yn eich pecyn cychwyn"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {dilynwr} other {dilynwyr}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {yn dilyn} other {yn dilyn}}"
@@ -343,7 +474,7 @@ msgstr "<0>Arbrofol:0> Pan fydd y dewis hwn wedi'i alluogi, dim ond hysbysiada
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "Rydych <0>chi0> a <1>1> <2>{0}2> wedi'ch cynnwys yn eich pecyn cychwyn"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Enw Dangos Annilys"
@@ -363,19 +494,28 @@ msgstr "30 diwrnod"
msgid "7 days"
msgstr "7 diwrnod"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr ""
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Ynghylch"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr "Derbyn"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr "Derbyn cais am sgwrs"
@@ -385,40 +525,40 @@ msgid "Accept Request"
msgstr "Derbyn y cais"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Hygyrchedd"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Gosodiadau Hygyrchedd"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Cyfrif"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "Cyfrif wedi'i rwystro"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "Cyfrif yn ei ddilyn"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "Cyfrif wedi'i dewi"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
@@ -429,33 +569,37 @@ msgstr "Wedi Tewi'r Cyfrif"
msgid "Account Muted by List"
msgstr "Cyfrif wedi'i Dewi gan y Rhestr"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Dewisiadau cyfrif"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Cyfrif wedi'i dynnu o fynediad cyflym"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "Cyfrif wedi'i ddadrwystro"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "Peidio dilyn y cyfrif"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
+msgstr "Dad-dewi cyfrif"
+
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Ychwanegu"
@@ -473,8 +617,12 @@ msgstr "Ychwanegu {displayName} at y pecyn cychwyn"
msgid "Add a content warning"
msgstr "Ychwanegu rhybudd cynnwys"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "Ychwanegu defnyddiwr at y rhestr hon"
@@ -485,7 +633,7 @@ msgstr "Ychwanegu cyfrif"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Ychwanegu cyfrif"
msgid "Add alt text"
msgstr "Ychwanegu testun amgen"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Ychwanegu testun amgen (dewisol)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Ychwanegu cyfrif arall"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Ychwanegu postiad arall"
@@ -518,8 +666,12 @@ msgstr "Ychwanegu cyfrinair apiau"
msgid "Add App Password"
msgstr "Ychwanegu Cyfrinair Apiau"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr "Ychwanegu rhagor o fanylion (dewisol)"
@@ -531,15 +683,23 @@ msgstr "Ychwanegu gair mud gyda'r gosodiadau a ddewiswyd"
msgid "Add muted words and tags"
msgstr "Ychwanegu geiriau a thagiau wedi'u tewi"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Ychwanegu post newydd"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Ychwanegu pobl"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr ""
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Ychwanegu ffrydiau wedi'u hargymell"
@@ -552,27 +712,28 @@ msgstr "Ychwanegu'r ychydig o lifau i'ch pecyn cychwyn!"
msgid "Add the default feed of only people you follow"
msgstr "Ychwanegu'r ffrwd ragosodedig dim ond y bobl rydych chi'n eu dilyn"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Ychwanegwch y cofnod DNS canlynol i'ch parth:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Ychwanegu'r ffrwd hon at eich ffrydiau"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "Ychwanegu at restrau"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Ychwanegu at Restrau"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Ychwanegu at fy ffrydiau"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Ychwanegwyd at y rhestr"
@@ -581,22 +742,22 @@ msgstr "Ychwanegwyd at y rhestr"
msgid "Added to my feeds"
msgstr "Ychwanegwyd at fy ffrydiau"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr "Manylion ychwanegol (terfyn o 300 nod)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Oedolyn"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Cynnwys Oedolion"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "Dim ond trwy'r We yn <0>bsky.app0> y mae modd galluogi cynnwys oedolion."
@@ -604,30 +765,35 @@ msgstr "Dim ond trwy'r We yn <0>bsky.app0> y mae modd galluogi cynnwys oedolio
msgid "Adult content is disabled."
msgstr "Mae cynnwys oedolion wedi'i analluogi."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Labeli Cynnwys Oedolion"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Uwch"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr ""
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Y Cyfan"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "Mae'r holl gyfrifon wedi'u dilyn!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "Pob iaith"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "Yr holl ffrydiau rydych wedi'u cadw, mewn un lle."
@@ -671,10 +837,10 @@ msgstr "AMGEN"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Testun amgen"
@@ -688,19 +854,18 @@ msgstr "Mae testun amgan yn disgrifio delweddau ar gyfer defnyddwyr dall a rhai
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "Bydd testun amgen yn cael ei gwtogi. Cyfyngiad: {0} nod."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr ""
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "Mae e-bost wedi'i anfon at {0}. Mae'n cynnwys cod cadarnhau y gallwch ei nodi isod."
-#: src/view/com/modals/ChangeEmail.tsx:114
-msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
-msgstr "Mae e-bost wedi'i anfon i'ch cyfeiriad blaenorol, {0}. Mae'n cynnwys cod cadarnhau y gallwch ei nodi isod."
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "Mae e-bost wedi'i anfon! Rhowch y cod cadarnhau sydd wedi'i gynnwys yn yr e-bost isod."
@@ -716,7 +881,11 @@ msgstr "Digwyddodd gwall"
msgid "An error occurred while compressing the video."
msgstr "Digwyddodd gwall wrth gywasgu'r fideo."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Digwyddodd gwall wrth gynhyrchu'ch pecyn cychwyn. Eisiau ceisio eto?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "Digwyddodd gwall wrth lwytho'r fideo. Ceisiwch eto."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "Digwyddodd gwall wrth gadw'r cod QR!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "Digwyddodd gwall wrth ddewis y fideo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "Digwyddodd gwall wrth geisio dilyn pob un"
@@ -746,12 +914,17 @@ msgstr "Digwyddodd gwall wrth geisio dilyn pob un"
msgid "An error occurred while uploading the video."
msgstr "Digwyddodd gwall wrth lwytho'r fideo i fyny."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Mater nad yw wedi'i gynnwys yn yr opsiynau hyn"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "Digwyddodd mater wrth gychwyn y sgwrs"
@@ -761,13 +934,17 @@ msgstr "Digwyddodd mater wrth geisio agor y sgwrs"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Digwyddodd mater, ceisiwch eto."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "digwyddodd gwall anhysbys"
@@ -790,6 +967,10 @@ msgstr "Anifeiliaid"
msgid "Animated GIF"
msgstr "GIF wedi'i hanimeiddio"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Ymddygiad Gwrthgymdeithasol"
msgid "Anybody can interact"
msgstr "Gall unrhyw un ryngweithio"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "Eicon Ap"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "Iaith Ap"
@@ -817,7 +998,7 @@ msgstr "Cyfrinair Ap"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "Cyfrinair ap wedi'i ddileu"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
@@ -836,7 +1017,7 @@ msgstr "Rhaid i enwau cyfrinair ap fod o leiaf 4 nod"
msgid "App passwords"
msgstr "Cyfrineiriau apiau"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Cyfrineiriau Apiau"
@@ -854,7 +1035,7 @@ msgstr "Apelio label \"{0}\""
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "Apêl wedi'i chyflwyno"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -872,10 +1053,10 @@ msgstr "Atal Apêl"
msgid "Appeal this decision"
msgstr "Apelio'r penderfyniad hwn"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Gwedd"
@@ -884,12 +1065,12 @@ msgstr "Gwedd"
msgid "Apply default recommended feeds"
msgstr "Gosod y ffrydiau rhagosodedig sy'n cael eu hargymell"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Wedi'i archifo o {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Post wedi'i archifo"
@@ -897,15 +1078,15 @@ msgstr "Post wedi'i archifo"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Ydych chi'n siŵr eich bod am ddileu cyfrinair ap \"{0}\"?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Ydych chi'n siŵr eich bod am ddileu'r neges hon? Bydd y neges yn cael ei dileu i chi, ond nid ar gyfer y cyfranogwr arall."
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "Ydych chi'n siŵr eich bod am ddileu'r pecyn cychwyn hwn?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "Ydych chi'n siŵr eich bod am ddileu eich newidiadau?"
@@ -921,15 +1102,15 @@ msgstr "Ydych chi'n siŵr eich bod am adael y sgwrs hon? Bydd eich negeseuon yn
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Ydych chi'n siŵr eich bod am dynnu {0} o'ch ffrydiau?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Ydych chi'n siŵr eich bod am dynnu hwn o'ch ffrydiau?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "A ydych yn siŵr yr hoffech gael gwared ar y drafft hwn?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "Ydych chi'n siŵr yr hoffech chi gael gwared ar y postiad hwn?"
@@ -937,7 +1118,7 @@ msgstr "Ydych chi'n siŵr yr hoffech chi gael gwared ar y postiad hwn?"
msgid "Are you sure?"
msgstr "Ydych chi'n siŵr?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "Ydych chi'n ysgrifennu yn <0>{suggestedLanguageName}0>?"
@@ -946,29 +1127,34 @@ msgstr "Ydych chi'n ysgrifennu yn <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Celf"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Noethni artistig neu anerotig."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "O leiaf 3 nod"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40
msgctxt "Name of app icon variant"
msgid "Aurora"
-msgstr ""
+msgstr "Aurora"
#: src/screens/Settings/AccessibilitySettings.tsx:105
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Mae'r dewisiadau awtochwarae wedi'u symud i osodiadau <0>Cynnwys a Chyfryngau0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Awtochwarae fideos a GIFs"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Awtochwarae fideos a GIFs"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Nôl"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr "Nôl i Sgyrsiau"
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Cyn creu rhestr, yn gyntaf rhaid i chi wirio'ch e-bost."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Cyn creu post, rhaid i chi wirio'ch e-bost yn gyntaf."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Cyn creu pecyn cychwyn, rhaid i chi wirio'ch e-bost yn gyntaf."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "Cyn y gallwch anfon neges at ddefnyddiwr arall, rhaid i chi wirio'ch e-bost yn gyntaf."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
+msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Penblwydd"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Rhwystro"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Rhwystro cyfrif"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "Rhwystro Cyfrif?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Rhwystro cyfrifon"
@@ -1054,7 +1241,7 @@ msgstr "Rhwystro a Dileu"
msgid "Block and/or delete this conversation"
msgstr "Rhwystro a/neu ddileu'r sgwrs hon"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Rhestr rhwystro"
@@ -1062,7 +1249,7 @@ msgstr "Rhestr rhwystro"
msgid "Block or report"
msgstr "Rhwystro neu adrodd"
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "Rhwystro'r cyfrifon hyn?"
@@ -1079,21 +1266,21 @@ msgstr "Rhwystro'r Defnyddiwr"
msgid "Blocked"
msgstr "Ddim ar gael"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Cyfrifon wedi'u rhwystro"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Cyfrifon wedi'u Rhwystro"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Nid oes modd i gyfrifon sydd wedi'u rhwystro ymateb yn eich trywyddau, eich crybwyllidau, na rhyngweithio â chi fel arall."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 "Nid oes modd i gyfrifon sydd wedi'u rhwystro ymateb yn eich trywyddau, eich crybwylliadau, na rhyngweithio â chi fel arall. Fyddwch chi ddim yn gweld eu cynnwys a byddan nhw'n cael eu hatal rhag gweld eich un chi."
@@ -1101,19 +1288,19 @@ msgstr "Nid oes modd i gyfrifon sydd wedi'u rhwystro ymateb yn eich trywyddau, e
msgid "Blocked post."
msgstr "Postiad wedi'i rwystro."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Nid yw rhwystro'n atal y labelwr hwn rhag gosod labeli ar eich cyfrif."
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Mae rhwystro'n beth cyhoeddus. Nid oes modd i gyfrifon sydd wedi'u rhwystro ymateb yn eich trywyddau, eich crybwylliadau, na rhyngweithio â chi fel arall."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Fydd rhwystro ddim yn atal labeli rhag cael eu gosod ar eich cyfrif, ond bydd yn atal y cyfrif hwn rhag ateb yn eich trywyddau neu ryngweithio â chi."
-#: src/view/com/auth/SplashScreen.web.tsx:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blog"
@@ -1122,14 +1309,14 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Nid yw Bluesky yn gallu cadarnhau dilysrwydd y dyddiad honedig."
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129
msgctxt "Name of app icon variant"
msgid "Bluesky Classic™"
-msgstr ""
+msgstr "Bluesky Classic ™"
#: src/view/com/auth/server-input/index.tsx:212
msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server."
@@ -1148,7 +1335,7 @@ msgstr "Mae Bluesky yn well gyda ffrindiau!"
msgid "Bluesky Social Terms of Service"
msgstr "Telerau Gwasanaeth Cymdeithasol Bluesky"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bydd Bluesky yn dewis set o gyfrifon wedi'u hargymhell gan bobl yn eich rhwydwaith."
@@ -1156,6 +1343,10 @@ msgstr "Bydd Bluesky yn dewis set o gyfrifon wedi'u hargymhell gan bobl yn eich
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Ni fydd Bluesky yn dangos eich proffil na'ch postiadau i ddefnyddwyr sydd wedi allgofnodi. Mae'n bosibl na fydd apiau eraill yn parchu'r gofyniad hwn. Nid yw hyn yn gwneud eich cyfrif yn breifat."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr ""
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "Pylu delweddau a hidlo o ffrydiau"
msgid "Books"
msgstr "Llyfrau"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "Porwch ragor o gyfrifon ar y dudalen Archwilio"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "Porwch ragor o ffrydiau ar y dudalen Archwilio"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Pori ragor o awgrymiadau"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "Porwch ragor o awgrymiadau ar y dudalen Archwilio"
@@ -1214,20 +1405,26 @@ msgstr "Porwch bostiadau sydd wedi'u tagio â {displayName}"
msgid "Browse starter pack {displayName}"
msgstr "Porwch becyn cychwyn {displayName}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr ""
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "Porwch bwnc {displayName}"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Busnes"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "Gan {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Gan <0>{0}0>"
@@ -1243,49 +1440,56 @@ msgstr "Trwy greu cyfrif rydych yn cytuno i'r <0>Telerau Gwasanaeth0> a'r <1>P
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Trwy greu cyfrif rydych yn cytuno i'r <0>Telerau Gwasanaeth0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr ""
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Camera"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Diddymu"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
msgid "Cancel"
-msgstr "Diddymu"
+msgstr "Nôl"
#: src/view/com/modals/DeleteAccount.tsx:166
#: src/view/com/modals/DeleteAccount.tsx:274
@@ -1296,11 +1500,11 @@ msgstr "Canslo dileu'r cyfrif"
msgid "Cancel image crop"
msgstr "Diddymu'r tocio delwedd"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Diddymu'r golygu proffil"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Diddymu'r postiad dyfynnu"
@@ -1308,8 +1512,7 @@ msgstr "Diddymu'r postiad dyfynnu"
msgid "Cancel reactivation and sign out"
msgstr "Diddymu'r ailweithredu ac allgofnodi"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Diddymu'r chwilio"
@@ -1317,24 +1520,23 @@ msgstr "Diddymu'r chwilio"
msgid "Cancels opening the linked website"
msgstr "Yn diddymu agor y wefan gysylltiedig"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "Methu rhyngweithio â defnyddiwr sydd wedi'i rwystro"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Capsiynau (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Capsiynau a thestun amgen"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Newid"
@@ -1347,46 +1549,41 @@ msgstr "Newid eicon ap"
msgid "Change app icon to \"{0}\""
msgstr "Newid eicon ap i \"{0}\""
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Newid e-bost"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Newid cyfeiriad e-bost"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Newid Enw Dangos"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr "Newid y gwasanaeth cymedroli"
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Newid fy e-bost"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Newid Cyfrinair"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "Newid iaith postiad i {suggestedLanguageName}"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr "Newid y rheswm am adrodd"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Newid Eich E-bost"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Newidia dy gyfeiriad e-bost"
@@ -1394,43 +1591,42 @@ msgstr "Newidia dy gyfeiriad e-bost"
msgid "Changes app icon"
msgstr "Yn newid eicon ap"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr "Yn newid darparwr gwesteiwr"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Sgwrsio"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
-msgstr ""
+msgstr "Wedi dileu'r sgwrs"
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "Sgwrs wedi'i thewi"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr "Dewch derbyn cais am sgwrs"
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr "Ceisiadau am sgyrsiau"
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Gosodiadau sgwrsio"
@@ -1441,10 +1637,10 @@ msgstr "Gosodiadau Sgwrsio"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "Dad-dewi sgwrsio"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr "Sgyrsiau"
@@ -1461,7 +1657,7 @@ msgstr "Gwiriwch eich e-bost am god mewngofnodi a rhowch ef yma."
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Gwiriwch eich blwch derbyn am e-bost gyda'r cod cadarnhau i'w roi isod:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Dewiswch ddull dilysu parth"
@@ -1469,7 +1665,7 @@ msgstr "Dewiswch ddull dilysu parth"
msgid "Choose Feeds"
msgstr "Dewiswch Ffrydiau"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Dewiswch i mi"
@@ -1477,10 +1673,6 @@ msgstr "Dewiswch i mi"
msgid "Choose People"
msgstr "Dewiswch Bobl"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Dewiswch hunan-labeli sy'n berthnasol i'r cyfryngau rydych chi'n eu postio. Os nad ydych yn dewis unrhyw un, mae'r postiad hon yn addas ar gyfer pob cynulleidfa."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Dewiswch yr algorithmau sy'n pweru'ch ffrydiau personol."
@@ -1493,27 +1685,31 @@ msgstr "Dewiswch y lliw hwn fel eich afatar"
msgid "Choose your account provider"
msgstr "Dewiswch ddarparwr eich cyfrif"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Dewiswch eich llinell amser eich hun! Mae ffrydiau adeiladwyd gan y gymuned yn eich helpu i ddod o hyd i gynnwys rydych yn ei hoffi."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Dewiswch eich cyfrinair"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "Dewiswch eich enw defnyddiwr"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Clirio'r holl ddata storio"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Clirio'r holl ddata storio (ailgychwyn ar ôl hyn)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr ""
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Clirio'r ymholiad chwilio"
@@ -1522,6 +1718,14 @@ msgstr "Clirio'r ymholiad chwilio"
msgid "click here"
msgstr "cliciwch yma"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Cliciwch i analluogi dyfyniadau o'r postiad hwn."
@@ -1534,7 +1738,7 @@ msgstr "Cliciwch i alluogi postiadau dyfynbris o'r postiad hon."
msgid "Click to open tag menu for {tag}"
msgstr "Cliciwch i agor dewislen tag {tag}"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Cliciwch i roi cynnig arall ar y neges a fethwyd"
@@ -1546,24 +1750,34 @@ msgstr "Hinsawdd"
msgid "Clip 🐴 clop 🐴"
msgstr "Clip 🐴 clop 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Cau"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Cau'r deialog gweithredol"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Cau'r y drôr gwaelod"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Cau'r deialog"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr "Cau'r ddewislen drôr"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "Cau'r dewisydd emoji"
@@ -1600,7 +1816,13 @@ msgstr "Cau'r ddelwedd"
msgid "Close image viewer"
msgstr "Cau'r golwg delwedd"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr ""
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Cau'r deialog hwn"
@@ -1608,8 +1830,12 @@ msgstr "Cau'r deialog hwn"
msgid "Closes password update alert"
msgstr "Yn cau'r rhybudd diweddaru cyfrinair"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr ""
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr "Yn cau'r dewisydd emoji"
@@ -1617,11 +1843,11 @@ msgstr "Yn cau'r dewisydd emoji"
msgid "Closes viewer for header image"
msgstr "Yn cau'r golwg delwedd pennyn"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Lleihau'r rhestr o ddefnyddwyr"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Yn lleihau'r rhestr o ddefnyddwyr hysbysiad penodol"
@@ -1644,7 +1870,7 @@ msgstr "Comedi"
msgid "Comics"
msgstr "Comics"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Canllawiau Cymunedol"
@@ -1653,23 +1879,23 @@ msgstr "Canllawiau Cymunedol"
msgid "Complete onboarding and start using your account"
msgstr "Cwblhewch y cyflwyniad a dechreuwch ddefnyddio'ch cyfrif"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Cwblhewch yr her"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Cyfansoddi postiad newydd"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "Cyfansoddwch bostiadau hyd at {MAX_GRAPHEME_LENGTH} nod"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr ""
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Ysgrifennu ateb"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Yn cywasgu fideo..."
@@ -1681,23 +1907,17 @@ msgstr "Ffurfweddw gosodiad hidlo cynnwys ar gyfer categori: {name}"
msgid "Configured in <0>moderation settings0>."
msgstr "Wedi'i ffurfweddu yn y <0>gosodiadau cymedroli0>."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Cadarnhau"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Cadarnhau'r Newid"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Cadarnhau gosodiadau iaith cynnwys"
@@ -1706,26 +1926,27 @@ msgstr "Cadarnhau gosodiadau iaith cynnwys"
msgid "Confirm delete account"
msgstr "Cadarnhau dileu cyfrif"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Cadarnhewch eich oedran:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Cadarnhewch eich dyddiad geni"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Cod cadarnhad"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Cod Cadarnhau"
@@ -1733,22 +1954,22 @@ msgstr "Cod Cadarnhau"
msgid "Connecting..."
msgstr "Yn cysylltu..."
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Cysylltu â'n Chefnogaeth"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "Cynnwys a Chyfryngau"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Cynnwys a chyfryngau"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Cynnwys a Chyfryngau"
@@ -1756,15 +1977,15 @@ msgstr "Cynnwys a Chyfryngau"
msgid "Content Blocked"
msgstr "Cynnwys wedi'i Rhwystro"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Hidlo cynnwys"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr "Cynnwys o bob rhan o'r rhwydwaith rydyn ni'n meddwl y gallech chi eu hoffi."
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Ieithoedd Cynnwys"
@@ -1785,16 +2006,16 @@ msgstr "Rhybudd Cynnwys"
msgid "Content warnings"
msgstr "Rhybuddion cynnwys"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "Cefndir ddewislen cyd-destun, cliciwch i gau'r ddewislen."
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Parhau"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Parhau fel {0} (wedi mewngofnodi ar hyn o bryd)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Parhau â'r trywydd..."
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Ymlaen i'r cam nesaf"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Sgwrs wedi'i dileu"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Sgwrs wedi'i dileu"
@@ -1826,16 +2047,17 @@ msgstr "Coginio"
msgid "Copied"
msgstr "Wedi'i gopïo"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Fersiwn adeiladu wedi'i gopïo i'r clipfwrdd"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Wedi'i gopïo i'r clipfwrdd"
@@ -1844,25 +2066,29 @@ msgstr "Wedi'i gopïo i'r clipfwrdd"
msgid "Copied!"
msgstr "Wedi'i gopïo!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr "Copïau adeiladu fersiwn i'r clipfwrdd"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Copïo"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr ""
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Copïo Cyfrinair Ap"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr "Copïwch yn: // URI"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr "Copïo DID awdur"
@@ -1871,57 +2097,69 @@ msgstr "Copïo DID awdur"
msgid "Copy code"
msgstr "Copïo cod"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Copïo DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Copïo gwesteiwr"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Copïo dolen"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Copïo Dolen"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Copïo dolen i'r rhestr"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Copïo dolen i'r postiad"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Copïo testun neges"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr "Copïo postiad yn: // URI"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Copïo testun postiad"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Copïo cod QR"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "Copïo gwerth cofnod TXT"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Polisi Hawlfraint"
@@ -1931,11 +2169,11 @@ msgstr "Polisi Hawlfraint"
msgid "Could not leave chat"
msgstr "Methu gadael y sgwrs"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "Methu llwytho ffrwd"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "Methu llwytho rhestr"
@@ -1947,28 +2185,28 @@ msgstr "Methu tewi sgwrs"
msgid "Could not process your video"
msgstr "Methu prosesu eich fideo"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Creu"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "Creu cod QR ar gyfer pecyn cychwyn"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Creu pecyn cychwyn"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Creu pecyn cychwyn i mi"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Creu pecyn cychwyn i mi"
msgid "Create account"
msgstr "Creu cyfrif"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Creu Cyfrif"
@@ -1985,11 +2223,16 @@ msgstr "Creu Cyfrif"
msgid "Create an account"
msgstr "Creu cyfrif"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Creu afatar yn lle hynny"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Creu un arall"
@@ -1998,7 +2241,7 @@ msgstr "Creu un arall"
msgid "Create new account"
msgstr "Creu cyfrif newydd"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Creu adroddiad ar gyfer {0}"
@@ -2053,17 +2296,17 @@ msgstr "Modd tywyll"
msgid "Dark theme"
msgstr "Thema dywyll"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Dyddiad geni"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Cau cyfrif"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Cymedroli Dadfygio"
@@ -2079,19 +2322,19 @@ msgstr "Rhagosodiad"
msgid "Default icons"
msgstr "Eiconau rhagosodedig"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Dileu"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Dileu cyfrif"
@@ -2107,19 +2350,19 @@ msgstr "Dileu cyfrinair ap"
msgid "Delete app password?"
msgstr "Dileu cyfrinair ap?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr "Dileu sgwrs"
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Dileu cofnod datganiad sgwrs"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "Dileu sgwrs"
@@ -2127,19 +2370,19 @@ msgstr "Dileu sgwrs"
msgid "Delete Conversation"
msgstr "Dileu Sgwrs"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Dileu i mi"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
-msgstr "Dileu Rhestr"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Dileu neges"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Dileu neges i mi"
@@ -2147,26 +2390,26 @@ msgstr "Dileu neges i mi"
msgid "Delete my account"
msgstr "Dileu fy ngyfrif"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Dileu postiad"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Dileu pecyn cychwyn"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "Dileu pecyn cychwyn?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "Dileu'r rhestr hon?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "Dileu'r postiad hwn?"
@@ -2174,8 +2417,8 @@ msgstr "Dileu'r postiad hwn?"
msgid "Deleted"
msgstr "Dilëwyd"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Cyfrif wedi'i ddileu"
@@ -2183,48 +2426,48 @@ msgstr "Cyfrif wedi'i ddileu"
msgid "Deleted post."
msgstr "Postiad wedi'i ddileu."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Disgrifiad"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "Mae'r disgrifiad yn rhy hir"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "Mae'r disgrifiad yn rhy hir. Uchafswm nifer y nodau yw {DESCRIPTION_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Testun amgen disgrifiadol"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Datgysylltu dyfyniad"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "Datgysylltu postiad dyfyniad?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
-msgstr ""
+msgstr "Modd datblygwr wedi'i analluogi"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
-msgstr ""
+msgstr "Modd datblygwr wedi'i alluogi"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Dewisiadau datblygwr"
@@ -2236,6 +2479,15 @@ msgstr "Deialog: addaswch pwy all ryngweithio â'r postiad hwn"
msgid "Dim"
msgstr "Tywyllu"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr ""
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "Analluogi E-bost 2FA"
@@ -2254,25 +2506,25 @@ msgstr "Analluogi isdeitlau"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Analluogwyd"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Dileu"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "Dileu'r newidiadau?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "Dileu'r drafft?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "Dileu'r postiad?"
@@ -2281,24 +2533,24 @@ msgstr "Dileu'r postiad?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Gofynnwch i apiau beidio dangos fy nghyfrif i ddefnyddwyr sydd wedi allgofnodi"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Darganfod ffrydiau cyfaddas newydd"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Darganfod ffrydiau newydd"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Darganfod Ffrydiau Newydd"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Cau"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Cau'r gwall"
@@ -2306,6 +2558,10 @@ msgstr "Cau'r gwall"
msgid "Dismiss getting started guide"
msgstr "Cau'r canllaw cychwyn arni"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr "Cau'r adran hon"
@@ -2315,27 +2571,27 @@ msgstr "Cau'r adran hon"
msgid "Display larger alt text badges"
msgstr "Dangos bathodynnau testun amgen mwy"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Enw dangos"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Enw Dangos"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "Mae'r enw dangos yn rhy hir"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "Mae'r enw dangos yn rhy hir. Uchafswm nifer y nodau yw {DISPLAY_NAME_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "Panel DNS"
@@ -2347,37 +2603,45 @@ msgstr "Peidiwch â gosod gair mud hwn i ddefnyddwyr rydych chi'n eu dilyn"
msgid "Does not include nudity."
msgstr "Nid yw'n cynnwys noethni."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "Nid yw'n dechrau nac yn gorffen gyda chysylltnod"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "Parth wedi'i wirio!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Gorffen"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Gorffen"
msgid "Done{extraText}"
msgstr "Gorffen{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr ""
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Tapiwch ddwywaith i gau'r ddeialog"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr "Tapio dwywaith i'w hoffi"
@@ -2413,23 +2681,23 @@ msgstr "Gollwng i ychwanegu delweddau"
msgid "Duration:"
msgstr "Hyd:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "e.e. alys"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "e.e. Alys Enwolaf"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "e.e. Alys Roberts"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "e.e. alys.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "e.e. Artist, caru cŵn a darllenydd brwd."
@@ -2437,19 +2705,19 @@ msgstr "e.e. Artist, caru cŵn a darllenydd brwd."
msgid "E.g. artistic nudes."
msgstr "E.e. noethlymunwyr artistig."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "e.e. Posteriaid Gwych"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "e.e. Sbamwyr"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "e.e. Y posterwyr sydd byth yn methu."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "e.e. Defnyddwyr sy'n ateb dro ar ôl tro gyda hysbysebion."
@@ -2457,20 +2725,21 @@ msgstr "e.e. Defnyddwyr sy'n ateb dro ar ôl tro gyda hysbysebion."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Mae pob cod yn gweithio unwaith. Byddwch yn derbyn mwy o godau gwahoddiad o bryd i'w gilydd."
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Golygu"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Golygu"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Golygu afatar"
@@ -2478,31 +2747,41 @@ msgstr "Golygu afatar"
msgid "Edit Feeds"
msgstr "Golygu Ffrydiau"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Golygu delwedd"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Golygu gosodiadau rhyngweithio"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Golygu manylion y rhestr"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Golygu Rhestr Cymedroli"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Golygu Fy Ffrydiau"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Golygu fy mhroffil"
@@ -2515,23 +2794,23 @@ msgstr "Golygu Pobl"
msgid "Edit post interaction settings"
msgstr "Golygu gosodiadau rhyngweithio postiad"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Golygu proffil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Golygu Proffil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Golygu pecyn cychwyn"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Golygu Rhestr Defnyddwyr"
@@ -2539,15 +2818,15 @@ msgstr "Golygu Rhestr Defnyddwyr"
msgid "Edit who can reply"
msgstr "Golygu pwy all ateb"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Golygu eich enw dangos"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Golygu eich disgrifiad proffil"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Golygu eich pecyn cychwyn"
@@ -2560,16 +2839,15 @@ msgstr "Addysg"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "Naill ai mae crëwr y rhestr hon wedi'ch rhwystro chi neu rydych chi wedi rhwystro'r crëwr."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "E-bost"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "E-bost 2FA wedi'i analluogi"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
@@ -2583,19 +2861,16 @@ msgstr "Cyfeiriad e-bost"
msgid "Email Resent"
msgstr "E-bost wedi'i ail-anfon"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "E-bost wedi'i Ddiweddaru"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
msgstr ""
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
@@ -2608,8 +2883,8 @@ msgstr "Mewnblannu cod HTML"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Mewnblannu post"
@@ -2617,12 +2892,13 @@ msgstr "Mewnblannu post"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Mewnblanwch y postiad hon yn eich gwefan. Copïwch y pwt canlynol a'i gludo i god HTML eich gwefan."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "Chwaraewr fideo wedi'i fewnblannu"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Galluogi"
@@ -2630,13 +2906,13 @@ msgstr "Galluogi"
msgid "Enable {0} only"
msgstr "Galluogi dim ond {0}"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Galluogi cynnwys oedolion"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr "Galluogi E-bost 2FA"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2660,30 +2936,30 @@ msgstr "Galluogi isdeitlau"
msgid "Enable this source only"
msgstr "Galluogi dim ond y ffynhonnell hon"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "Galluogi pynciau tueddol"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr "Galluogi fideos tueddol yn eich ffrwd Darganfod"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr "Galluogi fideos tueddol yn eich ffrwd Darganfod."
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Galluogwyd"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Diwedd y ffrwd"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Gwnewch yn siŵr eich bod wedi dewis iaith ar gyfer pob ffeil isdeitlau."
@@ -2696,14 +2972,15 @@ msgstr "Rhowch gyfrinair"
msgid "Enter a word or tag"
msgstr "Rhowch air neu dag"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
msgid "Enter Code"
msgstr "Rhowch y Cod"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Rhowch y Cod Cadarnhau"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
msgstr "Mynd i'r sgrin lawn"
@@ -2712,7 +2989,7 @@ msgstr "Mynd i'r sgrin lawn"
msgid "Enter the code you received to change your password."
msgstr "Rhowch y cod a gawsoch i newid eich cyfrinair."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Rhowch y parth rydych chi am ei ddefnyddio"
@@ -2720,20 +2997,20 @@ msgstr "Rhowch y parth rydych chi am ei ddefnyddio"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Rhowch yr e-bost a ddefnyddiwyd gennych i greu eich cyfrif. Byddwn yn anfon \"cod ailosod\" atoch er mwyn i chi allu gosod cyfrinair newydd."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Nodwch eich dyddiad geni"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Rhowch eich cyfeiriad e-bost"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Rhowch eich e-bost newydd uchod"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Rhowch eich cyfeiriad e-bost newydd isod."
@@ -2749,7 +3026,11 @@ msgstr "Rhowch eich enw defnyddiwr a chyfrinair"
msgid "Enters full screen"
msgstr "Yn mynd i'r sgrin lawn"
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Gwall"
@@ -2758,15 +3039,18 @@ msgstr "Gwall"
msgid "Error occurred while saving file"
msgstr "Bu gwall wrth gadw ffeil"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "Gwall wrth dderbyn ymateb captcha."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Gwall:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Pawb"
@@ -2818,30 +3102,22 @@ msgstr "Yn gadael y broses tocio delwedd"
msgid "Exits image view"
msgstr "Yn gadael golwg delwedd"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Yn gadael ymholiad chwilio mewnbynnu"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Ehangu testun amgen"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Ehangu rhestr o ddefnyddwyr"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "Ehangu neu leihau'r postiad llawn rydych yn ateb iddo"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr "Yn ehangu neu'n lleihau testun postiad"
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr "Yn ehangu neu'n lleihau'r postiad llawn rydych chi'n ateb iddo"
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "Disgwylir i uri ddatrys i gofnod"
@@ -2864,6 +3140,10 @@ msgstr "Daw i ben {0}"
msgid "Expires in {0}"
msgstr "Daw i ben ymhen {0}"
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "Cyfryngau di-noethol neu a allai beri gofid."
msgid "Explicit sexual images."
msgstr "Delweddau di-noethol amlwg."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Allforio fy nata"
@@ -2882,8 +3169,8 @@ msgstr "Allforio fy nata"
msgid "Export My Data"
msgstr "Allforio Fy Nata"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "Cyfryngau allanol"
@@ -2897,17 +3184,22 @@ msgstr "Cyfryngau Allanol"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Gall cyfryngau allanol ganiatáu i wefannau gasglu gwybodaeth amdanoch chi a'ch dyfais. Nid oes unrhyw wybodaeth yn cael ei anfon na gofyn amdano nes i chi bwyso'r botwm \"chwarae\"."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Dewisiadau Cyfryngau Allanol"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
+msgstr "Wedi methu derbyn y sgwrs"
+
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "Wedi methu newid enw dangos. Ceisiwch eto."
@@ -2915,7 +3207,7 @@ msgstr "Wedi methu newid enw dangos. Ceisiwch eto."
msgid "Failed to create app password. Please try again."
msgstr "Wedi methu creu cyfrinair ap. Ceisiwch eto."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr "Wedi methu creu sgwrs"
@@ -2924,35 +3216,37 @@ msgstr "Wedi methu creu sgwrs"
msgid "Failed to create starter pack"
msgstr "Wedi methu creu pecyn cychwyn"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "Wedi methu creu'r rhestr. Gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
-msgstr ""
+msgstr "Wedi methu dileu'r sgwrs"
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Wedi methu dileu'r neges"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "Wedi methu dileu postiad, ceisiwch eto"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "Wedi methu dileu'r pecyn cychwyn"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr "Wedi methu llwytho sgyrsiau"
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "Wedi methu llwytho dewisiadau ffrydiau"
@@ -2964,17 +3258,19 @@ msgstr "Wedi methu llwytho GIFs"
msgid "Failed to load past messages"
msgstr "Wedi methu llwytho'r negeseuon blaenorol"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "Wedi methu llwytho'r ffrydiau awgrymedig"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "Wedi methu llwytho'r awgrymiadau dilyn"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr "Wedi methu nodi pob cais wedi'i ddarllen"
@@ -2982,7 +3278,16 @@ msgstr "Wedi methu nodi pob cais wedi'i ddarllen"
msgid "Failed to pin post"
msgstr "Wedi methu pinio post"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr ""
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Wedi methu cadw'r ddelwedd: {0}"
@@ -2994,20 +3299,39 @@ msgstr "Wedi methu cadw dewisiadau hysbysiadau, ceisiwch eto"
msgid "Failed to save settings. Please try again."
msgstr "Wedi methu cadw'r gosodiadau. Ceisiwch eto."
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "Methwyd anfon"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Wedi methu cyflwyno apêl, ceisiwch eto."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "Wedi methu toglo tewi'r edefyn, ceisiwch eto"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr ""
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "Wedi methu diweddaru ffrydiau"
@@ -3022,20 +3346,24 @@ msgstr "Wedi methu diweddaru gosodiadau"
msgid "Failed to upload video"
msgstr "Wedi methu llwytho fideo i fyny"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "Wedi methu dilysu enw dangos. Ceisiwch eto."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Ffrwd"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Ffrwd gan {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "Dewislen ffrwd"
@@ -3043,26 +3371,26 @@ msgstr "Dewislen ffrwd"
msgid "Feed toggle"
msgstr "Toglo ffrwd"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Adborth"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "Anfonwyd adborth!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Ffrydiau"
@@ -3070,13 +3398,13 @@ msgstr "Ffrydiau"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Mae ffrydiau yn algorithmau cyfaddas y mae defnyddwyr yn eu hadeiladu gydag ychydig o arbenigedd codio. <0/> am ragor o wybodaeth."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "Diweddarwyd y ffrydiau!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "Ffrydiau rydyn ni'n meddwl y gallech chi eu hoffi."
@@ -3092,11 +3420,11 @@ msgstr "Ffeil wedi'i chadw'n llwyddiannus!"
msgid "Filter from feeds"
msgstr "Hidlo o ffrydiau"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr "Hidlo'r chwiliad yn ôl iaith"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr "Hidlo chwiliad yn ôl iaith ( {currentLanguageLabel} - ar hyn o bryd)"
@@ -3110,13 +3438,13 @@ msgstr "Yn cwblhau"
msgid "Find accounts to follow"
msgstr "Dewch o hyd i gyfrifon i'w dilyn"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "Ffeindio pobl i'w dilyn"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Canfod postiadau, defnyddwyr a ffrydiau ar Bluesky"
@@ -3131,28 +3459,28 @@ msgstr "Ffitrwydd"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117
msgctxt "Name of app icon variant"
msgid "Flat Black"
-msgstr ""
+msgstr "Du Disglein"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93
msgctxt "Name of app icon variant"
msgid "Flat Blue"
-msgstr ""
+msgstr "Glas Disglein"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105
msgctxt "Name of app icon variant"
msgid "Flat White"
-msgstr ""
+msgstr "Gwyn Disglein"
#: src/screens/Onboarding/StepFinished.tsx:294
msgid "Flexible"
msgstr "Hyblyg"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Dilyn"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Dilyn"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Dilynwch {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr "Dilynwch {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Dilynwch {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "Dilynwch 10 cyfrif"
msgid "Follow 7 accounts"
msgstr "Dilynwch 7 cyfrif"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "Dilynwch y cyfrif"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Dilynwch y cyfan"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Dilynwch Nôl"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Dilynwch Nôl"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "Dilynwch rhagor o gyfrifon i gysylltu â'ch diddordebau ac adeiladu'ch rhwydwaith."
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "Yn cael ei ddilyn gan <0>{0}0>"
@@ -3224,7 +3544,7 @@ msgstr "Yn cael ei ddilyn gan <0>{0}0> a <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Yn cael ei ddilyn gan <0>{0}0>, <1>{1}1>, and {2, plural, one {# arall} other {# arall}}"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Dilynwyr @{0} rydych chi'n eu hadnabod"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Dilynwyr rydych chi'n eu hadnabod"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Yn Dilyn"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "Yn dilyn {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr "Yn dilyn {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Yn dilyn {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Yn dilyn dewisiadau ffrydio"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Dilyn Dewisiadau Ffrydio"
@@ -3301,6 +3617,10 @@ msgstr "Am resymau diogelwch, fyddwch chi ddim yn gallu gweld hwn eto. Os byddwc
msgid "For the best experience, we recommend using the theme font."
msgstr "I gael y profiad gorau, rydym yn argymell defnyddio ffont y thema."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Am Byth"
@@ -3327,7 +3647,7 @@ msgstr "Yn Postio Cynnwys Diangen yn Aml"
msgid "From @{sanitizedAuthor}"
msgstr "Gan @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Oddi wrth <0/>"
@@ -3336,28 +3656,30 @@ msgstr "Oddi wrth <0/>"
msgid "Gallery"
msgstr "Oriel"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Cynhyrchu pecyn cychwyn"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Cael cymorth"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "Cychwyn Arni"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr ""
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Dechrau arni"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Rhowch wyneb i'ch proffil"
@@ -3366,17 +3688,17 @@ msgstr "Rhowch wyneb i'ch proffil"
msgid "Glaring violations of law or terms of service"
msgstr "Torri cyfraith neu delerau gwasanaeth amlwg"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Mynd nôl"
@@ -3384,10 +3706,10 @@ msgstr "Mynd nôl"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Nôl"
@@ -3408,7 +3730,27 @@ msgstr "Ewch adref"
msgid "Go Home"
msgstr "Ewch Adref"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Ewch i sgwrs gyda {0}"
@@ -3427,8 +3769,8 @@ msgstr "Ewch i broffil y defnyddiwr"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Cyfryngau Graffig"
@@ -3437,21 +3779,21 @@ msgstr "Cyfryngau Graffig"
msgid "Half way there!"
msgstr "Hanner ffordd yno!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Enw Dangos"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "Mae'r enw dangos yna eisoes wedi'i gymryd. Rhowch gynnig ar un arall."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "Mae'r enw dangos wedi newid!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "Mae'r enw dangos yn rhy hir. Rhowch gynnig ar un byrrach."
@@ -3464,7 +3806,7 @@ msgstr "Hapteg"
msgid "Harassment, trolling, or intolerance"
msgstr "Aflonyddu, trolio, neu anoddefgarwch"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Hashnod"
@@ -3472,19 +3814,24 @@ msgstr "Hashnod"
msgid "Hashtag {tag}"
msgstr "Hashnod {tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "Yn cael trafferth?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Cymorth"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Helpwch bobl i wybod nad ydych chi'n bot trwy lwytho llun neu greu afatar."
@@ -3497,7 +3844,7 @@ msgstr "Dyma gyfrinair eich ap!"
msgid "Hidden"
msgstr "Cuddiedig"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr "Wedi'i guddio gan eich gosodiadau cymedroli."
@@ -3509,18 +3856,17 @@ msgstr "Rhestr gudd"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Cuddio"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Cuddio"
@@ -3529,38 +3875,40 @@ msgstr "Cuddio"
msgid "Hide customization options"
msgstr "Cuddio dewisiadau cyfaddasu"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Cuddio postiad drosof fi"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Cuddio ateb i bawb"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Cuddio ateb i mi"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "Cuddio'r postiad hwn?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "Cuddio'r ateb hwn?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Cuddio pynciau tueddiadol"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "Cuddio pynciau tueddiadol?"
@@ -3569,10 +3917,15 @@ msgstr "Cuddio pynciau tueddiadol?"
msgid "Hide trending videos?"
msgstr "Cuddio fideos tueddiadol?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Cuddio rhestr defnyddwyr"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "Hmm, rhoddodd y gweinydd ffrydio ymateb gwael. Rhowch wybod i berchennog
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Hmm, rydyn ni'n cael trafferth dod o hyd i'r ffrwd yma. Efallai ei fod wedi'i ddileu."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Hmmm, mae'n ymddangos ein bod yn cael trafferth llwytho'r data hwn. Gweler isod am ragor o fanylion. Os bydd y mater hwn yn parhau, cysylltwch â ni."
@@ -3610,15 +3963,15 @@ msgstr "Hmmmm, nid ydym wedi gallu llwytho'r gwasanaeth cymedroli hwnnw."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Daliwch ati! Rydyn ni'n rhoi mynediad i fideo yn raddol, ac rydych chi'n dal i aros yn unol. Dewch nôl cyn hir!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Cartref"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "Gwesteiwr:"
@@ -3627,34 +3980,33 @@ msgstr "Gwesteiwr:"
msgid "Hosting provider"
msgstr "Darparwr gwesteio"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr ""
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "Atebion difyrraf gyntaf"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "Sut dylen ni agor y ddolen hon?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Mae gen i god"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Mae Gen i God"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Mae gen i god cadarnhau"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Mae gen i fy mharth fy hun"
@@ -3667,22 +4019,30 @@ msgstr "Rwy'n deall"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Os yw'r testun amgen yn hir, bydd y testun amgen yn toglo'r cyflwr estynedig"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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 "Os nad ydych eto yn oedolyn yn unol â chyfreithiau eich gwlad, rhaid i'ch rhiant neu warcheidwad cyfreithiol ddarllen y Telerau hyn ar eich rhan."
-#: src/view/screens/ProfileList.tsx:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "Os byddwch yn dileu'r rhestr hon, fyddwch chi ddim yn gallu ei hadfer."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Os oes gennych chi'ch parth eich hun, gallwch chi ei ddefnyddio fel eich enw dangos. Mae hyn yn gadael i chi hunan-wirio eich hunaniaeth. <0> Dysgwch ragor yma.0>"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Os byddwch yn dileu'r postiad hwn, fyddwch chi ddim yn gallu ei gael yn ôl."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr ""
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Os ydych am newid eich cyfrinair, byddwn yn anfon cod atoch i wirio mai hwn yw eich cyfrif."
@@ -3704,9 +4064,22 @@ msgstr "Anghyfreithlon a Brys"
msgid "Image"
msgstr "Delwedd"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "Delwedd wedi'i chadw ar gofrestr eich camera!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr ""
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr ""
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr ""
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "Negeseuon amhriodol neu ddolenni penodol"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr "Dim blwch derbyn!"
@@ -3752,15 +4125,11 @@ msgstr "Mewnbynnu cyfrinair ar gyfer dileu cyfrif"
msgid "Input the code which has been emailed to you"
msgstr "Mewnbynnwch y cod sydd wedi'i e-bostio atoch"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "Rhowch yr enw defnyddiwr neu'r cyfeiriad e-bost a ddefnyddiwyd gennych wrth gofrestru"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Rhyngweithio yn gyfyngedig"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr "Gosodiadau rhyngweithio"
@@ -3769,11 +4138,11 @@ msgstr "Gosodiadau rhyngweithio"
msgid "Invalid 2FA confirmation code."
msgstr "Cod cadarnhau 2FA annilys."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Enw dangos annilys. Rhowch gynnig ar un arall."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "Cofnod postiad annilys neu heb ei gefnogi"
@@ -3789,11 +4158,11 @@ msgstr "Cod Dilysu Annilys"
msgid "Invite a Friend"
msgstr "Gwahodd Ffrind"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Cod gwahodd"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Heb dderbyn y cod gwahoddiad. Gwiriwch eich bod yn ei fewnbynnu'n gywir a cheisiwch eto."
@@ -3805,7 +4174,7 @@ msgstr "Codau gwahoddiad: {0} ar gael"
msgid "Invite codes: 1 available"
msgstr "Codau gwahoddiad: 1 ar gael"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "Gwahoddwch bobl i'r pecyn cychwyn hwn!"
@@ -3817,7 +4186,7 @@ msgstr "Gwahoddwch eich ffrindiau i ddilyn eich hoff ffrydiau a phobl"
msgid "Invites, but personal"
msgstr "Gwahoddiadau, ond personol"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "Mae'n gywir"
@@ -3825,19 +4194,19 @@ msgstr "Mae'n gywir"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Dim ond chi ar hyn o bryd! Ychwanegwch fwy o bobl at eich pecyn cychwyn trwy chwilio uchod."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "ID gwaith: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Swyddi"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Ymunwch â Bluesky"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "Wedi'i labelu gan yr awdur."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Labeli"
@@ -3868,7 +4237,7 @@ msgstr "Labeli"
msgid "Labels added"
msgstr "Labeli wedi'u hychwanegu"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "Anodiadau ar ddefnyddwyr a chynnwys yw labeli. Mae modd eu defnyddio i guddio, rhybuddio, a chategoreiddio'r rhwydwaith."
@@ -3884,13 +4253,13 @@ msgstr "Labeli ar eich cynnwys"
msgid "Language selection"
msgstr "Dewis iaith"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Gosodiadau Iaith"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Ieithoedd"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Mwy"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "Diweddaraf"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "dysgu rhagor"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Dysgu Rhagor"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Dysgwch ragor am Bluesky"
@@ -3933,6 +4311,11 @@ msgstr "Dysgwch ragor am y cymedroli wedi'i osod i'r cynnwys hwn."
msgid "Learn more about this warning"
msgstr "Dysgwch ragor am y rhybudd hwn"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr ""
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "Gadael Bluesky"
msgid "left to go."
msgstr "chwith i fynd."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Gadewch i mi ddewis"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Golau"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "Hoffi"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Hoffi ({0, plural, one {# hoffi} other {# hoffi}})"
@@ -4013,17 +4397,16 @@ msgstr "Hoffi 10 postiad"
msgid "Like 10 posts to train the Discover feed"
msgstr "Hoffi 10 postiad i hyfforddi'r ffrwd Darganfod"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Hoffi'r ffrwd hwn"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr "Hoffi'r labelwr hwn"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Wedi'i hoffi gan"
@@ -4033,43 +4416,43 @@ msgstr "Wedi'i hoffi gan"
msgid "Liked By"
msgstr "Wedi'i Hoffi Gan"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Wedi'i hoffi gan {0, plural, one {# defnyddiwr} other {# defnyddiwr}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Wedi'i hoffi gan {likeCount, plural, one {# defnyddiwr} other {# defnyddiwr}}"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "Hoffi"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "Hoffi ar y postiad hwn"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "Llinol"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Rhestr"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Afatar Rhestr"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "Rhestr wedi'i rhwystro"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4084,44 +4467,44 @@ msgstr "Rhestru yn ôl <0/>"
msgid "List by you"
msgstr "Rhestru gennych chi"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "Rhestr wedi'i dileu"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
msgstr "Mae'r rhestr wedi'i chuddio"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "Rhestr Cudd"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "Rhestr wedi'i thewi"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Enw Rhestr"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "Rhestr wedi'i dadrwystro"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "Rhestr heb ei dewi"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Rhestrau"
@@ -4129,34 +4512,47 @@ msgstr "Rhestrau"
msgid "Lists blocking this user:"
msgstr "Rhestrau sy'n rhwystro'r defnyddiwr hwn:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr ""
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr ""
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Llwytho rhagor"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "Llwytho rhagor o ffrydiau wedi'u hawgrymu"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Llwytho rhagor o ddilynwyr wedi'u hawgrymu"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Llwytho hysbysiadau newydd"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Llwytho postiadau newydd"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Llwytho..."
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Cofnod"
@@ -4164,12 +4560,12 @@ msgstr "Cofnod"
msgid "Logged-out visibility"
msgstr "Gwelededd wedi allgofnodi"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo gan @sawaratsuki.bsky.social"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo gan <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "Mae'n edrych fel eich bod wedi dad-binio eich holl ffrydiau. Ond peidiwc
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Mae'n debyg eich bod chi'n colli'r ffrwd canlynol. <0>Cliciwch yma i ychwanegu un.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "Gwnewch un i mi"
@@ -4201,18 +4601,22 @@ msgstr "Gwnewch un i mi"
msgid "Make sure this is where you intend to go!"
msgstr "Gwnewch yn siŵr mai dyma lle rydych chi'n bwriadu mynd!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "Rheoli ffrydiau wedi'u cadw"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Rheoli eich geiriau a thagiau wedi'u tewi"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr "Nodi'r cyfan fel wedi'u darllen"
@@ -4221,16 +4625,23 @@ msgstr "Nodi'r cyfan fel wedi'u darllen"
msgid "Mark as read"
msgstr "Marcio fel weedi darllen"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr "Wedi nodi'r cyfan fel wedi'u darllen"
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Cyfryngau"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Cyfryngau a all fod yn annymunol neu'n amhriodol i rai cynulleidfaoedd."
@@ -4246,23 +4657,27 @@ msgstr "Defnyddwyr wedi'u crybwyll"
msgid "Mentions"
msgstr "Crybwyll"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Dewislen"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Neges {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Neges wedi'i dileu"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Neges wedi'i dileu"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr ""
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Neges gan y gweinydd: {0}"
@@ -4276,14 +4691,18 @@ msgstr "Maes mewnbwn neges"
msgid "Message is too long"
msgstr "Mae'r neges yn rhy hir"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr ""
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Negeseuon"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81
msgctxt "Name of app icon variant"
msgid "Midnight"
-msgstr ""
+msgstr "Ganol Nos"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47
#: src/lib/moderation/useReportOptions.ts:47
@@ -4295,10 +4714,10 @@ msgstr "Cyfrif Camarweiniol"
msgid "Misleading Post"
msgstr "Postiad Camarweiniol"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Cymedroli"
@@ -4320,22 +4739,22 @@ msgstr "Rhestr cymedroli gan <0/>"
msgid "Moderation list by you"
msgstr "Rhestr cymedroli gennych chi"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "Rhestr cymedroli wedi'i chreu"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "Rhestr cymedroli wedi'i diweddaru"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Rhestrau cymedroli"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Rhestrau Cymedroli"
@@ -4343,11 +4762,11 @@ msgstr "Rhestrau Cymedroli"
msgid "moderation settings"
msgstr "gosodiadau cymedroli"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "Cyflyrau cymedroli"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Offer cymedroli"
@@ -4356,7 +4775,7 @@ msgstr "Offer cymedroli"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Mae'r cymedrolwr wedi dewis gosod rhybudd cyffredinol ar y cynnwys."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Rhagor"
@@ -4365,9 +4784,9 @@ msgstr "Rhagor"
msgid "More feeds"
msgstr "Rhagor o ffrydiau"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Rhagor o ddewisiadau"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "Hoffi fwyaf yn gyntaf"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Atebion wedi'u hoffi fwyaf yn gyntaf"
@@ -4400,14 +4819,14 @@ msgstr "Tewi"
msgid "Mute {tag}"
msgstr "Tewi {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "Tewi cyfrif"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Tewi cyfrifon"
@@ -4420,11 +4839,11 @@ msgstr "Tewi sgwrs"
msgid "Mute in:"
msgstr "Tewi yn:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Tewi rhestr"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "Tewi'r cyfrifon hyn?"
@@ -4452,26 +4871,26 @@ msgstr "Tewi'r gair hwn dim ond mewn tagiau"
msgid "Mute this word until you unmute it"
msgstr "Tewi'r gair hwn nes i chi ei ddad-dewi"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Tewi edefyn"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Tewi geiriau a thagiau"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Cyfrifon wedi'u tewi"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Cyfrifon Wedi'u Tewi"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Mae postiadau cyfrifon wedi'u tewi'n cael eu tynnu o'ch ffrydiau a'ch hysbysiadau. Mae cyfrifon wedi'u tewi'n gwbl breifat."
@@ -4479,11 +4898,11 @@ msgstr "Mae postiadau cyfrifon wedi'u tewi'n cael eu tynnu o'ch ffrydiau a'ch hy
msgid "Muted by \"{0}\""
msgstr "Wedi'i dewi gan \"{0}\""
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Geiriau wedi'u tewi a thagiau"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Mae tewi'n breifat. Gall cyfrifon wedi'u tewi rhyngweithio â chi, ond fyddwch chi ddim yn gweld eu postiadau nac yn derbyn hysbysiadau ganddyn nhw."
@@ -4492,15 +4911,15 @@ msgstr "Mae tewi'n breifat. Gall cyfrifon wedi'u tewi rhyngweithio â chi, ond f
msgid "My Birthday"
msgstr "Fy Mhenblwydd"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "Fy Ffrydiau"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Enw"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "Mae angen enw"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Natur"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "Llywiwch i {0}"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "Yn llywio i'r sgrin nesaf"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Yn llywio i'ch proffil"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "Angen ei newid?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "Angen rhoi gwybod am dorri hawlfraint?"
@@ -4547,30 +4971,43 @@ msgstr "Angen rhoi gwybod am dorri hawlfraint?"
msgid "Never lose access to your followers or data."
msgstr "Peidiwch byth â cholli mynediad at eich dilynwyr neu ddata."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "Dim gwahaniaeth, crëwch enw dangos i mi"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Newydd"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Newydd"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "Sgwrs newydd"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "Enw dangos newydd"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "Rhestr newydd"
@@ -4578,7 +5015,7 @@ msgstr "Rhestr newydd"
msgid "New messages"
msgstr "Negeseuon newydd"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Rhestr Cymedroli Newydd"
@@ -4590,12 +5027,12 @@ msgstr "Cyfrinair newydd"
msgid "New Password"
msgstr "Cyfrinair newydd"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Postiad newydd"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "Postiad newydd"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Postiad Newydd"
@@ -4613,19 +5050,20 @@ msgstr "Postiad Newydd"
msgid "New user info dialog"
msgstr "Deialog manylion defnyddiwr newydd"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Rhestr Defnyddwyr Newydd"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "Atebion diweddaraf yn gyntaf"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Newyddion"
@@ -4655,11 +5093,15 @@ msgstr "Delwedd nesaf"
msgid "No app passwords yet"
msgstr "Dim cyfrineiriau apiau eto"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "Dim Panel DNS"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "Heb ganfod unrhyw GIFs dan sylw. Gall fod problem gyda Tenor."
@@ -4668,21 +5110,25 @@ msgstr "Heb ganfod unrhyw GIFs dan sylw. Gall fod problem gyda Tenor."
msgid "No feeds found. Try searching for something else."
msgstr "Heb ganfod unrhyw ffrydiau. Ceisiwch chwilio am rywbeth arall."
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr ""
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "Dim hoffi eto"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "Ddim yn dilyn {0} bellach"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr "Dim mwy na {MAX_SERVICE_HANDLE_LENGTH} nod"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "Dim negeseuon eto"
@@ -4711,31 +5157,38 @@ msgstr "Dim dyfyniadau eto"
msgid "No reposts yet"
msgstr "Dim ail bostio eto"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Dim canlyniad"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "Dim canlyniadau"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr ""
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "Heb ganfod canlyniad"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "Heb ganfod canlyniadau \"{query}\""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "Heb ganfod canlyniadau {query}"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "Heb ganfod canlyniadau chwilio \"{search}\"."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Neb"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "Does neb wedi hoffi hwn eto. Efallai y dylech chi fod y cyntaf!"
@@ -4775,19 +5227,15 @@ msgstr "Noethni nad yw'n rhywiol"
msgid "Not followed by anyone you're following"
msgstr "Dim yn cael ei ddilyn gan neb rydych chi'n eu dilyn"
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "Heb ei Ganfod"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "Nid nawr"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Nodyn am rannu"
@@ -4795,7 +5243,7 @@ msgstr "Nodyn am rannu"
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 "Nodyn: Mae Bluesky yn rhwydwaith agored a chyhoeddus. Dim ond yn cyfyngu ar welededd eich cynnwys ar ap a gwefan Bluesky y mae'r gosodiad hwn yn ei wneud. Efallai na fydd apiau eraill yn parchu'r gosodiad hwn. Mae'n bosibl y bydd eich cynnwys yn dal i gael ei ddangos i ddefnyddwyr sydd wedi allgofnodi gan apiau a gwefannau eraill."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Dim byd yma"
@@ -4803,7 +5251,7 @@ msgstr "Dim byd yma"
msgid "Notification filters"
msgstr "Hidlyddion hysbysu"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Gosodiadau hysbysu"
@@ -4820,11 +5268,11 @@ msgstr "Seiniau hysbysu"
msgid "Notification Sounds"
msgstr "Seiniau Hysbysu"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Hysbysiadau"
@@ -4832,12 +5280,12 @@ msgstr "Hysbysiadau"
msgid "now"
msgstr "nawr"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Nawr"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Noethni"
@@ -4859,21 +5307,23 @@ msgstr "O na!"
msgid "Oh no! Something went wrong."
msgstr "O na! Aeth rhywbeth o'i le."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "Iawn"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "Iawn"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "Atebion hynaf yn gyntaf"
@@ -4881,19 +5331,19 @@ msgstr "Atebion hynaf yn gyntaf"
msgid "on<0><1/><2><3/>2>0>"
msgstr "ar <0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Ailosod cyflwyno"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "Does dim testun amgen ar un neu fwy GIF."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "Does dim testun amgen ar un neu fwy o fideos."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "Does dim testun amgen ar un neu fwy o fideos."
@@ -4905,11 +5355,11 @@ msgstr "Dim ond ffeiliau .jpg a .png sy'n cael eu cefnogi"
msgid "Only {0} can reply."
msgstr "Dim ond {0} all ateb."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Dim ond yn cynnwys llythrennau, rhifau, a chysylltnodau"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "Dim ond ffeiliau delwedd sy'n cael eu cefnogi"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "Wps, aeth rhywbeth o'i le!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "Wps!"
@@ -4935,67 +5385,80 @@ msgstr "Wps!"
msgid "Open"
msgstr "Ar Agor"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "Agor dewislen llwybr byr proffil {name}"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Agor y crëwr avatar"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "Agor y dewisiadau sgwrsio"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "Agor dewislen drôr"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Agor y dewisydd emojis"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "Agor sgrin manylion ffrwd"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "Agor dewislen dewisiadau ffrwd"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr ""
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "Agor dolen i {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "Agor dewisiadau neges"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "Agor tudalen dadfygio cymedroli"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Agor gosodiadau geiriau wedi'u tewi a thagiau"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "Agor dewislen dewisiadau ffrydiau"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "Agor dewislen pecyn cychwyn"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Agor tudalen llyfr stori"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Agor cofnod system"
@@ -5015,19 +5478,19 @@ msgstr "Yn agor deialog i ddewis pwy all ymateb i'r edefyn hwn"
msgid "Opens additional details for a debug entry"
msgstr "Yn agor manylion ychwanegol cofnod dadfygio"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
-msgstr ""
+msgstr "Yn agor deialog testun amgen"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Yn agor camera ar ddyfais"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
-msgstr ""
+msgstr "Yn agor deialog capsiynau a thestun amgen"
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr "Yn agor deialog newid enw dangos"
@@ -5039,7 +5502,7 @@ msgstr "Yn agor y cyfansoddwr"
msgid "Opens device photo gallery"
msgstr "Yn agor oriel luniau dyfais"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr "Yn agor y dewisydd emojis"
@@ -5057,7 +5520,7 @@ msgstr "Yn agor llif i fewngofnodi i'ch cyfrif Bluesky presennol"
msgid "Opens GIF select dialog"
msgstr "Yn agor deialog dewis GIF"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr "Yn agor desg gymorth yn y porwr"
@@ -5065,6 +5528,10 @@ msgstr "Yn agor desg gymorth yn y porwr"
msgid "Opens list of invite codes"
msgstr "Yn agor rhestr o godau gwahoddiad"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Yn agor ffurflen ailosod cyfrinair"
@@ -5073,12 +5540,12 @@ msgstr "Yn agor ffurflen ailosod cyfrinair"
msgid "Opens the linked website"
msgstr "Yn agor y wefan gysylltiedig"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Yn agor y proffil hwn"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Yn agor dewisydd fideo"
@@ -5121,11 +5588,11 @@ msgstr "Statws OTA: Dim ar gael"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Arall"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Cyfrif arall"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Tudalen Heb ei Chanfod"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "Oedi"
msgid "Pause video"
msgstr "Oedi fideo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "Pobl"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "Pobl yn cael eu dilyn gan @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "Pobl yn dilyn @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "Mae angen caniatâd i gael mynediad at ffolder lluniau."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "Gwrthodwyd caniatâd i gael mynediad at ffolder lluniau. Gallwch ei alluogi yng ngosodiadau eich system."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr ""
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "Anifeiliaid anwes"
msgid "Photography"
msgstr "Ffotograffiaeth"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Lluniau ar gyfer oedolion."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr "Pinio"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "Pinio frwd"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr "Piniwch y ffrwd fideos tueddiadol i'ch sgrin gartref i gael mynediad hawdd"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr ""
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Pinio i cartref"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Pinio i Cartref"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Pinio i'ch proffil"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Piniwyd"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "Wedi'i binio {0} i Cartref"
@@ -5263,7 +5722,7 @@ msgstr "Wedi'i binio {0} i Cartref"
msgid "Pinned Feeds"
msgstr "Ffrydiau wedi'u Pinio"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "Wedi'i binio i'ch ffrydiau"
@@ -5302,24 +5761,28 @@ msgstr "Yn chwarae'r GIF"
msgid "Plays the video"
msgstr "Yn chwarae'r fideo"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr ""
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Dewiswch eich enw dangos."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Dewiswch eich cyfrinair."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr ""
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Cwblhewch y captcha dilysu."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Cadarnhewch eich e-bost cyn ei newid. Gofyniad dros dro yw hwn tra bod offer diweddaru e-bost yn cael eu hychwanegu, a bydd yn cael ei ddileu cyn hir."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr "Gwiriwch ddwywaith eich bod wedi rhoi eich cyfeiriad e-bost yn gywir."
@@ -5335,19 +5798,41 @@ msgstr "Rhowch gyfrinair. Rhaid iddo fod o leiaf 8 nod."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Rhowch enw unigryw ar gyfer y cyfrinair apiau hwn neu defnyddiwch un gynhyrchwyd ar hap gennym ni."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Rhowch air, tag neu ymadrodd dilys i'w dewi"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr ""
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Rhowch eich e-bost."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Rhowch eich cod gwahodd."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr "Rhowch eich cyfrinair"
@@ -5381,24 +5866,25 @@ msgstr "Dewiswch reswm am yr adroddiad hwn"
msgid "Please sign in as @{0}"
msgstr "Mewngofnodwch fel @{0}"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Gwiriwch Eich E-bost"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Gwleidyddiaeth"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr "Fideos poblogaidd yn eich rhwydwaith."
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Pornograffi"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Postiad"
@@ -5408,32 +5894,32 @@ msgctxt "description"
msgid "Post"
msgstr "Postiad"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Postio'r Cyfan"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "Postiad gan {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "Postiad gan @{0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "Dilëwyd y postiad"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Methodd y postiad a llwytho i fyny. Gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr "Mae'r postiad wedi'i ddileu"
@@ -5455,7 +5941,7 @@ msgstr "Postiad Wedi'i Guddio Gennych Chi"
msgid "Post interaction settings"
msgstr "Gosodiadau rhyngweithio postiadau"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr "Gosodiadau Rhyngweithio Postiadau"
@@ -5476,15 +5962,16 @@ msgstr "Heb ganfod postiad"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "Postiad wedi'i binio"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "Postiad wedi ei ddadbinio"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Postiadau"
@@ -5503,7 +5990,7 @@ msgstr "Dolen a allai fod yn Gamarweiniol"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "Dewis wedi'i gadw"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -5524,7 +6011,7 @@ msgstr "Pwyswch i weld dilynwyr y cyfrif hwn rydych chi'n ei ddilyn hefyd"
msgid "Previous image"
msgstr "Delwedd flaenorol"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Prif Iaith"
@@ -5537,31 +6024,31 @@ msgstr "Blaenoriaethu'ch Dilynwyr"
msgid "Priority notifications"
msgstr "Hysbysiadau blaenoriaeth"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Preifatrwydd"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "Preifatrwydd a diogelwch"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Preifatrwydd a Diogelwch"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Polisi Preifatwydd"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Yn prosesu fideo..."
@@ -5570,23 +6057,23 @@ msgstr "Yn prosesu fideo..."
msgid "Processing..."
msgstr "Wrthi’n prosesu..."
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "proffil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Proffil"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "Proffil wedi'i ddiweddaru"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
@@ -5600,6 +6087,26 @@ msgstr "Rhestrau cyhoeddus, y mae modd eu rhannu o ddefnyddwyr i'w tewi neu eu r
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "Rhestrau cyhoeddus, y mae modd eu rhannu a'u defnyddio i yrru ffrydiau."
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr ""
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr ""
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr ""
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr ""
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "Cod QR wedi'i gopïo i'ch clipfwrdd!"
@@ -5612,25 +6119,25 @@ msgstr "Cod QR wedi'i lwytho i lawr!"
msgid "QR code saved to your camera roll!"
msgstr "Cod QR wedi'i gadw ar rolyn eich ffolder lluniau!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Dyfyniad postiad"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "Ail-atodwyd postiad dyfyniad"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "Datgysylltwyd post dyfyniad yn llwyddiannus"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "Analluogwyd postiadau dyfyniad"
@@ -5642,39 +6149,48 @@ msgstr "Gosodiadau dyfynnu"
msgid "Quotes"
msgstr "Dyfyniadau"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "Dyfyniadau'r postiad hwn"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Ar hap (hy \"Hap y Postiwr\")"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "Wedi mynd y tu hwnt i derfyn y gyfradd – rydych wedi ceisio newid eich enw dangos yn rhy aml mewn cyfnod byr. Arhoswch funud cyn ceisio eto."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "Ail-atodi dyfyniad"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr ""
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Ail agorwch eich cyfrif"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr "Darllen llai"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr "Darllen mwy"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Darllenwch y blog Bluesky"
@@ -5697,11 +6213,11 @@ msgstr "Rheswm dros apelio"
msgid "Reason:"
msgstr "Rheswm:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Chwilio Diweddar"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "Argymhellwyd"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "Ailgysylltu"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr "Gwrthod"
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr "Gwrthod cais am sgwrs"
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Ail-lwytho sgyrsiau"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Tynnu"
msgid "Remove {displayName} from starter pack"
msgstr "Tynnu {displayName} o'r pecyn cychwyn"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr "Tynnu {historyItem}"
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Tynnu cyfrif"
@@ -5752,13 +6268,13 @@ msgstr "Tynnu cyfrif"
msgid "Remove attachment"
msgstr "Tynnu'r atodiad"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Tynnu'r Afatar"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "Tynnu Baner"
@@ -5776,24 +6292,25 @@ msgstr "Tynnu ffrwd"
msgid "Remove feed?"
msgstr "Tynnu ffrwd?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Tynnu o fy ffrydiau"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "Tynnu o fynediad cyflym?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "Tynnu o'r ffrydiau wedi'u cadw"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr "Tynnu o'ch ffrydiau?"
@@ -5802,11 +6319,16 @@ msgstr "Tynnu o'ch ffrydiau?"
msgid "Remove image"
msgstr "Tynnu delwedd"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Tynnu'ry gair tewi oddi ar eich rhestr"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Dileu proffil"
@@ -5814,12 +6336,12 @@ msgstr "Dileu proffil"
msgid "Remove quote"
msgstr "Dileu dyfyniad"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Tynnu'r ailbostiad"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Tynnu ffeil is-deitl"
@@ -5827,6 +6349,21 @@ msgstr "Tynnu ffeil is-deitl"
msgid "Remove this feed from your saved feeds"
msgstr "Tynnu'r ffrydiwr hwn o'ch ffrydiau wedi'u cadw"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr ""
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "Wedi'i dynnu gan yr awdur"
@@ -5835,7 +6372,7 @@ msgstr "Wedi'i dynnu gan yr awdur"
msgid "Removed by you"
msgstr "Wedi'i ddileu gennych chi"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Wedi'i dynnu o'r rhestr"
@@ -5845,19 +6382,18 @@ msgid "Removed from my feeds"
msgstr "Wedi'i dynnu o fy ffrydiau"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Wedi'i dynnu o'r ffrydiau sydd wedi'u cadw"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Wedi'i dynnu o'ch ffrydiau"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr "Yn dileu proffil o hanes chwilio"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr ""
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
@@ -5868,7 +6404,7 @@ msgstr "Yn dileu postiad a ddyfynnwyd"
msgid "Replace with Discover"
msgstr "Amnewid gyda Darganfod"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Atebion"
@@ -5880,12 +6416,13 @@ msgstr "Analluogwyd atebion"
msgid "Replies to this post are disabled."
msgstr "Mae atebion i'r postiad hwn wedi'u hanalluogi."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Ateb"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Ateb ({0, plural, one {# ateb} other {# ateb}})"
@@ -5907,86 +6444,86 @@ msgstr "Gosodiadau ateb"
msgid "Reply settings are chosen by the author of the thread"
msgstr "Mae gosodiadau ateb yn cael eu dewis gan awdur yr edefyn"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "Didoli atebion"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Ateb i <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Ateb i bostiad sydd wedi'i rwystro"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "Ateb i bostiad"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Ateb i chi"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "Gwelededd ateb wedi'i ddiweddaru"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "Cafodd yr ateb ei guddio'n llwyddiannus"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Adroddiadau"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "Adrodd ar gyfrif"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Adrodd ar sgwrs"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "Deialog adrodd"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Adrodd ar ffrwd"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
-msgstr "Adrodd ar Restr"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Adrodd ar neges"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Adrodd ar bostiad"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "Adrodd ar becyn cychwyn"
@@ -6030,25 +6567,26 @@ msgstr "Adrodd ar y pecyn cychwyn hwn"
msgid "Report this user"
msgstr "Adrodd ar y defnyddiwr hwn"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Ail-bostio"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Ail-bostio"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Ail-bostio ({0, plural, one {# ail-bostio} other {# ail-bostio}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Ail-bostio neu ddyfynnu postiad"
@@ -6056,27 +6594,27 @@ msgstr "Ail-bostio neu ddyfynnu postiad"
msgid "Reposted By"
msgstr "Wedi ei Ail-bostio Gan"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "Wedi'i ailbostio gan {0}"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "Wedi'i ail-bostio gan <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "Wedi'i ail-bostio gennych chi"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "Ail-bostio'r postiad hon"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "Gofyn i Gael Newid"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr ""
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6088,11 +6626,11 @@ msgstr "Gofyn am God"
msgid "Require alt text before posting"
msgstr "Mae angen testun amgen cyn postio"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr "Mae angen cod e-bost i fewngofnodi i'ch cyfrif."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Yn ofynnol ar gyfer y darparwr hwn"
@@ -6100,13 +6638,19 @@ msgstr "Yn ofynnol ar gyfer y darparwr hwn"
msgid "Required in your region"
msgstr "Yn ofynnol yn eich ardal"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "Ail-anfon e-bost"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "Ail-anfon E-bost"
@@ -6123,8 +6667,8 @@ msgstr "Ailosod cod"
msgid "Reset Code"
msgstr "Cod Ailosod"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "Ailosod cyflwr cyflwyno"
@@ -6141,16 +6685,16 @@ msgstr "Ceisiadau mewngofnodi"
msgid "Retries the last action, which errored out"
msgstr "Ceisiadau ar y weithred olaf, oedd wedi methu"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "Ceisiadau ar y weithred olaf, oedd wedi methu"
msgid "Retry"
msgstr "Ceisio eto"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr "Ceisio llwytho dewisiadau adrodd eto"
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Nôl i'r dudalen flaenorol"
@@ -6175,11 +6719,11 @@ msgstr "Nôl i'r dudalen flaenorol"
msgid "Returns to home page"
msgstr "Yn mynd nôl i'r dudalen gartref"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "Yn mynd nôl i'r dudalen flaenorol"
@@ -6190,24 +6734,26 @@ msgstr "Yn mynd nôl i'r cam blaenorol"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Cadw"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Cadw"
@@ -6221,12 +6767,12 @@ msgstr "Cadw pen-blwydd"
msgid "Save changes"
msgstr "Cadw'r newidiadau"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Cadw'r Newidiadau"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Cadw delwedd"
@@ -6234,16 +6780,16 @@ msgstr "Cadw delwedd"
msgid "Save image crop"
msgstr "Cadw tocio delwedd"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Gadw'r enw dangos newydd"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "Cadw cod QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Cadw i fy ffrydiau"
@@ -6251,16 +6797,12 @@ msgstr "Cadw i fy ffrydiau"
msgid "Saved Feeds"
msgstr "Ffrydiau wedi'u Cadw"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "Wedi'i gadw i fy ffolder lluniau"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "Wedi'i gadw i'ch ffrydiau"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "Yn cadw unrhyw newidiadau i'ch proffil"
@@ -6270,8 +6812,8 @@ msgstr "Yn cadw gosodiadau tocio delwedd"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "Dywedwch helo!"
@@ -6280,45 +6822,42 @@ msgstr "Dywedwch helo!"
msgid "Science"
msgstr "Gwyddoniaeth"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "Sgrolio i'r brig"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Chwilio"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Chwiliwch bostiadau @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "Chwiliwch yn ôl enw neu ddiddordeb"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "Chwilo'r ffrydiau"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "Chwiliwch am \"{interestsDisplayName}\"{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Chwiliwch am \"{query}\""
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "Chwiliwch am \"{searchText}\""
@@ -6326,29 +6865,33 @@ msgstr "Chwiliwch am \"{searchText}\""
msgid "Search for feeds that you want to suggest to others."
msgstr "Chwiliwch am ffrydiau rydych chi am eu hawgrymu i eraill."
-#: src/view/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr ""
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
msgstr "Chwiliwch am bostiadau, defnyddwyr, neu ffrydiau"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Chwiliwch am ddefnyddwyr"
-
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "Chwilio GIFs"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr "Chwiliwch fy mhostiadau"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr "Chwiliwch am bostiadau"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Chwiliwch broffiliau"
@@ -6356,16 +6899,20 @@ msgstr "Chwiliwch broffiliau"
msgid "Search Tenor"
msgstr "Chwiliwch Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr "Chwilio..."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr "Chwilio am broffiliau"
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Cam Diogelwch Angenrheidiol"
@@ -6385,7 +6932,7 @@ msgstr "Gweld #{tag} postiad"
msgid "See #{tag} posts by user"
msgstr "Gweld #{tag} postiad yn ôl defnyddiwr"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Gweld swyddi yn Bluesky"
@@ -6405,6 +6952,10 @@ msgstr "Dewiswch liw"
msgid "Select account"
msgstr "Dewiswch gyfrif"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Dewiswch afatar"
@@ -6413,10 +6964,22 @@ msgstr "Dewiswch afatar"
msgid "Select an emoji"
msgstr "Dewiswch emoji"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Dewiswch ieithoedd cynnwys"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr ""
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Dewiswch o gyfrif sy'n bodoli"
@@ -6433,15 +6996,15 @@ msgstr "Dewiswch GIF \"{0}\""
msgid "Select how long to mute this word for."
msgstr "Dewiswch pa mor hir i dewi'r gair hwn."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Dewiswch iaith..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Dewiswch ieithoedd"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr "Dewis gwasanaeth cymedroli"
@@ -6449,6 +7012,10 @@ msgstr "Dewis gwasanaeth cymedroli"
msgid "Select moderator"
msgstr "Dewiswch gymedrolwr"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "Dewiswch yr emoji {emojiName} fel eich afatar"
msgid "Select the moderation service(s) to report to"
msgstr "Dewiswch y gwasanaeth(au) cymedroli i adrodd iddyn nhw"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Dewiswch fideo"
@@ -6470,23 +7037,24 @@ msgstr "Dewiswch fideo"
msgid "Select what content this mute word should apply to."
msgstr "Dewiswch i ba gynnwys y dylai'r gair wedi'i dewi hwn fod yn berthnasol."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr "Dewiswch pa iaith i'w defnyddio ar gyfer rhyngwyneb defnyddiwr yr ap."
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Dewiswch pa ieithoedd rydych chi am i'ch ffrydiau tanysgrifio eu cynnwys. Os fyddwch chi ddim yn dewis un, bydd pob iaith yn cael ei dangos."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Dewiswch eich dyddiad geni"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "Dewiswch eich diddordebau o'r dewisiadau isod"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "Dewiswch eich dewis iaith cyfieithu'ch ffrydiau."
@@ -6498,19 +7066,17 @@ msgstr "Yn dewis dewis {0} o {numItems}"
msgid "Send a neat website!"
msgstr "Anfonwch wefan dda!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr "Anfonwch gadarnhad"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Anfonwch e-bost cadarnhau"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Anfonwch E-bost Cadarnhau"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Anfon e-bost"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Anfon E-bost"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Anfonwch adborth"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Anfonwch neges"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr ""
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Anfonwch bostiad i..."
@@ -6544,17 +7114,20 @@ msgstr "Anfon adroddiad"
msgid "Send report to {0}"
msgstr "Anfonwch adroddiad i {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr "Anfon adroddiad at {title}"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Anfonwch e-bost dilysu"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Anfonwch trwy neges uniongyrchol"
@@ -6570,7 +7143,7 @@ msgstr "Cyfeiriad gweinydd"
msgid "Set app icon to {0}"
msgstr "Gosod eicon ap i {0}"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "Gosod dyddiad geni"
@@ -6586,19 +7159,19 @@ msgstr "Gosodwch eich cyfrif"
msgid "Sets email for password reset"
msgstr "Yn gosod e-bost ar gyfer ailosod cyfrinair"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Gosodiadau"
#: src/screens/ModerationInteractionSettings/index.tsx:102
msgctxt "toast"
msgid "Settings saved"
-msgstr ""
+msgstr "Gosodiadau wedi'u cadw"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Gweithgaredd rhywiol neu noethni erotig."
@@ -6606,21 +7179,15 @@ msgstr "Gweithgaredd rhywiol neu noethni erotig."
msgid "Sexually Suggestive"
msgstr "Rhywiol Awgrymiadol"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Rhannu"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Rhannu"
@@ -6633,15 +7200,19 @@ msgstr "Rhannwch stori cŵl!"
msgid "Share a fun fact!"
msgstr "Rhannwch ffaith hwyliog!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Rhannwch beth bynnag"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "Rhannwch ddolen"
@@ -6650,32 +7221,46 @@ msgstr "Rhannwch ddolen"
msgid "Share Link"
msgstr "Rhannwch Ddolen"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "Deialog rhannu dolen"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Rhannwch god QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "Rhannwch y ffrwd hon"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "Rhannwch y pecyn cychwyn hwn"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "Rhannwch y pecyn cychwynnol hwn a helpwch bobl i ymuno â'ch cymuned ar Bluesky."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr ""
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "Rhannwch eich hoff ffrwd!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "Profwr Dewisiadau Rhannu"
@@ -6685,7 +7270,7 @@ msgstr "Yn rhannu'r wefan gysylltiedig"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Dangos"
@@ -6696,8 +7281,8 @@ msgstr "Dangos testun amgen"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Dangos beth bynnag"
@@ -6718,8 +7303,8 @@ msgstr "Dangos dewisiadau cyfaddasu"
msgid "Show hidden replies"
msgstr "Dangos atebion cudd"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "Dangos llai fel hyn"
@@ -6727,14 +7312,14 @@ msgstr "Dangos llai fel hyn"
msgid "Show list anyway"
msgstr "Dangos rhestr beth bynnag"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Dangos Rhagor"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Dangos rhagor fel hyn"
@@ -6752,7 +7337,7 @@ msgstr "Dangos postiadau dyfynnu"
msgid "Show replies"
msgstr "Dangos atebion"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "Dangos atebion fel"
@@ -6764,8 +7349,8 @@ msgstr "Dangos atebion yn ôl eu edyfydd"
msgid "Show replies by people you follow before all other replies"
msgstr "Dangos atebion gan bobl rydych chi'n eu dilyn cyn pob ateb arall"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "Dangos ateb i bawb"
@@ -6787,11 +7372,11 @@ msgstr "Dangos rhybudd"
msgid "Show warning and filter from feeds"
msgstr "Dangos rhybudd a hidlo o ffrydiau"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr "Yn dangos manylion pryd cafodd y postiad hwn ei chreu"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr "Yn dangos cyfrifon eraill y gallwch newid iddyn nhw"
@@ -6809,8 +7394,8 @@ msgstr "Yn dangos y cynnwys"
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr "Yn dangos y cynnwys"
msgid "Sign in"
msgstr "Mewngofnodi"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Mewngofnodi fel {0}"
@@ -6826,16 +7411,16 @@ msgstr "Mewngofnodi fel {0}"
msgid "Sign in as..."
msgstr "Mewngofnodi fel..."
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr ""
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "Mewngofnodwch neu crëwch eich cyfrif i ymuno â'r sgwrs!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "Mewngofnodwch neu cofrestrwch"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "Mewngofnodwch i gyfrif nad yw wedi'i restru"
@@ -6843,15 +7428,15 @@ msgstr "Mewngofnodwch i gyfrif nad yw wedi'i restru"
msgid "Sign in to Bluesky or create a new account"
msgstr "Mewngofnodwch i Bluesky neu crëwch gyfrif newydd"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Allgofnodi"
@@ -6859,8 +7444,8 @@ msgstr "Allgofnodi"
msgid "Sign Out"
msgstr "Allgofnodi"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "Allgofnodi?"
@@ -6874,11 +7459,6 @@ msgstr "Mae Angen Mewngofnodi"
msgid "Signed in as @{0}"
msgstr "Wedi mewngofnodi fel @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "Cofrestrwch heb becyn cychwyn"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Cyfrifon tebyg"
@@ -6896,12 +7476,21 @@ msgstr "Hepgor y llif hwn"
msgid "Smaller"
msgstr "Llai"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Datblygwr Meddalwedd"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "Rhai ffrydiau eraill efallai y byddwch yn eu hoffi"
@@ -6909,23 +7498,31 @@ msgstr "Rhai ffrydiau eraill efallai y byddwch yn eu hoffi"
msgid "Some people can reply"
msgstr "Gall rhai pobl ateb"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Doedd rhywbeth ddim yn hollol iawn gyda'r data rydych yn ceisio'i adrodd. Cysylltwch â'n cefnogaeth."
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Aeth rhywbeth o'i le"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Aeth rhywbeth o'i le, ceisiwch eto"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Aeth rhywbeth o'i le, ceisiwch eto."
@@ -6934,16 +7531,16 @@ msgstr "Aeth rhywbeth o'i le, ceisiwch eto."
msgid "Something went wrong!"
msgstr "Aeth rhywbeth o'i le!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr "Aeth rhywbeth o'i le. Ceisiwch eto."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "Rhywbeth o'i le? Rhowch wybod i ni."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "Sori! Daeth eich sesiwn i ben. Mewngofnodwch eto."
@@ -6978,34 +7575,39 @@ msgstr "Sbam; gormod o grybwylliadau neu atebion"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Chwaraeon"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Dechrau sgwrs newydd"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "Dechreuwch ychwanegu pobl"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "Dechreuwch ychwanegu pobl!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Dechreuwch sgwrs gyda {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Pecyn Cychwyn"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "Pecyn cychwyn gan {0}"
@@ -7013,38 +7615,39 @@ msgstr "Pecyn cychwyn gan {0}"
msgid "Starter pack by <0/>"
msgstr "Pecyn cychwyn gan <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "Pecyn cychwyn gennych chi"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "Mae'r pecyn cychwyn yn annilys"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "Pecynnau Cychwyn"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Mae pecynnau cychwyn yn caniatáu i chi rannu gyda'ch ffrindiau eich hoff ffrydiau a phobl."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Tudalen Statws"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "Cam {0} o {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "Storfa wedi'i chlirio, mae angen i chi ailgychwyn yr ap nawr."
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "Llyfr stori"
@@ -7063,69 +7666,74 @@ msgstr "Cyflwyno apêl"
msgid "Submit Appeal"
msgstr "Cyflwyno Apêl"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr "Cyflwyno adroddiad"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Tanysgrifio"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "Tanysgrifiwch i @{0} i ddefnyddio'r labeli hyn:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "Tanysgrifio i Labelwr"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "Tanysgrifiwch i'r labelwr hwn"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "Tanysgrifiwch i'r rhestr hon"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "Llwyddiant!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
-msgstr "Cyfrifon wedi'u hawgrymu"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
+msgstr ""
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Awgrymiadau i chi"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Awgrymiadol"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60
msgctxt "Name of app icon variant"
msgid "Sunrise"
-msgstr ""
+msgstr "Codiad Haul"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70
msgctxt "Name of app icon variant"
msgid "Sunset"
-msgstr ""
+msgstr "Machlud Haul"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Cymorth"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Newid cyfrif"
@@ -7134,11 +7742,11 @@ msgstr "Newid cyfrif"
msgid "Switch Account"
msgstr "Newid Cyfrif"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "Newid cyfrif"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr "Newid i {0}"
@@ -7149,9 +7757,9 @@ msgstr "Newid i {0}"
msgid "System"
msgstr "System"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Cofnod system"
@@ -7159,6 +7767,12 @@ msgstr "Cofnod system"
msgid "Tags only"
msgstr "Tagiau'n unig"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Tapiwch i gau"
@@ -7184,7 +7798,7 @@ msgstr "Technoleg"
msgid "Tell a joke!"
msgstr "Dweud jôc!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "Dywedwch ychydig wrthym amdanoch chi'ch hun"
@@ -7192,17 +7806,17 @@ msgstr "Dywedwch ychydig wrthym amdanoch chi'ch hun"
msgid "Tell us a little more"
msgstr "Dywedwch ychydig mwy wrthym"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Amodau"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Telerau Gwasanaeth"
@@ -7230,7 +7844,11 @@ msgstr "Maes testun"
msgid "Text input field"
msgstr "Maes mewnbwn testun"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "Diolch! Mae eich e-bost wedi'i ddilysu'n llwyddiannus."
@@ -7242,7 +7860,7 @@ msgstr "Diolch. Mae eich adroddiad wedi'i anfon."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Diolch, rydych chi wedi dilysu'ch cyfeiriad e-bost yn llwyddiannus. Gallwch chi gau'r ddeialog hon."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "Mae hynny’n cynnwys y canlynol:"
@@ -7250,10 +7868,10 @@ msgstr "Mae hynny’n cynnwys y canlynol:"
msgid "That handle is already taken."
msgstr "Mae'r enw dangos hwnnw eisoes wedi'i gymryd."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "Nid oedd modd dod o hyd i'r pecyn cychwyn hwnnw."
msgid "That's all, folks!"
msgstr "Dyna i gyd, bobl!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr "Dyna bopeth!"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "Bydd y cyfrif yn gallu rhyngweithio â chi ar ôl ei ddadrwystro."
@@ -7282,7 +7900,7 @@ msgstr "Bydd yr ap yn cael ei ailgychwyn"
msgid "The author of this thread has hidden this reply."
msgstr "Mae awdur yr edefyn hwn wedi cuddio'r ateb hwn."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "Rhaglen gwe Bluesky"
@@ -7302,6 +7920,10 @@ msgstr "Ffrwd Darganfod"
msgid "The Discover feed now knows what you like"
msgstr "Mae ffrwd Darganfod nawr yn gwybod beth rydych chi'n ei hoffi"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Mae'r profiad yn well yn yr ap. Llwythwch Bluesky i lawr nawr a byddwn yn dod nôl lle roeddech chi."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "Mae'r Polisi Preifatrwydd wedi'i symud i <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "Mae'r fideo hwn yn fwy na 50MB."
+msgid "The selected video is larger than 100 MB."
+msgstr "Mae'r fideo hwn yn fwy na 100 MB."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "Mae'n ymddangos bod y gweinydd yn cael problemau. Ceisiwch eto ymhen ychydig funudau."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "Mae'r pecyn cychwyn rydych chi'n ceisio ei weld yn annilys. Gallwch ddileu'r pecyn cychwyn hwn yn lle hynny."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr ""
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "Mae'r ffurflen cymorth wedi'i symud. Os oes angen help arnoch, <0/> neu ewch i {HELP_DESK_URL} i gysylltu â ni."
@@ -7367,15 +7994,15 @@ msgstr "Does dim terfyn amser ar gyfer agor cyfrif, dewch yn ôl unrhyw bryd."
msgid "There was an issue connecting to Tenor."
msgstr "Roedd problem yn ymwneud â Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "Roedd problem wrth gysylltu â'r gweinydd"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Roedd problem wrth gysylltu â'r gweinydd, gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni."
@@ -7388,11 +8015,12 @@ msgstr "Roedd problem wrth gysylltu â'ch gweinydd"
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Roedd problem wrth geisio cael hysbysiadau. Tapiwch yma i geisio eto."
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Roedd problem wrth nôl postiadau. Tapiwch yma i geisio eto."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Roedd problem wrth nôl y rhestr. Tapiwch yma i geisio eto."
@@ -7400,12 +8028,12 @@ msgstr "Roedd problem wrth nôl y rhestr. Tapiwch yma i geisio eto."
msgid "There was an issue fetching your app passwords"
msgstr "Roedd problem wrth nôl eich cyfrineiriau apiau"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Roedd problem wrth nôl eich rhestrau. Tapiwch yma i geisio eto."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "Roedd problem wrth nôl eich manylion gwasanaeth"
@@ -7418,26 +8046,26 @@ msgstr "Roedd problem wrth ddileu'r ffrwd hwn. Gwiriwch eich cysylltiad rhyngrwy
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Roedd problem wrth anfon eich adroddiad. Gwiriwch eich cysylltiad rhyngrwyd."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "Roedd problem wrth ddiweddaru'ch ffrydiau, gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "Roedd problem! {0}"
@@ -7445,10 +8073,10 @@ msgstr "Roedd problem! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Roedd problem. Gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni."
@@ -7469,6 +8097,14 @@ msgstr "Dim ond i'r ffrwd Dilyn mae'r gosodiadau hyn yn berthnasol."
msgid "This {screenDescription} has been flagged:"
msgstr "Mae {screenDescription} hwn wedi'i fflagio:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "Mae'r cyfrif hwn wedi gofyn i ddefnyddwyr fewngofnodi i weld eu proffil."
@@ -7477,6 +8113,10 @@ msgstr "Mae'r cyfrif hwn wedi gofyn i ddefnyddwyr fewngofnodi i weld eu proffil.
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 "Mae'r cyfrif hwn wedi'i rwystro gan un neu fwy o'ch rhestrau safoni. I ddadrwystro, ewch i'r rhestrau yn uniongyrchol a dileu'r defnyddiwr hwn."
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Bydd yr apêl hon yn cael ei hanfon at <0>{sourceName}0>."
@@ -7510,14 +8150,22 @@ msgstr "Nid yw'r cynnwys hwn ar gael oherwydd bod un o'r defnyddwyr dan sylw wed
msgid "This content is not viewable without a Bluesky account."
msgstr "Nid yw'r cynnwys hwn yn weladwy heb gyfrif Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Mae'r sgwrs hon gyda chyfrif sydd wedi'i ddileu neu wedi'i chau. Pwyswch am ddewisiadau"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "Mae'r nodwedd hon mewn beta. Gallwch ddarllen mwy am allforio storfeydd yn <0>y cofnod blog hwn0>."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr ""
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "Nid yw'r nodwedd hon ar gael wrth ddefnyddio Cyfrinair Ap. Mewngofnodwch gyda'ch prif gyfrinair."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Mae'r ffrwd hon yn wag! Efallai y bydd angen i chi ddilyn mwy o ddefnyddwyr neu newid eich gosodiadau iaith."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Mae'r ffrwd hon yn wag."
@@ -7540,7 +8188,7 @@ msgstr "Mae'r ffrwd hon yn wag."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Nid yw'r ffrwd hon ar-lein bellach. Rydym yn dangos <0>Darganfod0> yn ei lle."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "Mae'r enw dangos hwn wedi'i gadw. Rhowch gynnig ar un arall."
@@ -7548,9 +8196,10 @@ msgstr "Mae'r enw dangos hwn wedi'i gadw. Rhowch gynnig ar un arall."
msgid "This information is not shared with other users."
msgstr "Nid yw'r wybodaeth hon yn cael ei rhannu â defnyddwyr eraill."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "Mae hyn yn bwysig rhag ofn y bydd angen i chi newid eich e-bost neu ailosod eich cyfrinair."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr ""
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "Gosodwyd y label hwn gan yr awdur."
msgid "This label was applied by you."
msgstr "Gosodwyd y label hwn gennych chi."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "Nid yw'r labelwr hwn wedi datgan pa labeli y mae'n eu cyhoeddi, ac efallai na fydd yn weithredol."
@@ -7576,7 +8225,7 @@ msgstr "Mae'r rhestr hon - wedi'i chreu gan <0>{0}0> – yn cynnwys achosion p
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr "Mae'r rhestr hon - a grëwyd gennych chi - yn cynnwys achosion posibl o dorri canllawiau cymunedol Bluesky yn ei enw neu ddisgrifiad."
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "Mae'r rhestr hon yn wag."
@@ -7584,7 +8233,7 @@ msgstr "Mae'r rhestr hon yn wag."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Nid yw'r gwasanaeth cymedroli hwn ar gael. Gweler isod am ragor o fanylion. Os bydd y mater hwn yn parhau, cysylltwch â ni."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Mae'r postiad hwn yn honni iddo gael ei greu ar <0>{0}0>, ond fe'i gwelwyd gyntaf gan Bluesky ar <1>{1}1>."
@@ -7592,28 +8241,29 @@ msgstr "Mae'r postiad hwn yn honni iddo gael ei greu ar <0>{0}0>, ond fe'i gwe
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr "Mae gan y postiad hwn fath anhysbys o adwy edau arno. Mae'n bosibl bod eich ap yn rhy hen."
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "Mae'r postiad hwn wedi'i ddileu."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Dim ond i ddefnyddwyr sydd wedi mewngofnodi y mae'r postiad hwn yn weladwy. Ni fydd yn weladwy i bobl nad ydyn nhw wedi mewngofnodi."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Bydd y postiad hwn yn cael ei guddio rhag ffrydiau ac edafedd. Nid oes modd dadwneud hyn."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "Mae awdur y postiad hwn wedi analluogi postiadau dyfyniadau."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Mae'r proffil hwn yn weladwy dim ond i ddefnyddwyr sydd wedi mewngofnodi. Ni fydd yn weladwy i bobl nad ydyn nhw wedi mewngofnodi."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr "Bydd yr ateb hwn yn cael ei drefnu mewn adran gudd ar waelod eich edefyn a bydd yn tewi hysbysiadau ar gyfer atebion dilynol - i chi'ch hun ac i eraill."
@@ -7621,10 +8271,14 @@ msgstr "Bydd yr ateb hwn yn cael ei drefnu mewn adran gudd ar waelod eich edefyn
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Nid yw'r gwasanaeth hwn wedi darparu telerau gwasanaeth na pholisi preifatrwydd."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "Dylai hyn greu cofnod parth yn:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr ""
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "Nid oes gan y defnyddiwr hwn unrhyw ddilynwyr."
@@ -7662,21 +8316,21 @@ msgstr "Nid yw'r defnyddiwr hwn yn dilyn unrhyw un."
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "Bydd hyn yn dileu \"{0}\" o'ch geiriau wedi'u tewi. Gallwch bob amser ei ychwanegu nôl yn ddiweddarach."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "Bydd hyn yn tynnu @{0} o'r rhestr mynediad cyflym."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "Bydd hyn yn tynnu'ch postiad o'r postiad dyfynnu hwn ar gyfer pob defnyddiwr, ac yn rhoi dalfan yn ei le."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "Dewisiadau edafedd"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Dewisiadau edafedd"
@@ -7684,8 +8338,8 @@ msgstr "Dewisiadau edafedd"
msgid "Thread Preferences"
msgstr "Dewisiadau Edafedd"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "Edafwyd"
@@ -7693,7 +8347,7 @@ msgstr "Edafwyd"
msgid "Threaded mode"
msgstr "Modd edafedd"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Dewisiadau Edafedd"
@@ -7705,14 +8359,15 @@ msgstr "Amser yn weddill: {0, plural, one {# eiliad} other {# eiliad}}"
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "I analluogi'r dull e-bost 2FA, gwiriwch eich mynediad i'r cyfeiriad e-bost."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr ""
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "I adrodd ar sgwrs, adroddwch un o'i negeseuon trwy'r sgrin sgwrsio. Mae hyn yn gadael i'n cymedrolwyr ddeall cyd-destun eich problem."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "I lwytho fideos i fyny i Bluesky, rhaid i chi wirio'ch e-bost yn gyntaf."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "At bwy hoffech chi anfon yr adroddiad hwn?"
@@ -7725,7 +8380,7 @@ msgstr "Heddiw"
msgid "Toggle dropdown"
msgstr "Toglo'r cwymplen"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "Toglo i alluogi neu analluogi cynnwys oedolion"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr "Toglo'r sain"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Brig"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "Pwnc"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Cyfieithu"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "Y Tuedd"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "Fideos Tueddol"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr ""
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "Teledu"
msgid "Two-factor authentication (2FA)"
msgstr "Dilysu dau ffactor (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Teipiwch eich dewis o enw defnyddiwr"
@@ -7783,18 +8440,11 @@ msgstr "Teipiwch eich dewis o enw defnyddiwr"
msgid "Type your message here"
msgstr "Teipiwch eich neges yma"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Math:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Dadrwystro rhestr"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Dad-dewi rhestr"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "Methu cysylltu. Gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni."
@@ -7809,7 +8459,7 @@ msgstr "Methu cysylltu. Gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Methu cysylltu â'ch gwasanaeth. Gwiriwch eich cysylltiad rhyngrwyd."
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "Methu dileu"
@@ -7817,36 +8467,41 @@ msgstr "Methu dileu"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Dadflocio"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Dadflocio"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Dadrwystro cyfrif"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "Dadrwystro Cyfrif?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Dadwneud ail-bostio"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Dad-wneud ail-bostio ({0, plural, one {# ail-bostio} other {# ail-bostio}})"
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Dad-ddilyn"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "Dad-ddilyn {0}"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "Yn dad-ddilyn y cyfrif"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr "Yn dad-ddilyn y defnyddiwr"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Yn anffodus, nid yw un o'ch labelwyr wedi'u tanysgrifio'n cefnogi'r math yma o adroddiad."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "Dad-hoffi"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Dadhoffi ({0, plural, one {# hoffi} other {# hoffi}})"
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr "Dad-dewi"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Dad-dewi"
@@ -7895,10 +8555,10 @@ msgstr "Dad-dewi"
msgid "Unmute {tag}"
msgstr "Dad-dewi {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "Dad-dewi cyfrif"
@@ -7906,8 +8566,12 @@ msgstr "Dad-dewi cyfrif"
msgid "Unmute conversation"
msgstr "Dad-dewi sgwrs"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Dad-dewi'r edefyn"
@@ -7915,38 +8579,47 @@ msgstr "Dad-dewi'r edefyn"
msgid "Unmute video"
msgstr "Dad-dewi fideo"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Dad-binio"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "Dad-binio ffrwd"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Dad-bioio o'r cartref"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "Dad-binio o'r proffil"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Dad-binio'r rhestr cymedroli"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "Wedi'i ddad-binio {0} o'r Cartref"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Wedi'i ddad-binio o'ch ffrydiau"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Dad-danysgrifio"
@@ -7955,7 +8628,7 @@ msgstr "Dad-danysgrifio"
msgid "Unsubscribe from list"
msgstr "Dad-danysgrifio o'r rhestr"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Dad-danysgrifio o'r labelwr hwn"
@@ -7963,11 +8636,11 @@ msgstr "Dad-danysgrifio o'r labelwr hwn"
msgid "Unsubscribed from list"
msgstr "Wedi dad-danysgrifio o'r rhestr"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "Math o fideo heb ei gefnogi"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "Math o fideo nad yw'n cael ei gefnogi: {0}"
@@ -7987,49 +8660,60 @@ msgstr "Diweddaru"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Diweddaru <0>{displayName}0> yn y Rhestrau"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Diweddaru i {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
-msgctxt "toast"
-msgid "Updating quote attachment failed"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
+msgctxt "toast"
+msgid "Updating quote attachment failed"
+msgstr "Wedi methu diweddaru atodiad dyfyniad"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "Wedi methu diweddaru gwelededd ateb"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "Yn diweddaru..."
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Llwythwch lun i fyny yn lle hynny"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Llwythwch ffeil testun i fyny i:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Llwythwch i fyny o'r Camera"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Llwytho i fyny o'r Ffeiliau"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Llwytho i fyny o'r Llyfrgell"
@@ -8042,7 +8726,7 @@ msgstr "Wrthi'n lwytho lluniau i fyny..."
msgid "Uploading link thumbnail..."
msgstr "Wrthi'n lwytho dolen llun bach i fyny..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "Wrthi'n llwytho fideo i fyny..."
@@ -8050,22 +8734,22 @@ msgstr "Wrthi'n llwytho fideo i fyny..."
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Defnyddiwch gyfrineiriau apiau i fewngofnodi i raglenni Bluesky eraill heb roi mynediad llawn i'ch cyfrif neu'ch cyfrinair."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Defnyddiwch y darparwr rhagosodedig"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Defnyddiwch y porwr o fewn yr ap"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Defnyddiwch y porwr o fewn yr ap i agor dolenni"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Defnyddiwch fy mhorwr rhagosodedig"
@@ -8084,7 +8768,7 @@ msgstr "Yn cael ei ddefnyddio gan:"
#: src/components/dms/ReportDialog.tsx:324
msgctxt "toast"
msgid "User blocked"
-msgstr ""
+msgstr "Rhwystro defnyddiwr"
#: src/components/moderation/ModerationDetailsDialog.tsx:71
#: src/lib/moderation/useModerationCauseDescription.ts:63
@@ -8119,15 +8803,15 @@ msgstr "Rhestr defnyddwyr gan {0}"
msgid "User list by you"
msgstr "Rhestr defnyddwyr gennych chi"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "Rhestr defnyddwyr wedi'i chreu"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "Rhestr defnyddwyr wedi'i diweddaru"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8150,58 +8834,88 @@ msgstr "Defnyddwyr rwy'n eu dilyn"
msgid "Users in \"{0}\""
msgstr "Defnyddwyr yn \"{0}\""
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "Defnyddwyr sydd wedi hoffi'r cynnwys neu'r proffil hwn"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr "Defnyddwyr rydych chi'n eu dilyn"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Gwerth:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "Mae angen e-bost wedi'i gwirio"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr ""
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr ""
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Gwirio Cofnod DNS"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Gwirio deialog e-bost"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Gwirio E-bost Newydd"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Gwiriwch nawr"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Gwirio Ffeil Testun"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Gwiriwch eich e-bost"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Gwiriwch eich e-bost"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Fersiwn {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "Fideo"
msgid "Video failed to process"
msgstr "Methodd y fideo â phrosesu"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr "Ffrwd Fideo"
@@ -8224,14 +8938,15 @@ msgstr "Fideo gan {0}: {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Gemau Fideo"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr "Fideo wedi'i atal"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr "Fideo yn chwarae"
@@ -8239,11 +8954,11 @@ msgstr "Fideo yn chwarae"
msgid "Video not found."
msgstr "Fideo heb ei ganfod."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Gosodiadau fideo"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Fideo wedi'i lwytho i fyny"
@@ -8251,31 +8966,32 @@ msgstr "Fideo wedi'i lwytho i fyny"
msgid "Video: {0}"
msgstr "Fideo: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "Fideos"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
-msgstr ""
+msgstr "Rhaid i fideo fod yn llai na 3 munud o hyd"
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "Gweld afatar {0}"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "Gweld proffil {0}"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "Gweld proffil {displayName}"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "Gweld proffil defnyddiwr sydd wedi'i rwystro"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "Gweld cofnod dadfygio"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Manylion"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "Gweld manylion ar gyfer adrodd am dorri hawlfraint"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Gweld yr edefyn llawn"
@@ -8308,18 +9024,17 @@ msgstr "Gweld gwybodaeth am y labeli hyn"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "Gweld mwy"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Gweld proffil"
@@ -8331,7 +9046,11 @@ msgstr "Gweld yr afatar"
msgid "View the labeling service provided by @{0}"
msgstr "Gweld y gwasanaeth labelu sy'n cael ei ddarparu gan @{0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "Gweld defnyddwyr sy'n hoffi'r ffrwd hon"
@@ -8339,11 +9058,11 @@ msgstr "Gweld defnyddwyr sy'n hoffi'r ffrwd hon"
msgid "View video"
msgstr "Gweld fideo"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Gweld eich cyfrifon sydd wedi'u rhwystro"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr "Gweld eich gosodiadau rhyngweithio post rhagosodedig"
@@ -8352,14 +9071,18 @@ msgstr "Gweld eich gosodiadau rhyngweithio post rhagosodedig"
msgid "View your feeds and explore more"
msgstr "Gweld eich ffrydiau ac archwilio mwy"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Gweld eich rhestrau cymedroli"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "Gweld eich cyfrifon wedi tewi"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "Rhybudd cynnwys"
msgid "Warn content and filter from feeds"
msgstr "Rhybudd cynnwys a hidlydd o ffrydiau"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr ""
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "Methu ddod o hyd i ganlyniadau'r hashnod hwnnw."
@@ -8400,7 +9128,7 @@ msgstr "Methu ddod o hyd i ganlyniadau'r hashnod hwnnw."
msgid "We couldn't find any results for that topic."
msgstr "Methu ddod o hyd i ganlyniadau'r pwnc hwnnw."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "Methu lwytho'r sgwrs hon"
@@ -8420,6 +9148,14 @@ msgstr "Gobeithiwn y cewch amser bendigedig. Cofiwch, Bluesky yw:"
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Rydym wedi redeg allan o bostiadau o'ch dilynwyr. Dyma'r diweddaraf gan <0/>."
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Nid oeddem yn gallu penderfynu a ydych yn cael llwytho fideos i fyny. Ceisiwch eto."
@@ -8428,7 +9164,7 @@ msgstr "Nid oeddem yn gallu penderfynu a ydych yn cael llwytho fideos i fyny. Ce
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "Nid oeddem yn gallu llwytho eich dewisiadau dyddiad geni. Ceisiwch eto."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:428
msgid "We were unable to load your configured labelers at this time."
msgstr "Nid oeddem yn gallu llwytho eich labeli ffurfweddu ar hyn o bryd."
@@ -8440,20 +9176,28 @@ msgstr "Nid oeddem yn gallu cysylltu. Ceisiwch eto i barhau i osod eich cyfrif.
msgid "We will let you know when your account is ready."
msgstr "Byddwn yn rhoi gwybod i chi pan fydd eich cyfrif yn barod."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "Byddwn yn defnyddio hwn i helpu i addasu eich profiad."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "Rydym yn cael problemau rhwydwaith, ceisiwch eto"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr ""
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "Rydym yn gyffrous iawn eich bod wedi ymuno â ni!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Mae'n ddrwg gennym, ond nid oeddem yn gallu datrys y rhestr hon. Os bydd hyn yn parhau, cysylltwch â chrëwr y rhestr, @{handleOrDid}."
@@ -8461,11 +9205,11 @@ msgstr "Mae'n ddrwg gennym, ond nid oeddem yn gallu datrys y rhestr hon. Os bydd
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Mae'n ddrwg gennym, ond nid oeddem yn gallu llwytho eich geiriau wedi'u tewi ar hyn o bryd. Ceisiwch eto."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Mae'n ddrwg gennym, ond nid oedd modd cwblhau eich chwilio. Ceisiwch eto ymhen ychydig funudau."
-#: src/view/com/composer/Composer.tsx:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Mae'n ddrwg gennym! Mae'r postiad rydych chi'n ymateb iddo wedi'i dileu."
@@ -8474,7 +9218,7 @@ msgstr "Mae'n ddrwg gennym! Mae'r postiad rydych chi'n ymateb iddo wedi'i dileu.
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Mae'n ddrwg gennym! Gallwn ni ddim dod o hyd i'r dudalen yr oeddech yn chwilio amdani."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Mae'n ddrwg gennym! Dim ond i ugain o labelwyr y gallwch chi danysgrifio, ac rydych chi wedi cyrraedd eich terfyn o ugain."
@@ -8494,16 +9238,16 @@ msgstr "Beth yw eich diddordebau?"
msgid "What do you want to call your starter pack?"
msgstr "Beth ydych chi am ei alw'ch pecyn cychwyn?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "Am beth mae pobl yn postio amdano."
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "Beth sy'n digwydd?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr ""
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "Pa ieithoedd sy'n cael eu defnyddio yn y postiad hon?"
@@ -8520,14 +9264,18 @@ msgstr "Pwy all ryngweithio â'r postiad hwn?"
msgid "Who can reply"
msgstr "Pwy all ateb"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "Wps!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr "Wps! Methodd y fideos sy'n tueddu i lwytho."
@@ -8574,11 +9322,11 @@ msgstr "Pam dylai'r defnyddiwr hwn gael ei adolygu?"
msgid "Write a message"
msgstr "Ysgrifennwch neges"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Ysgrifennwch bostiad"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Ysgrifennwch eich ateb"
@@ -8588,11 +9336,16 @@ msgstr "Ysgrifennwch eich ateb"
msgid "Writers"
msgstr "Awduron"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "DID anghywir wedi'i ddychwelyd o'r gweinydd. Derbyniwyd: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Iawn"
@@ -8601,15 +9354,15 @@ msgstr "Iawn"
msgid "Yes, deactivate"
msgstr "Iawn, cau"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Iawn, dilëu'r pecyn cychwyn hwn"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Iawn, datgysylltu"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Iawn, cuddio"
@@ -8625,7 +9378,11 @@ msgstr "Ddoe"
msgid "You"
msgstr "Chi"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr ""
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
msgstr ""
@@ -8633,6 +9390,19 @@ msgstr ""
msgid "You are in line."
msgstr "Rydych mewn llinell."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr ""
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr ""
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr ""
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "Nid oes caniatâd i chi lwytho fideos i fyny."
@@ -8641,6 +9411,27 @@ msgstr "Nid oes caniatâd i chi lwytho fideos i fyny."
msgid "You are not following anyone."
msgstr "Nid ydych yn dilyn unrhyw un."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr "Gallwch osod gosodiadau rhyngweithio rhagosodedig yn <0>Gosodiadau → C
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "Gallwch ddiweddaru hwn yn ddiweddarach o'ch gosodiadau."
@@ -8682,7 +9472,7 @@ msgstr "Nid oes gennych unrhyw ddilynwyr."
msgid "You don't follow any users who follow @{name}."
msgstr "Nid ydych yn dilyn unrhyw ddefnyddwyr sy'n dilyn @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr "Does gennych chi ddim ceisiadau sgyrsio ar hyn o bryd."
@@ -8736,24 +9526,24 @@ msgstr "Rydych wedi tewi'r cyfrif hwn."
msgid "You have muted this user"
msgstr "Rydych wedi tewi'r defnyddiwr hwn"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "Does gennych chi ddim sgyrsiau eto. Dechreuwch un!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "Nid oes gennych unrhyw ffrydiau."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "Nid oes gennych unrhyw restrau."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Nid ydych wedi rhwystro unrhyw gyfrifon eto. I rwystro cyfrif, ewch i'w proffil a dewiswch \"Rhwystro cyfrif\" o'r ddewislen ar eu cyfrif."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Nid ydych wedi tewi unrhyw gyfrifon eto. I dewi cyfrif, ewch i'w proffil a dewiswch \"Tewi cyfrif\" o'r ddewislen ar eu cyfrif."
@@ -8761,11 +9551,15 @@ msgstr "Nid ydych wedi tewi unrhyw gyfrifon eto. I dewi cyfrif, ewch i'w proffil
msgid "You have reached the end"
msgstr "Rydych wedi cyrraedd y diwedd"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr ""
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Rydych wedi cyrraedd y terfyn ar gyfer llwytho fideo i fyny dros dro. Ceisiwch eto yn nes ymlaen."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "Nid ydych wedi creu pecyn cychwyn eto!"
@@ -8787,22 +9581,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Gallwch apelio yn erbyn y labeli hyn os teimlwch iddyn nhw gael eu gosod ar gam."
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "Dim ond hyd at {STARTER_PACK_MAX_SIZE} o broffiliau y gallwch chi eu hychwanegu"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Dim ond hyd at 3 ffrwd y gallwch chi eu hychwanegu"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "Dim ond hyd at 4 delwedd y cewch chi eu dewis"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "Rhaid i chi fod yn 13 oed neu'n hŷn i gofrestru."
+msgid "You must be 13 years of age or older to create an account."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Rhaid i chi fod yn dilyn o leiaf saith o bobl eraill i gynhyrchu pecyn cychwyn."
@@ -8810,28 +9604,40 @@ msgstr "Rhaid i chi fod yn dilyn o leiaf saith o bobl eraill i gynhyrchu pecyn c
msgid "You must grant access to your photo library to save a QR code"
msgstr "Rhaid i chi ganiatáu mynediad i'ch llyfrgell ffotograffau i gadw cod QR"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "Rhaid i chi ganiatáu mynediad i'ch llyfrgell ffotograffau i gadw'r ddelwedd."
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "Rhaid i chi ddewis o leiaf un labelwr ar gyfer adroddiad"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr ""
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "Rydych wedi cau @{0} yn flaenorol."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "Byddwch yn cael eich allgofnodi o'ch holl gyfrifon."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "Fyddwch chi ddim yn derbyn hysbysiadau ar gyfer y trywydd hwn bellach"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Byddwch nawr yn derbyn hysbysiadau ar gyfer yr edefyn hwn"
@@ -8839,23 +9645,23 @@ msgstr "Byddwch nawr yn derbyn hysbysiadau ar gyfer yr edefyn hwn"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Byddwch yn derbyn e-bost gyda \"cod ailosod.\" Rhowch y cod hwnnw yma, yna rhowch eich cyfrinair newydd."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "Chi: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Chi: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "Chi: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "Byddwch yn dilyn y defnyddwyr a'r ffrwd sy'n cael ei awgrymu ar ôl i chi orffen creu eich cyfrif!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "Byddwch yn dilyn y defnyddwyr sy'n cael ei awgrymu ar ôl i chi orffen creu'ch cyfrif!"
@@ -8867,7 +9673,7 @@ msgstr "Byddwch yn dilyn y bobl hyn a {0} arall"
msgid "You'll follow these people right away"
msgstr "Byddwch yn dilyn y bobl hyn ar unwaith"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "Byddwch yn derbyn e-bost yn <0>{0}0> i wirio mai chi sydd yno."
@@ -8901,6 +9707,10 @@ msgstr "Rydych wedi dod o hyd i rai pobl i'w dilyn"
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Rydych wedi cyrraedd diwedd eich ffrwd! Dewch o hyd i ragor o gyfrifon i'w dilyn."
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Rydych wedi cyrraedd terfyn dyddiol llwytho fideos i fyny (gormod o feitiau)"
@@ -8909,11 +9719,11 @@ msgstr "Rydych wedi cyrraedd terfyn dyddiol llwytho fideos i fyny (gormod o feit
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Rydych wedi cyrraedd terfyn dyddiol llwytho fideos i fyny (gormod o fideos)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Rydych wedi rhedeg allan o fideos i'w gwylio. Efallai ei fod yn amser da i gael newid bach?"
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "Eich cyfrif"
@@ -8941,7 +9751,7 @@ msgstr "Cafwyd bod eich cyfrif yn groes i <0>Delerau Gwasanaeth Cymdeithasol Blu
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr "Mae eich apêl wedi'i chyflwyno. Os bydd eich apêl yn llwyddo, byddwch yn derbyn e-bost."
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "Eich dyddiad geni"
@@ -8953,26 +9763,30 @@ msgstr "Nid yw eich porwr yn cefnogi'r fformat fideo. Rhowch gynnig ar borwr gwa
msgid "Your chats have been disabled"
msgstr "Mae eich sgyrsiau wedi'u hanalluogi"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "Bydd eich dewis yn cael ei gadw, ond mae modd ei newid yn ddiweddarach yn y gosodiadau."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "Bydd eich enw dangos presennol <0>{0}0> yn cael ei gadw'n awtomatig i chi. Gallwch newid yn ôl iddo unrhyw bryd o'r cyfrif hwn."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Mae'n ymddangos bod eich e-bost yn annilys."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "Mae eich e-bost wedi'i ddiweddaru ond heb ei wirio. Fel cam y nesaf, gwiriwch eich e-bost newydd."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Nid yw eich e-bost wedi'i wirio eto. Mae hwn yn gam diogelwch pwysig yr ydym yn ei argymell."
@@ -8988,14 +9802,31 @@ msgstr "Eich dilynwyr"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Mae'r ffrwd ganlynol yn wag! Dilynwch ragor ddefnyddwyr i weld beth sy'n digwydd."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "Eich enw dangos llawn fydd <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr "Eich enw defnyddiwr llawn fydd <0>@{0}0>"
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr ""
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Eich geiriau wedi'u tewi"
@@ -9004,15 +9835,15 @@ msgstr "Eich geiriau wedi'u tewi"
msgid "Your password has been changed successfully!"
msgstr "Mae eich cyfrinair wedi ei newid yn llwyddiannus!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr "Rhaid i'ch cyfrinair fod o leiaf 8 nod."
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "Mae eich postiad wedi'i gyhoeddi"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "Mae eich postiadau wedi'u cyhoeddi"
@@ -9024,14 +9855,22 @@ msgstr "Mae eich postiadau, eich hoff bethau a'ch rhwystrau yn gyhoeddus. Mae te
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Ni fydd eich proffil, postiadau, ffrydiau a rhestrau bellach yn weladwy i ddefnyddwyr Bluesky eraill. Gallwch ail agor eich cyfrif unrhyw bryd trwy fewngofnodi."
-#: src/view/com/composer/Composer.tsx:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Mae eich ateb wedi'i gyhoeddi"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr "Bydd eich adroddiad yn cael ei anfon at <0>{0}0>."
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Bydd eich adroddiad yn cael ei anfon at Wasanaeth Cymedroli Bluesky"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr ""
diff --git a/src/locale/locales/da/messages.po b/src/locale/locales/da/messages.po
index b9490ff20c..b4cae76cf8 100644
--- a/src/locale/locales/da/messages.po
+++ b/src/locale/locales/da/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: da\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 16:40\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(aktiv)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(indeholder indlejret indhold)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(ingen e-mail)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {# deling} other {# delinger}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# sekund} other {# sekunder}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# ulæst besked} other {# ulæste beskeder}}"
@@ -90,17 +90,17 @@ msgstr "{0, plural, one {# ulæst besked} other {# ulæste beskeder}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {#md} other {#mdr}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {følger} other {følgere}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {følger} other {følger}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {like} other {likes}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {like} other {likes}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {opslag} other {opslag}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citat} other {citater}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {deling} other {delinger}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, one {}other {{1} opslag}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "{0, plural, one {}other {# personer have}} har brugt denne startpakke!"
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0>i <1>tags1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>i <1>tekst og tags1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr ""
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr "{0} er ikke en gyldig URL"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} er oprettet i denne uge"
@@ -137,13 +154,18 @@ msgstr "{0} af {1}"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
-msgstr ""
+msgstr "{0} ud af 50"
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0} personer har brugt denne startpakke!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "{0} reagerede med {1}"
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "{0} reagerede med {1} på {2}"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "{0}s avatar"
@@ -175,7 +197,7 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}s"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# ulæst besked} other {# ulæste beskeder}}"
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, one {time} other {timer}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {minut} other {minutter}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}}0> fulgte dig"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}}0> likede dit specialbyggede feed"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}}0> likede dit opslag"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}}0> fjernede deres verifikationer fra din konto"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}}0> videredelte dit opslag"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}}0> tilmeldte sig via din startpakke"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}}0> verificerede dig"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} fulgte dig"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} fulgte dig tilbage"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "{firstAuthorLink} likede dit specialbyggede feed"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "{firstAuthorLink} likede dit opslag"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr "{firstAuthorLink} fjernede sin verifikation fra din konto"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} videredelte dit opslag"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} oprettede sig via din startpakke"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr "{firstAuthorLink} verificerede dig"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} fulgte dig"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} likede dit specialbyggede feed"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} likede dit opslag"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} fjernede deres verifikationer fra din konto"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} videredelte dit opslag"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} oprettede sig med din startpakke"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} verificerede dig"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} fulgte dig"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} fulgte dig tilbage"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "{firstAuthorName} likede dit specialbyggede feed"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "{firstAuthorName} likede dit opslag"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr "{firstAuthorName} fjernede sin verifikation fra din konto"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} videredelte dit opslag"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} oprettede sig via din startpakke"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr "{firstAuthorName} verificerede dig"
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} følger"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "{handle} kan ikke modtage beskeder"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr "{hours, plural, one {# time {minutesString}} other {# timer {minutesString}}}"
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr "{hours, plural, one {# time} other {# timer}}"
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "{joinedAllTimeCount, plural, one {}other {# brugere}} har oprettet sig!"
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr "{minutes, plural, one {# minut} other {# minutter}}"
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# ulæst besked} other {# ulæste beskeder}}"
@@ -301,6 +404,34 @@ msgstr "{profileName} blev oprettet på Bluesky for {0} siden"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} blev oprettet på Bluesky via en startpakke for {0} siden"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "{type}t siden"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr "{userName} er en autoriseret verifikator"
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr "{userName} er verificeret"
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr "{userName}s verifikationer"
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "+{computedTotal}"
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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>og {2, plural, one {# anden} other {# andre}} er med i din startpakke"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {følger} other {følgere}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {følger} other {følger}}"
@@ -343,7 +474,7 @@ msgstr "<0>Eksperimentelt:0> Når denne indstilling er aktiveret, vil du kun m
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>Du0> og<1> 1><2>{0} 2>er med i din startparkke"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Ugyldigt handle"
@@ -363,19 +494,28 @@ msgstr "30 dage"
msgid "7 days"
msgstr "7 dage"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "en besked"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr "En ny form for verifikation"
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Om"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr "Accepter"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr "Accepter chatanmodning"
@@ -385,40 +525,40 @@ msgid "Accept Request"
msgstr "Accepter anmodning"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Tilgængelighed"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Tilgængelighedsindstillinger"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Konto"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "Konto blokeret"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "Konto fulgt"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "Konto skjult"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
@@ -429,33 +569,37 @@ msgstr "Konto skjult"
msgid "Account Muted by List"
msgstr "Konto skjult af liste"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Kontoindstillinger"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Konto fjernet fra kvikadgang"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "Blokering af konto fjernet"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "Konto følges ikke længere"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
-msgstr ""
+msgstr "Konto skjules ikke længere"
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+msgstr "Konti med et amøbeformet blåt flueben <0><1/>0> kan verificere andre. De autoriserede verifikatorer er udvalgt af Bluesky."
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Tilføj"
@@ -473,8 +617,12 @@ msgstr "Føj {displayName} til startparkke"
msgid "Add a content warning"
msgstr "Tilføj en indholdsadvarsel"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "Føj en bruger til denne liste"
@@ -485,7 +633,7 @@ msgstr "Tilføj konto"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Tilføj konto"
msgid "Add alt text"
msgstr "Tilføj alt-tekst"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Tilføj alt-tekst (valgfrit)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Tilføj endnu en konto"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Tilføj endnu et opslag"
@@ -518,8 +666,12 @@ msgstr "Tilføj appadgangskode"
msgid "Add App Password"
msgstr "Tilføj appadgangskode"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr "Tilføj emojireaktion"
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr "Tilføj yderligere oplysninger (valgfrit)"
@@ -531,15 +683,23 @@ msgstr "Tilføj skjult ord med de angivne indstillinger"
msgid "Add muted words and tags"
msgstr "Tilføj skjulte ord og tags"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Tilføj nyt opslag"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Tilføj personer"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr "Tilføjer brugere til liste"
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr "Tilføj reaktion"
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Tilføj anbefalede feeds"
@@ -552,27 +712,28 @@ msgstr "Føj nogle feeds til din startpakke!"
msgid "Add the default feed of only people you follow"
msgstr "Tilføj"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Opret følgende DNS-record for dit domæne:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Føj dette feed til dine feeds"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "Føj til lister"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Føj til lister"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Føj til mine feeds"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr "Tilføj bruger til liste"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Tilføjet liste"
@@ -581,22 +742,22 @@ msgstr "Tilføjet liste"
msgid "Added to my feeds"
msgstr "Tilføjet mine feeds"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr "Yderligere oplysninger (højst 300 tegn)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Porno"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Porno"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "Voksenindhold kan kun slås til via browserudgaven af <0>bsky.app0>."
@@ -604,30 +765,35 @@ msgstr "Voksenindhold kan kun slås til via browserudgaven af <0>bsky.app0>."
msgid "Adult content is disabled."
msgstr "Voksenindhold er deaktiveret"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Voksenindholdsmærkater"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Avanceret"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr "mette@eksempel.dk"
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Alle"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "Alle konti blev fulgt!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "Alle sprog"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "Alle dine gemte feeds samlet på ét sted."
@@ -671,10 +837,10 @@ msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Alt-tekst"
@@ -688,19 +854,18 @@ msgstr "Alt-tekst beskriver billeder for blinde og svagtseende brugere og bidrag
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "Alt-tekst vil blive afkortet. Grænse: {0} tegn."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr "Alt-tekst vil blive afkortet. {MAX_ALT_TEXT, plural, one {}other {Grænse: {0} tegn.}}"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "En e-mail er sendt til {0}. Den indeholder en bekræftelseskode, som du skal indtaste herunder."
-#: src/view/com/modals/ChangeEmail.tsx:114
-msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
-msgstr "En e-mail er sendt til din tidligere adresse, {0}. Den indeholder en bekræftelseskode, som du skal indtaste herunder."
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr "En e-mail er afsendt til din tidligere adresse, {currentEmail}. Den indeholder en bekræftelseskode, som du skal indtaste herunder."
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "En e-mail blev sendt! Indtast bekræftelseskoden fra e-mailen herunder."
@@ -716,7 +881,11 @@ msgstr "Der opstod en fejl"
msgid "An error occurred while compressing the video."
msgstr "Der opstod en fejl under komprimering af videoen."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr "Der opstod en fejl under indlæsning af feedet."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Der opstod en fejl under generering af din startpakke. Vil du prøve igen?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "Der opstod en fejl under indlæsning af videoen. Prøv igen senere."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "Der opstod en fejl under lagring af QR-koden!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "Der opstod en fejl ved valg af video"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "Der opstod en fejl, da du forsøgte at følge alle"
@@ -746,12 +914,17 @@ msgstr "Der opstod en fejl, da du forsøgte at følge alle"
msgid "An error occurred while uploading the video."
msgstr "Der opstod en fejl under upload af videoen."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr "Illustration som viser, hvordan Bluesky udvælger autoriserede verifikatorer, som herefter verificerer enkelte brugerkonti."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "En anden årsag, der ikke er omfattet af ovennævnte"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "Der opstod en fejl ved start af chat"
@@ -761,13 +934,17 @@ msgstr "Der opstod en fejl ved åbning af chatten"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Der opstod en fejl. Prøv igen."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr "Et mockup af en iPhone, der viser Bluesky-appen åbnet på profilen for en verificeret bruger med et blåt flueben ved siden af profilnavnet."
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "der opstod en ukendt fejl"
@@ -790,6 +967,10 @@ msgstr "Dyr"
msgid "Animated GIF"
msgstr "Animeret GIF"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr "Bluesky introducerer verificerede konti"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Asocial adfærd"
msgid "Anybody can interact"
msgstr "Alle kan interagere"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "Appikon"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "Appsprog"
@@ -817,7 +998,7 @@ msgstr "Appadgangskode"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "Appadgangskode slettet"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
@@ -836,7 +1017,7 @@ msgstr "Navne på appadgangskoder skal bestå af mindst 4 tegn"
msgid "App passwords"
msgstr "Appadgangskoder"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Appadgangskoder"
@@ -854,7 +1035,7 @@ msgstr "Klag over mærkatet \"{0}\""
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "Klage afsendt"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -872,10 +1053,10 @@ msgstr "Klag over suspendering"
msgid "Appeal this decision"
msgstr "Klag over afgørelse"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Udseende"
@@ -884,12 +1065,12 @@ msgstr "Udseende"
msgid "Apply default recommended feeds"
msgstr "Brug anbefalede standardfeeds"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Arkiveret fra {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Arkiveret opslag"
@@ -897,15 +1078,15 @@ msgstr "Arkiveret opslag"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Er du sikker på, du vil slette appadgangskoden \"{0}\"?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Er du sikker på, du vil slette denne besked? Beskeden vil blive slettet hos dig men ikke hos modparten."
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "Er du sikker på, du vil slette denne startpakke"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "Er du sikker på, du vil kassere dine ændringer?"
@@ -921,15 +1102,15 @@ msgstr "Er du sikker på, du vil forlade denne samtale? Dine beskeder vil blive
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Er du sikker på, du vil fjerne {0} fra dine feeds?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Er du sikker på, du vil fjerne dette feed fra dine feeds?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "Er du sikker på, du vil kassere dette udkast?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "Er du sikker på, du vil kassere dette opslag?"
@@ -937,7 +1118,7 @@ msgstr "Er du sikker på, du vil kassere dette opslag?"
msgid "Are you sure?"
msgstr "Er du sikker?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "Skriver du på <0>{suggestedLanguageName}0>?"
@@ -946,29 +1127,34 @@ msgstr "Skriver du på <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Kunst"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Kunstnerisk og ikkeerotisk nøgenhed."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "Mindst 3 tegn"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40
msgctxt "Name of app icon variant"
msgid "Aurora"
-msgstr ""
+msgstr "Nordlys"
#: src/screens/Settings/AccessibilitySettings.tsx:105
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Indstillinger for automatisk afspilning er flyttet til <0>indholds- og medieindstillingerne0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Afspil videoer og GIF'er automatisk"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Afspil videoer og GIF'er automatisk"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Tilbage"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr "Tilbage til Chats"
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Før du opretter en liste, skal du bekræfte din e-mail."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Før du opretter et opslag, skal du bekræfte din e-mail."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Før du opretter en startpakke, skal du bekræfte din e-mail."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "Før du kan sende beskeder til andre brugere, skal du bekræfte din e-mail."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
+msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Fødselsdato"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Bloker"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Bloker konto"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "Bloker konto?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Bloker konti"
@@ -1054,7 +1241,7 @@ msgstr "Bloker og slet"
msgid "Block and/or delete this conversation"
msgstr "Bloker og/eller slet denne samtale"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Bloker liste"
@@ -1062,7 +1249,7 @@ msgstr "Bloker liste"
msgid "Block or report"
msgstr "Bloker eller anmeld"
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "Bloker disse konti?"
@@ -1079,21 +1266,21 @@ msgstr "Bloker bruger"
msgid "Blocked"
msgstr "Blokeret"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Blokerede konti"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Blokerede konti"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Blokerede konti kan ikke svare i dine tråde, omtale dig eller på anden måde interagere med dig."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 "Blokerede konti kan ikke svare i dine tråde, omtale dig eller på anden måde interagere med dig. Du vil ikke se deres indhold, og de vil ikke se dit."
@@ -1101,19 +1288,19 @@ msgstr "Blokerede konti kan ikke svare i dine tråde, omtale dig eller på anden
msgid "Blocked post."
msgstr "Blokeret opslag."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Blokering forhindrer ikke denne mærkningstjeneste fra at sætte mærkater på din konto."
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Blokering er offentlig. Blokerede konti kan ikke svare i dine tråde, omtale dig eller på anden måde interagere med dig."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Blokering vil ikke spærre for, at der bliver sat mærkater på din konto, men det vil forhindre denne konto fra at svare i dine tråde eller interagere med dig."
-#: src/view/com/auth/SplashScreen.web.tsx:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blog"
@@ -1122,14 +1309,14 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky kan ikke bekræfte den anførte datos gyldighed."
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129
msgctxt "Name of app icon variant"
msgid "Bluesky Classic™"
-msgstr ""
+msgstr "Bluesky Classic™"
#: src/view/com/auth/server-input/index.tsx:212
msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server."
@@ -1148,7 +1335,7 @@ msgstr "Bluesky virker bedre med venner!"
msgid "Bluesky Social Terms of Service"
msgstr "Bluesky Socials tjenestevilkår"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky vil vælge et antal anbefalede konti fra personer i dit netværk."
@@ -1156,6 +1343,10 @@ msgstr "Bluesky vil vælge et antal anbefalede konti fra personer i dit netværk
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky vil ikke vise din profil og dine opslag til udloggede brugere."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr "Bluesky vil løbende verificere populære konti."
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "Slør billeder og filtrer fra feeds"
msgid "Books"
msgstr "Bøger"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "Se flere konti under Udforsk"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "Se flere feeds under Udforsk"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Se flere forslag"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "Se flere forslag under Udforsk"
@@ -1214,20 +1405,26 @@ msgstr "Se opslag tagget med {displayName}"
msgid "Browse starter pack {displayName}"
msgstr "Se startpakken {displayName}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr "Se emnet {0}"
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "Se emnet {displayName}"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Om Bluesky"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "Af {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Af <0>{0}0>"
@@ -1243,44 +1440,51 @@ msgstr "Ved at oprette en konto accepterer du <0>tjenestevilkårene0> og <1>pr
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Ved at oprette en konto accepterer du <0>tjenestevilkårene0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr "Af dig"
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Kamera"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Annuller"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "Annuller kontosletning"
msgid "Cancel image crop"
msgstr "Annuller billedbeskæring"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Annuller profilredigering"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Annuller citatopslag"
@@ -1308,8 +1512,7 @@ msgstr "Annuller citatopslag"
msgid "Cancel reactivation and sign out"
msgstr "Annuller genaktivering og log ud"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Annuller søgning"
@@ -1317,24 +1520,23 @@ msgstr "Annuller søgning"
msgid "Cancels opening the linked website"
msgstr "Annullerer åbning af det linkede website"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "Kan ikke interagere med en blokeret bruger"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Undertekster (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Undertekster og alt-tekst"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Skift"
@@ -1347,46 +1549,41 @@ msgstr "Skift appikon"
msgid "Change app icon to \"{0}\""
msgstr "Skift appikon til \"{0}\""
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Skift e-mail"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Skift e-mailadresse"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Skift handle"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr "Skift moderationstjeneste"
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Skift min e-mailadresse"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Skift adgangskode"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "Skift opslagets sprog til {suggestedLanguageName}"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr "Skift årsag til anmeldelse"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Skift din e-mail"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Skift din e-mailadresse"
@@ -1394,43 +1591,42 @@ msgstr "Skift din e-mailadresse"
msgid "Changes app icon"
msgstr "Skifter appikon"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr "Skifter udbyder"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Chat"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
-msgstr ""
+msgstr "Chat slettet"
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "Chat skjult"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr "Indbakke for chatanmodninger"
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr "Chatanmodninger"
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Chatindstillinger"
@@ -1441,10 +1637,10 @@ msgstr "Chatindstillinger"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "Chat ikke længere skjult"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr "Chats"
@@ -1461,7 +1657,7 @@ msgstr "Tjek din e-mail efter en bekræftelseskode og indtast den her."
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Tjek din indbakke for en e-mail med en bekræftelseskode og indtast den herunder:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Vælg metode til domæneverifikation"
@@ -1469,7 +1665,7 @@ msgstr "Vælg metode til domæneverifikation"
msgid "Choose Feeds"
msgstr "Vælg feeds"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Vælg for mig"
@@ -1477,10 +1673,6 @@ msgstr "Vælg for mig"
msgid "Choose People"
msgstr "Vælg konti"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Vælg mærkater, der gælder for de medier, du publicerer. Hvis ingen er valgt, er opslaget egnet for alle."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Vælg de algoritmer, der styrer dine specialbyggede feeds."
@@ -1493,27 +1685,31 @@ msgstr "Vælg farve til din avatar"
msgid "Choose your account provider"
msgstr "Vælg din udbyder"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Vælg din egen tidslinje! Specialbyggede feeds skabt af andre brugere hjælper dig med at finde indhold, du vil synes om."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Husk din adgangskode"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "Vælg dit brugernavn"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Slet alle gemte oplysninger"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Slet alle gemte oplysninger (genstart efter dette)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr "Tøm billedcache"
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Ryd søgefelt"
@@ -1522,6 +1718,14 @@ msgstr "Ryd søgefelt"
msgid "click here"
msgstr "klik her"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Klik for at spærre for citater af dette opslag."
@@ -1534,7 +1738,7 @@ msgstr "Klik for et tillade citater af dette opslag."
msgid "Click to open tag menu for {tag}"
msgstr "Klik for at åbne tagmenuen for {tag}"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Klik for at prøve at sende beskeden igen"
@@ -1546,24 +1750,34 @@ msgstr "Klima"
msgid "Clip 🐴 clop 🐴"
msgstr "Hyp 🐴 hyp 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Luk"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Luk aktiv dialog"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Luk bundpanel"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Luk dialog"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr "Luk navigation"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "Luk emojivælger"
@@ -1600,7 +1816,13 @@ msgstr "Luk billede"
msgid "Close image viewer"
msgstr "Luk billedviser"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr "Luk menu"
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Luk dialog"
@@ -1608,8 +1830,12 @@ msgstr "Luk dialog"
msgid "Closes password update alert"
msgstr "Lukker besked om opdatering af adganskode"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr "Lukker skrivefelt og kasserer udkast til opslag"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr "Lukker emojivælgeren"
@@ -1617,11 +1843,11 @@ msgstr "Lukker emojivælgeren"
msgid "Closes viewer for header image"
msgstr "Lukker billedviser for profilhoved"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Luk brugerliste"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Lukker liste over brugere for en given notifikation"
@@ -1644,7 +1870,7 @@ msgstr "Komik"
msgid "Comics"
msgstr "Tegneserier"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Fælleskabsregler"
@@ -1653,23 +1879,23 @@ msgstr "Fælleskabsregler"
msgid "Complete onboarding and start using your account"
msgstr "Afslut velkomst og kom i gang med at bruge din konto"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Løs opgaven"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Skriv nyt opslag"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "Skriv opslag på op til {MAX_GRAPHEME_LENGTH} tegn"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr "Skriv opslag på op til {0, plural, one {}other {# tegn}}"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Skriv svar"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Komprimerer video..."
@@ -1681,23 +1907,17 @@ msgstr "Konfigurer filtreringsindstillinger for kategorien: {name}"
msgid "Configured in <0>moderation settings0>."
msgstr "Konfigureres i <0>moderationsindstillinger0>"
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Bekræft"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Bekræft ændring"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Bekræft sprogindstillinger"
@@ -1706,26 +1926,27 @@ msgstr "Bekræft sprogindstillinger"
msgid "Confirm delete account"
msgstr "Bekræft kontosletning"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Bekræft din alder:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Bekræft din fødselsdato"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Bekræftelseskode"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Bekræftelseskode"
@@ -1733,22 +1954,22 @@ msgstr "Bekræftelseskode"
msgid "Connecting..."
msgstr "Forbinder..."
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Kontakt support"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "Indhold og medier"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Indhold og medier"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Indhold og medier"
@@ -1756,15 +1977,15 @@ msgstr "Indhold og medier"
msgid "Content Blocked"
msgstr "Indhold blokeret"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Indholdsfiltre"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr "Indhold fra hele netværket, som vi tror, du vil synes om."
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Indholdssprog"
@@ -1785,16 +2006,16 @@ msgstr "Indholdsadvarsel"
msgid "Content warnings"
msgstr "Indholdsadvarsel"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "Baggrund for kontekstmenu, klik for at lukke menuen."
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Fortsæt"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Fortsæt som {0} (allerede logget ind)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Fortsæt tråd..."
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Fortsæt til næste trin"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Samtale slettet"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Samtale slettet"
@@ -1826,16 +2047,17 @@ msgstr "Madlavning"
msgid "Copied"
msgstr "Kopieret"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Kopieret versionsnummer til udklipsholder"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Kopieret til udklipsholder"
@@ -1844,25 +2066,29 @@ msgstr "Kopieret til udklipsholder"
msgid "Copied!"
msgstr "Kopieret!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr "Kopierer versionsnummer til udklipsholder"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Kopier"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr ""
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Kopier appadgangskode"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr "Kopier at://-URI"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr "Kopier forfatter-DID"
@@ -1871,57 +2097,69 @@ msgstr "Kopier forfatter-DID"
msgid "Copy code"
msgstr "Kopier kode"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Kopier DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Kopier værtsnavn"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Kopier link"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Kopier link"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Kopier link til liste"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Kopier link til opslag"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Kopier beskedtekst"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr "Kopier opslagets at://-URI"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Kopier opslagets tekst"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Kopier QR-kode"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "Kopier TXT-record"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Ophavsretspolitik"
@@ -1931,11 +2169,11 @@ msgstr "Ophavsretspolitik"
msgid "Could not leave chat"
msgstr "Kunne ikke forlade chat"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "Kunne ikke indlæse feed"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "Kunne ikke indlæse liste"
@@ -1947,28 +2185,28 @@ msgstr "Kunne ikke skjule chat"
msgid "Could not process your video"
msgstr "Kunne ikke behandle din video"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Opret"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "Opret en QR-kode til en startpakke"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Opret en startpakke"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Opret en startpakke for mig"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Opret en startpakke for mig"
msgid "Create account"
msgstr "Opret konto"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Opret konto"
@@ -1985,11 +2223,16 @@ msgstr "Opret konto"
msgid "Create an account"
msgstr "Opret en konto"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr "Opret en konto uden at bruge denne startpakke"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Opret en avatar i stedet"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Opret endnu en"
@@ -1998,7 +2241,7 @@ msgstr "Opret endnu en"
msgid "Create new account"
msgstr "Opret ny konto"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Opret anmeldelse for {0}"
@@ -2053,17 +2296,17 @@ msgstr "Mørk tilstand"
msgid "Dark theme"
msgstr "Mørk tilstand"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Fødselsdato"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Deaktiver konto"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Fejlsøg moderation"
@@ -2079,19 +2322,19 @@ msgstr "Standard"
msgid "Default icons"
msgstr "Standardikoner"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Slet"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Slet konto"
@@ -2107,19 +2350,19 @@ msgstr "Slet appadgangskode"
msgid "Delete app password?"
msgstr "Slet appadgangskode?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr "Slet chat"
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Slet chatdeklarationsregistrering"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "Slet samtale"
@@ -2127,19 +2370,19 @@ msgstr "Slet samtale"
msgid "Delete Conversation"
msgstr "Slet samtale"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Slet for mig"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
msgstr "Slet liste"
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Slet besked"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Slet besked for mig"
@@ -2147,26 +2390,26 @@ msgstr "Slet besked for mig"
msgid "Delete my account"
msgstr "Slet min konto"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Slet opslag"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Slet startpakke"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "Slet startpakke?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "Slet denne liste?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "Slet dette opslag?"
@@ -2174,8 +2417,8 @@ msgstr "Slet dette opslag?"
msgid "Deleted"
msgstr "Slettet"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Slettet konto"
@@ -2183,48 +2426,48 @@ msgstr "Slettet konto"
msgid "Deleted post."
msgstr "Slettet opslag."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Beskrivelse"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "Beskrivelse er for lang"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "Beskrivelse er for lang. Maks. antal tegn er {DESCRIPTION_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Beskrivelse er for lang. {DESCRIPTION_MAX_GRAPHEMES, plural, one {}other {Det maksimale antal tegn er #.}}"
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Beskrivende alt-tekst"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Afkobl citat"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "Afkobl citeret opslag?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
-msgstr ""
+msgstr "Udviklertilstand deaktiveret"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
-msgstr ""
+msgstr "Udviklertilstand aktiveret"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Udviklingerindstillinger"
@@ -2236,6 +2479,15 @@ msgstr "Dialog: Tilpas, hvem der kan interagere med dette opslag."
msgid "Dim"
msgstr "Dæmpet"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr ""
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "Deaktiver tofaktorgodkendelse via e-mail"
@@ -2254,25 +2506,25 @@ msgstr "Deaktiver undertekster"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Deaktiveret"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Kasser"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "Deaktiver ændringer?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "Kasser udkast?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "Kasser opslag?"
@@ -2281,24 +2533,24 @@ msgstr "Kasser opslag?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Anmod apps om ikke at vise min konto til udloggede brugere"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr "Opdag feeds"
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Find nye specialbyggede feeds"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Find nye feeds"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Find nye feeds"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Luk"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Luk fejlbesked"
@@ -2306,6 +2558,10 @@ msgstr "Luk fejlbesked"
msgid "Dismiss getting started guide"
msgstr "Luk velkomstforløb"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr "Luk interesser"
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr "Luk denne sektion"
@@ -2315,27 +2571,27 @@ msgstr "Luk denne sektion"
msgid "Display larger alt text badges"
msgstr "Vis større alt-tekst-etiketter"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Profilnavn"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Profilnavn"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "Profilnavn er for langt"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "Profilnavn er for langt. Maks. antal tegn er {DISPLAY_NAME_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Profilnavn er for langt. {DISPLAY_NAME_MAX_GRAPHEMES, plural, one {}other {Det maksimale antal tegn er #.}}"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "DNS-adgang"
@@ -2347,37 +2603,45 @@ msgstr "Anvend ikke dette skjulte ord på brugere, du følger"
msgid "Does not include nudity."
msgstr "Omfatter ikke nøgenhed."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "Begynder eller slutter ikke med en bindestreg"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "Domæne godkendt!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Udført"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Udført"
msgid "Done{extraText}"
msgstr "Udført{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr "Tryk dobbelt eller langt på beskeden for at tilføje en reaktion"
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Tryk dobbelt for at lukke dialogen"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr "Tryk dobbelt for at like"
@@ -2413,23 +2681,23 @@ msgstr "Slip for at tilføje billeder"
msgid "Duration:"
msgstr "Varighed:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "fx anne"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "fx Anne Efternavn"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "fx Anne Nielsen"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "fx anne.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "fx Kunstner, hundeelsker og flittig læser."
@@ -2437,19 +2705,19 @@ msgstr "fx Kunstner, hundeelsker og flittig læser."
msgid "E.g. artistic nudes."
msgstr "Fx kunstneriske nøgenbilleder."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "fx Fede profiler"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "fx Spammere"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "fx Profiler, der altid rammer plet."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "fx Brugere, der laver for mange reklameopslag."
@@ -2457,20 +2725,21 @@ msgstr "fx Brugere, der laver for mange reklameopslag."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Hver kode virker én gang. Du vil jævnligt blive tildelt flere invitationskoder."
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Rediger"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Rediger"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Rediger avatar"
@@ -2478,31 +2747,41 @@ msgstr "Rediger avatar"
msgid "Edit Feeds"
msgstr "Rediger feeds"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Rediger billede"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Rediger interaktionsindstillinger"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr "Rediger interesser"
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Rediger listeegenskaber"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Rediger modereringsliste"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Rediger mine feeds"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Rediger min profil"
@@ -2515,23 +2794,23 @@ msgstr "Rediger personer"
msgid "Edit post interaction settings"
msgstr "Rediger interaktionsindstillinger"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Rediger profil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Rediger profil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Rediger startpakke"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Rediger brugerliste"
@@ -2539,15 +2818,15 @@ msgstr "Rediger brugerliste"
msgid "Edit who can reply"
msgstr "Rediger, hvem der kan svare"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Rediger dit profilnavn"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Rediger din profils beskrivelse"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Rediger din startpakke"
@@ -2560,16 +2839,15 @@ msgstr "Uddannelse"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "Enten har listens skaber blokeret dig, eller også har du blokeret listens skaber."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "E-mail"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "2FA via e-mail deaktiveret"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
@@ -2583,19 +2861,16 @@ msgstr "E-mailadresse"
msgid "Email Resent"
msgstr "E-mail gensendt"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "E-mail opdateret"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr "E-mail opdateret!"
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
msgstr ""
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
@@ -2608,8 +2883,8 @@ msgstr "HTML-kode til indlejring"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Indlejr opslag"
@@ -2617,12 +2892,13 @@ msgstr "Indlejr opslag"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Indlejr dette opslag på dit website. Kopier blot følgende kodestump og indsæt den i HTML-koden på dit website."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "Indlejret videoafspiller"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Aktiver"
@@ -2630,13 +2906,13 @@ msgstr "Aktiver"
msgid "Enable {0} only"
msgstr "Aktiver kun {0}"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Aktiver voksenindhold"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr "Aktiver 2FA via e-mail"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2660,30 +2936,30 @@ msgstr "Aktiver undertekster"
msgid "Enable this source only"
msgstr "Aktiver kun denne kilde"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "Aktiver populære emner"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr "Aktiver populære videoer i dit Discover-feed"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr "Aktiver populære videoer i dit Discover-feed."
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Aktiveret"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Slut på feed"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Husk at angive et sprog for hver enkelt undertekstfil."
@@ -2696,13 +2972,14 @@ msgstr "Indtast en adgangskode"
msgid "Enter a word or tag"
msgstr "Indtast et ord eller tag"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
-msgid "Enter Code"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
msgstr "Indtast kode"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Indtast bekræftelseskode"
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
+msgid "Enter Code"
+msgstr "Indtast kode"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
@@ -2712,7 +2989,7 @@ msgstr "Åbn i fuld skærm"
msgid "Enter the code you received to change your password."
msgstr "Indtast den modtagne kode for at skifte adgangskode."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Indtast det domæne, du ønsker at bruge"
@@ -2720,20 +2997,20 @@ msgstr "Indtast det domæne, du ønsker at bruge"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Indtast den e-mailadresse, du brugte, da du oprettede din konto. Vi sender dig en nulstillingskode, så du kan vælge en ny adgangskode."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr "Indtast det brugernavn eller den e-mailadresse, du brugte, da du oprettede din konto"
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Indtast din fødselsdato"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Indtast din e-mailadresse"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Indtsat din nye e-mail herover"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Indtast din nye e-mail herunder."
@@ -2749,7 +3026,11 @@ msgstr "Indtsat dit brugernavn og din adgangskode"
msgid "Enters full screen"
msgstr "Åbner i fuld skærm"
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr "Underholdning"
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Fejl"
@@ -2758,15 +3039,18 @@ msgstr "Fejl"
msgid "Error occurred while saving file"
msgstr "En fejl opstod under lagring af fil"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "En fejl opstod under modtagelse af opgaveløsning"
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Fejl:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr "Fejl: {error}"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Alle"
@@ -2818,30 +3102,22 @@ msgstr "Lukker billedbeskæring"
msgid "Exits image view"
msgstr "Lukker billedvisning"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Afslutter søgning"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Udvid alt-tekst"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Udvid brugerliste"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "Udvid eller sammenklap det fulde opslag, du besvarer"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr "Udvider eller sammenklapper opslagets tekst"
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr "Udvider eller sammenklapper hele det opslag, du besvarer"
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "Forventede, at URI henviste til et dataelement"
@@ -2864,6 +3140,10 @@ msgstr "Udløber {0}"
msgid "Expires in {0}"
msgstr "Udløber om {0}"
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "Voldsomme eller stødende medier."
msgid "Explicit sexual images."
msgstr "Pornografiske billeder."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr "Udforsk"
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Eksporter mine data"
@@ -2882,8 +3169,8 @@ msgstr "Eksporter mine data"
msgid "Export My Data"
msgstr "Eksport mine data"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "Eksterne medier"
@@ -2897,17 +3184,22 @@ msgstr "Eksterne medier"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Afspilning af medier fra eksterne websites muliggør indsamling af oplysninger om dig og din enhed. Der udveksles ingen oplysninger, før du starter afspilningen."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Indstillinger for eksterne medier"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
-msgstr ""
+msgstr "Kunne ikke acceptere chat"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr "Kunne ikke tilføje emojireaktion"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "Ændring af handle fejlde. Prøv igen."
@@ -2915,7 +3207,7 @@ msgstr "Ændring af handle fejlde. Prøv igen."
msgid "Failed to create app password. Please try again."
msgstr "Oprettelse af appadgangskode fejlede. Prøv igen."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr "Kunne ikke starte samtale"
@@ -2924,35 +3216,37 @@ msgstr "Kunne ikke starte samtale"
msgid "Failed to create starter pack"
msgstr "Oprettelse af startpakke fejlede"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "Oprettelse af liste fejlede. Tjek din internetforbindelse og prøv igen."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
-msgstr ""
+msgstr "Kunne ikke slette chat"
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Sletning af besked fejlede"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "Sletning af opslag fejlede, prøv igen"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "Sletning af startpakke fejlede"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr "Kunne ikke indlæse samtaler"
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "Indlæsning af indstillinger for feeds fejlede"
@@ -2964,17 +3258,19 @@ msgstr "Indlæsning af GIF'er fejlde"
msgid "Failed to load past messages"
msgstr "Indlæst af tidligere beskeder fejlede"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "Indlæsning af foreslåede feeds fejlede"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "Indlæsning af foreslåede konti fejlede"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr "Kunne ikke markere alle anmodninger som læst"
@@ -2982,7 +3278,16 @@ msgstr "Kunne ikke markere alle anmodninger som læst"
msgid "Failed to pin post"
msgstr "Fastgørelse af opslag fejlede"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr "Kunne ikke fjerne emojireaktion"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr "Kunne ikke fjerne verifikation"
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Fejl ved lagring af billede: {0}"
@@ -2994,20 +3299,39 @@ msgstr "Kunne ikke gemme notifikationsindstillinger, prøv igen"
msgid "Failed to save settings. Please try again."
msgstr "Kunne ikke gemme indstillinger. Prøv igen."
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr "Kunne ikke gemme dine interesser."
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "Kunne ikke sende"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Afsendelse af klage fejlede, prøv igen."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "Kunne ikke ændre, om tråden skjules, prøv igen"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr ""
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "Opdatering af feeds fejlede"
@@ -3022,20 +3346,24 @@ msgstr "Opdatering af indstillinger fejlede"
msgid "Failed to upload video"
msgstr "Upload af video fejlede"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "Kunne ikke verificere handle. Prøv igen."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Feed"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Feed af {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "Feedmenu"
@@ -3043,26 +3371,26 @@ msgstr "Feedmenu"
msgid "Feed toggle"
msgstr "Feed tilføj/fjern"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Kontakt"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "Feedback afsendt!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Feeds"
@@ -3070,13 +3398,13 @@ msgstr "Feeds"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Feeds er specialbyggede algoritmner, som brugere kan bygge med lidt teknisk snilde. <0/> for at læse mere."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "Feeds opdateret!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "Feeds, du måske kan lide."
@@ -3092,11 +3420,11 @@ msgstr "Fil blev gemt!"
msgid "Filter from feeds"
msgstr "Filtre fra feeds"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr "Filtrer efter sprog"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr "Filtrer efter sprog (pt. {currentLanguageLabel})"
@@ -3110,13 +3438,13 @@ msgstr "Afslutter"
msgid "Find accounts to follow"
msgstr "Find konti, du kan følge"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "Find personer, du kan følge"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Find opslag, brugere og feeds på Bluesky"
@@ -3131,28 +3459,28 @@ msgstr "Motion"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117
msgctxt "Name of app icon variant"
msgid "Flat Black"
-msgstr ""
+msgstr "Flad sort"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93
msgctxt "Name of app icon variant"
msgid "Flat Blue"
-msgstr ""
+msgstr "Flad blå"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105
msgctxt "Name of app icon variant"
msgid "Flat White"
-msgstr ""
+msgstr "Flad hvid"
#: src/screens/Onboarding/StepFinished.tsx:294
msgid "Flexible"
msgstr "Fleksibel"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Følg"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Følg"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Følg {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr "Følg {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Følg {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "Følg 10 konti"
msgid "Follow 7 accounts"
msgstr "Følg 7 konti"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "Følg konto"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Følg alle"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Følg tilbage"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Følg tilbage"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "Følg flere konti for at finde interessant indhold og skabe et netværk."
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "Følges af <0>{0}0>"
@@ -3224,7 +3544,7 @@ msgstr "Følges af <0>{0}0> og <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Følges af <0>{0}0>, <1>{1}1> og {2, plural, one {# anden} other {# andre}}"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Følgere af @{0}, som du måske kender"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Følgere du kender"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Følger"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "Følger {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr "Følger {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Følger {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Indstillinger for følgerfeed"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Indstillinger for følgerfeed"
@@ -3301,6 +3617,10 @@ msgstr "Af sikkerhedsgrunde vil du ikke få dette vist denne igen. Hvis du miste
msgid "For the best experience, we recommend using the theme font."
msgstr "For den bedste oplevelse anbefaler vi at bruge temaskrifttypen."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr "Til dig"
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Indtil videre"
@@ -3327,7 +3647,7 @@ msgstr "Laver tit opslag med uønsket indhold"
msgid "From @{sanitizedAuthor}"
msgstr "Fra @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Fra <0/>"
@@ -3336,28 +3656,30 @@ msgstr "Fra <0/>"
msgid "Gallery"
msgstr "Galleri"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Generer en startpakke"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Få hjælp"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "Kom godt i gang"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr "Kom i gang"
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Kom godt i gang"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Sæt ansigt på din profil"
@@ -3366,17 +3688,17 @@ msgstr "Sæt ansigt på din profil"
msgid "Glaring violations of law or terms of service"
msgstr "Åbenlys overtrædelse af lovgivning eller tjenestevilkår"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Gå tilbage"
@@ -3384,10 +3706,10 @@ msgstr "Gå tilbage"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Gå tilbage"
@@ -3408,7 +3730,27 @@ msgstr "Gå til forside"
msgid "Go Home"
msgstr "Gå til forside"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr "Gå til {firstAuthorName}s profil"
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Gå til samtale med {0}"
@@ -3427,8 +3769,8 @@ msgstr "Gå til brugers profil"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Vold"
@@ -3437,21 +3779,21 @@ msgstr "Vold"
msgid "Half way there!"
msgstr "Nu er du halvvejs!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Handle"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "Handle er optaget. Prøv med et andet."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "Handle ændret!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "Handle er for langt. Prøv med et kortere."
@@ -3464,7 +3806,7 @@ msgstr "Haptisk feedback"
msgid "Harassment, trolling, or intolerance"
msgstr "Chikane, trolling og intolerance"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Hashtag"
@@ -3472,19 +3814,24 @@ msgstr "Hashtag"
msgid "Hashtag {tag}"
msgstr "Hashtag {tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "Har du problemer?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Hjælp"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Lad andre vide, at du ikke er en robot, ved at uploade et billede eller oprette en avatar"
@@ -3497,7 +3844,7 @@ msgstr "Her er din appadgangskode!"
msgid "Hidden"
msgstr "Skjult"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr "Skjult af dine moderationsindstillinger."
@@ -3509,18 +3856,17 @@ msgstr "Skjult liste"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Skjul"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Skjul"
@@ -3529,38 +3875,40 @@ msgstr "Skjul"
msgid "Hide customization options"
msgstr "Skjul tilpasningsindstillinger"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Skjul opslag for mig"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Skjul svar for alle"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Skjul svar for mig"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr "Skjul dette kort"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "Skjul dette opslag?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "Skjul dette svar?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Skjul populære emner"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "Skjul populære emner?"
@@ -3569,10 +3917,15 @@ msgstr "Skjul populære emner?"
msgid "Hide trending videos?"
msgstr "Skjul populære videoer?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Skjul brugerliste"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr "Vis verifikationsskilte"
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "Hmm, feedserveren gav et ugyldigt svar. Fortæl feedets ejer om dette pr
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Hmm, vi kan ikke finde dette feed. Det er muligvis blevet slettet."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Hmm, vi oplever problemer med at indlæse denne data. Se yderligere oplysninger herunder. Kontakt os, hvis problemet varer ved."
@@ -3610,15 +3963,15 @@ msgstr "Hmm, vi kunne ikke indlæse moderationstjenesten."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Vent lidt! Vi udruller gradvist adgang til video, og du er stadig i kø. Prøv igen senere!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Forside"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "Server:"
@@ -3627,34 +3980,33 @@ msgstr "Server:"
msgid "Hosting provider"
msgstr "Udbyder"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr "Hot"
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "Populære svar først"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "Hvordan skal vi åbne dette link?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Jeg har en kode"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Jeg har en kode"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Jeg har en bekræftelseskode"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Jeg har mit eget domæne"
@@ -3667,22 +4019,30 @@ msgstr "Jeg forstår"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Hvis alt-tekst er for lang, slår dette udvidet tilstand til/fra"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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 "Hvis du endnu ikke er myndig i henhold til dit lands lovgivning, skal din forælder eller værge læse disse vilkår på dine vegne."
-#: src/view/screens/ProfileList.tsx:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "Hvis du sletter denne liste, kan den ikke genskabes."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Hvis du har dit eget domæne, kan du bruge det som handle. Dette giver dig mulighed for at bekræfte din identitet. <0>Læs mere her0>."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Hvis du sletter dette opslag, kan det ikke genskabes."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr ""
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Hvis du vil skifte din adgangskode, sender vi dig en kode til at bekræfte, at dette er din konto."
@@ -3704,9 +4064,22 @@ msgstr "Ulovligt og akut"
msgid "Image"
msgstr "Billede"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "Billede blev gemt til din kamerarulle!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr "Billedcache blev tømt"
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr "Billedcache tømt, frigjorde {0}"
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr ""
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "Upassende beskeder eller links med seksuelt indhold"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr "Tom indbakke!"
@@ -3752,15 +4125,11 @@ msgstr "Indtast adgangskode for sletning af konto"
msgid "Input the code which has been emailed to you"
msgstr "Indtast den kode, du har modtaget på e-mail"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "Indtast det brugernavn eller den e-mailadresse, du benyttede ved oprettelse"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Interaktion begrænset"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr "Interaktionsindstillinger"
@@ -3769,11 +4138,11 @@ msgstr "Interaktionsindstillinger"
msgid "Invalid 2FA confirmation code."
msgstr "Ugyldig 2FA-bekræftelseskode"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Ugyldigt handle. Prøv et andet."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "Ugyldig eller ikkeunderstøttet dataelement"
@@ -3789,11 +4158,11 @@ msgstr "Ugyldig bekræftelseskode"
msgid "Invite a Friend"
msgstr "Inviter en ven"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Invitationskode"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Invitationskode ikke accepteret. Tjek at du har indtastet den korrekt og prøv igen."
@@ -3805,7 +4174,7 @@ msgstr "Invitationskoder: {0} tilgængelige"
msgid "Invite codes: 1 available"
msgstr "Invitationskoder: 1 tilgængelig"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "Inviter folk til denne startpakke!"
@@ -3817,7 +4186,7 @@ msgstr "Inviter dine venner til at følge dine foretrukne feeds og konti"
msgid "Invites, but personal"
msgstr "Invitationer, men personlige"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "Ja, det er korrekt"
@@ -3825,19 +4194,19 @@ msgstr "Ja, det er korrekt"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Lige nu er der kun dig! Føj flere personer til din startpakke ved at søge herover."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "Job-ID: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Jobs"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Opret dig på Bluesky"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "Mærkat tilføjet af forfatteren."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Mærkater"
@@ -3868,7 +4237,7 @@ msgstr "Mærkater"
msgid "Labels added"
msgstr "Mærkater tilføjet"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "Mærkater kan tilknyttes brugere og indhold. De kan bruges til at skjule, advare og kategorisere i netværket."
@@ -3884,13 +4253,13 @@ msgstr "Mærkater på dit indhold"
msgid "Language selection"
msgstr "Sprogvalg"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Sprogindstillinger"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Sprog"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Større"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "Seneste"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "læs mere"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr "Læs mere"
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Læs mere"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Læs mere om Bluesky"
@@ -3933,6 +4311,11 @@ msgstr "Læs mere om den moderation, der er anvendt på dette indhold."
msgid "Learn more about this warning"
msgstr "Læs mere om denne advarsel"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr "Læs mere om verificering på Bluesky"
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "Forlader Bluesky"
msgid "left to go."
msgstr "foran dig i køen."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Lad mig vælge"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Lys"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "Like"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Like ({0, plural, one {# like} other {# likes}})"
@@ -4013,17 +4397,16 @@ msgstr "Like 10 opslag"
msgid "Like 10 posts to train the Discover feed"
msgstr "Like 10 opslag for at træne Discover-feedet"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Like dette feed"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr "Like denne mærkningstjeneste"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Liket af"
@@ -4033,43 +4416,43 @@ msgstr "Liket af"
msgid "Liked By"
msgstr "Liket af"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Liket af {0, plural, one {# bruger} other {# brugere}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Liket af {likeCount, plural, one {# bruger} other {# brugere}}"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "Likes"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "Likes af dette opslag"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "Lineært"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Liste"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Listens avatar"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "Liste blokeret"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4084,44 +4467,44 @@ msgstr "Liste af <0/>"
msgid "List by you"
msgstr "Liste af dig"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "Liste slettet"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
msgstr "Liste er skjult"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "Liste skjult"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "Liste skjult"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Listens navn"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "Liste ikke længere blokeret"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "Liste ikke længere skjult"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Lister"
@@ -4129,34 +4512,47 @@ msgstr "Lister"
msgid "Lists blocking this user:"
msgstr "Liste blokeret af denne bruger:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr ""
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr ""
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Indlæs flere"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "Indlæs flere foreslåede feeds"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Indlæs flere foreslåede konti"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Indlæs nye notifikationer"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Indlæs nye opslag"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Indlæser..."
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Log"
@@ -4164,12 +4560,12 @@ msgstr "Log"
msgid "Logged-out visibility"
msgstr "Synlighed for udloggede brugere"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo af @sawaratsuki.bsky.social"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo af <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "Det ser ud til, at du har frigjort alle dine feeds. Men bare rolig, du k
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Det ser ud til, at du mangler et følgerfeed <0>Klik her for at tilføje et.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "Opret en for mig"
@@ -4201,18 +4601,22 @@ msgstr "Opret en for mig"
msgid "Make sure this is where you intend to go!"
msgstr "Tjek, at det virkelig er dette website, du ønsker at besøge!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "Adminstrer gemte feeds"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr "Administrer verifikationsindstillinger"
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Administrer dine skjulte ord og tags"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr "Marker alle læst"
@@ -4221,16 +4625,23 @@ msgstr "Marker alle læst"
msgid "Mark as read"
msgstr "Marker som læst"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr "Marker alle som læst"
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr "Måske senere"
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Medier"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Medier, der kan virke stødende eller upassende for visse personer."
@@ -4246,23 +4657,27 @@ msgstr "Omtalte brugere"
msgid "Mentions"
msgstr "Omtaler"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Menu"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Send besked til {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Besked slettet"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Besked slettet"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr "Besked fra @{0}: {1}"
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Besked fra server: {0}"
@@ -4276,14 +4691,18 @@ msgstr "Beskedfelt"
msgid "Message is too long"
msgstr "Beskeden er for lang"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr "Beskedindstillinger"
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Beskeder"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81
msgctxt "Name of app icon variant"
msgid "Midnight"
-msgstr ""
+msgstr "Midnat"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47
#: src/lib/moderation/useReportOptions.ts:47
@@ -4295,10 +4714,10 @@ msgstr "Vildledende konto"
msgid "Misleading Post"
msgstr "Vildledende opslag"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Moderation"
@@ -4320,22 +4739,22 @@ msgstr "Moderationsliste af <0/>"
msgid "Moderation list by you"
msgstr "Moderationsliste af dig"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "Moderationsliste oprettet"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "Moderationsliste opdateret"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Moderationslister"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Moderationslister"
@@ -4343,11 +4762,11 @@ msgstr "Moderationslister"
msgid "moderation settings"
msgstr "moderationsindstillinger"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "Moderationstilstande"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Moderationsværktøjer"
@@ -4356,7 +4775,7 @@ msgstr "Moderationsværktøjer"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Moderator har besluttet at sætte en generel advarsel på indholdet."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Flere"
@@ -4365,9 +4784,9 @@ msgstr "Flere"
msgid "More feeds"
msgstr "Flere feeds"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Flere valgmuligheder"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "Mest likede først"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Mest likede svar først"
@@ -4400,14 +4819,14 @@ msgstr "Lydløs"
msgid "Mute {tag}"
msgstr "Skjul {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "Skjul konto"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Skjul konti"
@@ -4420,11 +4839,11 @@ msgstr "Skjul samtale"
msgid "Mute in:"
msgstr "Skjul i:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Skjul liste"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "Skjul disse konti?"
@@ -4452,26 +4871,26 @@ msgstr "Skjul kun dette ord i tags"
msgid "Mute this word until you unmute it"
msgstr "Skjul dette ord, indtil du selv fjerner det fra listen"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Skjul tråd"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Skjul ord og tags"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Skjulte konti"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Skjulte konti"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Opslag fra skjulte konti vil ikke optræde i dit feed og dine notifikationer. Ingen kan se, hvem du skjuler."
@@ -4479,11 +4898,11 @@ msgstr "Opslag fra skjulte konti vil ikke optræde i dit feed og dine notifikati
msgid "Muted by \"{0}\""
msgstr "Skjult af \"{0}\""
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Skjulte ord og tags"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Ingen kan se, hvem du skjuler. Skjulte konti kan interagere med dig, men du vil ikke se deres opslag eller modtage notifikationer fra dem."
@@ -4492,15 +4911,15 @@ msgstr "Ingen kan se, hvem du skjuler. Skjulte konti kan interagere med dig, men
msgid "My Birthday"
msgstr "Min fødselsdato"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "Mine feeds"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Navn"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "Navn er obligatorisk"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Natur"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "Gå til {0}"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr "Gå til startpakke"
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "Går til næste skærmbillede"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Går til din profil"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "Har du brug for at rette den?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "Vil du anmelde en ophavsretskrænkelse?"
@@ -4547,30 +4971,43 @@ msgstr "Vil du anmelde en ophavsretskrænkelse?"
msgid "Never lose access to your followers or data."
msgstr "Mist aldrig adgang til dine følgere og din data."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "Glem det, opret et handle til mig"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Ny"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Ny"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "Ny chat"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr "Ny e-mailadresse"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr "Ny feature"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "Nyt handle"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "Ny liste"
@@ -4578,7 +5015,7 @@ msgstr "Ny liste"
msgid "New messages"
msgstr "Nye beskeder"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Ny moderationsliste"
@@ -4590,12 +5027,12 @@ msgstr "Ny adgangskode"
msgid "New Password"
msgstr "Ny adgangskode"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Nyt opslag"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "Nyt opslag"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Nyt opslag"
@@ -4613,19 +5050,20 @@ msgstr "Nyt opslag"
msgid "New user info dialog"
msgstr "Ny bruger"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Ny brugerliste"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "Nyeste svar først"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Nyheder"
@@ -4655,11 +5093,15 @@ msgstr "Næste billede"
msgid "No app passwords yet"
msgstr "Ingen appadgangskoder endnu"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "Ingen DNS-adgang"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "Ingen udvalgte GIF'er fundet. Der er muligvis problemer med Tenor."
@@ -4668,21 +5110,25 @@ msgstr "Ingen udvalgte GIF'er fundet. Der er muligvis problemer med Tenor."
msgid "No feeds found. Try searching for something else."
msgstr "Ingen feeds fundet. Prøv at søge efter noget andet."
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr ""
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "Ingen likes endnu."
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "Følger ikke længere {0}"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr "Højst {MAX_SERVICE_HANDLE_LENGTH} tegn"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr "Ikke længere end {MAX_SERVICE_HANDLE_LENGTH, plural, one {}other {# tegn}}"
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "Ingen beskeder endnu"
@@ -4711,31 +5157,38 @@ msgstr "Ingen citater endnu"
msgid "No reposts yet"
msgstr "Ingen delinger endnu"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Intet resultat"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "Ingen resultater"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr "Ingen resultater for \"{0}\"."
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "Ingen resultater fundet"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "Ingen resultater fundet for \"{query}\""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "Ingen resultater fundet for {query}"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr "Ingen resultater."
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "Ingen søgeresultater fundet for \"{search}\"."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Ingen"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "Ingen har liket dette endnu. Måske skulle du være den første!"
@@ -4775,19 +5227,15 @@ msgstr "Ikkeseksuel nøgenhed"
msgid "Not followed by anyone you're following"
msgstr "Følges ikke af nogen, du følger"
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "Ikke fundet"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "Ikke lige nu"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Note vedr. deling"
@@ -4795,7 +5243,7 @@ msgstr "Note vedr. deling"
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 "OBS: Bluesky er et åbent og offentligt netværk. Denne indstilling begrænser kun synligheden af dit indhold her på Bluesky. Andre apps og websites respekterer ikke nødvendigvis denne indstilling. Dit indhold kan stadig blive vist i andre apps og på andre websites til udloggede brugere."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Ingenting her"
@@ -4803,7 +5251,7 @@ msgstr "Ingenting her"
msgid "Notification filters"
msgstr "Notifikationsfiltre"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Notifikationindstillinger"
@@ -4820,11 +5268,11 @@ msgstr "Notifikationslyde"
msgid "Notification Sounds"
msgstr "Notifikationslyde"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Notifikationer"
@@ -4832,12 +5280,12 @@ msgstr "Notifikationer"
msgid "now"
msgstr "nu"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Nu"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Nøgenhed"
@@ -4859,21 +5307,23 @@ msgstr "Åh nej!"
msgid "Oh no! Something went wrong."
msgstr "Åh nej! Der opstod en fejl."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "Okay"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "Ældste svar først"
@@ -4881,19 +5331,19 @@ msgstr "Ældste svar først"
msgid "on<0><1/><2><3/>2>0>"
msgstr "på<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Nulstil velkomst"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "En eller flere GIF'er mangler alt-tekst."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "En eller flere billeder mangler alt-tekst."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "Et eller flere videoer mangler alt-tekst."
@@ -4905,11 +5355,11 @@ msgstr "Kun .jpg- og .png-filer er understøttet"
msgid "Only {0} can reply."
msgstr "Kun {0} kan svare."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Indeholder kun bogstaver (a-z), tal og bindestreger"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "Kun billedfiler er understøttet"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "Ups, noget gik galt!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "Ups!"
@@ -4935,67 +5385,80 @@ msgstr "Ups!"
msgid "Open"
msgstr "Åbn"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "Åb genvejsmenuen for {name}"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Åbn avatarbygger"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "Åbn samtaleindstillinger"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "Åbn navigation"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Åbn emojivælger"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "Åbn feedinformation"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "Åbn feedindstillingsmenu"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr "Åbn hele emojilisten"
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "Åbn link til {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "Åbn beskedindstillinger"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "Åbn moderationsfejlsøgningsside"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Åbn indstillinger for skjulte ord og tags"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr "Åbn pakke"
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "Åbn opslagsindstillingsmenu"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr "Åbn profil"
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "Åbn startpakkemenu"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Åbn storybook"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Åbn systemlog"
@@ -5015,19 +5478,19 @@ msgstr "Åbner en dialog, hvor du kan vælge, hvem der kan besvare i denne tråd
msgid "Opens additional details for a debug entry"
msgstr "Åbner yderligere oplysninger om en loghændelse"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
-msgstr ""
+msgstr "Åbner alt-tekstdialog"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Åbner enhedens kamera"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
-msgstr ""
+msgstr "Åbner undertekst- og alt-tekstdialog"
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr "Åbner handleskiftdialog"
@@ -5039,7 +5502,7 @@ msgstr "Åbner skrivefelt til nyt opslag"
msgid "Opens device photo gallery"
msgstr "Åbner enhedens fotogalleri"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr "Åbner emojivælger"
@@ -5057,7 +5520,7 @@ msgstr "Åbner formular til at logge ind på din eksisterende Bluesky-konto"
msgid "Opens GIF select dialog"
msgstr "Åbner GIF-vælger"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr "Åbner hjælpeside i browser"
@@ -5065,6 +5528,10 @@ msgstr "Åbner hjælpeside i browser"
msgid "Opens list of invite codes"
msgstr "Åbner listen over invitationskoder"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Åbner formular til nulstilling af adgangskode"
@@ -5073,12 +5540,12 @@ msgstr "Åbner formular til nulstilling af adgangskode"
msgid "Opens the linked website"
msgstr "Åbner det linkede website"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Åbner denne profil"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Åbner videovælger"
@@ -5121,11 +5588,11 @@ msgstr "OTA-status: Ingen tilgængelig"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Andet"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Anden konto"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Side ikke fundet"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "Pause"
msgid "Pause video"
msgstr "Stop afspilning"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "Personer"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "Personer, som følges af @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "Personer, som @{0} følger"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "Tilladelse til adgang til din kamerarulle er krævet."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "Tilladelse til adgang til din kamerarulle blev nægtet. Giv adgang via dine systemindstillinger."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr ""
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "Kæledyr"
msgid "Photography"
msgstr "Fotografi"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Billeder for voksne."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr "Fastgør"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "Fastgør feed"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr "Fastgør feedet med populære videoer til din forside for let adgang"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr "Fastgør feed"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Fastgør til forside"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Fastgør til forside"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Fastgør til din profil"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Fastgjort"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "Fastgjorde {0} til forside"
@@ -5263,7 +5722,7 @@ msgstr "Fastgjorde {0} til forside"
msgid "Pinned Feeds"
msgstr "Fastgjorte feeds"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "Fastgjort til dine feeds"
@@ -5302,24 +5761,28 @@ msgstr "Afspiler GIF'en"
msgid "Plays the video"
msgstr "Afspiller videoen"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr "Vælg de mærkater, der beskriver det indhold, du er ved at slå op."
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Vælg dit handle."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Vælg din adgangskode."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr ""
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Løs verifikationsopgaven"
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Bekræft din e-mail, før du ændrer den. Dette er et midlertidigt krav, indtil e-mailværktøjer bliver tilføjet, og det vil snart blive fjernet."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr "Dobbelttjek, at du har indtastet din e-mailadresse korrekt."
@@ -5335,19 +5798,41 @@ msgstr "Indtast en adgangskode. Den skal bestå af mindst 8 tegn."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Vælg et unikt navn til denne appadgangskode eller brug et autogenereret navn."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr "Indtast en gyldig kode."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr "Indtast en gyldig e-mailadresse."
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Indtast et gyldigt ord, tag eller en sætning, der skal skjules"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr ""
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Indtast din e-mail."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Indtast din invitationskode."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr "Indtast din nye e-mailadresse."
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr "Indtast din adgangskode"
@@ -5381,24 +5866,25 @@ msgstr "Vælg årsagen til denne anmeldelse"
msgid "Please sign in as @{0}"
msgstr "Log ind som @{0}"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr "Indtast din e-mail"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Bekræft din e-mail"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Politik"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr "Populære videoer i dit netværk."
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Porno"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Slå op"
@@ -5408,32 +5894,32 @@ msgctxt "description"
msgid "Post"
msgstr "Opslag"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Slå alle op"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "Opslag af {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "Opslag af @{0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "Opslag slettet"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Opslag kunne ikke publiceres. Tjek din internetforbindelse og prøv igen."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr "Indlæg er blevet slettet"
@@ -5455,7 +5941,7 @@ msgstr "Opslag skjult af dig"
msgid "Post interaction settings"
msgstr "Interaktionsindstillinger"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr "Interaktionsindstillinger"
@@ -5476,15 +5962,16 @@ msgstr "Opslag ikke fundet"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "Opslag blev fastgjort"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "Opslag blev frigjort"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Opslag"
@@ -5503,7 +5990,7 @@ msgstr "Muligt vildledende link"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "Indstillinger blev gemt"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -5524,7 +6011,7 @@ msgstr "Tryk for at vise følgere af denne konto, som du også følger"
msgid "Previous image"
msgstr "Forrige billede"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Primært sprog"
@@ -5537,31 +6024,31 @@ msgstr "Prioriter konti, du følger"
msgid "Priority notifications"
msgstr "Prioriterede notifikationer"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Privatliv"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "Privatliv og sikkerhed"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Privatliv og sikkerhed"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Privatlivspolitik"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Behandler video..."
@@ -5570,23 +6057,23 @@ msgstr "Behandler video..."
msgid "Processing..."
msgstr "Behandler..."
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Profil"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "Profil opdateret"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
@@ -5600,6 +6087,26 @@ msgstr "Offentlige lister over brugere, der kan skjules eller blokeres på én g
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "Offentlige lister, der kan bruges som feeds."
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr "Udgiv opslag"
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr "Udgiv opslag"
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr "Udgiv svar"
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr "Udgiv svar"
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "QR-kode kopieret til udklipsholder!"
@@ -5612,25 +6119,25 @@ msgstr "QR-kode blev downloadet!"
msgid "QR code saved to your camera roll!"
msgstr "QR-kode blev gemt til din kamerarulle!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Citer opslag"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "Citatopslag blev tilkoblet igen"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "Citatopslag blev afkoblet"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "Citatopslag ikke tilladt"
@@ -5642,39 +6149,48 @@ msgstr "Indstillinger for citat"
msgid "Quotes"
msgstr "Citater"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "Citater af dette opslag"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Tilfældig (prøv lykken)"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "Aktivietsgrænse overskredet - du har prøvet at ændre dit handle for mange gange på kort tid. Vent lidt, før du prøver igen."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "Gentilkobl citat"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr "Reager med {emoji}"
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Genaktiv din konto"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr "Læs blogindlæg"
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr "Læs mindre"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr "Læs mere"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Læs Blueskys blog"
@@ -5697,11 +6213,11 @@ msgstr "Begrundelse for klage"
msgid "Reason:"
msgstr "Begrundelse:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Seneste søgninger"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "Anbefalet"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "Forbind igen"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr "Afvis"
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr "Afvis chatanmodning"
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Genindlæs samtaler"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Fjern"
msgid "Remove {displayName} from starter pack"
msgstr "Fjern {displayName} fra startpakke"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr "Fjern {historyItem}"
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Fjern konto"
@@ -5752,13 +6268,13 @@ msgstr "Fjern konto"
msgid "Remove attachment"
msgstr "Fjern vedhæftning"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Fjern avatar"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "Fjern banner"
@@ -5776,24 +6292,25 @@ msgstr "Fjern feed"
msgid "Remove feed?"
msgstr "Fjern feed?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Fjern fra mine feeds"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "Fjern fra kvikadgang?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "Fjern fra gemte feeds"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr "Fjern fra dine feeds?"
@@ -5802,11 +6319,16 @@ msgstr "Fjern fra dine feeds?"
msgid "Remove image"
msgstr "Fjern billede"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Fjern skjult ord fra din liste"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Fjern profil"
@@ -5814,12 +6336,12 @@ msgstr "Fjern profil"
msgid "Remove quote"
msgstr "Fjern citat"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Fjern deling"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Fjern undertekstfil"
@@ -5827,6 +6349,21 @@ msgstr "Fjern undertekstfil"
msgid "Remove this feed from your saved feeds"
msgstr "Fjern dette feed fra dine gemte feeds"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr "Fjern bruger fra liste"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr "Fjern verifikation"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr "Fjern verifikation fra denne konto?"
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "Fjernet af forfatter"
@@ -5835,7 +6372,7 @@ msgstr "Fjernet af forfatter"
msgid "Removed by you"
msgstr "Fjernet af dig"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Fjernet fra liste"
@@ -5845,19 +6382,18 @@ msgid "Removed from my feeds"
msgstr "Fjernet fra mine feeds"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Fjernet fra gemte feeds"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Fjernet fra dine feeds"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr "Fjerner profil fra søgehistorik"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr "Fjernede verifikation"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
@@ -5868,7 +6404,7 @@ msgstr "Fjerner citeret opslag"
msgid "Replace with Discover"
msgstr "Erstat med Discover"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Svar"
@@ -5880,12 +6416,13 @@ msgstr "Svar ikke tilladt"
msgid "Replies to this post are disabled."
msgstr "Svar til dette opslag er ikke tilladt."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Besvar"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Svar ({0, plural, one {# svar} other {# svar}})"
@@ -5907,86 +6444,86 @@ msgstr "Indstillinger for svar"
msgid "Reply settings are chosen by the author of the thread"
msgstr "Svarindstillinger er bestemt af trådens forfatter"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "Rækkefølge for svar"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Svar til <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Svar til et blokeret opslag"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "Svar til et opslag"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Svar til dig"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "Svarets synlighed blev opdateret"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "Svar blev skjult"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Anmeld"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "Anmeld konto"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Anmeld samtale"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "Anmeld dialog"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Anmeld feed"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
msgstr "Anmeld liste"
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Anmeld besked"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Anmeld opslag"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "Anmeld startpakke"
@@ -6030,25 +6567,26 @@ msgstr "Anmeld denne startpakke"
msgid "Report this user"
msgstr "Anmeld denne bruger"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Videredel"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Videredel"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Videredel ({0, plural, one {# deling} other {# delinger}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Videredel eller citer"
@@ -6056,26 +6594,26 @@ msgstr "Videredel eller citer"
msgid "Reposted By"
msgstr "Videredelt af"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "Videredelt af {0}"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "Videredelt af <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "Videredelt af dig"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "Videredelinger af dette opslag"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
msgstr "Anmod om ændring"
#: src/view/com/modals/ChangePassword.tsx:253
@@ -6088,11 +6626,11 @@ msgstr "Bekræftelseskode"
msgid "Require alt text before posting"
msgstr "Gør alt-tekst obligatorisk i dine egne opslag"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr "Kræv en bekræftelseskode via e-mail for at logge ind på din konto."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Obligatorisk for denne udbyder"
@@ -6100,13 +6638,19 @@ msgstr "Obligatorisk for denne udbyder"
msgid "Required in your region"
msgstr "Obligatorisk i din region"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr "Send igen"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "Gensend e-mail"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "Gensend e-mail"
@@ -6123,8 +6667,8 @@ msgstr "Nulstil kode"
msgid "Reset Code"
msgstr "Nulstil kode"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "Nulstil velkomsttilstand"
@@ -6141,16 +6685,16 @@ msgstr "Forsøger at logge ind igen"
msgid "Retries the last action, which errored out"
msgstr "Prøver at gentage den seneste handling, der fejlede"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "Prøver at gentage den seneste handling, der fejlede"
msgid "Retry"
msgstr "Prøv igen"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr "Prøv at genindlæse mulige årsager"
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Gå til forrige side"
@@ -6175,11 +6719,11 @@ msgstr "Gå til forrige side"
msgid "Returns to home page"
msgstr "Går til forsiden"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "Går til forrige side"
@@ -6190,24 +6734,26 @@ msgstr "Går tilbage til det forrige trin"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Gem"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Gem"
@@ -6221,12 +6767,12 @@ msgstr "Gem fødselsdato"
msgid "Save changes"
msgstr "Gem ændringer"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Gem ændringer"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Gem billede"
@@ -6234,16 +6780,16 @@ msgstr "Gem billede"
msgid "Save image crop"
msgstr "Gem billedbeskæring"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Gem nyt handle"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "Gem QR-kode"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Føj til mine feeds"
@@ -6251,16 +6797,12 @@ msgstr "Føj til mine feeds"
msgid "Saved Feeds"
msgstr "Gemte feeds"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "Gemt til din kamerarulle"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "Tilføjet dine feeds"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "Gemmer ændringer til din profil"
@@ -6270,8 +6812,8 @@ msgstr "Gemmer billedbeskæring"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "Sig hej!"
@@ -6280,45 +6822,42 @@ msgstr "Sig hej!"
msgid "Science"
msgstr "Videnskab"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "Rul til toppen"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Søg"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Søg i opslag fra @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "Søg efter navn eller interesse"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "Søg feeds"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "Søg efter \"{interestsDisplayName}\"{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Søg efter \"{query}\""
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "Søg efter \"{searchText}\""
@@ -6326,29 +6865,33 @@ msgstr "Søg efter \"{searchText}\""
msgid "Search for feeds that you want to suggest to others."
msgstr "Søg efter feeds, du vil foreslå til andre."
-#: src/view/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr "Søg efter flere konti"
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr "Søg efter flere feeds"
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
msgstr "Søg efter opslag, brugere og feeds"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Søg efter brugere"
-
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "Søg efter GIF'er"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr "Søg i mine opslag"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr "Søg opslag"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Søg efter profiler"
@@ -6356,16 +6899,20 @@ msgstr "Søg efter profiler"
msgid "Search Tenor"
msgstr "Søg i Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr "Søg..."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr "Søg efter profiler"
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Obligatorisk sikkerhedstjek"
@@ -6385,7 +6932,7 @@ msgstr "Se #{tag}-indlæg"
msgid "See #{tag} posts by user"
msgstr "Se #{tag}-indlæg af bruger"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Se jobs hos Bluesky"
@@ -6405,6 +6952,10 @@ msgstr "Vælg en farve"
msgid "Select account"
msgstr "Vælg konto"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Vælg en avatar"
@@ -6413,10 +6964,22 @@ msgstr "Vælg en avatar"
msgid "Select an emoji"
msgstr "Vælg en emoji"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Vælg sprog"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr ""
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Vælg en eksisterende konto"
@@ -6433,15 +6996,15 @@ msgstr "Vælg GIF \"{0}\""
msgid "Select how long to mute this word for."
msgstr "Vælg, hvor længe dette ord skal ignores."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Vælg sprog..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Vælg sprog"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr "Vælg moderationstjeneste"
@@ -6449,6 +7012,10 @@ msgstr "Vælg moderationstjeneste"
msgid "Select moderator"
msgstr "Vælg moderator"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "Vælg emojien {emojiName} som din avatar"
msgid "Select the moderation service(s) to report to"
msgstr "Vælg moderationstjeneste(r), du vil anmelde til"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Vælg video"
@@ -6470,23 +7037,24 @@ msgstr "Vælg video"
msgid "Select what content this mute word should apply to."
msgstr "Vælg, hvor dette ord skal skjules."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr "Vælg sprog for appens brugergrænseflade."
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Vælg, hvilke sprog du vil se i dine feeds. Hvis ingen er valgt, vil du se opslag på alle sprog."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Angiv din fødselsdato"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "Angiv dine interesser herunder"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "Vælg dit foretrukne sprog for oversættelser i dit feed"
@@ -6498,19 +7066,17 @@ msgstr "Vælger mulighed {0} af {numItems}"
msgid "Send a neat website!"
msgstr "Del et fedt website!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
msgstr "Send bekræftelse"
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Send bekræftelses-e-mail"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Send bekræftelses-e-mail"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Send e-mail"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Send e-mail"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Send feedback"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Send besked"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr ""
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Send opslag til..."
@@ -6544,17 +7114,20 @@ msgstr "Send anmeldelse"
msgid "Send report to {0}"
msgstr "Send anmeldelse til {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr "Send anmeldelse til {title}"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Send bekræftelses-e-mail"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Send som direkte besked"
@@ -6570,7 +7143,7 @@ msgstr "Serveradresse"
msgid "Set app icon to {0}"
msgstr "Sæt appikon til {0}"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "Angiv fødselsdato"
@@ -6586,19 +7159,19 @@ msgstr "Konfigurer din konto"
msgid "Sets email for password reset"
msgstr "Angiver e-mail til nulstilling af adgangskode"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Indstillinger"
#: src/screens/ModerationInteractionSettings/index.tsx:102
msgctxt "toast"
msgid "Settings saved"
-msgstr ""
+msgstr "Indstillinger blev gemt"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Seksuel aktivitet eller erotisk nøgenhed"
@@ -6606,21 +7179,15 @@ msgstr "Seksuel aktivitet eller erotisk nøgenhed"
msgid "Sexually Suggestive"
msgstr "Erotik"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Del"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Del"
@@ -6633,15 +7200,19 @@ msgstr "Del en sjov historie!"
msgid "Share a fun fact!"
msgstr "Del noget interessant!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Del alligevel"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "Del link"
@@ -6650,32 +7221,46 @@ msgstr "Del link"
msgid "Share Link"
msgstr "Del link"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "Del link-dialog"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Del QR-kode"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "Del dette feed"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "Del denne startpakke"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "Del denne startpakke og hjælp andre med at blive en del af fællesskabet på Bluesky."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr ""
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "Del dit yndlingsfeed!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "Test af delte indstillinger"
@@ -6685,7 +7270,7 @@ msgstr "Deler det linkede website"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Vis"
@@ -6696,8 +7281,8 @@ msgstr "Vis alt-tekst"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Vis alligevel"
@@ -6718,8 +7303,8 @@ msgstr "Vis tilpasningsindstillinger"
msgid "Show hidden replies"
msgstr "Vis skjulte svar"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "Vis mindre som dette"
@@ -6727,14 +7312,14 @@ msgstr "Vis mindre som dette"
msgid "Show list anyway"
msgstr "Vis liste alligevel"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Vis mere"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Vis flere som dette"
@@ -6752,7 +7337,7 @@ msgstr "Vis citatopslag"
msgid "Show replies"
msgstr "Vis svar"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "Vis svar"
@@ -6764,8 +7349,8 @@ msgstr "Vis svar trådet"
msgid "Show replies by people you follow before all other replies"
msgstr "Vis svar fra brugere, du følger, før øvrige svar"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "Vis svar til alle"
@@ -6787,11 +7372,11 @@ msgstr "Vis advarsel"
msgid "Show warning and filter from feeds"
msgstr "Vis advarsel og filtrer fra feeds"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr "Viser, hvornår dette opslag blev oprettet"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr "Viser andre konti, du kan skifte til"
@@ -6809,8 +7394,8 @@ msgstr "Viser indholdet"
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr "Viser indholdet"
msgid "Sign in"
msgstr "Log ind"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Log ind som {0}"
@@ -6826,16 +7411,16 @@ msgstr "Log ind som {0}"
msgid "Sign in as..."
msgstr "Log ind som..."
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr "Log ind eller opret en konto"
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "Log ind eller opret en konto for at deltage i samtalen!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "Log ind eller opret konto"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "Log på konto, der ikke er anført"
@@ -6843,15 +7428,15 @@ msgstr "Log på konto, der ikke er anført"
msgid "Sign in to Bluesky or create a new account"
msgstr "Log på Bluesky eller opret en ny konto"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Log ud"
@@ -6859,8 +7444,8 @@ msgstr "Log ud"
msgid "Sign Out"
msgstr "Log ud"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "Log ud?"
@@ -6874,11 +7459,6 @@ msgstr "Indlogning krævet"
msgid "Signed in as @{0}"
msgstr "Logget ind som @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "Opret dig uden startpakke"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Lignende konti"
@@ -6896,12 +7476,21 @@ msgstr "Spring dette forløb over"
msgid "Smaller"
msgstr "Mindre"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr "Udsætter påmindelen"
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Softwareudvikling"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr "Nogle af dine verifikationer er ugyldige."
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "Nogle andre feeds, du måske kan lide"
@@ -6909,23 +7498,31 @@ msgstr "Nogle andre feeds, du måske kan lide"
msgid "Some people can reply"
msgstr "Udvalgte personer kan svare"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr "Nogen reagerede med {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr "Nogen reagerede med {0} på {1}"
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Der er noget i vejen med din anmeldelse. Kontakt venligst support."
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Noget gik galt"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Noget gik galt, prøv igen"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Noget gik galt, prøv igen"
@@ -6934,16 +7531,16 @@ msgstr "Noget gik galt, prøv igen"
msgid "Something went wrong!"
msgstr "Noget gik galt!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr "Noget gik galt. Prøv igen."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "Noget galt? Fortæl os om det."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "Desværre! Din session er udløbet. Log venligst ind igen."
@@ -6978,34 +7575,39 @@ msgstr "Spam; for mange omtaler eller svar"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Sport"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Start en ny chat"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "Kom i gang med at tilføje personer"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "Kom i gang med at tilføje personer!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Start chat med {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Startpakke"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "Startpakke af {0}"
@@ -7013,38 +7615,39 @@ msgstr "Startpakke af {0}"
msgid "Starter pack by <0/>"
msgstr "Startpakke af <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "Startpakke af dig"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "Startpakke er ugyldig"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "Startpakker"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Startpakker lader dig let dele dine foretrukne feeds og personer med dine venner."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Statusside"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "Trin {0} af {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "Lager tømt. Genstart appen nu."
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "Storybook"
@@ -7063,69 +7666,74 @@ msgstr "Afsend klage"
msgid "Submit Appeal"
msgstr "Afsend klage"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr "Send anmeldelse"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Abonner"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "Abonner på @{0} for at bruge disse labels:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "Abonner på mærkningstjeneste"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "Abonner på denne mærkningstjeneste"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "Abonner på denne liste"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "Bekræftet!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr "Verificering lykkedes"
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
msgstr "Foreslåede konti"
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Foreslået til dig"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Seksuelle undertoner"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60
msgctxt "Name of app icon variant"
msgid "Sunrise"
-msgstr ""
+msgstr "Solopgang"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70
msgctxt "Name of app icon variant"
msgid "Sunset"
-msgstr ""
+msgstr "Solnedgang"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Support"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Skift konto"
@@ -7134,11 +7742,11 @@ msgstr "Skift konto"
msgid "Switch Account"
msgstr "Skift konto"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "Skift konti"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr "Skift til {0}"
@@ -7149,9 +7757,9 @@ msgstr "Skift til {0}"
msgid "System"
msgstr "System"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Systemlog"
@@ -7159,6 +7767,12 @@ msgstr "Systemlog"
msgid "Tags only"
msgstr "Kun tags"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr "Tryk for at lukke kontekstmenu"
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Tryk for lukke"
@@ -7184,7 +7798,7 @@ msgstr "Teknologi"
msgid "Tell a joke!"
msgstr "Fortæl en vits!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "Fortæl os lidt mere om dig selv"
@@ -7192,17 +7806,17 @@ msgstr "Fortæl os lidt mere om dig selv"
msgid "Tell us a little more"
msgstr "Fortæl os lidt mere"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Vilkår"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Vilkår"
@@ -7230,7 +7844,11 @@ msgstr "Tekstfelt"
msgid "Text input field"
msgstr "Tekstfelt"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "Tak! Din e-mailadresse er nu bekræftet."
@@ -7242,7 +7860,7 @@ msgstr "Tak. Din anmeldelse blev sendt."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Tak, du har nu bekræftet din e-mailadresse. Du kan nu lukke denne dialog."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "Som indeholder følgende:"
@@ -7250,10 +7868,10 @@ msgstr "Som indeholder følgende:"
msgid "That handle is already taken."
msgstr "Dette handle er allerede taget."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "Startpakke ikke fundet."
msgid "That's all, folks!"
msgstr "Det var alt, folkens!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr "Det var alt"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "Kontoen vil være i stand til at interagere med dig, når du fjerner blokering."
@@ -7282,7 +7900,7 @@ msgstr "Appen vil blive genstartet"
msgid "The author of this thread has hidden this reply."
msgstr "Forfatteren af denne tråd har skjult dette svar."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "Bluesky-webapplikationen"
@@ -7302,6 +7920,10 @@ msgstr "Discover-feedet"
msgid "The Discover feed now knows what you like"
msgstr "Discover-feedet ved nu, hvad du synes om"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr "Den indtastede e-mailadresse er identisk med din nuværende e-mailadresse."
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Oplevelsen er bedre i appen. Download Bluesky nu, så fortsætter vi, hvor du slap."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "Privatlivspolitikken er flyttet til <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "Den valgte video er større end 50 MB."
+msgid "The selected video is larger than 100 MB."
+msgstr "Den valgte video er større end 100 MB."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "Der ser ud til at være problemer med serveren. Prøv igen om lidt."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "Startpakken, du prøver at åbne, er ugyldig. Du kan i stedet slette denne startpakke."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr "Kontekstmenuens emne"
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "Kontaktformularen er flyttet. Hvis du har brug for hjælp, <0/> eller besøg {HELP_DESK_URL} for at kontakte os."
@@ -7367,15 +7994,15 @@ msgstr "Der er ingen udløbsdato for en deaktiveret konto. Du kan vende tilbage
msgid "There was an issue connecting to Tenor."
msgstr "Der kunne ikke skabes forbindelse til Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "Der kunne ikke skabes forbindelse til serveren"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Der kunne ikke skabes forbindelse til serveren. Tjek din internetforbindelse og prøv igen."
@@ -7388,11 +8015,12 @@ msgstr "Der kunne ikke skabes forbindelse til serveren"
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Notifikationer kunne ikke indlæses. Tryk her for at prøve igen."
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Opslag kunne ikke indlæses. Tryk her for at prøve igen."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Lister kunne ikke indlæses. Tryk her for at prøve igen."
@@ -7400,12 +8028,12 @@ msgstr "Lister kunne ikke indlæses. Tryk her for at prøve igen."
msgid "There was an issue fetching your app passwords"
msgstr "Appadgangskode kunne ikke indlæses"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Lister kunne ikke indlæses. Tryk her for at prøve igen."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "Dine tjenesteindstillinger kunne ikke indlæses"
@@ -7418,26 +8046,26 @@ msgstr "Feed kunne ikke fjernes. Tjek din internetforbindelse og prøv igen."
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Anmeldelse kunne ikke afsendes. Tjek din internetforbindelse."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "Dine feeds kunne ikke opdateres. Tjek din internetforbindelse og prøv igen."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "Der opstod en fejl! {0}"
@@ -7445,10 +8073,10 @@ msgstr "Der opstod en fejl! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Der opstod en fejl. Tjek din internetforbindelse og prøv igen."
@@ -7469,6 +8097,14 @@ msgstr "Disse indstillinger gælder kun dit følgerfeed."
msgid "This {screenDescription} has been flagged:"
msgstr "Denne {screenDescription} er blevet flaget:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr "Denne konto har et flueben, fordi den er blevet verificeret af autoriserede kilder."
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr "Denne konto er forsøgt verificeret en eller flere gange, men den er pt. ikke verificeret."
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "Denne konto har anmodet om, at brugere logger ind for at se profilen."
@@ -7477,6 +8113,10 @@ msgstr "Denne konto har anmodet om, at brugere logger ind for at se profilen."
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 "Denne konto er blokeret af en eller flere af dine moderationslister. For at fjerne blokeringen skal du gå til listen og fjern brugeren."
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr "Denne handling kan omgøres når som helst."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Denne klage vil blive sendt til <0>{sourceName}0>."
@@ -7510,14 +8150,22 @@ msgstr "Dette indhold er ikke tilgængeligt, fordi nogle af de involverede bruge
msgid "This content is not viewable without a Bluesky account."
msgstr "Denne indhold kan ikke ses uden en Bluesky-konto."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Denne samtale er med en slettet eller deaktiveret konto. Tryk for valgmuligheder"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "Denne funktion er i beta. Du kan læse mere om dataeksport i <0>dette blogindlæg0>."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr ""
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "Denne funktion er ikke tilgængelig, når du bruger en appadgangskode. Log ind med din primære adgangskode."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Dette feed er tomt! Prøv at følge flere bruger eller juster dine sprogindstillinger."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Dette feed er tomt."
@@ -7540,7 +8188,7 @@ msgstr "Dette feed er tomt."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Dette feed er ikke længere online. Vi viser i stedet <0>Discover0>."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "Dette handle er reserveret. Prøv et andet."
@@ -7548,9 +8196,10 @@ msgstr "Dette handle er reserveret. Prøv et andet."
msgid "This information is not shared with other users."
msgstr "Denne oplysning vil ikke blive delt med andre brugere."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "Dette er vigtigt i tilfælde af, at du får brug for at opdatere din e-mail eller nulstille din adgangskode."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr ""
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "Denne mærkat blev sat af forfatteren"
msgid "This label was applied by you."
msgstr "Denne mærkat blev sat på dig."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "Denne mærkningstjeneste har ikke oplyst, hvilken mærkater den sætter, og den er muligvis inaktiv."
@@ -7576,7 +8225,7 @@ msgstr "Denne liste – oprettet af <0>{0}0> – overtræder muligvis Blueskys
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr "Denne liste – oprettet dig – overtræder muligvis Blueskys fællesskabsregler med sit navn eller sin beskrivelse."
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "Denne liste er tom."
@@ -7584,7 +8233,7 @@ msgstr "Denne liste er tom."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Denne moderationstjeneste er utilgængelig. Se herunder for flere oplysninger. Kontakt os, hvis dette problem varer ved."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Dette opslag er dateret <0>{0}0>, men det blev først oprettet på Bluesky <1>{1}1>."
@@ -7592,28 +8241,29 @@ msgstr "Dette opslag er dateret <0>{0}0>, men det blev først oprettet på Blu
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr "Dette opslag har en ukendt interaktionsindstillinger. Din app trænger måske til at blive opdateret."
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "Dette opslag er slettet."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Dette opslag er kun synlig for indloggede brugere. Den vil ikke være synlig for brugere, der ikke er logget ind."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Dette opslag vil blive skjult fra feeds og tråde. Denne handling kan ikke fortrydes."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "Dette opslags forfatter har ikke tilladt citatopslag."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Denne profil er kun synlig for indloggede brugere. Den kan ikke ses af personer, der ikke er logget ind."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr "Dette svar vil blive vist i en skjult sektion nederst i din tråd og vil skjule notifikationer for yderligere svar - både for dig og andre"
@@ -7621,10 +8271,14 @@ msgstr "Dette svar vil blive vist i en skjult sektion nederst i din tråd og vil
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Denne tjeneste har ikke angivet tjenestevilkår eller privatlivspolitik."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "Dette skulle oprette en DNS-record på:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr "Denne bruger har ikke et profilnavn og kan derfor ikke verificeres."
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "Denne bruger har ikke nogen følgere."
@@ -7662,21 +8316,21 @@ msgstr "Denne bruger følger ikke nogen."
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "Dette vil fjerne \"{0}\" fra dine skjulte ord. Du kan altid tilføje det igen senere."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "Dette vil fjerne @{0} fra din kvikadgangsliste."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "Dette vil fjerne dit opslag fra dette citatopslag for alle brugere og erstatte det med en pladsholder."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "Trådindstillinger"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Indstillinger for tråde"
@@ -7684,8 +8338,8 @@ msgstr "Indstillinger for tråde"
msgid "Thread Preferences"
msgstr "Indstillinger for tråde"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "Trådet"
@@ -7693,7 +8347,7 @@ msgstr "Trådet"
msgid "Threaded mode"
msgstr "Trådvisning"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Trådindstillinger"
@@ -7705,14 +8359,15 @@ msgstr "Tid tilbage: {0, plural, one {# sekund} other {# sekunder}}"
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "For at deaktivere 2FA via e-mail, skal du bekræfte, at du har adgang til e-mailadressen."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr ""
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "For at klage over en samtale, skal du klage over en specifik besked via samtaleskærmbilledet. Dette gør det muligt for vores moderatorer at forstå konteksten for din klage."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "For at uploade videoer til Bluesky skal du først bekræfte din e-mail."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "Hvem ønsker du at klage til?"
@@ -7725,7 +8380,7 @@ msgstr "I dag"
msgid "Toggle dropdown"
msgstr "Åbn/luk rullemenu"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "Tryk for at aktivere eller deaktivere voksenindhold"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr "Slår lyden til/fra"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Top"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "Emne"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Oversæt"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "Trends"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "Populære videoer"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr "Tillid opstår gennem forbindelser, fællesskaber og delt indhold, så vi åbner nu for <0>autoriserede verifikatorer0>, dvs. organisationer, som kan verificere brugerkonto."
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "Tv"
msgid "Two-factor authentication (2FA)"
msgstr "Tofaktorgodkendelse (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Indtast dit ønskede brugernavn"
@@ -7783,18 +8440,11 @@ msgstr "Indtast dit ønskede brugernavn"
msgid "Type your message here"
msgstr "Indtast din besked her"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Type:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Fjern blokering af liste"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Skjul ikke længere liste"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "Kan ikke forbinde. Tjek din internetforbindelse og prøv igen."
@@ -7809,7 +8459,7 @@ msgstr "Kan ikke forbinde. Tjek din internetforbindelse og prøv igen."
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Kan ikke kontakte din udbyder. Tjek din internetforbindelse."
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "Kan ikke slette"
@@ -7817,36 +8467,41 @@ msgstr "Kan ikke slette"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Bloker ikke længere"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Bloker ikke længere"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Bloker ikke længere konto"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "Bloker ikke længere konto?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr "Bloker ikke længere liste"
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Fortryd deling"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Fortryd deling ({0, plural, one {# deling} other {# delinger}})"
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Følg ikke længere"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "Følg ikke længer {0}"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "Følg ikke længere konto"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr "Ophører med at følge brugeren"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Ingen af de moderationstjenester, du abonnerer på, understøtter denne anmeldelsestype."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr "Ukendt verifikator"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "Fjern like"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Fjern ({0, plural, one {# like} other {# likes}})"
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr "Skjul ikke længere"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Skjul ikke længere"
@@ -7895,10 +8555,10 @@ msgstr "Skjul ikke længere"
msgid "Unmute {tag}"
msgstr "Skjul ikke længere {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "Skjul ikke længere konto"
@@ -7906,8 +8566,12 @@ msgstr "Skjul ikke længere konto"
msgid "Unmute conversation"
msgstr "Skjul ikke længere samtale"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr "Skjul ikke længere liste"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Skjul ikke længere tråd"
@@ -7915,38 +8579,47 @@ msgstr "Skjul ikke længere tråd"
msgid "Unmute video"
msgstr "Skjul ikke længere video"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Frigør"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "Frigør feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr "Frigør feed"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Frigør fra forside"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "Frigør fra profil"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Frigør moderationsliste"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "Frigjorde {0} fra forside"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Frigjort fra dine feeds"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr "Udsæt ikke længere påmindelsen"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Afmeld abonnement"
@@ -7955,7 +8628,7 @@ msgstr "Afmeld abonnement"
msgid "Unsubscribe from list"
msgstr "Afmeld abonnement på liste"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Afmeld abonnement på denne mærkningstjeneste"
@@ -7963,11 +8636,11 @@ msgstr "Afmeld abonnement på denne mærkningstjeneste"
msgid "Unsubscribed from list"
msgstr "Abonnement på liste afmeldt"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "Videoformat ikke understøttet"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "Videoformat ikke understøttet: {0}"
@@ -7987,49 +8660,60 @@ msgstr "Opdater"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Opdater <0>{displayName}0> i lister"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr "Opdater e-mail"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Opdater til {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
+msgstr "Opdater din e-mail"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
msgctxt "toast"
msgid "Updating quote attachment failed"
-msgstr ""
+msgstr "Opdatering af tilkobling til citat fejlede"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "Opdatering af synlighed for svar fejlede"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "Opdaterer..."
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Upload et foto i stedet"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Upload en tekstfil til:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Upload fra kamera"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Upload fra filer"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Upload fra bibliotek"
@@ -8042,7 +8726,7 @@ msgstr "Uploader billeder..."
msgid "Uploading link thumbnail..."
msgstr "Uploader forhåndsvisning af link..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "Uploader video..."
@@ -8050,22 +8734,22 @@ msgstr "Uploader video..."
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Brug appadgangskoder til at logge ind i andre Bluesky-klienter uden at give fuld adgang til din konto eller adgangskode."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Brug standardudbyder"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Brug browser i app"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Brug appens indbyggede browser til at åbne links"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Brug min standardbrowser"
@@ -8084,7 +8768,7 @@ msgstr "Brugt af:"
#: src/components/dms/ReportDialog.tsx:324
msgctxt "toast"
msgid "User blocked"
-msgstr ""
+msgstr "Bruger blokeret"
#: src/components/moderation/ModerationDetailsDialog.tsx:71
#: src/lib/moderation/useModerationCauseDescription.ts:63
@@ -8119,15 +8803,15 @@ msgstr "Brugerliste af {0}"
msgid "User list by you"
msgstr "Brugerliste af dig"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "Brugerliste oprettet"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "Brugerliste opdateret"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8135,7 +8819,7 @@ msgstr "Brugernavn eller e-mailadresse"
#: src/components/WhoCanReply.tsx:280
msgid "users followed by <0>@{0}0>"
-msgstr "brugere, der følger <0>@{0}"
+msgstr "brugere, der følges af <0>@{0}0>"
#: src/components/WhoCanReply.tsx:267
msgid "users following <0>@{0}0>"
@@ -8150,58 +8834,88 @@ msgstr "Brugere, jeg følger"
msgid "Users in \"{0}\""
msgstr "Brugere i \"{0}\""
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "Brugere, som har liket indholdet/profilen"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr "Brugere du følger"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Værdi:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "Bekræftet e-mail er obligatorisk"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr "Verificering fejlede, prøv igen."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr "Verifikationsindstillinger"
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr "Verifikationsindstillinger"
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr "Verificering på Bluesky fungerer anderledes end på andre platforme. <0>Læs mere.0>"
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr "Verificeret af:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr "Bekræft konto"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr "Bekræft kode"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Bekræft DNS-record"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr "Bekræft e-mail"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr "Bekræft e-mailkode"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Bekræft e-mail-dialog"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Bekræft ny e-mail"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Bekræft nu"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Bekræft tekstfil"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr "Verificer denne konto?"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Bekræft din e-mail"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Bekræft din e-mail"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Version {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "Video"
msgid "Video failed to process"
msgstr "Videobehandling fejlede"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr "Videofeed"
@@ -8224,14 +8938,15 @@ msgstr "Videofeed fra {0}: {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Computerspil"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr "Video er sat på pause"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr "Video afspiller"
@@ -8239,11 +8954,11 @@ msgstr "Video afspiller"
msgid "Video not found."
msgstr "Video ikke fundet."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Videoindstillinger"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Video uploadet"
@@ -8251,31 +8966,32 @@ msgstr "Video uploadet"
msgid "Video: {0}"
msgstr "Video: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "Videoer"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
-msgstr ""
+msgstr "Videoer må vare højst 3 minutter"
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "{0}s avatar"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "Se {0}s profil"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "Se {displayName}s profil"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "Vis blokeret brugers profil"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "Se loghændelse"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Læs mere"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "Læs mere om anmeldelse af ophavsretskrænkelse"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Vis hele tråden"
@@ -8308,18 +9024,17 @@ msgstr "Vis information om disse mærkater"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "Se flere"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Vis profil"
@@ -8331,7 +9046,11 @@ msgstr "Vis avataren"
msgid "View the labeling service provided by @{0}"
msgstr "Vis mærkningstjenesten drevet af @{0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr "Se denne brugers verifikationer"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "Vis brugere, der likede dette feed"
@@ -8339,11 +9058,11 @@ msgstr "Vis brugere, der likede dette feed"
msgid "View video"
msgstr "Se video"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Vis blokerede konti"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr "Se dine standardinteraktionsindstillinger"
@@ -8352,14 +9071,18 @@ msgstr "Se dine standardinteraktionsindstillinger"
msgid "View your feeds and explore more"
msgstr "Vis dine feeds og udforsk flere"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Vis moderationslister"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "Vis dine skjulte konti"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr "Se dine verifikationer"
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "Advar om indhold"
msgid "Warn content and filter from feeds"
msgstr "Advar om indhold og filtrer fra feeds"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr "Se nu"
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "Vi kunne ikke finde nogen resultater for dette hashtag."
@@ -8400,7 +9128,7 @@ msgstr "Vi kunne ikke finde nogen resultater for dette hashtag."
msgid "We couldn't find any results for that topic."
msgstr "Vi kunne ikke finde nogen resultater for dette emne."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "Vi kunne ikke indlæse denne samtale"
@@ -8420,6 +9148,14 @@ msgstr "God fornøjelse. Husk, at Bluesky er:"
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Vi løb tør for opslag fra konti, du følger. Her er de seneste fra <0/>."
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr "Vi anbefaler at vælge mindst to interesser."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Vi har sendt en e-mail til <0>{0}0> med et link. Klik på det for at afslutte bekræftelsesforløbet."
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Vi kunne ikke afgøre, om du har lov til at uploade videoer. Prøv igen."
@@ -8428,7 +9164,7 @@ msgstr "Vi kunne ikke afgøre, om du har lov til at uploade videoer. Prøv igen.
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "Vi kunne ikke indlæse dine fødselsdato. Prøv igen."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:428
msgid "We were unable to load your configured labelers at this time."
msgstr "Vi kunne ikke indlæse dine konfigurede mærkningstjenester."
@@ -8440,20 +9176,28 @@ msgstr "Vi kunne ikke få forbindelse. Prøv igen for at fortsætte opsætningen
msgid "We will let you know when your account is ready."
msgstr "Vi giver dig besked, når din konto er klar."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Vi vil sende en e-mail til <0>{0}0> med et link. Klik på det for at afslutte bekræftelsesforløbet."
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "Vi vil bruge dette til at tilpasse din oplevelse."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "Vi har netværksproblemer, prøv igen."
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr "Vi lancerer en nyt system til validering på Bluesky — et tydeligt flueben."
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "Vi er glade for at have dig med!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Beklager, men vi kunne ikke indlæse denne liste. Hvis problemet varer ved, kontakt listens skaber, @{handleOrDid}."
@@ -8461,11 +9205,11 @@ msgstr "Beklager, men vi kunne ikke indlæse denne liste. Hvis problemet varer v
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Beklager, men vi kunne ikke indlæse dine skjulte ord. Prøv igen."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Beklager, men din søgning kunne ikke gennemføres. Prøv igen om lidt."
-#: src/view/com/composer/Composer.tsx:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Beklager! Det opslag, du svarer på, er blevet slettet."
@@ -8474,7 +9218,7 @@ msgstr "Beklager! Det opslag, du svarer på, er blevet slettet."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Beklager! Vi kan ikke finde den side, du leder efter."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Beklager! Du kan kun abonnere på 20 mærkningstjenester, og du har nået denne grænse."
@@ -8494,16 +9238,16 @@ msgstr "Hvad interesserer du dig for?"
msgid "What do you want to call your starter pack?"
msgstr "Hvad vil du kalde din startpakke?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "Hvad folk skriver om."
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "Hvad sker der?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr "Når du trykker på et flueben, kan du se, hvilken organisation der har foretaget verificeringen."
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "Hvilke sprog bruges i dette opslag?"
@@ -8520,14 +9264,18 @@ msgstr "Hvem kan interagere med dette opslag?"
msgid "Who can reply"
msgstr "Hvem kan svare"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr "Hvem kan verificere?"
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "Ups!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr "Ups! Populære videoer kunne ikke indlæses."
@@ -8574,11 +9322,11 @@ msgstr "Hvorfor skal denne bruger gennemgås?"
msgid "Write a message"
msgstr "Skriv en besked"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Skriv dit opslag"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Skriv dit svar"
@@ -8588,11 +9336,16 @@ msgstr "Skriv dit svar"
msgid "Writers"
msgstr "Forfattere"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "Forkert DID returneret fra server. Modtog: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Ja"
@@ -8601,15 +9354,15 @@ msgstr "Ja"
msgid "Yes, deactivate"
msgstr "Ja, deaktiveret"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Ja, slet denne startpakke"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Ja, afkobl"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Ja, skjul"
@@ -8625,14 +9378,31 @@ msgstr "I går"
msgid "You"
msgstr "Dig"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr "Du er en autoriseret verifikator"
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
-msgstr ""
+msgstr "Du er ved at oprette en konto på"
#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
msgstr "Du er i kø."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr "Du er live"
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr "Du er ikke længere live"
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr "Du har ikke adgang til at gå live"
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "Du har ikke adgang til at uploade videoer."
@@ -8641,6 +9411,27 @@ msgstr "Du har ikke adgang til at uploade videoer."
msgid "You are not following anyone."
msgstr "Du følger ikke nogen."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr "Du er nu live!"
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr "Du er verificeret"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr "Du er verificeret. Du vil miste din verificering, hvis du ændrer dit profilnavn. <0>Læs mere.0>"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr "Du er verificeret. Du vil miste din verifikation, hvis du ændrer dit handle. <0>Læs mere.0>"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr "Du kan ændre dine interesser når som helst under Indhold og medier-indstillinger."
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr "Du kan angive standardinteraktionsindstillinger under <0>Indstillinger
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "Du kan opdatere dette senere under Indstillinger."
@@ -8682,7 +9472,7 @@ msgstr "Du har ikke nogen følgere."
msgid "You don't follow any users who follow @{name}."
msgstr "Du følger ikke nogen brugere, som følger @{name}"
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr "Du har pt. ingen chatanmodninger."
@@ -8736,24 +9526,24 @@ msgstr "Du har skjult denne konto."
msgid "You have muted this user"
msgstr "Du har skjult denne bruger"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "Du har endnu ingen samtaler. Start en!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "Du har ingen feeds."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "Du har ingen lister."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Du har endnu ikke blokeret nogen konti. Du kan blokere en konto ved at gå til profilen og vælge \"Bloker konto\" i menuen."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Du har endnu ikke skjult nogen konti. Du kan skjule en konto ved at gå til profilen og vælge \"Skjul konto\" i menuen."
@@ -8761,11 +9551,15 @@ msgstr "Du har endnu ikke skjult nogen konti. Du kan skjule en konto ved at gå
msgid "You have reached the end"
msgstr "Du er nået til slutningen"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr "Du har nu bekræftet din e-mailadresse. Du kan lukke denne dialog."
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Du har midlertidigt nået grænsen for videouploads. Prøv igen senere."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "Du har endnu ikke oprettet en startpakke!"
@@ -8787,22 +9581,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Du kan klage over disse mærkater, hvis du mener, de er sat ved en fejl."
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "Do må tilføje højst {STARTER_PACK_MAX_SIZE} profiler"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr "Du kan tilføje højst {STARTER_PACK_MAX_SIZE, plural, one {}other {{STARTER_PACK_MAX_SIZE} profiler}}"
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Du må tilføje højst 3 feeds"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "Du må vælge højst 4 billeder"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "Du skal være mindst 13 år gammel for at oprette dig"
+msgid "You must be 13 years of age or older to create an account."
+msgstr "Du skal være mindst 13 år gammel for at oprette en konto."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Du skal følge mindst syv andre konti for at oprette en startpakke."
@@ -8810,28 +9604,40 @@ msgstr "Du skal følge mindst syv andre konti for at oprette en startpakke."
msgid "You must grant access to your photo library to save a QR code"
msgstr "Du skal give adgang til dit fotobibliotek for at gemme en QR-kode"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "Du skal give adgang til dit fotobibliotek for at gemme billedet."
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "Du skal vælge mindst én mærkningstjeneste for at anmelde"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr "Du skal bekræfte din e-mailadresse, før du kan aktivere 2FA via e-mail."
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "Du har tidligere deaktiveret @{0}."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr "Du vil nok foretrække at genstarte appen nu."
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr "Du reagerede med {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr "Du reagerede med {0} på {1}"
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "Du vil blive logget ud af alle dine konti."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "Du vil ikke længere modtage notifikatoiner for denne tråd"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Du vil nu modtage notifikationer for denne tråd"
@@ -8839,23 +9645,23 @@ msgstr "Du vil nu modtage notifikationer for denne tråd"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Du vil modtage en e-mail med en nulstillingskode. Indtast koden her, og indtast så din nye adgangskode."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "Dig: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Dig: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "Dig: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "Du kommer til at følge de foreslåede brugere og feeds, når du har afsluttet oprettelsen af din konto!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "Du kommer til at følge de foreslåede brugere, når du har afsluttet oprettelsen af din konto!"
@@ -8867,7 +9673,7 @@ msgstr "Du følger disse konti og {0} andre"
msgid "You'll follow these people right away"
msgstr "Du kommer til at følge disse konti med det samme"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "Du vil modtage en e-mail på <0>{0}0> for at bekræfte, at det er dig."
@@ -8901,6 +9707,10 @@ msgstr "Du har fundet nogle personer, du kan følge"
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Du er nået enden af dit feed! Find flere konti, du kan føge."
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr "Du har nået det maksimalt tilladte antal forespørgsler. Prøv igen senere."
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Du har nået din daglige grænse for videouploads (for mange bytes)"
@@ -8909,11 +9719,11 @@ msgstr "Du har nået din daglige grænse for videouploads (for mange bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Du har nået din daglige grænse for videouploads (for mange videoer)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Du er løbet tør for videoer at se. Måske er det på tide at holde en pause?"
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "Din konto"
@@ -8941,7 +9751,7 @@ msgstr "Din konto overtræder <0>Bluesky Socials tjenestevilkår0>. Du har få
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr "Din klage er blevet afsendt. Hvis du får medhold i din klage, vil du få besked via e-mail."
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "Din fødselsdato"
@@ -8953,26 +9763,30 @@ msgstr "Din browser understøtter ikke dette videoformat. Prøv med en anden bro
msgid "Your chats have been disabled"
msgstr "Din adgang til chats er blevet deaktiveret"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "Dit valg vil blive gemt men kan ændres senere under indstillinger."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr "Dit valg vil blive anvendt for links fremover. Du kan når som helst ændre det under indstillinger."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "Dit nuværende handle, <0>{0}0>, vil automatisk blive reserveret til dig. Du kan når som helst skifte tilbage til dette handle."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr "Din e-mailadresse blev opdateret, men den er endnu ikke bekræftet. Næste trin er at bekræfte din e-mail."
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Din e-mail ser ud til at være ugyldig."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "Din e-mail er blevet opdateret men ikke godkendt. Du skal nu bekræfte din nye e-mail."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr "Din e-mail er endnu ikke bekræftet. Bekræft din e-mail for at få glæde af alle Blueskys muligheder."
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Din e-mail er endnu ikke bekræftet. Dette er et vigtigt sikkerhedselement, som vi anbefaler."
@@ -8988,14 +9802,31 @@ msgstr "Dine følgere"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Dit følgerfeed er tomt! Følg flere brugere for at se, hvad der foregår."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "Dit fulde handle bliver <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr "Dit fulde brugernavn bliver <0>@{0}0>"
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr "Dine interesser"
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr "Dine interesser blev opdateret!"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr "Dine interesser hjælper os med at finde noget, du kan lide!"
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Dine skjulte ord"
@@ -9004,15 +9835,15 @@ msgstr "Dine skjulte ord"
msgid "Your password has been changed successfully!"
msgstr "Din adgangskode blev ændret!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr "Din adgangskode skal bestå af mindst 8 tegn."
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "Dit opslag blev publiceret"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "Dine opslag blev publiceret"
@@ -9024,14 +9855,22 @@ msgstr "Dine opslag, likes og blokeringer er offentlige. Dine skjulte ord, tags
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Din profil, dine opslag, feeds og lister vil ikke længere kunne ses af andre Bluesky-brugere. Du kan genaktivere din konto når som helst ved at logge ind."
-#: src/view/com/composer/Composer.tsx:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Dit svar blev publiceret"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr "Din anmeldelse vil blive sendt til <0>{0}0>."
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Din anmeldelse vil blive sendt til Bluesky Moderationstjeneste"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr "Dine valgte interesser hjælper os med at vise dig relevant indhold."
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr "Dine verifikationer"
diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po
index 942a2e4179..3ded55d4d4 100644
--- a/src/locale/locales/de/messages.po
+++ b/src/locale/locales/de/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: de\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 16:40\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,58 +18,58 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
-msgstr ""
+msgstr "(aktiv)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(enthält eingebettete Inhalte)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(keine E-Mail)"
#: src/lib/hooks/useTimeAgo.ts:169
msgid "{0, plural, one {# day} other {# days}}"
-msgstr ""
+msgstr "{0, plural, one {# Tag} other {# Tage}}"
#: src/screens/Profile/ProfileFollowers.tsx:40
msgid "{0, plural, one {# follower} other {# followers}}"
-msgstr ""
+msgstr "{0, plural, one {# Follower} other {# Follower}}"
#: src/screens/Profile/ProfileFollows.tsx:40
msgid "{0, plural, one {# following} other {# following}}"
-msgstr ""
+msgstr "{0, plural, one {# Folge ich} other {# Folge ich}}"
#: src/lib/hooks/useTimeAgo.ts:159
msgid "{0, plural, one {# hour} other {# hours}}"
-msgstr ""
+msgstr "{0, plural, one {# Stunde} other {# Stunden}}"
#: src/components/moderation/LabelsOnMe.tsx:53
msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account"
-msgstr ""
+msgstr "{0, plural, one {# Kennzeichnung wurde} other {# Kennzeichnungen wurden}} diesem Account zugeordnet"
#: src/components/moderation/LabelsOnMe.tsx:62
msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content"
-msgstr ""
+msgstr "{0, plural, one {# Kennzeichnung wurde} other {# Kennzeichnungen wurden}} diesem Inhalt zugeordnet"
#: src/screens/Post/PostLikedBy.tsx:41
msgid "{0, plural, one {# like} other {# likes}}"
-msgstr ""
+msgstr "{0, plural, one {# Like} other {# Likes}}"
#: src/lib/hooks/useTimeAgo.ts:149
msgid "{0, plural, one {# minute} other {# minutes}}"
-msgstr ""
+msgstr "{0, plural, one {# Minute} other {# Minuten}}"
#: src/lib/hooks/useTimeAgo.ts:180
msgid "{0, plural, one {# month} other {# months}}"
-msgstr ""
+msgstr "{0, plural, one {# Monat} other {# Monate}}"
#: src/screens/Post/PostQuotes.tsx:41
msgid "{0, plural, one {# quote} other {# quotes}}"
-msgstr ""
+msgstr "{0, plural, one {# Zitat} other {# Zitate}}"
#: src/screens/Post/PostRepostedBy.tsx:41
msgid "{0, plural, one {# repost} other {# reposts}}"
@@ -77,79 +77,101 @@ msgstr "{0, plural, one {# Repost} other {# Reposts}}"
#: src/lib/hooks/useTimeAgo.ts:139
msgid "{0, plural, one {# second} other {# seconds}}"
-msgstr ""
+msgstr "{0, plural, one {# Sekunde} other {# Sekunden}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
-msgstr ""
+msgstr "{0, plural, one {# ungelesenes Element} other {# ungelesene Elemente}}"
#. How many months have passed, displayed in a narrow form
#: src/lib/hooks/useTimeAgo.ts:182
msgid "{0, plural, one {#mo} other {#mo}}"
-msgstr ""
+msgstr "{0, plural, one {#Mo} other {#Mo}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {Follower} other {Follower}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
-msgstr "{0, plural, one {Gefolgt} other {Gefolgt}}"
+msgstr "{0, plural, one {Folge ich} other {Folge ich}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {Like} other {Likes}}"
#: src/screens/Profile/Header/Metrics.tsx:58
msgid "{0, plural, one {post} other {posts}}"
-msgstr "{0, plural, one {Beitrag} other {Beiträge}}"
+msgstr "{0, plural, one {Post} other {Posts}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
-msgstr ""
+msgstr "{0, plural, one {Zitat} other {Zitate}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {Repost} other {Reposts}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, other {{1} Posts}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "{0, plural, other {# Personen haben}} dieses Starterpaket verwendet!"
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
-msgstr ""
+msgstr "{0} <0>in <1>Tags1>0>"
#. Pattern: {wordValue} in text, tags
#: src/components/dialogs/MutedWords.tsx:465
msgid "{0} <0>in <1>text & tags1>0>"
+msgstr "{0} <0>in <1>Text & Tags1>0>"
+
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr ""
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
msgstr ""
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
-msgstr "{0} sind diese Woche beigetreten"
+msgstr "{0} ist diese Woche beigetreten"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201
msgid "{0} of {1}"
-msgstr ""
+msgstr "{0} von {1}"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
-msgstr ""
+msgstr "{0} von 50"
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0} Personen haben dieses Startpaket bereits verwendet!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "{0} hat mit {1} reagiert"
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "{0} hat mit {1} auf {2} reagiert"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "Profilbild von {0}"
#: src/screens/StarterPack/Wizard/StepDetails.tsx:74
msgid "{0}'s favorite feeds and people - join me!"
-msgstr "Die Lieblings-Feeds und -Leute von {0} – mach mit!"
+msgstr "Lieblings-Feeds und Personen von {0} – mach mit!"
#: src/screens/StarterPack/Wizard/StepDetails.tsx:46
msgid "{0}'s starter pack"
@@ -175,9 +197,9 @@ msgstr "{0} Min."
msgid "{0}s"
msgstr "{0} Sek."
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
-msgstr ""
+msgstr "{count, plural, one {# ungelesenes Element} other {# ungelesene Elemente}}"
#: src/lib/generate-starterpack.ts:111
#: src/screens/StarterPack/Wizard/index.tsx:178
@@ -192,114 +214,223 @@ msgstr "{estimatedTimeHrs, plural, one {Stunde} other {Stunden}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {Minute} other {Minuten}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
-msgstr ""
+msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}}0> folgen dir"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
-msgstr ""
+msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterem} other {{formattedAuthorsCount} weiteren}}0> gefällt dein benutzerdefinierter Feed"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
+msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiteren} other {{formattedAuthorsCount} weiteren}}0> gefällt dein Post"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
+msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}}0> haben deinen Post repostet"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
+msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}}0> haben sich mit deinem Starterpaket registriert"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
-msgstr ""
+msgstr "{firstAuthorLink} folgt dir"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
-msgstr ""
+msgstr "{firstAuthorLink} folgt dir zurück"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
-msgstr ""
+msgstr "{firstAuthorLink} gefällt dein benutzerdefinierter Feed"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
+msgstr "{firstAuthorLink} gefällt dein Post"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr "{firstAuthorLink} hat die Verifizierung deines Accounts entfernt"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
+msgstr "{firstAuthorLink} hat deinen Post repostet"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr "{firstAuthorLink} hat dich verifiziert"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
-msgstr ""
+msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}} folgen dir"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
-msgstr ""
+msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiteren} other {{formattedAuthorsCount} weiteren}} gefällt dein benutzerdefinierter Feed"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
+msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiteren} other {{formattedAuthorsCount} weiteren}} gefällt dein Post"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
+msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}} haben deinen Post repostet"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
+msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}} haben sich mit deinem Starterpaket registriert"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
-msgstr ""
+msgstr "{firstAuthorName} folgt dir"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
-msgstr ""
+msgstr "{firstAuthorName} folgt dir zurück"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
-msgstr ""
+msgstr "{firstAuthorName} gefällt dein benutzerdefinierter Feed"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
+msgstr "{firstAuthorName} gefällt dein Post"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr "{firstAuthorName} hat die Verifizierung deines Accounts entfernt"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
+msgstr "{firstAuthorName} hat deinen Post repostet"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
-msgstr ""
+msgstr "{firstAuthorName} hat sich mit deinem Startpaket angemeldet"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr "{firstAuthorName} hat dich verifiziert"
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
-msgstr "{following} Gefolgt"
+msgstr "{following} Folge ich"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
-msgstr "{handle} kann keine Nachricht gesendet werden"
+msgstr "{handle} kann nicht angeschrieben werden"
+
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr ""
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "{joinedAllTimeCount, plural, other {# Nutzer sind}} beigetreten!"
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr ""
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
-msgstr ""
+msgstr "{notificationCount, plural, one {# ungelesenes Element} other {# ungelesene Elemente}}"
#: src/components/NewskieDialog.tsx:116
msgid "{profileName} joined Bluesky {0} ago"
-msgstr "{profileName} ist vor {0} Bluesky beigetreten"
+msgstr "{profileName} ist Bluesky vor {0} beigetreten"
#: src/components/NewskieDialog.tsx:111
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
-msgstr "{profileName} ist vor {0} Bluesky mit einem Startpaket beigetreten"
+msgstr "{profileName} ist Bluesky vor {0} mit einem Starterpaket beigetreten"
+
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "vor {type}h"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr "{userName} ist ein vertrauenswürdiger Verifizierer"
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr "{userName} ist verifiziert"
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr "Verifizierungen von {userName}"
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "+{computedTotal}"
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
@@ -309,13 +440,13 @@ msgstr "<0>{0}, 0><1>{1} 1>und {2, plural, one {# weitere Person} other {# w
#: src/screens/StarterPack/Wizard/index.tsx:502
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 {# weitere Person} other {# weitere Personen}} sind in deinem Startpaket enthalten"
+msgstr "<0>{0}, 0><1>{1} 1>und {2, plural, one {# weitere Person} other {# weitere Personen}} sind in deinem Starterpaket enthalten"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
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:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {Folge ich} other {Folge ich}}"
@@ -329,27 +460,27 @@ msgstr "<0>{0}0> ist in deinem Startpaket enthalten"
#: src/components/WhoCanReply.tsx:296
msgid "<0>{0}0> members"
-msgstr ""
+msgstr "<0>{0}0> Mitglieder"
#: src/components/dms/DateDivider.tsx:69
msgid "<0>{date}0> at {time}"
-msgstr ""
+msgstr "<0>{date}0> um {time}"
#: src/screens/Settings/NotificationSettings.tsx:85
msgid "<0>Experimental:0> 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 "<0>Experimentell:0> Wenn diese Einstellung aktiviert ist, erhältst du nur Mitteilungen zu Antworten und Zitaten von Nutzern, denen du folgst. Wir werden hier mit der Zeit weitere Einstellungsmöglichkeiten hinzufügen."
#: src/screens/StarterPack/Wizard/index.tsx:440
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
-msgstr "<0>Du0> und<1> 1><2>{0} 2>seid in deinem Startpaket enthalten"
+msgstr "<0>Du0> und<1> 1><2>{0} 2>sind in deinem Starterpaket enthalten"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Ungültiger Handle"
#: src/components/dialogs/MutedWords.tsx:193
msgid "24 hours"
-msgstr ""
+msgstr "24 Stunden"
#: src/screens/Login/LoginForm.tsx:268
msgid "2FA Confirmation"
@@ -357,105 +488,118 @@ msgstr "2FA Bestätigung"
#: src/components/dialogs/MutedWords.tsx:232
msgid "30 days"
-msgstr ""
+msgstr "30 Tage"
#: src/components/dialogs/MutedWords.tsx:217
msgid "7 days"
-msgstr ""
+msgstr "7 Tage"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "eine Nachricht"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr "Eine neue Form der Verifizierung"
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Über"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
-msgstr ""
+msgstr "Annehmen"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
-msgstr ""
+msgstr "Chat-Anfrage annehmen"
#. Accept a chat request
#: src/screens/Messages/components/RequestListItem.tsx:42
msgid "Accept Request"
-msgstr ""
+msgstr "Anfrage annehmen"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Barrierefreiheit"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
-msgstr "Einstellungen für Barrierefreiheit"
+msgstr "Barrierefreiheitseinstellungen"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
-msgstr "Konto"
+msgstr "Account"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "Account blockiert"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "Account gefolgt"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "Account stummgeschaltet"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
msgid "Account Muted"
-msgstr "Konto stummgeschaltet"
+msgstr "Account stummgeschaltet"
#: src/components/moderation/ModerationDetailsDialog.tsx:89
msgid "Account Muted by List"
-msgstr "Konto via Liste stummgeschaltet"
+msgstr "Account durch Liste stummgeschaltet"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
-msgstr "Kontoeinstellungen"
+msgstr "Account-Optionen"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
-msgstr "Konto aus dem Schnellzugriff entfernt"
+msgstr "Account aus dem Schnellzugriff entfernt"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "Account entblockt"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "Account entfolgt"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
+msgstr "Account nicht mehr stummgeschaltet"
+
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Hinzufügen"
@@ -473,19 +617,23 @@ msgstr "Füge {displayName} zum Startpaket hinzu"
msgid "Add a content warning"
msgstr "Inhaltswarnung hinzufügen"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
-msgstr "Einen Benutzer zu dieser Liste hinzufügen"
+msgstr "Füge einen Nutzer zu dieser Liste hinzu"
#: src/components/dialogs/SwitchAccount.tsx:55
#: src/screens/Deactivated.tsx:192
msgid "Add account"
-msgstr "Konto hinzufügen"
+msgstr "Account hinzufügen"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,24 +641,24 @@ msgstr "Konto hinzufügen"
msgid "Add alt text"
msgstr "Alt-Text hinzufügen"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
-msgstr ""
+msgstr "Alt-Text hinzufügen (optional)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
-msgstr "Anderen Account hinzufügen"
+msgstr "Füge einen weiteren Account hinzu"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
-msgstr ""
+msgstr "Einen weiteren Post hinzufügen"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:102
msgid "Add app password"
-msgstr ""
+msgstr "App-Passwort hinzufügen"
#: src/screens/Settings/AppPasswords.tsx:75
#: src/screens/Settings/AppPasswords.tsx:83
@@ -518,27 +666,39 @@ msgstr ""
msgid "Add App Password"
msgstr "App-Passwort hinzufügen"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr "Emoji-Reaktion hinzufügen"
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
-msgstr ""
+msgstr "Weitere Details hinzufügen (optional)"
#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word with chosen settings"
-msgstr ""
+msgstr "Stummgeschaltetes Wort mit den gewählten Einstellungen hinzufügen"
#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr "Stummgeschaltete Wörter und Tags hinzufügen"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
+msgstr "Neuen Post hinzufügen"
+
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
+msgid "Add people"
+msgstr "Personen hinzufügen"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
msgstr ""
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
-msgid "Add people"
-msgstr ""
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr "Reaktion hinzufügen"
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
@@ -552,27 +712,28 @@ msgstr "Füge deinem Startpaket einige Feeds hinzu!"
msgid "Add the default feed of only people you follow"
msgstr "Füge den Standard-Feed nur von Personen, denen du folgst, hinzu"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Füge den folgenden DNS-Eintrag zu deiner Domain hinzu:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Füge diesen Feed zu deinen Feeds hinzu"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
-msgstr ""
-
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
msgstr "Zu Listen hinzufügen"
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Zu meinen Feeds hinzufügen"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr "Nutzer zur Liste hinzufügen"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Zur Liste hinzugefügt"
@@ -581,22 +742,22 @@ msgstr "Zur Liste hinzugefügt"
msgid "Added to my feeds"
msgstr "Zu meinen Feeds hinzugefügt"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
-msgstr ""
+msgstr "Zusätzliche Details (max. 300 Zeichen)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
-msgstr ""
+msgstr "Für Erwachsene"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Inhalt für Erwachsene"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
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."
@@ -604,30 +765,35 @@ 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/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
-msgstr ""
+msgstr "Kennzeichnungen für Inhalt für Erwachsene"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Erweitert"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr ""
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
-msgstr ""
+msgstr "Alle"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
-msgstr "Allen Konten wurden gefolgt!"
+msgstr "Alle Accounts wurden gefolgt!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
-msgstr ""
+msgstr "Alle Sprachen"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "All deine gespeicherten Feeds an einem Ort."
@@ -643,11 +809,11 @@ msgstr "Erlaube neue Nachrichten von"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344
msgid "Allow quote posts"
-msgstr ""
+msgstr "Zitieren dieses Posts erlauben"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389
msgid "Allow replies from:"
-msgstr ""
+msgstr "Antworten erlauben von:"
#: src/screens/Settings/AppPasswords.tsx:200
msgid "Allows access to direct messages"
@@ -666,15 +832,15 @@ msgstr "Bereits angemeldet als @{0}"
#: src/view/com/composer/photos/Gallery.tsx:187
#: src/view/com/util/post-embeds/GifEmbed.tsx:186
msgid "ALT"
-msgstr ""
+msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Alt-Text"
@@ -688,86 +854,97 @@ msgstr "Alt-Text beschreibt Bilder für blinde und sehbehinderte Benutzer und hi
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr ""
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr "Alt-Text wird gekürzt. {MAX_ALT_TEXT, plural, other {Limit: {0} Zeichen.}}"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "Eine E-Mail wurde an {0} gesendet. Sie enthält einen Bestätigungscode, den du unten eingeben kannst."
-#: src/view/com/modals/ChangeEmail.tsx:114
-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/VerifyEmailDialog.tsx:91
-msgid "An email has been sent! Please enter the confirmation code included in the email below."
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
msgstr ""
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
+msgid "An email has been sent! Please enter the confirmation code included in the email below."
+msgstr "Eine E-Mail wurde versendet! Bitte gib unten den Bestätigungscode aus der E-Mail ein."
+
#: src/components/dialogs/GifSelect.tsx:265
msgid "An error has occurred"
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420
msgid "An error occurred"
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten"
#: src/view/com/composer/state/video.ts:398
msgid "An error occurred while compressing the video."
-msgstr ""
+msgstr "Beim Komprimieren des Videos ist ein Fehler aufgetreten."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr "Beim Abrufen des Feeds ist ein Fehler aufgetreten."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
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:160
msgid "An error occurred while loading the video. Please try again later."
-msgstr ""
+msgstr "Beim Laden des Videos ist ein Fehler aufgetreten. Bitte versuche es später erneut."
#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198
msgid "An error occurred while loading the video. Please try again."
-msgstr ""
+msgstr "Beim Laden des Videos ist ein Fehler aufgetreten. Bitte versuche es erneut."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: 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/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
-msgstr ""
+msgstr "Bei der Auswahl des Videos ist ein Fehler aufgetreten"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "Beim Versuch, allen zu folgen, ist ein Fehler aufgetreten."
#: src/view/com/composer/state/video.ts:435
msgid "An error occurred while uploading the video."
-msgstr ""
+msgstr "Beim Hochladen des Videos ist ein Fehler aufgetreten."
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr "Eine Illustration, die zeigt, dass Bluesky vertrauenswürdige Verifizierer auswählt und diese wiederum einzelne Nutzeraccounts verifizieren."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Ein Problem, das hier nicht aufgelistet ist"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
-msgstr ""
+msgstr "Beim Starten des Chats ist ein Problem aufgetreten"
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47
msgid "An issue occurred while trying to open the chat"
-msgstr ""
+msgstr "Beim Öffnen des Chats ist ein Problem aufgetreten"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Ein Problem ist aufgetreten, bitte versuche es erneut."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "Ein unbekannter Fehler ist aufgetreten"
@@ -775,7 +952,7 @@ msgstr "Ein unbekannter Fehler ist aufgetreten"
#: src/components/moderation/ModerationDetailsDialog.tsx:134
#: src/lib/moderation/useModerationCauseDescription.ts:144
msgid "an unknown labeler"
-msgstr ""
+msgstr "ein unbekannter Kennzeichner"
#: src/components/WhoCanReply.tsx:317
msgid "and"
@@ -790,6 +967,10 @@ msgstr "Tiere"
msgid "Animated GIF"
msgstr "Animiertes GIF"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr "Ankündigung der Verifizierung auf Bluesky"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,44 +980,44 @@ msgstr "Asoziales Verhalten"
msgid "Anybody can interact"
msgstr "Jeder kann interagieren"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
-msgstr ""
+msgstr "App-Symbol"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "App-Sprache"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122
msgid "App Password"
-msgstr ""
+msgstr "App-Passwort"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "App-Passwort gelöscht"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
-msgstr ""
+msgstr "Der Name des App-Passworts muss eindeutig sein"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62
msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores"
-msgstr ""
+msgstr "App-Passwortnamen dürfen nur Buchstaben, Zahlen, Leerzeichen, Bindestriche und Unterstriche enthalten"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80
msgid "App password names must be at least 4 characters long"
-msgstr ""
+msgstr "Namen von App-Passwörtern müssen mindestens 4 Zeichen enthalten"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66
msgid "App passwords"
-msgstr ""
+msgstr "App-Passwörter"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "App-Passwörter"
@@ -854,16 +1035,16 @@ msgstr "Kennzeichnung „{0}” anfechten"
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "Einspruch eingereicht"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
msgid "Appeal suspension"
-msgstr ""
+msgstr "Suspendierung anfechten"
#: src/screens/Takendown.tsx:114
msgid "Appeal Suspension"
-msgstr ""
+msgstr "Suspendierung anfechten"
#: src/screens/Messages/components/ChatDisabled.tsx:51
#: src/screens/Messages/components/ChatDisabled.tsx:53
@@ -872,10 +1053,10 @@ msgstr ""
msgid "Appeal this decision"
msgstr "Einspruch gegen diese Entscheidung"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Erscheinungsbild"
@@ -884,34 +1065,34 @@ msgstr "Erscheinungsbild"
msgid "Apply default recommended feeds"
msgstr "Standardmäßig empfohlene Feeds anwenden"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
-msgstr ""
+msgstr "Archiviert von {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
-msgstr ""
+msgstr "Archivierter Post"
#: src/screens/Settings/AppPasswords.tsx:209
msgid "Are you sure you want to delete the app password \"{0}\"?"
-msgstr ""
+msgstr "Bist du sicher, dass du das App-Passwort „{0}“ löschen möchtest?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
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:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "Möchtest du dieses Startpaket wirklich löschen?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
-msgstr ""
+msgstr "Bist du sicher, dass du deine Änderungen verwerfen möchtest?"
#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation?"
-msgstr ""
+msgstr "Bist du sicher, dass du diese Konversation verlassen möchtest?"
#: src/components/dms/LeaveConvoPrompt.tsx:45
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
@@ -921,54 +1102,59 @@ msgstr "Möchtest du diese Konversation wirklich verlassen? Deine Nachrichten we
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:312
+#: src/components/FeedCard.tsx:340
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:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "Bist du sicher, dass du diesen Entwurf verwerfen möchtest?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
-msgstr ""
+msgstr "Bist du sicher, dass du diesen Post verwerfen möchtest?"
#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "Bist du sicher?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
-msgstr ""
+msgstr "Schreibst du auf <0>{suggestedLanguageName}0>?"
#: src/screens/Onboarding/index.tsx:23
#: src/screens/Onboarding/state.ts:95
msgid "Art"
msgstr "Kunst"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Künstlerische oder nicht-erotische Nacktheit."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "Mindestens 3 Zeichen"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40
msgctxt "Name of app icon variant"
msgid "Aurora"
-msgstr ""
+msgstr "Aurora"
#: src/screens/Settings/AccessibilitySettings.tsx:105
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
-msgstr ""
+msgstr "Optionen für Autoplay wurden in die <0>Inhalts- und Medien-Einstellungen0> verschoben."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
-msgstr ""
+msgstr "Videos und GIFs automatisch abspielen"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,163 +1167,164 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Zurück"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
-msgstr ""
+msgstr "Zurück zu Chats"
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
+msgstr "Bevor du eine Liste erstellen kannst, musst du zuerst deine E-Mail verifizieren."
+
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
msgstr ""
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr ""
-
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Geburtstag"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Blockieren"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
-msgstr "Konto blockieren"
+msgstr "Account blockieren"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
-msgstr "Konto blockieren?"
+msgstr "Account blockieren?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
-msgstr "Konten blockieren"
+msgstr "Accounts blockieren"
#: src/components/dms/ReportDialog.tsx:317
msgid "Block and Delete"
-msgstr ""
+msgstr "Blockieren und löschen"
#: src/components/dms/ReportDialog.tsx:352
msgid "Block and/or delete this conversation"
-msgstr ""
+msgstr "Diese Konversation blockieren und/oder löschen"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Blockliste"
#: src/screens/Messages/components/ChatStatusInfo.tsx:46
msgid "Block or report"
-msgstr ""
+msgstr "Blockieren oder melden"
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
-msgstr "Diese Konten blockieren?"
+msgstr "Diese Accounts blockieren?"
#: src/components/dms/ReportDialog.tsx:356
#: src/components/dms/ReportDialog.tsx:359
msgid "Block user"
-msgstr ""
+msgstr "Nutzer blockieren"
#: src/components/dms/ReportDialog.tsx:323
msgid "Block User"
-msgstr ""
+msgstr "Nutzer blockieren"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
msgid "Blocked"
msgstr "Blockiert"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
-msgstr "Blockierte Konten"
+msgstr "Blockierte Accounts"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
-msgstr "Blockierte Konten"
+msgstr "Blockierte Accounts"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
-msgstr "Blockierte Konten können nicht in deinen Threads antworten, dich erwähnen oder anderweitig mit dir interagieren."
+msgstr "Blockierte Accounts können nicht in deinen Threads antworten, dich erwähnen oder anderweitig mit dir interagieren."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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."
+msgstr "Blockierte Accounts 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:468
msgid "Blocked post."
-msgstr "Blockierter Beitrag."
+msgstr "Blockierter Post."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
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."
+msgstr "Blockieren hindert diesen Kennzeichnungsdienst nicht daran, Kennzeichnungen zu deinem Account hinzuzufügen."
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
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."
+msgstr "Die Blockierung ist öffentlich. Blockierte Accounts können nicht in deinen Threads antworten, dich erwähnen oder anderweitig mit dir interagieren."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
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."
+msgstr "Blockieren verhindert nicht, dass Kennzeichnungen zu deinem Account hinzugefügt werden, verhindert aber, dass dieser Account in deinen Threads antworten oder interagieren kann."
-#: src/view/com/auth/SplashScreen.web.tsx:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
-msgstr ""
+msgstr "Blog"
#: src/view/com/auth/server-input/index.tsx:136
#: src/view/com/auth/server-input/index.tsx:137
msgid "Bluesky"
-msgstr ""
+msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
-msgstr ""
+msgstr "Bluesky kann die Echtheit des angegebenen Datums nicht bestätigen."
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129
msgctxt "Name of app icon variant"
msgid "Bluesky Classic™"
-msgstr ""
+msgstr "Bluesky Classic™"
#: src/view/com/auth/server-input/index.tsx:212
msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server."
-msgstr ""
+msgstr "Bluesky ist ein offenes Netzwerk, bei dem du deinen Hosting-Anbieter auswählen kannst. Wenn du Entwickler bist, kannst du deinen eigenen Server hosten."
#: src/view/com/auth/server-input/index.tsx:149
msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option."
-msgstr ""
+msgstr "Bluesky ist ein offenes Netzwerk, bei dem du deinen eigenen Anbieter auswählen kannst. Wenn du neu hier bist, empfehlen wir dir, bei der Standardoption Bluesky Social zu bleiben."
#: src/components/ProgressGuide/List.tsx:53
#: src/components/ProgressGuide/List.tsx:70
@@ -1146,23 +1333,27 @@ msgstr "Mit Freunden ist Bluesky besser!"
#: src/screens/Takendown.tsx:217
msgid "Bluesky Social Terms of Service"
-msgstr ""
+msgstr "Bluesky Social Nutzungsbedingungen"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
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."
+msgstr "Bluesky wählt eine Reihe von empfohlenen Accounts von Personen in deinem Netzwerk aus."
#: src/screens/Settings/components/PwiOptOut.tsx:99
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."
+msgstr "Bluesky zeigt dein Profil und deine Posts nicht für ausgeloggte Nutzer an. Andere Apps kommen dieser Aufforderung möglicherweise nicht nach."
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr "Bluesky wird proaktiv bekannte und authentische Accounts verifizieren."
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
-msgstr ""
+msgstr "Bluesky+"
#: src/screens/Settings/AppIconSettings/index.tsx:102
msgid "Bluesky+ icons"
-msgstr ""
+msgstr "Bluesky+-Symbole"
#: src/lib/moderation/useLabelBehaviorDescription.ts:53
msgid "Blur images"
@@ -1177,23 +1368,23 @@ msgstr "Bilder verwischen und aus Feeds herausfiltern"
msgid "Books"
msgstr "Bücher"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
-msgstr "Stöbere auf der Seite „Explore” nach weiteren Konten"
+msgstr ""
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "Stöbere auf der Seite „Explore” in weiteren Feeds"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Weitere Vorschläge anzeigen"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "Stöbere auf der Seite „Explore” nach weiteren Vorschlägen"
@@ -1204,83 +1395,96 @@ msgstr "Andere Feeds durchsuchen"
#: src/components/TrendingTopics.tsx:178
msgid "Browse posts about {displayName}"
-msgstr ""
+msgstr "Posts über {displayName} durchsuchen"
#: src/components/TrendingTopics.tsx:186
msgid "Browse posts tagged with {displayName}"
-msgstr ""
+msgstr "Posts durchsuchen, die mit {displayName} getaggt sind"
#: src/components/TrendingTopics.tsx:195
msgid "Browse starter pack {displayName}"
-msgstr ""
+msgstr "Startpaket {displayName} durchsuchen"
+
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr "Thema {0} durchsuchen"
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
-msgstr ""
+msgstr "Thema {displayName} durchsuchen"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
-msgstr ""
+msgstr "Unternehmen"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "Von {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
-msgstr ""
+msgstr "Von <0>{0}0>"
#: src/screens/Signup/StepInfo/Policies.tsx:81
msgid "By creating an account you agree to the <0>Privacy Policy0>."
-msgstr ""
+msgstr "Mit der Erstellung eines Accounts stimmst du der <0>Datenschutzerklärung0> zu."
#: src/screens/Signup/StepInfo/Policies.tsx:48
msgid "By creating an account you agree to the <0>Terms of Service0> and <1>Privacy Policy1>."
-msgstr ""
+msgstr "Mit der Erstellung eines Accounts stimmst du den <0>Nutzungsbedingungen0> und der <1>Datenschutzerklärung1> zu."
#: src/screens/Signup/StepInfo/Policies.tsx:68
msgid "By creating an account you agree to the <0>Terms of Service0>."
-msgstr ""
+msgstr "Mit der Erstellung eines Accounts stimmst du den <0>Nutzungsbedingungen0> zu."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr "Von dir"
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Kamera"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Abbrechen"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1290,26 +1494,25 @@ msgstr "Abbrechen"
#: src/view/com/modals/DeleteAccount.tsx:166
#: src/view/com/modals/DeleteAccount.tsx:274
msgid "Cancel account deletion"
-msgstr "Kontolöschung abbrechen"
+msgstr "Account-Löschung abbrechen"
#: src/view/com/modals/CropImage.web.tsx:94
msgid "Cancel image crop"
msgstr "Bildbeschneidung abbrechen"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Profilbearbeitung abbrechen"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
-msgstr "Beitrag zitieren abbrechen"
+msgstr "Post zitieren abbrechen"
#: src/screens/Deactivated.tsx:152
msgid "Cancel reactivation and sign out"
-msgstr ""
+msgstr "Reaktivierung abbrechen und ausloggen"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Suche abbrechen"
@@ -1317,120 +1520,113 @@ msgstr "Suche abbrechen"
msgid "Cancels opening the linked website"
msgstr "Bricht das Öffnen der verlinkten Website ab"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
-msgstr ""
+msgstr "Kann nicht mit einem blockierten Nutzer interagieren"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
-msgstr ""
+msgstr "Untertitel (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
-msgstr ""
+msgstr "Untertitel und Alt-Text"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Ändern"
#: src/screens/Settings/AppIconSettings/index.tsx:39
msgid "Change app icon"
-msgstr ""
+msgstr "App-Symbol ändern"
#: src/screens/Settings/AppIconSettings/index.tsx:38
#: src/screens/Settings/AppIconSettings/index.tsx:221
msgid "Change app icon to \"{0}\""
+msgstr "App-Symbol zu „{0}“ ändern"
+
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr ""
-
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
-msgstr ""
+msgstr "E-Mail-Adresse ändern"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Handle ändern"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
-msgstr ""
-
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Meine E-Mail ändern"
+msgstr "Moderationsdienst ändern"
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Passwort ändern"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
-msgstr ""
+msgstr "Sprache des Posts auf {suggestedLanguageName} ändern"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
-msgstr ""
+msgstr "Grund für Meldung ändern"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Deine E-Mail ändern"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
-msgstr ""
+msgstr "Ändere deine E-Mail-Adresse"
#: src/screens/Settings/AppIconSettings/index.tsx:216
msgid "Changes app icon"
-msgstr ""
+msgstr "Ändert das App-Symbol"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
-msgstr ""
+msgstr "Ändert den Hosting-Anbieter"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
-msgstr ""
+msgstr "Chat"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
-msgstr ""
+msgstr "Chat gelöscht"
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "Chat stummgeschaltet"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
-msgstr ""
+msgstr "Posteingang für Chat-Anfragen"
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
-msgstr ""
+msgstr "Chat-Anfragen"
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Chat-Einstellungen"
@@ -1441,12 +1637,12 @@ msgstr "Chat-Einstellungen"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "Chat nicht mehr stummgeschaltet"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
-msgstr ""
+msgstr "Chats"
#: src/screens/SignupQueued.tsx:78
#: src/screens/SignupQueued.tsx:82
@@ -1455,21 +1651,21 @@ msgstr "Meinen Status prüfen"
#: src/screens/Login/LoginForm.tsx:301
msgid "Check your email for a sign in code and enter it here."
-msgstr ""
+msgstr "Schau in deinem E-Mail-Postfach nach einem Anmeldecode und gib ihn hier ein."
#: src/view/com/modals/DeleteAccount.tsx:213
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/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
-msgstr ""
+msgstr "Wähle eine Methode zur Domain-Verifizierung"
#: src/screens/StarterPack/Wizard/index.tsx:194
msgid "Choose Feeds"
msgstr "Feeds wählen"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Wähle für mich"
@@ -1477,10 +1673,6 @@ msgstr "Wähle für mich"
msgid "Choose People"
msgstr "Menschen auswählen"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr ""
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Wähle die Algorithmen aus, welche deine benutzerdefinierten Feeds generieren."
@@ -1491,29 +1683,33 @@ msgstr "Wähle diese Farbe als Avatar"
#: src/view/com/auth/server-input/index.tsx:130
msgid "Choose your account provider"
-msgstr ""
+msgstr "Wähle deinen Account-Anbieter"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
-msgstr ""
+msgstr "Wähle deine eigene Zeitleiste! Feeds von der Community helfen dir, Inhalte zu finden, die dir gefallen."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Wähle dein Passwort"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
-msgstr "Dein Benutzerhandle"
+msgstr "Wähle deinen Nutzernamen"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Alle Speicherdaten löschen"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Alle Speicherdaten löschen (danach neu starten)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr "Bildcache leeren"
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Suchanfrage löschen"
@@ -1522,19 +1718,27 @@ msgstr "Suchanfrage löschen"
msgid "click here"
msgstr "hier klicken"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
-msgstr ""
+msgstr "Klicke, um Zitate dieses Posts zu deaktivieren."
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338
msgid "Click to enable quote posts of this post."
-msgstr ""
+msgstr "Klicke, um Zitate dieses Posts zu aktivieren."
#: src/components/RichTextTag.tsx:54
msgid "Click to open tag menu for {tag}"
-msgstr ""
+msgstr "Klicken, um das Tag-Menü für {tag} zu öffnen"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden"
@@ -1546,24 +1750,34 @@ msgstr "Klima"
msgid "Clip 🐴 clop 🐴"
msgstr "Klipp 🐴 klapp 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Schließen"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Aktiven Dialog schließen"
@@ -1576,17 +1790,19 @@ msgid "Close bottom drawer"
msgstr "Untere Schublade schließen"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Dialog schließen"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
-msgstr ""
+msgstr "Seitenmenü schließen"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
-msgstr ""
+msgstr "Emoji-Auswahl schließen"
#: src/components/dialogs/GifSelect.tsx:169
msgid "Close GIF dialog"
@@ -1600,39 +1816,49 @@ msgstr "Bild schließen"
msgid "Close image viewer"
msgstr "Bildbetrachter schließen"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr "Menü schließen"
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Diesen Dialog schließen"
#: src/screens/Login/PasswordUpdatedForm.tsx:32
msgid "Closes password update alert"
-msgstr "Schließt die Kennwortaktualisierungsmeldung"
+msgstr "Schließt die Passwort-Update-Benachrichtigung"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr "Schließt den Post-Composer und verwirft den Post-Entwurf"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
-msgstr ""
+msgstr "Schließt die Emoji-Auswahl"
#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:32
msgid "Closes viewer for header image"
msgstr "Schließt den Betrachter für das Banner"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Liste der Benutzer einklappen"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Klappt die Liste der Benutzer für eine bestimmte Meldung zusammen"
#: src/components/dialogs/Embed.tsx:154
#: src/screens/Settings/AppearanceSettings.tsx:93
msgid "Color mode"
-msgstr ""
+msgstr "Farbmodus"
#: src/components/dialogs/Embed.tsx:151
msgid "Color theme"
-msgstr ""
+msgstr "Farbschema"
#: src/screens/Onboarding/index.tsx:38
#: src/screens/Onboarding/state.ts:97
@@ -1642,36 +1868,36 @@ msgstr "Komödie"
#: src/screens/Onboarding/index.tsx:24
#: src/screens/Onboarding/state.ts:98
msgid "Comics"
-msgstr ""
+msgstr "Comics"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Community-Richtlinien"
#: src/screens/Onboarding/StepFinished.tsx:311
msgid "Complete onboarding and start using your account"
-msgstr "Schließe das Onboarding ab und nutze dein Konto"
+msgstr "Schließe das Onboarding ab und nutze deinen Account"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Schließe die Herausforderung ab"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
-msgstr ""
+msgstr "Neuen Post verfassen"
-#: src/view/com/composer/Composer.tsx:834
-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/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr "Verfasse Posts mit einer Länge von bis zu {0, plural, other {# Zeichen}}"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Antwort verfassen"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
-msgstr ""
+msgstr "Video wird komprimiert..."
#: src/components/moderation/LabelPreference.tsx:82
msgid "Configure content filtering setting for category: {name}"
@@ -1681,90 +1907,85 @@ msgstr "Konfiguriere die Inhaltsfilterung für die Kategorie: {name}"
msgid "Configured in <0>moderation settings0>."
msgstr "Konfiguriert in <0>Moderationseinstellungen0>"
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Bestätigen"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Änderung bestätigen"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Bestätige die Spracheinstellungen für den Inhalt"
#: src/view/com/modals/DeleteAccount.tsx:264
msgid "Confirm delete account"
-msgstr "Bestätige das Löschen des Kontos"
+msgstr "Bestätige das Löschen des Accounts"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Bestätige dein Alter:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Bestätige dein Geburtsdatum"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Bestätigungscode"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
-msgstr ""
+msgstr "Bestätigungscode"
#: src/screens/Login/LoginForm.tsx:337
msgid "Connecting..."
msgstr "Verbinden…"
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Support kontaktieren"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
-msgstr ""
+msgstr "Inhalte und Medien"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Inhalte und Medien"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
-msgstr ""
+msgstr "Inhalte und Medien"
#: src/lib/moderation/useGlobalLabelStrings.ts:18
msgid "Content Blocked"
msgstr "Inhalt blockiert"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Inhaltsfilterung"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
-msgstr ""
+msgstr "Inhalte aus dem gesamten Netzwerk, von denen wir glauben, dass sie dir gefallen könnten."
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Inhaltssprachen"
@@ -1785,16 +2006,16 @@ msgstr "Inhaltswarnung"
msgid "Content warnings"
msgstr "Inhaltswarnungen"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
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:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Fortfahren"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Fortfahren als {0} (noch angemeldet)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Thread fortsetzen…"
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Weiter zum nächsten Schritt"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Konversation gelöscht"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Konversation gelöscht"
@@ -1826,16 +2047,17 @@ msgstr "Kochen"
msgid "Copied"
msgstr "Kopiert"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Die Build-Version wurde in die Zwischenablage kopiert"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "In die Zwischenablage kopiert"
@@ -1844,84 +2066,100 @@ msgstr "In die Zwischenablage kopiert"
msgid "Copied!"
msgstr "Kopiert!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
-msgstr ""
+msgstr "Kopiert die Build-Version in die Zwischenablage"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Kopieren"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr ""
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
-msgstr ""
+msgstr "App-Passwort kopieren"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
-msgstr ""
+msgstr "at://-URI kopieren"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
-msgstr ""
+msgstr "DID des Autors kopieren"
#: src/components/dialogs/Embed.tsx:189
#: src/components/dialogs/Embed.tsx:206
msgid "Copy code"
msgstr "Kopiere den Code"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
-msgstr ""
+msgstr "DID kopieren"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
-msgstr ""
+msgstr "Host kopieren"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Link kopieren"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Link kopieren"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Link zur Liste kopieren"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
-msgstr "Link zum Beitrag kopieren"
+msgstr "Link zum Post kopieren"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Nachrichtentext kopieren"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
-msgstr ""
+msgstr "at://-URI des Posts kopieren"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
-msgstr "Beitragstext kopieren"
+msgstr "Post-Text kopieren"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "QR-Code kopieren"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
-msgstr ""
+msgstr "TXT-Eintragswert kopieren"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Urheberrechtsbestimmungen"
@@ -1931,11 +2169,11 @@ msgstr "Urheberrechtsbestimmungen"
msgid "Could not leave chat"
msgstr "Du konntest den Chat nicht verlassen"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "Feed konnte nicht geladen werden"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "Liste konnte nicht geladen werden"
@@ -1945,60 +2183,65 @@ msgstr "Chat konnte nicht stummgeschaltet werden"
#: src/view/com/composer/videos/VideoPreview.web.tsx:66
msgid "Could not process your video"
-msgstr ""
+msgstr "Video konnte nicht verarbeitet werden"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Erstellen"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "QR-Code für ein Startpaket erstellen"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Ein Startpaket erstellen"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Ein Startpaket für mich erstellen"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
-msgstr "Registrieren"
+msgstr "Account erstellen"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
-msgstr "Konto erstellen"
+msgstr "Account erstellen"
#: src/components/dialogs/Signin.tsx:86
#: src/components/dialogs/Signin.tsx:88
msgid "Create an account"
-msgstr "Ein Konto erstellen"
+msgstr "Einen Account erstellen"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr "Erstelle einen Account, ohne dieses Starterpaket zu verwenden"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Stattdessen einen Avatar erstellen"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Ein weiteres erstellen"
#: src/view/com/auth/SplashScreen.tsx:47
#: src/view/com/auth/SplashScreen.web.tsx:109
msgid "Create new account"
-msgstr "Neues Konto erstellen"
+msgstr "Neuen Account erstellen"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Meldung für {0} erstellen"
@@ -2009,7 +2252,7 @@ msgstr "Erstellt {0}"
#: src/screens/List/ListHiddenScreen.tsx:127
msgid "Creator has been blocked"
-msgstr ""
+msgstr "Ersteller wurde blockiert"
#: src/screens/Onboarding/index.tsx:26
#: src/screens/Onboarding/state.ts:99
@@ -2023,15 +2266,15 @@ msgstr "Benutzerdefiniert"
#: src/components/dialogs/Embed.tsx:144
msgid "Customization options"
-msgstr ""
+msgstr "Anpassungsoptionen"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103
msgid "Customize who can interact with this post."
-msgstr ""
+msgstr "Anpassen, wer mit diesem Post interagieren kann."
#: src/screens/Onboarding/Layout.tsx:56
msgid "Customizes your Bluesky experience"
-msgstr ""
+msgstr "Passt dein Bluesky-Erlebnis individuell an"
#: src/components/dialogs/Embed.tsx:167
#: src/components/dialogs/Embed.tsx:169
@@ -2047,23 +2290,23 @@ msgstr "Dunkel"
#: src/view/screens/Debug.tsx:69
msgid "Dark mode"
-msgstr "Dunkler Modus"
+msgstr "Dunkelmodus"
#: src/screens/Settings/AppearanceSettings.tsx:118
msgid "Dark theme"
-msgstr ""
+msgstr "Dunkles Farbschema"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Geburtsdatum"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
-msgstr "Konto deaktivieren"
+msgstr "Account deaktivieren"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Debug-Moderation"
@@ -2077,27 +2320,27 @@ msgstr "Standard"
#: src/screens/Settings/AppIconSettings/index.tsx:75
msgid "Default icons"
-msgstr ""
+msgstr "Standardsymbole"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Löschen"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
-msgstr "Konto löschen"
+msgstr "Account löschen"
#: src/view/com/modals/DeleteAccount.tsx:101
msgid "Delete Account <0>\"0><1>{0}1><2>\"2>"
-msgstr "Konto <0>„0><1>{0}1><2>”2> löschen"
+msgstr "Account <0>„0><1>{0}1><2>“2> löschen"
#: src/screens/Settings/AppPasswords.tsx:187
msgid "Delete app password"
@@ -2107,135 +2350,144 @@ msgstr "App-Passwort löschen"
msgid "Delete app password?"
msgstr "App-Passwort löschen?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
-msgstr ""
+msgstr "Chat löschen"
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Datensatz für die Chat-Erklärung löschen"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
-msgstr ""
+msgstr "Konversation löschen"
#: src/components/dms/ReportDialog.tsx:320
msgid "Delete Conversation"
-msgstr ""
+msgstr "Konversation löschen"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Für mich löschen"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
msgstr "Liste löschen"
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Nachricht löschen"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Nachricht für mich löschen"
#: src/view/com/modals/DeleteAccount.tsx:267
msgid "Delete my account"
-msgstr "Mein Konto löschen"
+msgstr "Meinen Account löschen"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
-msgstr "Beitrag löschen"
+msgstr "Post löschen"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Startpaket löschen"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "Startpaket löschen?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "Diese Liste löschen?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
-msgstr "Diesen Beitrag löschen?"
+msgstr "Diesen Post löschen?"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94
msgid "Deleted"
msgstr "Gelöscht"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Gelöschter Account"
#: src/view/com/post-thread/PostThread.tsx:454
msgid "Deleted post."
-msgstr "Gelöschter Beitrag."
+msgstr "Gelöschter Post."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Beschreibung"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "Beschreibung ist zu lang"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr ""
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Beschreibung ist zu lang. {DESCRIPTION_MAX_GRAPHEMES, plural, other {Die maximale Anzahl an Zeichen beträgt #.}}"
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Beschreibender Alt-Text"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
-msgstr ""
+msgstr "Zitat trennen"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
-msgstr ""
+msgstr "Entwicklermodus deaktiviert"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
-msgstr ""
+msgstr "Entwicklermodus aktiviert"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Entwickleroptionen"
#: src/components/WhoCanReply.tsx:179
msgid "Dialog: adjust who can interact with this post"
-msgstr ""
+msgstr "Dialog: Anpassen, wer mit diesem Post interagieren kann"
#: src/screens/Settings/AppearanceSettings.tsx:122
msgid "Dim"
msgstr "Gedimmt"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr ""
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "Zwei-Faktor-Authentifizierung per E-Mail deaktivieren"
@@ -2254,130 +2506,142 @@ msgstr "Untertitel deaktivieren"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Deaktiviert"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Verwerfen"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "Änderungen verwerfen?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "Entwurf verwerfen?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "Post verwerfen?"
#: src/screens/Settings/components/PwiOptOut.tsx:87
#: src/screens/Settings/components/PwiOptOut.tsx:91
msgid "Discourage apps from showing my account to logged-out users"
-msgstr "Apps daran hindern, abgemeldeten Nutzern mein Konto zu zeigen"
+msgstr "Apps daran hindern, ausgeloggten Nutzern meinen Account anzuzeigen"
+
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr "Entdecke Feeds"
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Entdecke neue benutzerdefinierte Feeds"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Entdecke neue Feeds"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Entdecke neue Feeds"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
-msgstr ""
+msgstr "Verwerfen"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
-msgstr ""
+msgstr "Fehler verwerfen"
#: src/components/ProgressGuide/List.tsx:42
msgid "Dismiss getting started guide"
msgstr "Anleitung zum Einstieg schließen"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr "Interessen verwerfen"
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
-msgstr ""
+msgstr "Diesen Abschnitt verwerfen"
#: src/screens/Settings/AccessibilitySettings.tsx:71
#: src/screens/Settings/AccessibilitySettings.tsx:76
msgid "Display larger alt text badges"
msgstr "Größere Alt-Text-Badges zeigen"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Anzeigename"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Anzeigename"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
-msgstr ""
+msgstr "Anzeigename ist zu lang"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr ""
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Anzeigename ist zu lang. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Die maximale Anzahl an Zeichen beträgt #.}}"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "DNS-Panel"
#: src/components/dialogs/MutedWords.tsx:302
msgid "Do not apply this mute word to users you follow"
-msgstr ""
+msgstr "Wende dieses Stummschaltwort nicht auf Nutzer an, denen du folgst"
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr "Beinhaltet keine Nacktheit."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "Beginnt oder endet nicht mit einem Bindestrich"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "Domain verifiziert!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Fertig"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Fertig"
msgid "Done{extraText}"
msgstr "Fertig{extraText}"
-#: src/components/Dialog/index.tsx:324
-msgid "Double tap to close the dialog"
-msgstr ""
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr "Doppeltippen oder lange auf die Nachricht drücken, um eine Reaktion hinzuzufügen"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/components/Dialog/index.tsx:322
+msgid "Double tap to close the dialog"
+msgstr "Doppeltippen, um den Dialog zu schließen"
+
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr ""
@@ -2413,23 +2681,23 @@ msgstr "Zum Hinzufügen Bilder ablegen"
msgid "Duration:"
msgstr "Dauer: "
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "z. B. alice"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
-msgstr ""
+msgstr "z. B. Max Mustermann"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "z. B. Alice Roberts"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "z. B. alice.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "z. B. Künstlerin, Hundeliebhaberin und begeisterte Leserin."
@@ -2437,19 +2705,19 @@ msgstr "z. B. Künstlerin, Hundeliebhaberin und begeisterte Leserin."
msgid "E.g. artistic nudes."
msgstr "z. B. künstlerische Nacktheit"
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "z. B. Großartige Poster"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "z. B. Spammer"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "z. B. Die Poster, die immer ins Schwarze treffen."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "z. B. Benutzer, die wiederholt mit Werbung antworten."
@@ -2457,20 +2725,21 @@ 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/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Bearbeiten"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Bearbeiten"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Avatar bearbeiten"
@@ -2478,31 +2747,41 @@ msgstr "Avatar bearbeiten"
msgid "Edit Feeds"
msgstr "Feeds bearbeiten"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Bild bearbeiten"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
-msgstr ""
+msgstr "Interaktionseinstellungen bearbeiten"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr "Interessen bearbeiten"
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Details der Liste bearbeiten"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Moderationsliste bearbeiten"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Meine Feeds bearbeiten"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Mein Profil bearbeiten"
@@ -2513,25 +2792,25 @@ msgstr "Personen bearbeiten"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239
msgid "Edit post interaction settings"
-msgstr ""
+msgstr "Post-Interaktionseinstellungen bearbeiten"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Profil bearbeiten"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Profil bearbeiten"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Startpaket bearbeiten"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Benutzerliste bearbeiten"
@@ -2539,15 +2818,15 @@ msgstr "Benutzerliste bearbeiten"
msgid "Edit who can reply"
msgstr "Bearbeiten, wer antworten kann"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Bearbeite deinen Anzeigenamen"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Bearbeite deine Profilbeschreibung"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Dein Startpaket bearbeiten"
@@ -2558,22 +2837,21 @@ msgstr "Bildung"
#: src/screens/List/ListHiddenScreen.tsx:141
msgid "Either the creator of this list has blocked you or you have blocked the creator."
-msgstr ""
+msgstr "Entweder hat der Ersteller dieser Liste dich blockiert oder du hast den Ersteller blockiert."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "E-Mail"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "2FA per E-Mail deaktiviert"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
-msgstr ""
+msgstr "2FA per E-Mail aktiviert"
#: src/screens/Login/ForgotPasswordForm.tsx:93
msgid "Email address"
@@ -2581,21 +2859,18 @@ msgstr "E-Mail-Adresse"
#: src/components/intents/VerifyEmailIntentDialog.tsx:104
msgid "Email Resent"
+msgstr "E-Mail erneut gesendet"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "E-Mail aktualisiert"
-
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
msgstr ""
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
@@ -2608,34 +2883,35 @@ msgstr "HTML-Code einbetten"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
-msgstr "Beitrag einbetten"
+msgstr "Post einbetten"
#: src/components/dialogs/Embed.tsx:112
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
-msgstr "Bette diesen Beitrag in deine Website ein. Kopiere einfach den folgenden Code und füge ihn in den HTML-Code deiner Website ein."
+msgstr "Bette diesen Post in deine Website ein. Kopiere einfach den folgenden Code und füge ihn in den HTML-Code deiner Website ein."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
-msgstr ""
+msgstr "Eingebetteter Video-Player"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
-msgstr ""
+msgstr "Aktivieren"
#: src/components/dialogs/EmbedConsent.tsx:100
msgid "Enable {0} only"
msgstr "Nur {0} aktivieren"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Inhalte für Erwachsene aktivieren"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:81
@@ -2650,42 +2926,42 @@ msgstr "Medienplayer aktivieren für"
#: src/screens/Settings/NotificationSettings.tsx:74
#: src/screens/Settings/NotificationSettings.tsx:77
msgid "Enable priority notifications"
-msgstr ""
+msgstr "Prioritätsmitteilungen aktivieren"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387
msgid "Enable subtitles"
-msgstr ""
+msgstr "Untertitel aktivieren"
#: src/components/dialogs/EmbedConsent.tsx:93
msgid "Enable this source only"
msgstr "Nur von dieser Seite erlauben"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
-msgstr ""
+msgstr "Aktiviere angesagte Videos in deinem Discover-Feed"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
-msgstr ""
+msgstr "Aktiviere angesagte Videos in deinem Discover-Feed."
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Aktiviert"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Ende des Feeds"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
-msgstr ""
+msgstr "Stelle sicher, dass du für jede Untertiteldatei eine Sprache ausgewählt hast."
#: src/screens/Login/SetNewPasswordForm.tsx:143
msgid "Enter a password"
@@ -2696,50 +2972,51 @@ msgstr "Gib ein Passwort ein"
msgid "Enter a word or tag"
msgstr "Gib ein Wort oder einen Tag ein"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
-msgid "Enter Code"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Bestätigungscode eingeben"
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
+msgid "Enter Code"
+msgstr "Code eingeben"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
-msgstr ""
+msgstr "In den Vollbildmodus wechseln"
#: src/view/com/modals/ChangePassword.tsx:165
msgid "Enter the code you received to change your password."
msgstr "Gib den Code ein, den du erhalten hast, um dein Passwort zu ändern."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Gib die Domain ein, die du verwenden möchtest"
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
-msgstr "Gib die E-Mail ein, die du zur Erstellung deines Kontos verwendet hast. Wir schicken dir einen \"Reset-Code\", damit du ein neues Passwort festlegen kannst."
+msgstr "Gib die E-Mail ein, mit der du deinen Account erstellt hast. Wir senden dir einen „Zurücksetzungscode“, damit du ein neues Passwort festlegen kannst."
+
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr "Gib den Nutzernamen oder die E-Mail-Adresse ein, die du bei der Erstellung deines Accounts verwendet hast"
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Gib dein Geburtsdatum ein"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Gib deine E-Mail-Adresse ein"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Gib oben deine neue E-Mail ein"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Gib unten deine neue E-Mail-Adresse ein."
#: src/screens/Login/LoginForm.tsx:243
msgid "Enter your password"
-msgstr ""
+msgstr "Gib dein Passwort ein"
#: src/screens/Login/index.tsx:123
msgid "Enter your username and password"
@@ -2749,24 +3026,31 @@ msgstr "Gib deinen Benutzernamen und dein Passwort ein"
msgid "Enters full screen"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr "Unterhaltung"
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
-msgstr ""
+msgstr "Fehler"
#: src/screens/Settings/components/ExportCarDialog.tsx:47
msgid "Error occurred while saving file"
msgstr "Beim Speichern der Datei ist ein Fehler aufgetreten"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "Fehler beim Empfang der Captcha-Antwort."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Fehler:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr "Fehler: {error}"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Alle"
@@ -2777,7 +3061,7 @@ msgstr "Alle können antworten"
#: src/components/WhoCanReply.tsx:222
msgid "Everybody can reply to this post."
-msgstr ""
+msgstr "Jeder kann auf diesen Post antworten."
#: src/screens/Messages/Settings.tsx:83
#: src/screens/Messages/Settings.tsx:86
@@ -2796,15 +3080,15 @@ msgstr "Übermäßige oder unerwünschte Nachrichten"
#: src/components/dialogs/MutedWords.tsx:311
msgid "Exclude users you follow"
-msgstr ""
+msgstr "Nutzer ausschließen, denen du folgst"
#: src/components/dialogs/MutedWords.tsx:514
msgid "Excludes users you follow"
-msgstr ""
+msgstr "Nutzer ausgeschlossen, denen du folgst"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Exit fullscreen"
-msgstr ""
+msgstr "Vollbildmodus beenden"
#: src/view/com/modals/DeleteAccount.tsx:275
msgid "Exits account deletion process"
@@ -2818,50 +3102,46 @@ msgstr "Verlässt den Vorgang des Bildzuschneidens"
msgid "Exits image view"
msgstr "Verlässt die Bildansicht"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Verlässt die Eingabe der Suchanfrage"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Alt-Text erweitern"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Liste der Benutzer erweitern"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
-msgstr "Erweitere oder reduziere den gesamten Beitrag, auf den du antwortest"
+msgstr "Erweitere oder reduziere den gesamten Post, auf den du antwortest"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
-msgstr ""
-
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr ""
+msgstr "Text des Posts erweitern oder einklappen"
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
-msgstr ""
+msgstr "Erwartete uri, um einen Eintrag aufzulösen"
#: src/screens/Settings/FollowingFeedPreferences.tsx:123
#: src/screens/Settings/ThreadPreferences.tsx:137
msgid "Experimental"
-msgstr ""
+msgstr "Experimentell"
#: src/components/dialogs/MutedWords.tsx:500
msgid "Expired"
-msgstr ""
+msgstr "Abgelaufen"
#: src/components/dialogs/MutedWords.tsx:502
msgid "Expires {0}"
-msgstr ""
+msgstr "Läuft ab {0}"
#: src/components/moderation/LabelsOnMeDialog.tsx:199
#: src/components/moderation/ModerationDetailsDialog.tsx:208
msgid "Expires in {0}"
+msgstr "Läuft in {0} ab"
+
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:47
@@ -2873,8 +3153,15 @@ msgstr "Explizite oder potenziell verstörende Medien."
msgid "Explicit sexual images."
msgstr "Explizite sexuelle Bilder."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Meine Daten exportieren"
@@ -2882,10 +3169,10 @@ msgstr "Meine Daten exportieren"
msgid "Export My Data"
msgstr "Meine Daten exportieren"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
-msgstr ""
+msgstr "Externe Medien"
#: src/components/dialogs/EmbedConsent.tsx:54
#: src/components/dialogs/EmbedConsent.tsx:58
@@ -2897,62 +3184,69 @@ msgstr "Externe Medien"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Externe Medien können es Websites ermöglichen, Informationen über dich und dein Gerät zu sammeln. Es werden keine Informationen gesendet oder angefordert, bis du die Schaltfläche \"Abspielen\" drückst."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Externe Medienpräferenzen"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
-msgstr ""
+msgstr "Chat konnte nicht angenommen werden"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr "Fehler beim Hinzufügen der Emoji-Reaktion"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
-msgstr ""
+msgstr "Fehler beim Ändern des Handles. Bitte versuche es erneut."
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173
msgid "Failed to create app password. Please try again."
-msgstr ""
+msgstr "Fehler beim Erstellen des App-Passworts. Bitte versuche es erneut."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
-msgstr ""
+msgstr "Fehler beim Erstellen der Konversation"
#: src/screens/StarterPack/Wizard/index.tsx:233
#: src/screens/StarterPack/Wizard/index.tsx:241
msgid "Failed to create starter pack"
msgstr "Startpaket konnte nicht erstellt werden"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "Die Liste konnte nicht erstellt werden. Überprüfe deine Internetverbindung und versuche es erneut."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
-msgstr ""
+msgstr "Chat konnte nicht gelöscht werden"
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Nachricht konnte nicht gelöscht werden"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
-msgstr "Beitrag konnte nicht gelöscht werden, bitte versuche es erneut"
+msgstr "Post konnte nicht gelöscht werden, bitte versuche es erneut"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "Startpaket konnte nicht gelöscht werden"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
-msgstr ""
+msgstr "Fehler beim Laden der Konversationen"
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "Fehler beim Laden der Einstellungen für Feeds"
@@ -2964,50 +3258,80 @@ 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:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "Die vorgeschlagenen Feeds konnten nicht geladen werden."
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
-msgstr "Die vorgeschlagenen Konten, denen du folgen solltest, konnten nicht geladen werden"
+msgstr "Die vorgeschlagenen Accounts, denen du folgen solltest, konnten nicht geladen werden"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
-msgstr ""
+msgstr "Fehler beim Markieren aller Anfragen als gelesen"
#: src/state/queries/pinned-post.ts:75
msgid "Failed to pin post"
-msgstr ""
+msgstr "Post konnte nicht angeheftet werden"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr "Fehler beim Entfernen der Emoji-Reaktion"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr "Verifizierung konnte nicht entfernt werden"
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Das Speichern des Bildes ist fehlgeschlagen: {0}"
#: src/state/queries/notifications/settings.ts:39
msgid "Failed to save notification preferences, please try again"
-msgstr ""
+msgstr "Mitteilungseinstellungen konnten nicht gespeichert werden, bitte versuche es erneut"
#: src/screens/ModerationInteractionSettings/index.tsx:108
msgid "Failed to save settings. Please try again."
-msgstr ""
+msgstr "Fehler beim Speichern der Einstellungen. Bitte versuche es erneut."
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr "Interessen konnten nicht gespeichert werden."
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "Konnte nicht gesendet werden"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Anfechtung nicht eingereicht. Bitte versuche es erneut."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
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:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr ""
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "Aktualisierung der Feeds fehlgeschlagen"
@@ -3020,69 +3344,73 @@ msgstr "Einstellungen konnten nicht aktualisiert werden"
#: src/lib/media/video/upload.web.ts:78
#: src/lib/media/video/upload.web.ts:88
msgid "Failed to upload video"
+msgstr "Fehler beim Hochladen des Videos"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
-msgstr ""
+msgstr "Fehler beim Überprüfen des Handles. Bitte versuche es erneut."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
-msgstr ""
+msgstr "Feed"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Feed von {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
-msgstr ""
+msgstr "Feed-Menü"
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Feed toggle"
msgstr "Feed-Umschalter"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
-msgstr ""
+msgstr "Feedback"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "Feedback gesendet!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
-msgstr ""
+msgstr "Feeds"
#: src/view/screens/SavedFeeds.tsx:198
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."
+msgstr "Feeds sind benutzerdefinierte Algorithmen, die Nutzer mit ein wenig Programmierkenntnisse erstellen. <0/> für mehr Informationen."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "Feeds aktualisiert!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
-msgstr ""
+msgstr "Feeds, die dir gefallen könnten."
#: src/screens/Settings/components/OTAInfo.tsx:58
msgid "Fetch update"
-msgstr ""
+msgstr "Update abrufen"
#: src/screens/Settings/components/ExportCarDialog.tsx:43
msgid "File saved successfully!"
@@ -3092,13 +3420,13 @@ msgstr "Datei erfolgreich gespeichert!"
msgid "Filter from feeds"
msgstr "Aus Feeds filtern"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
-msgstr ""
+msgstr "Suche nach Sprache filtern"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
-msgstr ""
+msgstr "Suche nach Sprache filtern (derzeit: {currentLanguageLabel})"
#: src/screens/Onboarding/StepFinished.tsx:314
msgid "Finalizing"
@@ -3108,17 +3436,17 @@ msgstr "Abschließen"
#: src/view/com/posts/FollowingEmptyState.tsx:53
#: src/view/com/posts/FollowingEndOfFeed.tsx:54
msgid "Find accounts to follow"
-msgstr "Konten zum Folgen finden"
+msgstr "Accounts zum Folgen finden"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
-msgstr ""
+msgstr "Finde Leute zum Folgen"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
-msgstr ""
+msgstr "Finde Posts, Nutzer und Feeds auf Bluesky"
#: src/screens/StarterPack/Wizard/index.tsx:195
msgid "Finish"
@@ -3126,33 +3454,33 @@ msgstr "Beenden"
#: src/screens/Onboarding/index.tsx:35
msgid "Fitness"
-msgstr ""
+msgstr "Fitness"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117
msgctxt "Name of app icon variant"
msgid "Flat Black"
-msgstr ""
+msgstr "Flaches Schwarz"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93
msgctxt "Name of app icon variant"
msgid "Flat Blue"
-msgstr ""
+msgstr "Flaches Blau"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105
msgctxt "Name of app icon variant"
msgid "Flat White"
-msgstr ""
+msgstr "Flaches Weiß"
#: src/screens/Onboarding/StepFinished.tsx:294
msgid "Flexible"
msgstr "Flexibel"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Folgen"
@@ -3162,39 +3490,35 @@ msgctxt "action"
msgid "Follow"
msgstr "Folgen"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "{0} folgen"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
-msgstr ""
-
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "{name} folgen"
+msgstr "{handle} folgen"
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
-msgstr ""
+msgstr "Folge 10 Accounts"
#: src/components/ProgressGuide/List.tsx:69
msgid "Follow 7 accounts"
-msgstr "Folge 7 Konten"
+msgstr "Folge 7 Accounts"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
-msgstr ""
+msgstr "Account folgen"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Allen folgen"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Zurückfolgen"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Zurückfolgen"
-#: src/view/screens/Search/Explore.tsx:370
-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."
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "Gefolgt von <0>{0}0>"
@@ -3224,7 +3544,7 @@ 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 {2, plural, one {# anderer Person} other {# anderen}}"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Follower von @{0}, die du kennst"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Follower, die du kennst"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Folge ich"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
-msgstr "Ich folge {0}"
+msgstr "{0} Folge ich"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
-msgstr ""
+msgstr "{handle} Folge ich"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Ich folge {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Following-Feed-Einstellungen"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Following-Feed-Einstellungen"
@@ -3278,11 +3594,11 @@ msgstr "Folgt dir"
#: src/screens/Settings/AppearanceSettings.tsx:140
msgid "Font"
-msgstr ""
+msgstr "Schriftart"
#: src/screens/Settings/AppearanceSettings.tsx:160
msgid "Font size"
-msgstr ""
+msgstr "Schriftgröße"
#: src/screens/Onboarding/index.tsx:40
#: src/screens/Onboarding/state.ts:102
@@ -3295,15 +3611,19 @@ msgstr "Aus Sicherheitsgründen müssen wir dir einen Bestätigungscode an deine
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:209
msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one."
-msgstr ""
+msgstr "Aus Sicherheitsgründen kannst du dies nicht erneut ansehen. Falls du dieses App-Passwort verlierst, musst du ein neues generieren."
#: src/screens/Settings/AppearanceSettings.tsx:142
msgid "For the best experience, we recommend using the theme font."
-msgstr ""
+msgstr "Für das beste Erlebnis empfehlen wir, die Schriftart des Themes zu verwenden."
+
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr "Für dich"
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
-msgstr ""
+msgstr "Dauerhaft"
#: src/screens/Login/index.tsx:153
#: src/screens/Login/index.tsx:168
@@ -3327,7 +3647,7 @@ msgstr "Postet oft unerwünschte Inhalte"
msgid "From @{sanitizedAuthor}"
msgstr "Von @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Von <0/>"
@@ -3336,47 +3656,49 @@ msgstr "Von <0/>"
msgid "Gallery"
msgstr "Galerie"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
-msgstr ""
+msgstr "Ein Startpaket generieren"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
-msgstr ""
+msgstr "Hilfe erhalten"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "Los geht's"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr ""
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
-msgstr ""
+msgstr "Erste Schritte"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
-msgstr ""
+msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
-msgstr ""
+msgstr "Gib deinem Profil ein Gesicht"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39
#: src/lib/moderation/useReportOptions.ts:39
msgid "Glaring violations of law or terms of service"
msgstr "Eklatante Verstöße gegen Gesetze oder Nutzungsbedingungen"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Zurückgehen"
@@ -3384,10 +3706,10 @@ msgstr "Zurückgehen"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Zurückgehen"
@@ -3402,16 +3724,36 @@ msgstr "Zum vorherigen Schritt zurückgehen"
#: src/view/screens/NotFound.tsx:57
msgid "Go home"
-msgstr ""
+msgstr "Zur Startseite"
#: src/view/screens/NotFound.tsx:56
msgid "Go Home"
+msgstr "Zur Startseite"
+
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:294
-msgid "Go to conversation with {0}"
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
msgstr ""
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr "Zum Profil von {firstAuthorName} gehen"
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
+msgid "Go to conversation with {0}"
+msgstr "Zur Konversation mit {0} gehen"
+
#: src/screens/Login/ForgotPasswordForm.tsx:165
#: src/view/com/modals/ChangePassword.tsx:179
msgid "Go to next"
@@ -3419,148 +3761,154 @@ msgstr "Zum nächsten gehen"
#: src/components/dms/ConvoMenu.tsx:227
msgid "Go to profile"
-msgstr ""
+msgstr "Zum Profil"
#: src/components/dms/ConvoMenu.tsx:224
msgid "Go to user's profile"
-msgstr ""
+msgstr "Zum Profil des Nutzers gehen"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
-msgstr ""
+msgstr "Drastische Inhalte"
#: src/state/shell/progress-guide.tsx:218
#: src/state/shell/progress-guide.tsx:228
msgid "Half way there!"
-msgstr ""
+msgstr "Fast geschafft!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
-msgstr ""
+msgstr "Handle"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
-msgstr ""
+msgstr "Handle bereits vergeben. Bitte versuche einen anderen."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
-msgstr ""
+msgstr "Handle geändert!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
-msgstr ""
+msgstr "Handle zu lang. Bitte versuche einen kürzeren."
#: src/screens/Settings/AccessibilitySettings.tsx:87
msgid "Haptics"
-msgstr ""
+msgstr "Haptik"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:34
#: src/lib/moderation/useReportOptions.ts:34
msgid "Harassment, trolling, or intolerance"
-msgstr ""
+msgstr "Belästigung, Trollen oder Intoleranz"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
-msgstr ""
+msgstr "Hashtag"
#: src/components/RichTextTag.tsx:51
msgid "Hashtag {tag}"
+msgstr "Hashtag {tag}"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
msgstr ""
-#: src/screens/Signup/index.tsx:177
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "Hast du Probleme?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Hilfe"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
-msgstr ""
+msgstr "Hilf anderen zu erkennen, dass du kein Bot bist, indem du ein Bild hochlädst oder einen Avatar erstellst."
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187
msgid "Here is your app password!"
-msgstr ""
+msgstr "Hier ist Ihr App-Passwort!"
#: src/components/VideoPostCard.tsx:178
#: src/components/VideoPostCard.tsx:454
msgid "Hidden"
-msgstr ""
+msgstr "Ausgeblendet"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
-msgstr ""
+msgstr "Ausgeblendet durch deine Moderationseinstellungen."
#: src/components/ListCard.tsx:130
msgid "Hidden list"
-msgstr ""
+msgstr "Ausgeblendete Liste"
#: src/components/interstitials/Trending.tsx:131
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Ausblenden"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Ausblenden"
#: src/components/dialogs/Embed.tsx:128
msgid "Hide customization options"
-msgstr ""
+msgstr "Anpassungsoptionen ausblenden"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
-msgstr ""
+msgstr "Post für mich ausblenden"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
-msgstr ""
+msgstr "Antwort für alle ausblenden"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
-msgstr ""
+msgstr "Antwort für mich ausblenden"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr "Diese Karte ausblenden"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
-msgstr "Diesen Beitrag ausblenden?"
+msgstr "Diesen Post ausblenden?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
-msgstr ""
+msgstr "Diese Antwort ausblenden?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr ""
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr ""
@@ -3569,14 +3917,19 @@ msgstr ""
msgid "Hide trending videos?"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Benutzerliste ausblenden"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr "Verifizierungsabzeichen ausblenden"
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
-msgstr ""
+msgstr "Blendet den Inhalt aus"
#: src/view/com/posts/PostFeedErrorMessage.tsx:117
msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue."
@@ -3598,102 +3951,109 @@ msgstr "Hmm, der Feed-Server hat eine schlechte Antwort gegeben. Bitte informier
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Hmm, wir haben Probleme, diesen Feed zu finden. Möglicherweise wurde er gelöscht."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
-msgstr ""
+msgstr "Hmm, es scheint, als hätten wir ein Problem beim Laden dieser Daten. Für weitere Details siehe unten. Wenn dieses Problem weiterhin besteht, kontaktiere uns bitte."
#: src/screens/Profile/ErrorState.tsx:31
msgid "Hmmmm, we couldn't load that moderation service."
-msgstr ""
+msgstr "Hmm, wir konnten diesen Moderationsdienst nicht laden."
#: src/view/com/composer/state/video.ts:413
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
-msgstr ""
+msgstr "Einen Moment! Wir gewähren nach und nach Zugriff auf dieses Video und du bist noch in der Warteschlange. Versuche es in Kürze erneut!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
-msgstr ""
+msgstr "Startseite"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
-msgstr ""
+msgstr "Host:"
#: src/screens/Login/ForgotPasswordForm.tsx:83
#: src/screens/Login/LoginForm.tsx:184
msgid "Hosting provider"
msgstr "Hosting-Anbieter"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr "Beliebt"
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
-msgstr ""
+msgstr "Beliebte Antworten zuerst"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "Wie sollen wir diesen Link öffnen?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Ich habe einen Code"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr ""
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Ich habe einen Bestätigungscode"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Ich habe meine eigene Domain"
#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:21
msgid "I understand"
-msgstr ""
+msgstr "Verstanden"
#: src/view/com/lightbox/Lightbox.web.tsx:186
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Schaltet den erweiterten Status des Alt-Textes um, wenn dieser lang ist"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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 ""
+msgstr "Falls du nach den Gesetzen deines Landes noch kein Erwachsener bist, muss eine erziehungsberechtigte Person diese Bedingungen für dich lesen."
-#: src/view/screens/ProfileList.tsx:758
+#: src/view/screens/ProfileList.tsx:765
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/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
+msgstr "Wenn du eine eigene Domain hast, kannst du diese als deinen Handle verwenden. Dadurch kannst du deine Identität selbst verifizieren. <0>Hier erfährst du mehr (auf Englisch).0>"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Wenn du diesen Post löschst, kannst du ihn nicht wiederherstellen."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr ""
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
-msgstr "Wenn du dein Passwort ändern möchtest, senden wir dir einen Code, um zu bestätigen, dass es sich um dein Konto handelt."
+msgstr "Wenn du dein Passwort ändern möchtest, senden wir dir einen Code, um zu verifizieren, dass dies dein Account ist."
#: src/view/com/auth/server-input/index.tsx:208
msgid "If you're a developer, you can host your own server."
-msgstr ""
+msgstr "Falls du ein Entwickler bist, kannst du deinen eigenen Server hosten."
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
msgid "If you're trying to change your handle or email, do so before you deactivate."
-msgstr ""
+msgstr "Falls du versuchst, deinen Handle oder deine E-Mail zu ändern, tu dies, bevor du deaktivierst."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:38
#: src/lib/moderation/useReportOptions.ts:38
@@ -3704,33 +4064,46 @@ msgstr "Illegal und dringend"
msgid "Image"
msgstr "Bild"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr "Bildcache geleert"
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr "Bildcache geleert, {0} freigegeben"
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr ""
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
msgid "Impersonation or false claims about identity or affiliation"
-msgstr ""
+msgstr "Vortäuschung einer Identität oder falsche Angaben zur Identität oder Zugehörigkeit"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68
#: src/lib/moderation/useReportOptions.ts:68
msgid "Impersonation, misinformation, or false claims"
-msgstr ""
+msgstr "Vortäuschung einer Identität, Fehlinformationen oder falsche Angaben"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91
#: src/lib/moderation/useReportOptions.ts:91
msgid "Inappropriate messages or explicit links"
-msgstr ""
+msgstr "Unangemessene Nachrichten oder explizite Links"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
-msgstr ""
+msgstr "Posteingang leer!"
#: src/screens/Login/LoginForm.tsx:164
msgid "Incorrect username or password"
-msgstr "Ungültiger Benutzername oder Passwort"
+msgstr "Ungültiger Nutzername oder Passwort"
#: src/screens/Login/SetNewPasswordForm.tsx:131
msgid "Input code sent to your email for password reset"
@@ -3738,7 +4111,7 @@ msgstr "Gib den Code ein, den du per E-Mail erhalten hast, um dein Passwort zur
#: src/view/com/modals/DeleteAccount.tsx:228
msgid "Input confirmation code for account deletion"
-msgstr "Bestätigungscode für die Kontolöschung eingeben"
+msgstr "Gib den Bestätigungscode für die Account-Löschung ein"
#: src/screens/Login/SetNewPasswordForm.tsx:155
msgid "Input new password"
@@ -3746,54 +4119,50 @@ msgstr "Neues Passwort eingeben"
#: src/view/com/modals/DeleteAccount.tsx:247
msgid "Input password for account deletion"
-msgstr "Passwort für die Kontolöschung eingeben"
+msgstr "Gib das Passwort für die Account-Löschung ein"
#: src/screens/Login/LoginForm.tsx:289
msgid "Input the code which has been emailed to you"
-msgstr ""
-
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "Benutzernamen oder E-Mail-Adresse eingeben, die du bei der Anmeldung verwendet hast"
+msgstr "Gib den Code ein, der dir per E-Mail zugeschickt wurde"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
-msgstr ""
+msgstr "Interaktion eingeschränkt"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
-msgstr ""
+msgstr "Interaktionseinstellungen"
#: src/screens/Login/LoginForm.tsx:156
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:70
msgid "Invalid 2FA confirmation code."
-msgstr ""
+msgstr "Ungültiger 2FA-Bestätigungscode."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
-msgstr ""
+msgstr "Ungültiger handle. Bitte versuche einen anderen."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
-msgstr "Ungültiger oder nicht unterstützter Beitragseintrag"
+msgstr "Ungültiger oder nicht unterstützter Post-Eintrag"
#: src/components/moderation/ReportDialog/index.tsx:73
msgid "Invalid report subject"
-msgstr ""
+msgstr "Ungültiges Meldethema"
#: src/components/intents/VerifyEmailIntentDialog.tsx:91
msgid "Invalid Verification Code"
-msgstr ""
+msgstr "Ungültiger Bestätigungscode"
#: src/view/com/modals/InviteCodes.tsx:94
msgid "Invite a Friend"
msgstr "Einen Freund einladen"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Einladungscode"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
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."
@@ -3805,46 +4174,46 @@ msgstr "Einladungscodes: {0} verfügbar"
msgid "Invite codes: 1 available"
msgstr "Einladungscodes: 1 verfügbar"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
-msgstr ""
+msgstr "Lade Leute zu diesem Startpaket ein!"
#: src/screens/StarterPack/Wizard/StepDetails.tsx:34
msgid "Invite your friends to follow your favorite feeds and people"
-msgstr ""
+msgstr "Lade deine Freunde ein, deinen Lieblings-Feeds und Personen zu folgen"
#: src/screens/StarterPack/Wizard/StepDetails.tsx:31
msgid "Invites, but personal"
-msgstr ""
+msgstr "Einladungen, aber persönlich"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
-msgstr ""
+msgstr "Es ist richtig"
#: src/screens/StarterPack/Wizard/index.tsx:435
msgid "It's just you right now! Add more people to your starter pack by searching above."
-msgstr ""
+msgstr "Hier bist gerade nur du! Füge mehr Leute zu deinem Startpaket hinzu, indem du oben nach ihnen suchst."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
-msgstr ""
+msgstr "Job-ID: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
-msgstr ""
+msgstr "Stellenangebote"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
-msgstr ""
+msgstr "Tritt Bluesky bei"
#: src/components/StarterPack/QrCode.tsx:68
#: src/view/shell/NavSignupCard.tsx:40
msgid "Join the conversation"
-msgstr ""
+msgstr "An der Konversation teilnehmen"
#: src/screens/Onboarding/index.tsx:21
#: src/screens/Onboarding/state.ts:104
@@ -3853,44 +4222,44 @@ msgstr "Journalismus"
#: src/components/moderation/ContentHider.tsx:231
msgid "Labeled by {0}."
-msgstr ""
+msgstr "Von {0} gekennzeichnet."
#: src/components/moderation/ContentHider.tsx:229
msgid "Labeled by the author."
-msgstr ""
+msgstr "Vom Autor gekennzeichnet."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
-msgstr ""
+msgstr "Kennzeichnungen"
#: src/view/com/composer/labels/LabelsBtn.tsx:73
msgid "Labels added"
-msgstr ""
+msgstr "Kennzeichnungen hinzugefügt"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
-msgstr ""
+msgstr "Kennzeichnungen sind Anmerkungen zu Nutzern und Inhalten. Sie können verwendet werden, um Inhalte auszublenden, zu warnen oder zu kategorisieren."
#: src/components/moderation/LabelsOnMeDialog.tsx:72
msgid "Labels on your account"
-msgstr ""
+msgstr "Kennzeichnungen auf deinem Account"
#: src/components/moderation/LabelsOnMeDialog.tsx:74
msgid "Labels on your content"
-msgstr ""
+msgstr "Kennzeichnungen zu deinen Inhalten"
#: src/view/com/composer/select-language/SelectLangBtn.tsx:107
msgid "Language selection"
msgstr "Sprachauswahl"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Spracheinstellungen"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Sprachen"
@@ -3899,40 +4268,54 @@ msgid "Larger"
msgstr "Größer"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
-msgstr ""
+msgstr "Neuste"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
-msgstr ""
+msgstr "mehr erfahren"
+
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr "Mehr erfahren"
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Mehr erfahren"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
-msgstr ""
+msgstr "Erfahre mehr über Bluesky"
#: src/view/com/auth/server-input/index.tsx:218
msgid "Learn more about self hosting your PDS."
-msgstr ""
+msgstr "Erfahre mehr über das Selbst-Hosting deiner PDS."
#: src/components/moderation/ContentHider.tsx:149
msgid "Learn more about the moderation applied to this content"
-msgstr ""
+msgstr "Erfahre mehr über die Moderation, die auf diesen Inhalt angewendet wurde"
#: src/components/moderation/ContentHider.tsx:215
msgid "Learn more about the moderation applied to this content."
-msgstr ""
+msgstr "Erfahre mehr über die Moderation, die auf diese Inhalte angewendet wird."
#: src/components/moderation/PostHider.tsx:100
#: src/components/moderation/ScreenHider.tsx:127
msgid "Learn more about this warning"
msgstr "Erfahre mehr über diese Warnung"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr "Mehr über die Verifizierung auf Bluesky erfahren (auf Englisch)"
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3941,16 +4324,16 @@ msgstr "Erfahre mehr darüber, was auf Bluesky öffentlich ist."
#: src/components/moderation/ContentHider.tsx:239
#: src/view/com/auth/server-input/index.tsx:220
msgid "Learn more."
-msgstr ""
+msgstr "Mehr erfahren."
#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Leave"
-msgstr ""
+msgstr "Verlassen"
#: src/components/dms/MessagesListBlockedFooter.tsx:74
#: src/components/dms/MessagesListBlockedFooter.tsx:81
msgid "Leave chat"
-msgstr ""
+msgstr "Chat verlassen"
#: src/components/dms/ConvoMenu.tsx:203
#: src/components/dms/ConvoMenu.tsx:206
@@ -3958,7 +4341,7 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:269
#: src/components/dms/LeaveConvoPrompt.tsx:42
msgid "Leave conversation"
-msgstr ""
+msgstr "Konversation verlassen"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84
msgid "Leave them all unchecked to see any language."
@@ -3972,9 +4355,9 @@ msgstr "Bluesky verlassen"
msgid "left to go."
msgstr "verbleibend."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
-msgstr ""
+msgstr "Lass mich wählen"
#: src/screens/Login/index.tsx:154
#: src/screens/Login/index.tsx:169
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Hell"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "Liken"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -4011,19 +4395,18 @@ msgstr ""
#: src/state/shell/progress-guide.tsx:214
#: src/state/shell/progress-guide.tsx:219
msgid "Like 10 posts to train the Discover feed"
-msgstr ""
+msgstr "Like 10 Posts, um den Discover-Feed zu trainieren"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Diesen Feed liken"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
-msgstr ""
+msgstr "Diesen Labeler liken"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Geliked von"
@@ -4033,43 +4416,43 @@ msgstr "Geliked von"
msgid "Liked By"
msgstr "Geliked von"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
-msgstr ""
+msgstr "Likes"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
-msgstr "Likes für diesen Beitrag"
+msgstr "Likes für diesen Post"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
-msgstr ""
+msgstr "Linear"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Liste"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Listenbild"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "Liste blockiert"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4078,104 +4461,117 @@ msgstr "Liste von {0}"
#: src/view/com/profile/ProfileSubpageHeader.tsx:156
msgid "List by <0/>"
-msgstr ""
+msgstr "Liste von <0/>"
#: src/view/com/profile/ProfileSubpageHeader.tsx:154
msgid "List by you"
-msgstr ""
+msgstr "Liste von dir"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "Liste gelöscht"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
-msgstr ""
+msgstr "Liste wurde ausgeblendet"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
-msgstr ""
+msgstr "Liste ausgeblendet"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "Liste stummgeschaltet"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Name der Liste"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "Liste nicht mehr blockiert"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "Liste nicht mehr stummgeschaltet"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Listen"
#: src/components/dms/BlockedByListDialog.tsx:39
msgid "Lists blocking this user:"
+msgstr "Listen, die diesen Nutzer blockieren:"
+
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:135
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr ""
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
-msgstr ""
+msgstr "Mehr laden"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
-msgstr ""
-
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr ""
+msgstr "Weitere empfohlene Feeds laden"
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Neue Mitteilungen laden"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
-msgstr "Neue Beiträge laden"
+msgstr "Neue Posts laden"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Wird geladen..."
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
-msgstr "Protokoll"
+msgstr "Log"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78
msgid "Logged-out visibility"
-msgstr "Sichtbarkeit für abgemeldete Benutzer"
+msgstr "Sichtbarkeit für ausgeloggte Nutzer"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
-msgstr ""
+msgstr "Logo von @sawaratsuki.bsky.social"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
-msgstr ""
+msgstr "Logo von <0>@sawaratsuki.bsky.social0>"
#: src/components/RichTextTag.tsx:53
msgid "Long press to open tag menu for #{tag}"
-msgstr ""
+msgstr "Lange drücken, um das Tag-Menü für #{tag} zu öffnen"
#: src/screens/Login/SetNewPasswordForm.tsx:120
msgid "Looks like XXXXX-XXXXX"
@@ -4183,85 +4579,104 @@ msgstr "Im Format XXXXX-XXXXX"
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39
msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below."
-msgstr ""
+msgstr "Sieht so aus, als hättest du noch keine Feeds gespeichert! Nutze unsere Empfehlungen oder stöbere weiter unten."
#: src/screens/Home/NoFeedsPinned.tsx:83
msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄"
-msgstr ""
+msgstr "Sieht aus, als hättest du alle deine Feeds abgelöst. Aber keine Sorge, du kannst weiter unten neue hinzufügen 😄"
#: src/screens/Feeds/NoFollowingFeed.tsx:37
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
+msgstr "Es sieht so aus, als ob du einen Following-Feed vermisst. <0>Klicke hier, um einen hinzuzufügen.0>"
+
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
-msgstr ""
+msgstr "Erstelle eins für mich"
#: src/view/com/modals/LinkWarning.tsx:79
msgid "Make sure this is where you intend to go!"
-msgstr "Vergewissere dich, dass du auch wirklich dorthin gehen willst!"
+msgstr "Stelle sicher, dass du dorthin willst!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
-msgstr ""
+msgstr "Gespeicherte Feeds verwalten"
+
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr "Verifizierungseinstellungen verwalten"
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Verwalte deine stummgeschalteten Wörter und Tags"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
-msgstr ""
+msgstr "Alle als gelesen markieren"
#: src/components/dms/ConvoMenu.tsx:215
#: src/components/dms/ConvoMenu.tsx:218
msgid "Mark as read"
-msgstr ""
+msgstr "Als gelesen markieren"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
+msgstr "Alle als gelesen markiert"
+
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
msgstr ""
-#: src/view/screens/Profile.tsx:222
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Medien"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
-msgstr ""
+msgstr "Medien, die für einige Zielgruppen verstörend oder unangemessen sein könnten."
#: src/components/WhoCanReply.tsx:263
msgid "mentioned users"
-msgstr "erwähnte Benutzer"
+msgstr "erwähnte Nutzer"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423
msgid "Mentioned users"
-msgstr "Erwähnte Benutzer"
+msgstr "Erwähnte Nutzer"
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
-msgstr ""
+msgstr "Erwähnungen"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Menü"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
-msgstr ""
+msgstr "Nachricht {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
-msgstr ""
+msgstr "Nachricht gelöscht"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
-msgstr ""
+msgstr "Nachricht gelöscht"
+
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr "Nachricht von @{0}: {1}"
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
@@ -4269,42 +4684,46 @@ msgstr "Nachricht vom Server: {0}"
#: src/screens/Messages/components/MessageInput.tsx:152
msgid "Message input field"
-msgstr ""
+msgstr "Nachrichteneingabefeld"
#: src/screens/Messages/components/MessageInput.tsx:79
#: src/screens/Messages/components/MessageInput.web.tsx:60
msgid "Message is too long"
-msgstr ""
+msgstr "Nachricht ist zu lang"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr "Nachrichtenoptionen"
+
+#: src/Navigation.tsx:662
msgid "Messages"
-msgstr ""
+msgstr "Nachrichten"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81
msgctxt "Name of app icon variant"
msgid "Midnight"
-msgstr ""
+msgstr "Mitternacht"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47
#: src/lib/moderation/useReportOptions.ts:47
msgid "Misleading Account"
-msgstr "Irreführendes Konto"
+msgstr "Irreführender Account"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:67
#: src/lib/moderation/useReportOptions.ts:67
msgid "Misleading Post"
-msgstr ""
+msgstr "Irreführender Post"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
-msgstr ""
+msgstr "Moderation"
#: src/components/moderation/ModerationDetailsDialog.tsx:138
msgid "Moderation details"
-msgstr ""
+msgstr "Moderationsdetails"
#: src/components/ListCard.tsx:149
#: src/view/com/modals/UserAddRemoveLists.tsx:222
@@ -4320,43 +4739,43 @@ msgstr "Moderationsliste von <0/>"
msgid "Moderation list by you"
msgstr "Moderationsliste von dir"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "Moderationsliste erstellt"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "Moderationsliste aktualisiert"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Moderationslisten"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Moderationslisten"
#: src/components/moderation/LabelPreference.tsx:247
msgid "moderation settings"
-msgstr ""
+msgstr "Moderationseinstellungen"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
-msgstr ""
+msgstr "Moderationsstatus"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Moderationswerkzeuge"
#: src/components/moderation/ModerationDetailsDialog.tsx:52
#: src/lib/moderation/useModerationCauseDescription.ts:47
msgid "Moderator has chosen to set a general warning on the content."
-msgstr "Der Moderator hat beschlossen, eine allgemeine Warnung vor dem Inhalt auszusprechen."
+msgstr "Der Moderator hat sich entschieden, eine allgemeine Warnung für den Inhalt festzulegen."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Mehr"
@@ -4365,29 +4784,29 @@ msgstr "Mehr"
msgid "More feeds"
msgstr "Mehr Feeds"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Mehr Optionen"
#: src/screens/Settings/ThreadPreferences.tsx:94
msgid "Most-liked first"
-msgstr ""
+msgstr "Am meisten geliked zuerst"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Beliebteste Antworten zuerst"
#: src/screens/Onboarding/state.ts:105
msgid "Movies"
-msgstr ""
+msgstr "Filme"
#: src/screens/Onboarding/state.ts:106
msgid "Music"
-msgstr ""
+msgstr "Musik"
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95
@@ -4398,51 +4817,51 @@ msgstr "Stummschalten"
#: src/components/RichTextTag.tsx:140
#: src/components/RichTextTag.tsx:153
msgid "Mute {tag}"
-msgstr ""
+msgstr "{tag} stummschalten"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
-msgstr ""
+msgstr "Account stummschalten"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
-msgstr "Konten stummschalten"
+msgstr "Accounts stummschalten"
#: src/components/dms/ConvoMenu.tsx:232
#: src/components/dms/ConvoMenu.tsx:238
msgid "Mute conversation"
-msgstr ""
+msgstr "Konversation stummschalten"
#: src/components/dialogs/MutedWords.tsx:253
msgid "Mute in:"
-msgstr ""
+msgstr "Stummschalten in:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Liste stummschalten"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
-msgstr "Diese Konten stummschalten?"
+msgstr "Diese Accounts stummschalten?"
#: src/components/dialogs/MutedWords.tsx:185
msgid "Mute this word for 24 hours"
-msgstr ""
+msgstr "Dieses Wort für 24 Stunden stummschalten"
#: src/components/dialogs/MutedWords.tsx:224
msgid "Mute this word for 30 days"
-msgstr ""
+msgstr "Dieses Wort für 30 Tage stummschalten"
#: src/components/dialogs/MutedWords.tsx:209
msgid "Mute this word for 7 days"
-msgstr ""
+msgstr "Dieses Wort für 7 Tage stummschalten"
#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
-msgstr "Dieses Wort in Beitragstexten und Tags stummschalten"
+msgstr "Dieses Wort in Post-Text und Tags stummschalten"
#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
@@ -4450,57 +4869,57 @@ msgstr "Dieses Wort nur in Tags stummschalten"
#: src/components/dialogs/MutedWords.tsx:170
msgid "Mute this word until you unmute it"
-msgstr ""
+msgstr "Dieses Wort stummschalten, bis du es wieder freigibst"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Thread stummschalten"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Wörter und Tags stummschalten"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
-msgstr "Stummgeschaltete Konten"
+msgstr "Stummgeschaltete Accounts"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
-msgstr "Stummgeschaltete Konten"
+msgstr "Stummgeschaltete Accounts"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
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."
+msgstr "Bei stummgeschalteten Accounts werden dazugehörige Posts aus deinem Feed und deinen Mitteilungen entfernt. Stummschaltungen sind völlig privat."
#: src/lib/moderation/useModerationCauseDescription.ts:92
msgid "Muted by \"{0}\""
msgstr "Stummgeschaltet über \"{0}\""
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Stummgeschaltete Wörter und Tags"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
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."
+msgstr "Stummschaltung ist privat. Stummgeschaltete Accounts können mit dir interagieren, aber du siehst ihre Posts nicht und erhältst keine Mitteilungen von ihnen."
#: src/components/dialogs/BirthDateSettings.tsx:35
#: src/components/dialogs/BirthDateSettings.tsx:38
msgid "My Birthday"
msgstr "Mein Geburtstag"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "Meine Feeds"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
-msgstr ""
+msgstr "Name"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "Name ist erforderlich"
@@ -4513,7 +4932,7 @@ msgstr "Name ist erforderlich"
#: src/lib/moderation/useReportOptions.ts:106
#: src/lib/moderation/useReportOptions.ts:114
msgid "Name or Description Violates Community Standards"
-msgstr ""
+msgstr "Name oder Beschreibung verstößt gegen Gemeinschaftsstandards"
#: src/screens/Onboarding/index.tsx:22
#: src/screens/Onboarding/state.ts:107
@@ -4521,8 +4940,13 @@ msgid "Nature"
msgstr "Natur"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
-msgstr ""
+msgstr "Navigiere zu {0}"
+
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr "Zum Starterpaket navigieren"
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
@@ -4530,55 +4954,68 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "Navigiert zum nächsten Bildschirm"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Navigiert zu deinem Profil"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
-msgstr ""
+msgstr "Möchtest du es ändern?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
-msgstr ""
+msgstr "Möchtest du eine Urheberrechtsverletzung melden?"
#: src/screens/Onboarding/StepFinished.tsx:282
msgid "Never lose access to your followers or data."
msgstr "Verliere nie den Zugriff auf deine Follower oder Daten."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
-msgstr ""
+msgstr "Egal, erstelle einen Handle für mich"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Neu"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Neu"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
+msgstr "Neuer Chat"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr "Neue Funktion"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
-msgstr ""
+msgstr "Neuer Handle"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
-msgstr ""
+msgstr "Neue Liste"
#: src/components/dms/NewMessagesPill.tsx:92
msgid "New messages"
-msgstr ""
+msgstr "Neue Nachrichten"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Neue Moderationsliste"
@@ -4590,42 +5027,43 @@ msgstr "Neues Passwort"
msgid "New Password"
msgstr "Neues Passwort"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
-msgstr "Neuer Beitrag"
+msgstr "Neuer Post"
#: src/view/com/feeds/FeedPage.tsx:166
msgctxt "action"
msgid "New post"
-msgstr "Neuer Beitrag"
+msgstr "Neuer Post"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
-msgstr "Neuer Beitrag"
+msgstr "Neuer Post"
#: src/components/NewskieDialog.tsx:83
msgid "New user info dialog"
-msgstr ""
+msgstr "Neuer Nutzer-Info-Dialog"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Neue Benutzerliste"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "Neueste Antworten zuerst"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Aktuelles"
@@ -4653,38 +5091,46 @@ msgstr "Nächstes Bild"
#: src/screens/Settings/AppPasswords.tsx:108
msgid "No app passwords yet"
-msgstr ""
+msgstr "Noch keine App-Passwörter"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
+msgstr "Kein DNS-Panel"
+
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
msgstr ""
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
-msgstr ""
+msgstr "Keine hervorgehobenen GIFs gefunden. Möglicherweise gibt es ein Problem mit Tenor."
#: src/screens/StarterPack/Wizard/StepFeeds.tsx:119
msgid "No feeds found. Try searching for something else."
+msgstr "Keine Feeds gefunden. Versuche, nach etwas anderem zu suchen."
+
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
-msgstr ""
+msgstr "Noch keine Gefällt-mir-Angaben"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "{0} wird nicht mehr gefolgt"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr ""
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr "Nicht länger als {MAX_SERVICE_HANDLE_LENGTH, plural, other {# Zeichen}}"
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
-msgstr ""
+msgstr "Noch keine Nachrichten"
#: src/view/com/notifications/NotificationFeed.tsx:116
msgid "No notifications yet!"
@@ -4693,52 +5139,59 @@ msgstr "Noch keine Mitteilungen!"
#: src/screens/Messages/Settings.tsx:101
#: src/screens/Messages/Settings.tsx:104
msgid "No one"
-msgstr ""
+msgstr "Niemand"
#: src/components/WhoCanReply.tsx:246
msgid "No one but the author can quote this post."
-msgstr ""
+msgstr "Niemand außer dem Autor kann diesen Post zitieren."
#: src/screens/Profile/Sections/Feed.tsx:66
msgid "No posts yet."
-msgstr "Keine Beiträge bisher."
+msgstr "Keine Posts bisher."
#: src/view/com/post-thread/PostQuotes.tsx:105
msgid "No quotes yet"
-msgstr ""
+msgstr "Noch keine Zitate"
#: src/view/com/post-thread/PostRepostedBy.tsx:90
msgid "No reposts yet"
-msgstr ""
+msgstr "Noch keine Reposts"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Kein Ergebnis"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
-msgstr ""
+msgstr "Keine Ergebnisse"
+
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr "Keine Ergebnisse für „{0}“."
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "Keine Ergebnisse gefunden"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "Keine Ergebnisse für \"{query}\" gefunden"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "Keine Ergebnisse für {query} gefunden"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr "Keine Ergebnisse."
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
-msgstr ""
+msgstr "Keine Suchergebnisse gefunden für „{search}“."
#: src/components/dialogs/EmbedConsent.tsx:104
#: src/components/dialogs/EmbedConsent.tsx:111
@@ -4750,22 +5203,21 @@ msgid "Nobody"
msgstr "Niemand"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
-msgstr ""
+msgstr "Niemand hat das bisher geliked. Vielleicht solltest du der Erste sein!"
#: src/view/com/post-thread/PostQuotes.tsx:107
msgid "Nobody has quoted this yet. Maybe you should be the first!"
-msgstr ""
+msgstr "Niemand hat das bisher zitiert. Vielleicht solltest du der Erste sein!"
#: src/view/com/post-thread/PostRepostedBy.tsx:92
msgid "Nobody has reposted this yet. Maybe you should be the first!"
-msgstr ""
+msgstr "Niemand hat das bisher repostet. Vielleicht solltest du der Erste sein!"
#: src/screens/StarterPack/Wizard/StepProfiles.tsx:104
msgid "Nobody was found. Try searching for someone else."
-msgstr ""
+msgstr "Niemand wurde gefunden. Versuche, nach jemand anderem zu suchen."
#: src/lib/moderation/useGlobalLabelStrings.ts:42
msgid "Non-sexual Nudity"
@@ -4773,78 +5225,74 @@ msgstr "Nicht-sexuelle Nacktheit"
#: src/components/KnownFollowers.tsx:255
msgid "Not followed by anyone you're following"
-msgstr ""
+msgstr "Wird von niemandem gefolgt, dem du folgst"
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "Nicht gefunden"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "Nicht jetzt"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
-msgstr ""
+msgstr "Hinweis über das Teilen"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88
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."
+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 ausgeloggten Nutzern möglicherweise weiterhin von anderen Apps und Websites angezeigt."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
-msgstr ""
+msgstr "Nichts zu sehen"
#: src/screens/Settings/NotificationSettings.tsx:64
msgid "Notification filters"
-msgstr ""
+msgstr "Mitteilungenfilter"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
-msgstr ""
+msgstr "Mitteilungseinstellungen"
#: src/screens/Settings/NotificationSettings.tsx:46
msgid "Notification Settings"
-msgstr ""
+msgstr "Mitteilungseinstellungen"
#: src/screens/Messages/Settings.tsx:123
msgid "Notification sounds"
-msgstr ""
+msgstr "Mitteilungstöne"
#: src/screens/Messages/Settings.tsx:120
msgid "Notification Sounds"
-msgstr ""
+msgstr "Mitteilungstöne"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Mitteilungen"
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
-msgstr ""
+msgstr "jetzt"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
-msgstr ""
+msgstr "Jetzt"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Nacktheit"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:78
#: src/lib/moderation/useReportOptions.ts:78
msgid "Nudity or adult content not labeled as such"
-msgstr ""
+msgstr "Nacktheit oder Erwachseneninhalt nicht als solche gekennzeichnet"
#: src/lib/moderation/useLabelBehaviorDescription.ts:11
msgid "Off"
@@ -4857,45 +5305,47 @@ msgstr "Oh nein!"
#: src/screens/Onboarding/StepInterests/index.tsx:124
msgid "Oh no! Something went wrong."
-msgstr "Oh nein, da ist etwas schief gelaufen."
+msgstr "Oh nein! Etwas ist schiefgegangen."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
-msgstr ""
+msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
-msgstr ""
+msgstr "Okay"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "Älteste Antworten zuerst"
#: src/components/StarterPack/QrCode.tsx:82
msgid "on<0><1/><2><3/>2>0>"
-msgstr ""
+msgstr "auf<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Onboarding zurücksetzen"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
-msgstr ""
+msgstr "Bei einem oder mehreren GIFs fehlen Alt-Texte."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "Bei einem oder mehreren Bildern fehlen Alt-Texte."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
-msgstr ""
+msgstr "Bei einem oder mehreren Videos fehlen Alt-Texte."
#: src/screens/Onboarding/StepProfile/index.tsx:115
msgid "Only .jpg and .png files are supported"
@@ -4905,29 +5355,29 @@ msgstr "Nur .jpg- und .png-Dateien werden unterstützt"
msgid "Only {0} can reply."
msgstr "Nur {0} kann antworten."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Enthält nur Buchstaben, Nummern und Bindestriche"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
-msgstr ""
+msgstr "Es werden nur Bilddateien unterstützt"
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40
msgid "Only WebVTT (.vtt) files are supported"
-msgstr ""
+msgstr "Es werden nur WebVTT-Dateien (.vtt) unterstützt"
#: src/components/Lists.tsx:94
msgid "Oops, something went wrong!"
msgstr "Huch, da ist etwas schief gelaufen!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "Huch!"
@@ -4935,69 +5385,82 @@ msgstr "Huch!"
msgid "Open"
msgstr "Öffnen"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr ""
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
-msgstr ""
+msgstr "Avatar-Editor öffnen"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
-msgstr ""
+msgstr "Konversationsoptionen öffnen"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
-msgstr ""
+msgstr "Seitenmenü öffnen"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Emoji-Picker öffnen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
-msgstr ""
+msgstr "Feed-Infobildschirm öffnen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
-msgstr ""
+msgstr "Feed-Optionsmenü öffnen"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr "Vollständige Emoji-Liste öffnen"
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
-msgstr ""
+msgstr "Link zu {niceUrl} öffnen"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
-msgstr ""
+msgstr "Nachrichtenoptionen öffnen"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
-msgstr ""
+msgstr "Moderations-Debugseite öffnen"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Einstellungen für stummgeschaltete Wörter und Tags öffnen"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
-msgid "Open post options menu"
-msgstr "Beitragsoptionsmenü öffnen"
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr "Paket öffnen"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
-msgid "Open starter pack menu"
+#: src/components/PostControls/PostMenu/index.tsx:62
+msgid "Open post options menu"
+msgstr "Post-Optionen-Menü öffnen"
+
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
msgstr ""
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
+msgid "Open starter pack menu"
+msgstr "Startpaketmenü öffnen"
+
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Storybook öffnen"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
-msgstr ""
+msgstr "Systemprotokoll öffnen"
#: src/view/com/util/forms/DropdownButton.tsx:162
msgid "Opens {numItems} options"
@@ -5005,91 +5468,95 @@ msgstr "Öffnet {numItems} Optionen"
#: src/view/com/composer/labels/LabelsBtn.tsx:62
msgid "Opens a dialog to add a content warning to your post"
-msgstr ""
+msgstr "Öffnet einen Dialog, um eine Inhaltswarnung zu deinem Post hinzuzufügen"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:61
msgid "Opens a dialog to choose who can reply to this thread"
-msgstr ""
+msgstr "Öffnet einen Dialog um auszuwählen, wer auf diesen Thread antworten kann"
#: src/view/screens/Log.tsx:59
msgid "Opens additional details for a debug entry"
msgstr "Öffnet zusätzliche Details für einen Debug-Eintrag"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
-msgstr ""
+msgstr "Öffnet den Alt-Text-Dialog"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Öffnet die Kamera auf dem Gerät"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
-msgstr ""
+msgstr "Öffnet den Untertitel- und Alt-Text-Dialog"
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
-msgstr ""
+msgstr "Öffnet den Dialog zum Ändern des Handles"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35
msgid "Opens composer"
-msgstr "Öffnet den Beitragsverfasser"
+msgstr ""
#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51
msgid "Opens device photo gallery"
msgstr "Öffnet die Gerätefotogalerie"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
-msgstr ""
+msgstr "Öffnet die Emoji-Auswahl"
#: src/view/com/auth/SplashScreen.tsx:49
#: src/view/com/auth/SplashScreen.web.tsx:111
msgid "Opens flow to create a new Bluesky account"
-msgstr "Öffnet den Vorgang, ein neuen Bluesky Konto anzulegen"
+msgstr "Öffnet den Ablauf, um einen neuen Bluesky-Account zu erstellen"
#: src/view/com/auth/SplashScreen.tsx:63
#: src/view/com/auth/SplashScreen.web.tsx:125
msgid "Opens flow to sign in to your existing Bluesky account"
-msgstr ""
+msgstr "Öffnet den Ablauf zum Einloggen bei deinem bestehenden Bluesky-Account"
#: src/view/com/composer/photos/SelectGifBtn.tsx:36
msgid "Opens GIF select dialog"
-msgstr ""
+msgstr "Öffnet GIF-Auswahldialog"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
-msgstr ""
+msgstr "Öffnet Helpdesk im Browser"
#: src/view/com/modals/InviteCodes.tsx:173
msgid "Opens list of invite codes"
msgstr "Öffnet die Liste der Einladungscodes"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Öffnet das Formular zum Zurücksetzen des Passworts"
#: src/view/com/modals/LinkWarning.tsx:93
msgid "Opens the linked website"
-msgstr ""
+msgstr "Öffnet die verlinkte Webseite"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
-msgstr ""
+msgstr "Öffnet dieses Profil"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
-msgstr ""
+msgstr "Öffnet Videoauswahl"
#: src/components/dms/ReportDialog.tsx:221
#: src/components/ReportDialog/SubmitView.tsx:168
msgid "Optionally provide additional information below:"
-msgstr ""
+msgstr "Optional kannst du unten zusätzliche Informationen angeben:"
#: src/components/dialogs/MutedWords.tsx:299
msgid "Options:"
-msgstr ""
+msgstr "Optionen:"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Or combine these options:"
@@ -5097,37 +5564,37 @@ msgstr "Oder kombiniere diese Optionen:"
#: src/screens/Deactivated.tsx:200
msgid "Or, continue with another account."
-msgstr ""
+msgstr "Oder mit einem anderen Account fortfahren."
#: src/screens/Deactivated.tsx:187
msgid "Or, sign in to one of your other accounts."
-msgstr ""
+msgstr "Oder logge dich in einem deiner anderen Accounts ein."
#: src/screens/Settings/components/OTAInfo.tsx:52
msgid "OTA status: ..."
-msgstr ""
+msgstr "OTA-Status: ..."
#: src/screens/Settings/components/OTAInfo.tsx:48
msgid "OTA status: Available!"
-msgstr ""
+msgstr "OTA-Status: Verfügbar!"
#: src/screens/Settings/components/OTAInfo.tsx:50
msgid "OTA status: Error fetching update"
-msgstr ""
+msgstr "OTA-Status: Fehler beim Abrufen des Updates"
#: src/screens/Settings/components/OTAInfo.tsx:54
msgid "OTA status: None available"
-msgstr ""
+msgstr "OTA-Status: Kein Update verfügbar"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Andere"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
-msgstr "Anderes Konto"
+msgstr "Anderer Account"
#: src/view/com/composer/select-language/SelectLangBtn.tsx:93
msgid "Other..."
@@ -5135,11 +5602,11 @@ msgstr "Andere..."
#: src/components/dms/ReportDialog.tsx:348
msgid "Our moderation team has received your report."
-msgstr ""
+msgstr "Unser Moderationsteam hat deinen Bericht erhalten."
#: src/screens/Messages/components/ChatDisabled.tsx:28
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
-msgstr "Unsere Moderatoren haben Berichte geprüft und beschlossen, Ihren Chat-Zugriff auf Bluesky zu deaktivieren."
+msgstr "Unsere Moderatoren haben die Meldungen geprüft und beschlossen, deinen Zugriff auf Chats auf Bluesky zu deaktivieren."
#: src/components/Lists.tsx:190
#: src/view/screens/NotFound.tsx:47
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Seite nicht gefunden"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5161,11 +5628,11 @@ msgstr "Passwort"
#: src/view/com/modals/ChangePassword.tsx:154
msgid "Password Changed"
-msgstr ""
+msgstr "Passwort geändert"
#: src/view/com/modals/ChangePassword.tsx:99
msgid "Password must be at least 8 characters long."
-msgstr ""
+msgstr "Passwort muss mindestens 8 Zeichen lang sein."
#: src/screens/Login/index.tsx:181
msgid "Password updated"
@@ -5179,36 +5646,33 @@ msgstr "Passwort aktualisiert!"
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369
msgid "Pause"
-msgstr ""
+msgstr "Pausieren"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320
msgid "Pause video"
-msgstr ""
+msgstr "Video pausieren"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
-msgstr ""
+msgstr "Personen"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "Personen gefolgt von @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "Personen, die @{0} folgen"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "Die Erlaubnis zum Zugriff auf die Kamerarolle ist erforderlich."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "Die Berechtigung zum Zugriff auf die Kamerarolle wurde verweigert. Bitte aktiviere sie in deinen Systemeinstellungen."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr ""
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
-msgstr ""
+msgstr "Personenumschaltung"
#: src/screens/Onboarding/index.tsx:28
#: src/screens/Onboarding/state.ts:109
@@ -5217,61 +5681,56 @@ msgstr "Haustiere"
#: src/screens/Onboarding/state.ts:110
msgid "Photography"
-msgstr ""
+msgstr "Fotografie"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
-msgstr "Bilder, die für Erwachsene bestimmt sind."
+msgstr "Bilder für Erwachsene."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
-msgstr ""
+msgstr "Feed anheften"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr ""
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr "Feed anheften"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "An die Startseite anheften"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
-msgstr ""
+msgstr "An Startbildschirm anheften"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
-msgstr ""
+msgstr "An dein Profil anheften"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Angeheftet"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
-msgstr ""
+msgstr "{0} an Startseite angepinnt"
#: src/view/screens/SavedFeeds.tsx:123
msgid "Pinned Feeds"
msgstr "Angeheftete Feeds"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
-msgstr ""
+msgstr "An deine Feeds angepinnt"
#: src/view/com/util/post-embeds/GifEmbed.tsx:43
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370
msgid "Play"
-msgstr ""
+msgstr "Abspielen"
#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107
msgid "Play {0}"
@@ -5280,7 +5739,7 @@ msgstr "{0} abspielen"
#: src/view/com/util/post-embeds/VideoEmbed.tsx:134
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321
msgid "Play video"
-msgstr ""
+msgstr "Video abspielen"
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -5288,11 +5747,11 @@ msgstr "Video abspielen"
#: src/view/com/util/post-embeds/GifEmbed.tsx:42
msgid "Plays or pauses the GIF"
-msgstr ""
+msgstr "Spielt das GIF ab oder pausiert es"
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141
msgid "Plays or pauses the video"
-msgstr ""
+msgstr "Spielt das Video ab oder pausiert es"
#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106
msgid "Plays the GIF"
@@ -5300,57 +5759,83 @@ msgstr "Spielt das GIF ab"
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59
msgid "Plays the video"
-msgstr ""
+msgstr "Spielt das Video ab"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr "Bitte füge alle zutreffenden Inhaltswarnungen für die Medien hinzu, die du postest."
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Bitte wähle deinen Handle."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Bitte wähle dein Passwort."
-#: src/screens/Signup/state.ts:249
-msgid "Please complete the verification captcha."
-msgstr "Bitte fülle das Verifizierungs-Captcha aus."
-
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Bitte bestätige deine E-Mail, bevor du sie änderst. Dies ist eine vorübergehende Anforderung, während E-Mail-Aktualisierungstools hinzugefügt werden, und wird bald wieder entfernt."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
-msgid "Please double-check that you have entered your email address correctly."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
msgstr ""
+#: src/screens/Signup/state.ts:301
+msgid "Please complete the verification captcha."
+msgstr "Bitte vervollständige das Verifizierungs-Captcha."
+
+#: src/screens/Signup/StepInfo/index.tsx:109
+msgid "Please double-check that you have entered your email address correctly."
+msgstr "Bitte überprüfe nochmal, ob du deine E-Mail-Adresse korrekt eingegeben hast."
+
#: src/screens/Login/SetNewPasswordForm.tsx:58
msgid "Please enter a password."
-msgstr ""
+msgstr "Bitte ein Passwort eingeben."
#: src/view/com/modals/ChangePassword.tsx:94
msgid "Please enter a password. It must be at least 8 characters long."
-msgstr ""
+msgstr "Bitte gib ein Passwort ein. Es muss mindestens 8 Zeichen lang sein."
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114
msgid "Please enter a unique name for this app password or use our randomly generated one."
+msgstr "Bitte gib einen eindeutigen Namen für dieses App-Passwort ein oder verwende unseren zufällig generierten Namen."
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
msgstr ""
#: 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"
+msgstr "Bitte gib zum Stummschalten ein gültiges Wort, Tag oder eine Phrase ein"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr ""
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Bitte gib deine E-Mail ein."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
+msgstr "Bitte gib deinen Einladungscode ein."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
msgstr ""
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
-msgstr ""
+msgstr "Bitte gib dein Passwort ein"
#: src/view/com/modals/DeleteAccount.tsx:235
msgid "Please enter your password as well:"
@@ -5358,143 +5843,145 @@ msgstr "Bitte gib auch dein Passwort ein:"
#: src/screens/Login/LoginForm.tsx:94
msgid "Please enter your username"
-msgstr ""
+msgstr "Bitte gib deinen Nutzernamen ein"
#: src/components/moderation/LabelsOnMeDialog.tsx:290
msgid "Please explain why you think this label was incorrectly applied by {0}"
-msgstr ""
+msgstr "Bitte erläutere, warum du denkst, dass diese Kennzeichnung von {0} fälschlicherweise vergeben wurde"
#: src/screens/Messages/components/ChatDisabled.tsx:110
msgid "Please explain why you think your chats were incorrectly disabled"
-msgstr ""
+msgstr "Bitte erkläre, warum du denkst, dass deine Chats fälschlicherweise deaktiviert wurden"
#: src/components/moderation/ReportDialog/action.ts:31
msgid "Please select a moderation service"
-msgstr ""
+msgstr "Bitte wähle einen Moderationsdienst aus"
#: src/components/moderation/ReportDialog/action.ts:28
msgid "Please select a reason for this report"
-msgstr ""
+msgstr "Bitte wähle einen Grund für diese Meldung aus"
#: src/lib/hooks/useAccountSwitcher.ts:45
#: src/lib/hooks/useAccountSwitcher.ts:55
msgid "Please sign in as @{0}"
+msgstr "Bitte melde dich als @{0} an"
+
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Bitte verifiziere deine E-Mail"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Politik"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr ""
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Pornografie"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
-msgstr "Beitrag"
+msgstr "Posten"
#: src/view/com/post-thread/PostThread.tsx:540
msgctxt "description"
msgid "Post"
-msgstr "Beitrag"
+msgstr "Post"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
-msgstr ""
+msgstr "Alle posten"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
-msgstr "Beitrag von {0}"
+msgstr "Post von {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
-msgstr "Beitrag von @{0}"
+msgstr "Post von @{0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "Post gelöscht"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
-msgstr ""
+msgstr "Fehler beim Hochladen des Posts. Bitte prüfe deine Internetverbindung und versuche es erneut."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
-msgstr ""
+msgstr "Post wurde gelöscht"
#: src/view/com/post-thread/PostThread.tsx:269
msgid "Post hidden"
-msgstr "Beitrag ausgeblendet"
+msgstr "Post ausgeblendet"
#: src/components/moderation/ModerationDetailsDialog.tsx:107
#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "Post Hidden by Muted Word"
-msgstr ""
+msgstr "Post ausgeblendet aufgrund von stummgeschaltetem Wort"
#: src/components/moderation/ModerationDetailsDialog.tsx:110
#: src/lib/moderation/useModerationCauseDescription.ts:115
msgid "Post Hidden by You"
-msgstr ""
+msgstr "Post von dir ausgeblendet"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100
msgid "Post interaction settings"
-msgstr ""
+msgstr "Post-Interaktionseinstellungen"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
-msgstr ""
+msgstr "Post-Interaktionseinstellungen"
#: src/view/com/composer/select-language/SelectLangBtn.tsx:89
msgid "Post language"
-msgstr "Beitragssprache"
+msgstr "Post-Sprache"
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:77
msgid "Post Languages"
-msgstr "Beitragssprachen"
+msgstr "Post-Sprachen"
#: src/view/com/post-thread/PostThread.tsx:264
#: src/view/com/post-thread/PostThread.tsx:276
msgid "Post not found"
-msgstr "Beitrag nicht gefunden"
+msgstr "Post nicht gefunden"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "Post angeheftet"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "Post gelöst"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
-msgstr "Beiträge"
+msgstr "Posts"
#: 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 ""
+msgstr "Posts können basierend auf ihrem Text, ihren Tags oder beidem stummgeschaltet werden. Wir empfehlen, häufig verwendete Wörter zu vermeiden, da dies dazu führen kann, dass keine Posts mehr angezeigt werden."
#: src/view/com/posts/PostFeedErrorMessage.tsx:68
msgid "Posts hidden"
-msgstr "Ausgeblendete Beiträge"
+msgstr "Posts ausgeblendet"
#: src/view/com/modals/LinkWarning.tsx:60
msgid "Potentially Misleading Link"
@@ -5503,65 +5990,65 @@ msgstr "Potenziell irreführender Link"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "Präferenz gespeichert"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
-msgstr ""
+msgstr "Drücke, um die Verbindung erneut zu versuchen"
#: src/components/Error.tsx:60
#: src/components/Lists.tsx:99
#: src/screens/Messages/components/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:47
msgid "Press to retry"
-msgstr ""
+msgstr "Zum wiederholen drücken"
#: src/components/KnownFollowers.tsx:125
msgid "Press to view followers of this account that you also follow"
-msgstr ""
+msgstr "Drücken, um Follower dieses Accounts anzuzeigen, denen du ebenfalls folgst"
#: src/view/com/lightbox/Lightbox.web.tsx:150
msgid "Previous image"
msgstr "Vorheriges Bild"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Primäre Sprache"
#: src/screens/Settings/ThreadPreferences.tsx:112
#: src/screens/Settings/ThreadPreferences.tsx:117
msgid "Prioritize your Follows"
-msgstr ""
+msgstr "Priorisiere deine Follows"
#: src/screens/Settings/NotificationSettings.tsx:67
msgid "Priority notifications"
-msgstr ""
+msgstr "Prioritätsmitteilungen"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
-msgstr "Privatsphäre"
+msgstr "Datenschutz"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
-msgstr "Privatsphäre und Sicherheit"
+msgstr "Datenschutz und Sicherheit"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
-msgstr "Privatsphäre und Sicherheit"
+msgstr "Datenschutz und Sicherheit"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Datenschutzerklärung"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Video wird verarbeitet..."
@@ -5570,23 +6057,23 @@ msgstr "Video wird verarbeitet..."
msgid "Processing..."
msgstr "Wird verarbeitet..."
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "Profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Profil"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "Profil aktualisiert"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
@@ -5594,43 +6081,63 @@ msgstr "Öffentlich"
#: src/view/com/lists/MyLists.tsx:77
msgid "Public, sharable lists of users to mute or block in bulk."
-msgstr ""
+msgstr "Öffentliche, teilbare Listen von Nutzern, die zum Stummschalten oder Blockieren verwendet werden können."
#: src/view/com/lists/MyLists.tsx:72
msgid "Public, sharable lists which can be used to drive feeds."
-msgstr ""
+msgstr "Öffentliche, teilbare Listen, die verwendet werden können, um Feeds zu steuern."
+
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr "Post veröffentlichen"
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr "Posts veröffentlichen"
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr "Antworten veröffentlichen"
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr "Antwort veröffentlichen"
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
-msgstr ""
+msgstr "QR-Code in die Zwischenablage kopiert!"
#: src/components/StarterPack/QrCodeDialog.tsx:112
msgid "QR code has been downloaded!"
-msgstr ""
+msgstr "QR-Code wurde heruntergeladen!"
#: src/components/StarterPack/QrCodeDialog.tsx:113
msgid "QR code saved to your camera roll!"
-msgstr ""
+msgstr "QR-Code in deiner Galerie gespeichert!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
-msgstr "Beitrag zitieren"
+msgstr "Post zitieren"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr ""
@@ -5642,94 +6149,103 @@ msgstr "Zitateinstellungen"
msgid "Quotes"
msgstr "Zitate"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
-msgstr ""
+msgstr "Zitate dieses Posts"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Zufällig (\"Poster's Roulette\")"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
-msgstr ""
+msgstr "Limit überschritten – du hast innerhalb kurzer Zeit zu oft versucht, deinen Handle zu ändern. Bitte warte eine Minute, bevor du es erneut versuchst."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
-msgstr ""
+msgstr "Zitat wieder anhängen"
+
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr "Mit {emoji} reagieren"
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
-msgstr "Account reaktivieren"
+msgstr "Reaktiviere deinen Account"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr "Blogpost lesen (auf Englisch)"
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
-msgstr ""
+msgstr "Weniger lesen"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
-msgstr ""
+msgstr "Mehr lesen"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
-msgstr ""
+msgstr "Lies den Bluesky-Blog"
#: src/screens/Signup/StepInfo/Policies.tsx:58
#: src/screens/Signup/StepInfo/Policies.tsx:84
msgid "Read the Bluesky Privacy Policy"
-msgstr ""
+msgstr "Bluesky-Datenschutzerklärung lesen"
#: src/screens/Signup/StepInfo/Policies.tsx:51
#: src/screens/Signup/StepInfo/Policies.tsx:71
msgid "Read the Bluesky Terms of Service"
-msgstr ""
+msgstr "Bluesky-Nutzungsbedingungen lesen"
#: src/screens/Takendown.tsx:162
#: src/screens/Takendown.tsx:170
msgid "Reason for appeal"
-msgstr ""
+msgstr "Grund für den Einspruch"
#: src/components/dms/ReportDialog.tsx:212
msgid "Reason:"
msgstr "Grund: "
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
-msgstr ""
+msgstr "Letzte Suchen"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
-msgstr ""
+msgstr "Empfohlen"
#: src/screens/Messages/components/MessageListError.tsx:20
msgid "Reconnect"
-msgstr ""
+msgstr "Erneut verbinden"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
-msgstr ""
+msgstr "Ablehnen"
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
-msgstr ""
+msgstr "Chat-Anfrage ablehnen"
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
-msgstr ""
+msgstr "Konversationen neu laden"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5737,28 +6253,28 @@ msgstr "Entfernen"
#: src/components/StarterPack/Wizard/WizardListCard.tsx:58
msgid "Remove {displayName} from starter pack"
-msgstr ""
+msgstr "{displayName} aus dem Startpaket entfernen"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
-msgstr ""
+msgstr "{historyItem} entfernen"
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
-msgstr "Konto entfernen"
+msgstr "Account entfernen"
#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15
msgid "Remove attachment"
msgstr "Anhang entfernen"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Avatar entfernen"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "Banner entfernen"
@@ -5776,37 +6292,43 @@ msgstr "Feed entfernen"
msgid "Remove feed?"
msgstr "Feed entfernen?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Aus meinen Feeds entfernen"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
-msgstr ""
+msgstr "Aus Schnellzugriff entfernen?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
-msgstr ""
+msgstr "Aus gespeicherten Feeds entfernen"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
-msgstr ""
+msgstr "Aus deinen Feeds entfernen?"
#: src/view/com/composer/photos/Gallery.tsx:203
msgid "Remove image"
msgstr "Bild entfernen"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr ""
+
#: 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:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Profil entfernen"
@@ -5814,18 +6336,33 @@ msgstr "Profil entfernen"
msgid "Remove quote"
msgstr "Zitat entfernen"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Repost entfernen"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Untertiteldatei entfernen"
#: src/view/com/posts/PostFeedErrorMessage.tsx:211
msgid "Remove this feed from your saved feeds"
-msgstr ""
+msgstr "Diesen Feed aus deinen gespeicherten Feeds entfernen"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr "Nutzer aus der Liste entfernen"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr "Verifizierung entfernen"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr "Deine Verifizierung für diesen Account entfernen?"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
@@ -5835,7 +6372,7 @@ msgstr "Vom Autor entfernt"
msgid "Removed by you"
msgstr "Von dir entfernt"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Aus der Liste entfernt"
@@ -5845,30 +6382,29 @@ msgid "Removed from my feeds"
msgstr "Aus meinen Feeds entfernt"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
-msgstr ""
+msgstr "Aus gespeicherten Feeds entfernt"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
-msgstr ""
+msgstr "Aus deinen Feeds entfernt"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr ""
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr "Verifizierung entfernt"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
-msgstr ""
+msgstr "Entfernt zitierten Post"
#: src/view/com/posts/FeedShutdownMsg.tsx:129
#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
-msgstr ""
+msgstr "Ersetzen durch „Discover“"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Antworten"
@@ -5878,205 +6414,207 @@ msgstr "Antworten deaktiviert"
#: src/components/WhoCanReply.tsx:224
msgid "Replies to this post are disabled."
-msgstr ""
+msgstr "Antworten zu diesem Post sind deaktiviert."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Antworten"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
-msgstr ""
+msgstr "Antworten ({0, plural, one {# Antwort} other {# Antworten}})"
#: src/components/moderation/ModerationDetailsDialog.tsx:116
#: src/lib/moderation/useModerationCauseDescription.ts:125
msgid "Reply Hidden by Thread Author"
-msgstr ""
+msgstr "Antwort vom Thread-Autor ausgeblendet"
#: src/components/moderation/ModerationDetailsDialog.tsx:115
#: src/lib/moderation/useModerationCauseDescription.ts:124
msgid "Reply Hidden by You"
-msgstr ""
+msgstr "Antwort von dir ausgeblendet"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385
msgid "Reply settings"
-msgstr ""
+msgstr "Antworteinstellungen"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370
msgid "Reply settings are chosen by the author of the thread"
-msgstr ""
+msgstr "Die Antworteinstellungen werden vom Autor des Threads festgelegt"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
-msgstr ""
+msgstr "Antwortsortierung"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
-msgstr ""
+msgstr "Antwort auf <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
-msgstr ""
+msgstr "Antwort auf einen blockierten Post"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
-msgstr ""
+msgstr "Antwort auf einen Post"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Antwort an dich"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "Sichtbarkeit der Antwort aktualisiert"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
-msgstr "Antwort wurde versteckt"
+msgstr "Antwort wurde erfolgreich ausgeblendet"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Melden"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
-msgstr ""
+msgstr "Account melden"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Konversation melden"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
-msgstr ""
+msgstr "Melde-Dialog"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Feed melden"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
msgstr "Liste melden"
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Nachricht melden"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
-msgstr "Beitrag melden"
+msgstr "Post melden"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
-msgstr ""
+msgstr "Startpaket melden"
#: src/components/dms/ReportDialog.tsx:345
msgid "Report submitted"
-msgstr ""
+msgstr "Meldung eingereicht"
#: src/components/ReportDialog/SelectReportOptionView.tsx:41
msgid "Report this content"
-msgstr "Inhalt melden"
+msgstr "Melde diesen Inhalt"
#: src/components/moderation/ReportDialog/copy.ts:31
#: src/components/ReportDialog/SelectReportOptionView.tsx:54
msgid "Report this feed"
-msgstr "Feed melden"
+msgstr "Melde diesen Feed"
#: src/components/moderation/ReportDialog/copy.ts:25
#: src/components/ReportDialog/SelectReportOptionView.tsx:51
msgid "Report this list"
-msgstr "Liste melden"
+msgstr "Melde diese Liste"
#: src/components/dms/ReportDialog.tsx:59
#: src/components/dms/ReportDialog.tsx:180
#: src/components/moderation/ReportDialog/copy.ts:43
#: src/components/ReportDialog/SelectReportOptionView.tsx:60
msgid "Report this message"
-msgstr "Nachricht melden"
+msgstr "Melde diese Nachricht"
#: src/components/moderation/ReportDialog/copy.ts:19
#: src/components/ReportDialog/SelectReportOptionView.tsx:48
msgid "Report this post"
-msgstr "Post melden"
+msgstr "Melde diesen Post"
#: src/components/moderation/ReportDialog/copy.ts:37
#: src/components/ReportDialog/SelectReportOptionView.tsx:57
msgid "Report this starter pack"
-msgstr ""
+msgstr "Dieses Startpaket melden"
#: src/components/moderation/ReportDialog/copy.ts:13
#: src/components/ReportDialog/SelectReportOptionView.tsx:45
msgid "Report this user"
-msgstr "Diesen Benutzer melden"
+msgstr "Diesen Nutzer melden"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
-msgstr ""
+msgstr "Reposten"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
-msgstr ""
+msgstr "Reposten"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
-msgstr ""
+msgstr "Reposten ({0, plural, one {# Repost} other {# Reposts}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
-msgstr "Reposten oder Beitrag zitieren"
+msgstr "Reposten oder Post zitieren"
#: src/screens/Post/PostRepostedBy.tsx:38
msgid "Reposted By"
-msgstr "Reposted von"
+msgstr "Repostet von"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
-msgstr "Reposted von {0}"
+msgstr "Repostet von {0}"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
-msgstr ""
+msgstr "Repostet von <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
-msgstr ""
+msgstr "Repostet von dir"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
-msgstr "Reposts von diesem Beitrag"
+msgstr "Reposts von diesem Post"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "Änderung anfordern"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr ""
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6086,34 +6624,40 @@ msgstr "Code anfordern"
#: src/screens/Settings/AccessibilitySettings.tsx:60
#: src/screens/Settings/AccessibilitySettings.tsx:65
msgid "Require alt text before posting"
-msgstr "Alternativtext vor der Beitragsveröffentlichung erforderlich machen"
+msgstr "Vor dem Posten ist ein Alternativtext erforderlich"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
-msgstr ""
+msgstr "Erfordert einen E-Mail-Code, um dich in deinen Account einzuloggen."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Für diesen Anbieter erforderlich"
#: src/components/LabelingServiceCard/index.tsx:80
msgid "Required in your region"
+msgstr "Erforderlich in deiner Region"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
msgstr ""
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
-msgstr ""
+msgstr "E-Mail erneut senden"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
-msgstr ""
+msgstr "E-Mail erneut senden"
#: src/components/intents/VerifyEmailIntentDialog.tsx:122
msgid "Resend Verification Email"
-msgstr ""
+msgstr "Verifizierungsmail erneut senden"
#: src/view/com/modals/ChangePassword.tsx:197
msgid "Reset code"
@@ -6123,8 +6667,8 @@ msgstr "Zurücksetzungscode"
msgid "Reset Code"
msgstr "Zurücksetzungscode"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "Onboardingstatus zurücksetzen"
@@ -6134,23 +6678,23 @@ msgstr "Passwort zurücksetzen"
#: src/screens/Login/LoginForm.tsx:324
msgid "Retries signing in"
-msgstr ""
+msgstr "Erneuter Versuch, sich einzuloggen"
#: src/view/com/util/error/ErrorMessage.tsx:62
#: src/view/com/util/error/ErrorScreen.tsx:99
msgid "Retries the last action, which errored out"
msgstr "Wiederholt die letzte Aktion, bei der ein Fehler aufgetreten ist"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,241 +6705,244 @@ msgstr "Wiederholt die letzte Aktion, bei der ein Fehler aufgetreten ist"
msgid "Retry"
msgstr "Wiederholen"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
-msgstr ""
+msgstr "Ladeoptionen für Meldung erneut laden"
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Zurück zur vorherigen Seite"
#: src/view/screens/NotFound.tsx:61
msgid "Returns to home page"
-msgstr ""
+msgstr "Zurück zur Startseite"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
-msgstr ""
+msgstr "Zurück zur vorherigen Seite"
#: src/screens/StarterPack/Wizard/index.tsx:287
msgid "Returns to the previous step"
-msgstr ""
+msgstr "Geht zum vorherigen Schritt zurück"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Speichern"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Speichern"
#: src/components/dialogs/BirthDateSettings.tsx:115
msgid "Save birthday"
-msgstr ""
+msgstr "Geburtstag speichern"
#: src/view/screens/SavedFeeds.tsx:105
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save changes"
-msgstr ""
+msgstr "Änderungen speichern"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Änderungen speichern"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
-msgstr ""
+msgstr "Bild speichern"
#: src/view/com/modals/CropImage.web.tsx:104
msgid "Save image crop"
msgstr "Bildausschnitt speichern"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
-msgstr ""
+msgstr "Neuen Handle speichern"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
-msgstr ""
+msgstr "QR-Code speichern"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
-msgstr ""
+msgstr "In meinen Feeds speichern"
#: src/view/screens/SavedFeeds.tsx:164
msgid "Saved Feeds"
msgstr "Gespeicherte Feeds"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
-msgstr ""
+msgstr "In deinen Feeds gespeichert"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "Speichert alle Änderungen an Deinem Profil"
#: src/view/com/modals/CropImage.web.tsx:105
msgid "Saves image crop settings"
-msgstr ""
+msgstr "Speichert Bildzuschnitt-Einstellungen"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
-msgstr ""
+msgstr "Sag Hallo!"
#: src/screens/Onboarding/index.tsx:33
#: src/screens/Onboarding/state.ts:112
msgid "Science"
msgstr "Wissenschaft"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
-msgstr "Zum Anfang blättern"
+msgstr "Nach oben scrollen"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Suche"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
-msgstr ""
+msgstr "Posts von @{0} durchsuchen"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
-msgstr ""
+msgstr "Nach Namen oder Interesse suchen"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
-msgstr ""
+msgstr "Feeds durchsuchen"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
-msgstr ""
+msgstr "Suche nach „{interestsDisplayName}“{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Nach \"{query}\" suchen"
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
-msgstr ""
+msgstr "Suche nach „{searchText}“"
#: src/screens/StarterPack/Wizard/index.tsx:474
msgid "Search for feeds that you want to suggest to others."
-msgstr ""
+msgstr "Suche nach Feeds, die du anderen vorschlagen möchtest."
-#: src/view/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr "Nach weiteren Accounts suchen"
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr "Nach weiteren Feeds suchen"
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
-msgstr ""
-
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Nach Benutzern suchen"
+msgstr "Suche nach Posts, Nutzern oder Feeds"
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "Suche nach GIFs"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
-msgstr ""
+msgstr "Meine Posts durchsuchen"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
-msgstr ""
+msgstr "Posts durchsuchen"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
-msgstr ""
+msgstr "Profile suchen"
#: src/components/dialogs/GifSelect.tsx:178
msgid "Search Tenor"
msgstr "Suche auf Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
-msgstr ""
+msgstr "Suche..."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
+msgstr "Sucht nach Profilen"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Sicherheitsschritt erforderlich"
#: src/components/RichTextTag.tsx:111
msgid "See {tag} posts"
-msgstr ""
+msgstr "{tag}-Posts ansehen"
#: src/components/RichTextTag.tsx:124
msgid "See {tag} posts by user"
-msgstr ""
+msgstr "{tag}-Posts des Nutzers ansehen"
#: src/components/RichTextTag.tsx:118
msgid "See #{tag} posts"
-msgstr ""
+msgstr "#{tag}-Posts ansehen"
#: src/components/RichTextTag.tsx:132
msgid "See #{tag} posts by user"
-msgstr ""
+msgstr "#{tag}-Posts des Nutzers ansehen"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
-msgstr "Jobs bei Bluesky anzeigen"
+msgstr "Sieh dir Jobs bei Bluesky an"
#: src/view/screens/SavedFeeds.tsx:205
msgid "See this guide"
-msgstr "Siehe diesen Leitfaden"
+msgstr "Sieh dir diesen Leitfaden an"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194
msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause"
-msgstr ""
+msgstr "Such-Slider. Verwende die Pfeiltasten, um vorwärts oder rückwärts zu suchen und Leertaste zum Abspielen/Pausieren"
#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67
msgid "Select a color"
@@ -6403,7 +6950,11 @@ msgstr "Wähle eine Farbe"
#: src/screens/Login/ChooseAccountForm.tsx:77
msgid "Select account"
-msgstr "Account wählen"
+msgstr "Account auswählen"
+
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr ""
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
@@ -6413,13 +6964,25 @@ msgstr "Einen Avatar auswählen"
msgid "Select an emoji"
msgstr "Ein Emoji auswählen"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Inhaltssprachen auswählen"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr ""
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
-msgstr "Von einem bestehenden Konto auswählen"
+msgstr "Von einem bestehenden Account auswählen"
#: src/view/com/composer/photos/SelectGifBtn.tsx:35
msgid "Select GIF"
@@ -6427,26 +6990,30 @@ msgstr "GIF auswählen"
#: src/components/dialogs/GifSelect.tsx:306
msgid "Select GIF \"{0}\""
-msgstr ""
+msgstr "GIF „{0}“ auswählen"
#: src/components/dialogs/MutedWords.tsx:142
msgid "Select how long to mute this word for."
-msgstr ""
+msgstr "Auswählen, wie lange dieses Wort stummgeschaltet werden soll."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Sprache auswählen..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Sprachen auswählen"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
-msgstr ""
+msgstr "Moderationsdienst auswählen"
#: src/components/ReportDialog/SelectLabelerView.tsx:28
msgid "Select moderator"
+msgstr "Moderator auswählen"
+
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
msgstr ""
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
@@ -6456,61 +7023,60 @@ msgstr "Untertiteldatei auswählen (.vtt)"
#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83
msgid "Select the {emojiName} emoji as your avatar"
-msgstr ""
+msgstr "Wähle das {emojiName}-Emoji als deinen Avatar"
#: src/components/ReportDialog/SubmitView.tsx:141
msgid "Select the moderation service(s) to report to"
-msgstr ""
+msgstr "Wähle die Moderationsdienste, an die du melden möchtest"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Video auswählen"
#: src/components/dialogs/MutedWords.tsx:242
msgid "Select what content this mute word should apply to."
-msgstr ""
+msgstr "Wähle aus, auf welche Inhalte dieses Stummschaltungswort angewendet werden soll."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
-msgstr ""
+msgstr "Wähle aus, welche Sprache für die Nutzeroberfläche der App verwendet werden soll."
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
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."
+msgstr "Wähle aus, welche Sprachen deine abonnierten Feeds enthalten sollen. Wenn keine ausgewählt sind, werden alle Sprachen angezeigt."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Wähle dein Geburtsdatum"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
-msgstr "Wähle aus den folgenden Optionen deine Interessen aus"
+msgstr "Wähle deine Interessen aus den folgenden Optionen aus"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "Wähle deine bevorzugte Sprache für Übersetzungen in deinem Feed aus."
#: src/view/com/util/forms/DropdownButton.tsx:297
msgid "Selects option {0} of {numItems}"
-msgstr ""
+msgstr "Wählt Option {0} von {numItems} aus"
#: src/components/dms/ChatEmptyPill.tsx:38
msgid "Send a neat website!"
+msgstr "Sende eine tolle Website!"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr ""
-
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Bestätigungs-E-Mail senden"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Bestätigungs-E-Mail senden"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "E-Mail senden"
@@ -6520,18 +7086,22 @@ msgctxt "action"
msgid "Send Email"
msgstr "E-Mail senden"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Feedback senden"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Nachricht senden"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr ""
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
-msgstr ""
+msgstr "Post senden an..."
#: src/components/dms/ReportDialog.tsx:271
#: src/components/dms/ReportDialog.tsx:274
@@ -6542,25 +7112,28 @@ msgstr "Bericht senden"
#: src/components/ReportDialog/SelectLabelerView.tsx:42
msgid "Send report to {0}"
-msgstr ""
+msgstr "Meldung an {0} senden"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
-msgstr ""
+msgstr "Meldung senden an {title}"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
-msgstr ""
+msgstr "Verifizierungs-E-Mail senden"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
-msgstr ""
+msgstr "Per Direktnachricht senden"
#: src/view/com/modals/DeleteAccount.tsx:147
msgid "Sends email with confirmation code for account deletion"
-msgstr "Sendet eine E-Mail mit Bestätigungscode für die Kontolöschung"
+msgstr "Sendet eine E-Mail mit einem Bestätigungscode zur Account-Löschung"
#: src/view/com/auth/server-input/index.tsx:167
msgid "Server address"
@@ -6568,11 +7141,11 @@ msgstr "Server-Adresse"
#: src/screens/Settings/AppIconSettings/index.tsx:178
msgid "Set app icon to {0}"
-msgstr ""
+msgstr "App-Symbol auf {0} ändern"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
-msgstr ""
+msgstr "Geburtsdatum festlegen"
#: src/screens/Login/SetNewPasswordForm.tsx:106
msgid "Set new password"
@@ -6580,225 +7153,237 @@ msgstr "Neues Passwort festlegen"
#: src/screens/Onboarding/Layout.tsx:47
msgid "Set up your account"
-msgstr "Dein Konto einrichten"
+msgstr "Richte deinen Account ein"
#: src/screens/Login/ForgotPasswordForm.tsx:107
msgid "Sets email for password reset"
msgstr "Legt die E-Mail für das Zurücksetzen des Passworts fest"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Einstellungen"
#: src/screens/ModerationInteractionSettings/index.tsx:102
msgctxt "toast"
msgid "Settings saved"
-msgstr ""
+msgstr "Einstellungen gespeichert"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Sexuelle Aktivitäten oder erotische Nacktheit."
#: src/lib/moderation/useGlobalLabelStrings.ts:38
msgid "Sexually Suggestive"
-msgstr ""
+msgstr "Sexuell suggestiv"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Teilen"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Teilen"
#: src/components/dms/ChatEmptyPill.tsx:37
msgid "Share a cool story!"
-msgstr ""
+msgstr "Teile eine coole Geschichte!"
#: src/components/dms/ChatEmptyPill.tsx:36
msgid "Share a fun fact!"
-msgstr ""
+msgstr "Teile eine witzige Tatsache!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
+msgstr "Trotzdem teilen"
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
-msgstr ""
+msgstr "Link teilen"
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Share Link"
-msgstr ""
+msgstr "Link teilen"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
+msgstr "Link teilen Dialog"
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
-msgstr ""
+msgstr "QR-Code teilen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
-msgstr ""
+msgstr "Diesen Feed teilen"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
-msgstr ""
+msgstr "Dieses Startpaket teilen"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
+msgstr "Teile dieses Startpaket und hilf Menschen, deiner Gemeinschaft auf Bluesky beizutreten."
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
msgstr ""
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
-msgstr ""
+msgstr "Teile deinen Lieblings-Feed!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
-msgstr ""
+msgstr "Tester für gemeinsame Einstellungen"
#: src/view/com/modals/LinkWarning.tsx:92
msgid "Shares the linked website"
-msgstr ""
+msgstr "Teilt die verlinkte Website"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Anzeigen"
#: src/view/com/util/post-embeds/GifEmbed.tsx:178
msgid "Show alt text"
-msgstr ""
+msgstr "Alt-Text anzeigen"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Trotzdem anzeigen"
#: src/lib/moderation/useLabelBehaviorDescription.ts:27
#: src/lib/moderation/useLabelBehaviorDescription.ts:63
msgid "Show badge"
-msgstr ""
+msgstr "Abzeichen anzeigen"
#: src/lib/moderation/useLabelBehaviorDescription.ts:61
msgid "Show badge and filter from feeds"
-msgstr ""
+msgstr "Abzeichen und Filter aus Feeds anzeigen"
#: src/components/dialogs/Embed.tsx:129
msgid "Show customization options"
-msgstr ""
+msgstr "Anpassungsoptionen anzeigen"
#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22
msgid "Show hidden replies"
-msgstr ""
+msgstr "Ausgeblendete Antworten anzeigen"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
-msgstr ""
+msgstr "Weniger davon anzeigen"
#: src/screens/List/ListHiddenScreen.tsx:186
msgid "Show list anyway"
-msgstr ""
+msgstr "Liste trotzdem anzeigen"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Mehr anzeigen"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
-msgstr ""
+msgstr "Mehr davon anzeigen"
#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22
msgid "Show muted replies"
-msgstr ""
+msgstr "Stummgeschaltete Antworten anzeigen"
#: src/screens/Settings/FollowingFeedPreferences.tsx:104
#: src/screens/Settings/FollowingFeedPreferences.tsx:114
msgid "Show quote posts"
-msgstr ""
+msgstr "Zitierte Posts anzeigen"
#: src/screens/Settings/FollowingFeedPreferences.tsx:68
#: src/screens/Settings/FollowingFeedPreferences.tsx:78
msgid "Show replies"
-msgstr ""
+msgstr "Antworten anzeigen"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
-msgstr ""
+msgstr "Antworten anzeigen als"
#: src/screens/Settings/ThreadPreferences.tsx:151
msgid "Show replies as threaded"
-msgstr ""
+msgstr "Antworten als Thread anzeigen"
#: src/screens/Settings/ThreadPreferences.tsx:126
msgid "Show replies by people you follow before all other replies"
-msgstr ""
+msgstr "Zeige Antworten von Personen, denen du folgst, vor allen anderen Antworten an"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
-msgstr ""
+msgstr "Antwort für alle anzeigen"
#: src/screens/Settings/FollowingFeedPreferences.tsx:86
#: src/screens/Settings/FollowingFeedPreferences.tsx:96
msgid "Show reposts"
-msgstr ""
+msgstr "Reposts anzeigen"
#: src/screens/Settings/FollowingFeedPreferences.tsx:129
#: src/screens/Settings/FollowingFeedPreferences.tsx:139
msgid "Show samples of your saved feeds in your Following feed"
-msgstr ""
+msgstr "Zeige Beispiele deiner gespeicherten Feeds in deinem Following-Feed"
#: src/lib/moderation/useLabelBehaviorDescription.ts:58
msgid "Show warning"
-msgstr ""
+msgstr "Warnung zeigen"
#: src/lib/moderation/useLabelBehaviorDescription.ts:56
msgid "Show warning and filter from feeds"
-msgstr ""
+msgstr "Warnung anzeigen und aus Feeds filtern"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
-msgstr ""
+msgstr "Zeigt Informationen darüber an, wann dieser Post erstellt wurde"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
-msgstr ""
+msgstr "Zeigt andere Accounts an, zu denen du wechseln kannst"
#: src/components/moderation/ContentHider.tsx:152
#: src/components/moderation/PostHider.tsx:79
msgid "Shows the content"
-msgstr ""
+msgstr "Zeigt den Inhalt an"
#: src/components/dialogs/Signin.tsx:97
#: src/components/dialogs/Signin.tsx:99
@@ -6809,60 +7394,60 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
-msgstr "Anmelden"
+msgstr "Einloggen"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Anmelden als {0}"
#: src/screens/Login/ChooseAccountForm.tsx:80
msgid "Sign in as..."
-msgstr "Anmelden als..."
-
-#: src/components/dialogs/Signin.tsx:75
-msgid "Sign in or create your account to join the conversation!"
-msgstr ""
+msgstr "Einloggen als..."
#: src/screens/Deactivated.tsx:203
#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr ""
+msgid "Sign in or create an account"
+msgstr "Einloggen oder einen Account erstellen"
-#: src/components/AccountList.tsx:65
+#: src/components/dialogs/Signin.tsx:75
+msgid "Sign in or create your account to join the conversation!"
+msgstr "Logge dich ein oder erstelle einen Account, um der Konversation beizutreten!"
+
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
-msgstr ""
+msgstr "Einloggen bei einem Account, der nicht aufgeführt ist"
#: src/components/dialogs/Signin.tsx:46
msgid "Sign in to Bluesky or create a new account"
-msgstr ""
+msgstr "Logge dich bei Bluesky ein oder erstelle einen neuen Account"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
-msgstr "Abmelden"
+msgstr "Ausloggen"
#: src/screens/Takendown.tsx:88
msgid "Sign Out"
-msgstr ""
+msgstr "Ausloggen"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
-msgstr ""
+msgstr "Ausloggen?"
#: src/components/moderation/ScreenHider.tsx:91
#: src/lib/moderation/useGlobalLabelStrings.ts:28
@@ -6874,14 +7459,9 @@ msgstr "Anmeldung erforderlich"
msgid "Signed in as @{0}"
msgstr "Angemeldet als @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr ""
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
-msgstr ""
+msgstr "Ähnliche Accounts"
#: src/screens/Onboarding/StepInterests/index.tsx:231
#: src/screens/StarterPack/Wizard/index.tsx:195
@@ -6896,157 +7476,180 @@ msgstr "Diesen Schritt überspringen"
msgid "Smaller"
msgstr "Kleiner"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
-msgstr "Software-Entwicklung"
+msgstr "Software-Entwickler"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr "Einige deiner Verifizierungen sind ungültig."
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
-msgstr ""
+msgstr "Einige andere Feeds, die dir gefallen könnten"
#: src/components/WhoCanReply.tsx:74
msgid "Some people can reply"
-msgstr ""
+msgstr "Einige Leute können antworten"
+
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr "Jemand hat mit {0} reagiert"
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr "Jemand hat mit {0} auf {1} reagiert"
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
-msgstr ""
+msgstr "Etwas stimmt mit den Daten, die du melden möchtest, nicht. Bitte kontaktiere den Support."
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
-msgstr ""
+msgstr "Etwas ist schiefgelaufen"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
-msgstr ""
+msgstr "Etwas ist schiefgelaufen, bitte versuche es erneut"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
-msgstr ""
+msgstr "Etwas ist schiefgelaufen, bitte versuche es erneut."
#: src/components/Lists.tsx:174
#: src/screens/Settings/NotificationSettings.tsx:55
msgid "Something went wrong!"
-msgstr "Es ist ein Fehler aufgetreten."
+msgstr "Etwas ist schiefgelaufen!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
-msgstr ""
+msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
-msgstr ""
+msgstr "Etwas stimmt nicht? Lass es uns wissen."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
-msgstr ""
+msgstr "Entschuldigung! Deine Sitzung ist abgelaufen. Bitte logge dich erneut ein."
#: src/screens/Settings/ThreadPreferences.tsx:55
msgid "Sort replies"
-msgstr ""
+msgstr "Antworten sortieren"
#: src/screens/Settings/ThreadPreferences.tsx:62
msgid "Sort replies by"
-msgstr ""
+msgstr "Antworten sortieren nach"
#: src/screens/Settings/ThreadPreferences.tsx:59
msgid "Sort replies to the same post by:"
-msgstr "Antworten auf denselben Beitrag sortieren nach:"
+msgstr "Antworten auf denselben Post sortieren nach:"
#: src/components/moderation/LabelsOnMeDialog.tsx:178
#: src/components/moderation/ModerationDetailsDialog.tsx:186
msgid "Source: <0>{sourceName}0>"
-msgstr ""
+msgstr "Quelle: <0>{sourceName}0>"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:85
#: src/lib/moderation/useReportOptions.ts:72
#: src/lib/moderation/useReportOptions.ts:85
msgid "Spam"
-msgstr ""
+msgstr "Spam"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55
#: src/lib/moderation/useReportOptions.ts:55
msgid "Spam; excessive mentions or replies"
-msgstr ""
+msgstr "Spam; übermäßige Erwähnungen oder Antworten"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Sport"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
-msgid "Start a new chat"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
-msgid "Start adding people"
-msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
+msgid "Start a new chat"
+msgstr "Starte einen neuen Chat"
#: src/view/screens/ProfileList.tsx:846
#: src/view/screens/ProfileList.tsx:967
+msgid "Start adding people"
+msgstr "Beginne, Personen hinzuzufügen"
+
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
-msgstr ""
+msgstr "Beginne, Personen hinzuzufügen!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
-msgstr ""
+msgstr "Chat mit {displayName} starten"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
-msgstr ""
+msgstr "Startpaket"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
-msgstr ""
+msgstr "Startpaket von {0}"
#: src/view/com/profile/ProfileSubpageHeader.tsx:182
msgid "Starter pack by <0/>"
-msgstr ""
+msgstr "Startpaket von <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
-msgstr ""
+msgstr "Dein Startpaket"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
-msgstr ""
+msgstr "Startpaket ist ungültig"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
-msgstr ""
+msgstr "Startpakete"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
-msgstr ""
+msgstr "Startpakete ermöglichen es dir, deine Lieblings-Feeds und -Leute mit deinen Freunden zu teilen."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
-msgstr ""
+msgstr "Status-Seite"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
-msgstr ""
+msgstr "Schritt {0} von {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
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:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
-msgstr ""
+msgstr "Storybook"
#: src/components/moderation/LabelsOnMeDialog.tsx:324
#: src/components/moderation/LabelsOnMeDialog.tsx:325
@@ -7057,123 +7660,134 @@ msgstr "Einreichen"
#: src/screens/Takendown.tsx:70
msgid "Submit appeal"
-msgstr ""
+msgstr "Einspruch einlegen"
#: src/screens/Takendown.tsx:76
msgid "Submit Appeal"
-msgstr ""
+msgstr "Einspruch einlegen"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
-msgstr ""
+msgstr "Meldung absenden"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Abonnieren"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
-msgstr ""
+msgstr "Abonniere @{0}, um diese Kennzeichnungen zu verwenden:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
-msgstr ""
+msgstr "Kennzeichner abonnieren"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
-msgstr ""
+msgstr "Diesen Kennzeichner abonnieren"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
-msgstr "Abonniere diese Liste"
+msgstr "Diese Liste abonnieren"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
-msgstr ""
+msgstr "Erfolgreich!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
-msgstr ""
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr "Erfolgreich verifiziert"
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
+msgstr "Vorgeschlagene Accounts"
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Vorgeschlagen für dich"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Suggestiv"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60
msgctxt "Name of app icon variant"
msgid "Sunrise"
-msgstr ""
+msgstr "Sonnenaufgang"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70
msgctxt "Name of app icon variant"
msgid "Sunset"
-msgstr ""
+msgstr "Sonnenuntergang"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
-msgstr ""
+msgstr "Support"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
-msgstr ""
+msgstr "Account wechseln"
#: src/components/dialogs/SwitchAccount.tsx:46
#: src/components/dialogs/SwitchAccount.tsx:49
msgid "Switch Account"
-msgstr "Konto wechseln"
+msgstr "Account wechseln"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
-msgstr ""
+msgstr "Accounts wechseln"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
-msgstr ""
+msgstr "Zu {0} wechseln"
#: src/components/dialogs/Embed.tsx:157
#: src/components/dialogs/Embed.tsx:159
#: src/screens/Settings/AppearanceSettings.tsx:97
#: src/screens/Settings/AppearanceSettings.tsx:147
msgid "System"
-msgstr ""
+msgstr "System"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Systemprotokoll"
#: src/components/dialogs/MutedWords.tsx:282
msgid "Tags only"
-msgstr ""
+msgstr "Nur Tags"
+
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr "Tippen, um das Kontextmenü zu schließen"
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
-msgstr ""
+msgstr "Tippe, um zu schließen"
#: src/state/shell/progress-guide.tsx:233
msgid "Task complete - 10 follows!"
-msgstr ""
+msgstr "Aufgabe abgeschlossen – 10 Accounts gefolgt!"
#: src/state/shell/progress-guide.tsx:223
msgid "Task complete - 10 likes!"
-msgstr ""
+msgstr "Aufgabe abgeschlossen – 10 Likes!"
#: src/components/ProgressGuide/List.tsx:64
msgid "Teach our algorithm what you like"
-msgstr ""
+msgstr "Bring unserem Algorithmus bei, was dir gefällt"
#: src/screens/Onboarding/index.tsx:36
#: src/screens/Onboarding/state.ts:114
@@ -7182,27 +7796,27 @@ msgstr "Technik"
#: src/components/dms/ChatEmptyPill.tsx:35
msgid "Tell a joke!"
-msgstr ""
+msgstr "Erzähle einen Witz!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
-msgstr ""
+msgstr "Erzähl uns ein bisschen über dich"
#: src/screens/StarterPack/Wizard/StepDetails.tsx:69
msgid "Tell us a little more"
-msgstr ""
+msgstr "Erzähl uns ein wenig mehr"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Bedingungen"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Nutzungsbedingungen"
@@ -7215,76 +7829,80 @@ msgstr "Nutzungsbedingungen"
#: src/lib/moderation/useReportOptions.ts:107
#: src/lib/moderation/useReportOptions.ts:115
msgid "Terms used violate community standards"
-msgstr ""
+msgstr "Verwendete Begriffe verstoßen gegen die Community-Richtlinien"
#: src/components/dialogs/MutedWords.tsx:266
msgid "Text & tags"
-msgstr ""
+msgstr "Text & Tags"
#: src/components/dms/ReportDialog.tsx:229
msgid "Text field"
-msgstr ""
+msgstr "Textfeld"
#: src/components/moderation/LabelsOnMeDialog.tsx:288
#: src/screens/Messages/components/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "Text-Eingabefeld"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
-msgid "Thank you! Your email has been successfully verified."
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
msgstr ""
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
+msgid "Thank you! Your email has been successfully verified."
+msgstr "Vielen Dank! Deine E-Mail wurde erfolgreich verifiziert."
+
#: src/components/ReportDialog/SubmitView.tsx:83
msgid "Thank you. Your report has been sent."
-msgstr ""
+msgstr "Vielen Dank. Deine Meldung wurde gesendet."
#: src/components/intents/VerifyEmailIntentDialog.tsx:82
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
-msgstr ""
+msgstr "Danke, du hast deine E-Mail-Adresse erfolgreich verifiziert. Du kannst diesen Dialog jetzt schließen."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
-msgstr ""
+msgstr "Das enthält Folgendes:"
#: src/screens/Signup/StepHandle.tsx:55
msgid "That handle is already taken."
-msgstr "Dieser Handle ist bereits besetzt."
+msgstr "Dieser Handle ist bereits vergeben."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
-msgstr ""
+msgstr "Dieses Startpaket konnte nicht gefunden werden."
#: src/view/com/post-thread/PostQuotes.tsx:132
msgid "That's all, folks!"
-msgstr ""
+msgstr "Das ist alles, Leute!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
-msgstr ""
+msgstr "Das ist alles!"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
-msgstr "Das Konto kann nach der Entblockiert mit dir interagieren."
+msgstr "Nach dem Entblocken kann der Account wieder mit dir interagieren."
#: src/screens/Settings/AppIconSettings/index.tsx:41
#: src/screens/Settings/AppIconSettings/index.tsx:222
msgid "The app will be restarted"
-msgstr ""
+msgstr "Die App wird neu gestartet"
#: src/components/moderation/ModerationDetailsDialog.tsx:119
#: src/lib/moderation/useModerationCauseDescription.ts:128
msgid "The author of this thread has hidden this reply."
-msgstr ""
+msgstr "Der Autor dieses Themas hat diese Antwort ausgeblendet."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
-msgstr ""
+msgstr "Die Bluesky-Webanwendung"
#: src/view/screens/CommunityGuidelines.tsx:38
msgid "The Community Guidelines have been moved to <0/>"
@@ -7296,31 +7914,35 @@ msgstr "Die Copyright-Richtlinie wurde nach <0/> verschoben"
#: src/view/com/posts/FeedShutdownMsg.tsx:102
msgid "The Discover feed"
-msgstr ""
+msgstr "Der Discover-Feed"
#: src/state/shell/progress-guide.tsx:224
msgid "The Discover feed now knows what you like"
+msgstr "Der Discover-Feed weiß jetzt, was dir gefällt"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
msgstr ""
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
-msgstr ""
+msgstr "Das Erlebnis ist in der App besser. Lade jetzt Bluesky herunter und wir machen dort weiter, wo du aufgehört hast."
#: src/view/com/posts/FeedShutdownMsg.tsx:67
msgid "The feed has been replaced with Discover."
-msgstr ""
+msgstr "Der Feed wurde durch „Discover“ ersetzt."
#: src/components/moderation/LabelsOnMeDialog.tsx:59
msgid "The following labels were applied to your account."
-msgstr ""
+msgstr "Die folgenden Kennzeichnungen wurden auf deinem Account angewendet."
#: src/components/moderation/LabelsOnMeDialog.tsx:60
msgid "The following labels were applied to your content."
-msgstr ""
+msgstr "Die folgenden Kennzeichnungen wurden auf deinen Inhalt angewendet."
#: src/screens/ModerationInteractionSettings/index.tsx:42
msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer."
-msgstr ""
+msgstr "Die folgenden Einstellungen werden als Standard für das Erstellen neuer Posts verwendet. Du kannst diese für einen spezifischen Post im Composer bearbeiten."
#: src/view/com/post-thread/PostThread.tsx:265
#: src/view/com/post-thread/PostThread.tsx:277
@@ -7332,112 +7954,118 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "Die Datenschutzerklärung wurde nach <0/> verschoben"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr ""
+msgid "The selected video is larger than 100 MB."
+msgstr "Das ausgewählte Video ist größer als 100 MB."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
-msgstr ""
+msgstr "Der Server scheint Probleme zu haben. Bitte versuche es in ein paar Minuten erneut."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
+msgstr "Das Startpaket, das du ansehen möchtest, ist ungültig. Du kannst dieses Startpaket stattdessen löschen."
+
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
msgstr ""
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
-msgstr "Das Support-Formular wurde verschoben. Wenn du Hilfe benötigst, wende dich bitte an <0/> oder besuche {HELP_DESK_URL}, um mit uns Kontakt aufzunehmen."
+msgstr "Das Support-Formular wurde verschoben. Wenn du Hilfe benötigst, wende dich bitte an <0/> oder besuche {HELP_DESK_URL}, um mit uns in Kontakt zu treten."
#: src/view/screens/TermsOfService.tsx:35
msgid "The Terms of Service have been moved to"
-msgstr "Die Allgemeinen Geschäftsbedingungen wurden verschoben nach"
+msgstr "Die Nutzungsbedingungen wurden verschoben nach"
#: src/components/intents/VerifyEmailIntentDialog.tsx:94
msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one."
-msgstr ""
+msgstr "Der von dir eingegebene Verifizierungscode ist ungültig. Bitte stelle sicher, dass du den richtigen Verifizierungslink verwendet hast, oder fordere einen neuen an."
#: src/screens/Settings/AppearanceSettings.tsx:151
msgid "Theme"
-msgstr ""
+msgstr "Theme"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
msgid "There is no time limit for account deactivation, come back any time."
-msgstr ""
+msgstr "Es gibt kein Zeitlimit für die Deaktivierung deines Accounts, du kannst jederzeit wiederkommen."
#: src/components/dialogs/GifSelect.tsx:226
msgid "There was an issue connecting to Tenor."
-msgstr ""
+msgstr "Es gab ein Problem bei der Verbindung mit Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
-msgstr "Es gab ein Problem bei der Kontaktaufnahme mit dem Server"
+msgstr "Beim Kontaktieren des Servers ist ein Problem aufgetreten"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
-msgstr ""
+msgstr "Beim Kontaktieren des Servers ist ein Problem aufgetreten. Bitte überprüfe deine Internetverbindung und versuche es erneut."
#: 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"
+msgstr "Beim Kontaktieren deines Servers ist ein Problem aufgetreten"
#: src/view/com/notifications/NotificationFeed.tsx:124
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."
+msgstr "Beim Abrufen von Mitteilung ist ein Problem aufgetreten. Tippe hier, um es erneut zu versuchen."
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
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."
+msgstr "Beim Abrufen von Posts ist ein Problem aufgetreten. Tippe hier, um es erneut zu versuchen."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
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/screens/Settings/AppPasswords.tsx:60
msgid "There was an issue fetching your app passwords"
-msgstr ""
+msgstr "Beim Abrufen deiner App-Passwörter ist ein Problem aufgetreten"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
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."
+msgstr "Beim Abrufen deiner Listen ist ein Problem aufgetreten. Tippe hier, um es erneut zu versuchen."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
-msgstr ""
+msgstr "Es gab ein Problem beim Abrufen deiner Service-Informationen"
#: src/view/com/posts/PostFeedErrorMessage.tsx:145
msgid "There was an issue removing this feed. Please check your internet connection and try again."
-msgstr ""
+msgstr "Beim Entfernen dieses Feeds ist ein Problem aufgetreten. Bitte überprüfe deine Internetverbindung und versuche es erneut."
#: src/components/dms/ReportDialog.tsx:259
#: src/components/ReportDialog/SubmitView.tsx:88
msgid "There was an issue sending your report. Please check your internet connection."
-msgstr ""
+msgstr "Es gab ein Problem beim Senden deiner Meldung. Bitte überprüfe deine Internetverbindung."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
-msgstr ""
+msgstr "Beim Aktualisieren deiner Feeds ist ein Problem aufgetreten. Bitte überprüfe deine Internetverbindung und versuche es erneut."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "Es gab ein Problem! {0}"
@@ -7445,57 +8073,69 @@ msgstr "Es gab ein Problem! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
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.tsx:270
#: src/view/com/util/ErrorBoundary.tsx:59
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
-msgstr "Es gab ein unerwartetes Problem in der Anwendung. Bitte teile uns mit, wenn dies bei dir der Fall ist!"
+msgstr "Bei der Anwendung ist ein unerwartetes Problem aufgetreten. Bitte teile uns mit, wenn dir das passiert ist!"
#: src/screens/SignupQueued.tsx:130
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
-msgstr "Es gab einen Ansturm neuer Benutzer auf Bluesky! Wir werden dein Konto so schnell wie möglich aktivieren."
+msgstr "Es gab einen Ansturm neuer Nutzer auf Bluesky! Wir werden deinen Account so schnell wie möglich aktivieren."
#: src/screens/Settings/FollowingFeedPreferences.tsx:62
msgid "These settings only apply to the Following feed."
-msgstr ""
+msgstr "Diese Einstellungen gelten nur für den Following-Feed."
#: src/components/moderation/ScreenHider.tsx:111
msgid "This {screenDescription} has been flagged:"
msgstr "Diese {screenDescription} wurde gekennzeichnet:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr "Dieser Account hat ein Häkchen, weil er von vertrauenswürdigen Quellen verifiziert wurde."
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:106
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."
+msgstr "Dieser Nutzer hat darum gebeten, dass sich Nutzer einloggen, um sein Profil anzusehen."
#: src/components/dms/BlockedByListDialog.tsx:34
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 ""
+msgstr "Dieser Account wird von einer oder mehreren deiner Moderationslisten blockiert. Um die Blockierung aufzuheben, besuche die Listen direkt und entferne diesen Nutzer."
+
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr "Diese Aktion kann jederzeit rückgängig gemacht werden."
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
-msgstr ""
+msgstr "Dieser Einspruch wird an <0>{sourceName}0> gesendet."
#: src/screens/Messages/components/ChatDisabled.tsx:104
msgid "This appeal will be sent to Bluesky's moderation service."
-msgstr ""
+msgstr "Dieser Einspruch wird an den Moderationsdienst von Bluesky gesendet."
#: src/screens/Messages/components/MessageListError.tsx:18
msgid "This chat was disconnected"
-msgstr ""
+msgstr "Dieser Chat wurde getrennt"
#: src/lib/moderation/useGlobalLabelStrings.ts:19
msgid "This content has been hidden by the moderators."
-msgstr ""
+msgstr "Dieser Inhalt wurde von den Moderatoren ausgeblendet."
#: src/lib/moderation/useGlobalLabelStrings.ts:24
msgid "This content has received a general warning from moderators."
-msgstr ""
+msgstr "Dieser Inhalt hat eine allgemeine Warnung von Moderatoren erhalten."
#: src/components/dialogs/EmbedConsent.tsx:63
msgid "This content is hosted by {0}. Do you want to enable external media?"
@@ -7504,264 +8144,281 @@ msgstr "Dieser Inhalt wird von {0} gehostet. Möchtest du externe Medien aktivie
#: src/components/moderation/ModerationDetailsDialog.tsx:84
#: src/lib/moderation/useModerationCauseDescription.ts:84
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."
+msgstr "Dieser Inhalt ist nicht verfügbar, da einer der beteiligten Nutzer den anderen blockiert hat."
#: src/view/com/posts/PostFeedErrorMessage.tsx:114
msgid "This content is not viewable without a Bluesky account."
-msgstr "Dieser Inhalt ist ohne ein Bluesky-Konto nicht sichtbar."
+msgstr "Dieser Inhalt ist ohne einen Bluesky-Account nicht sichtbar."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
+msgstr "Diese Konversation ist mit einem gelöschten oder deaktivierten Account. Drücke für Optionen"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
msgstr ""
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
+msgstr "Diese Funktion befindet sich in der Beta-Phase. Du kannst mehr über Repository-Exporte in <0>diesem Blogpost0> lesen."
+
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
msgstr ""
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
-msgstr ""
+msgstr "Diese Funktion ist mit einem App-Passwort nicht verfügbar. Bitte logge dich mit deinem Hauptpasswort ein."
#: src/view/com/posts/PostFeedErrorMessage.tsx:120
msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later."
-msgstr "Dieser Feed wird derzeit stark frequentiert und ist vorübergehend nicht verfügbar. Bitte versuche es später erneut."
+msgstr "Dieser Feed erhält momentan viel Traffic und ist vorübergehend nicht verfügbar. Bitte versuche es später noch einmal."
#: src/view/com/posts/CustomFeedEmptyState.tsx:38
msgid "This feed is empty! You may need to follow more users or tune your language settings."
-msgstr "Dieser Feed ist leer! Möglicherweise musst du mehr Benutzern folgen oder deine Spracheinstellungen anpassen."
+msgstr "Dieser Feed ist leer! Möglicherweise musst du mehr Nutzer folgen oder deine Spracheinstellungen anpassen."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
-msgstr ""
+msgstr "Dieser Feed ist leer."
#: src/view/com/posts/FeedShutdownMsg.tsx:99
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
-msgstr ""
+msgstr "Dieser Feed ist nicht mehr online. Wir zeigen stattdessen <0>„Discover“0>."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
-msgstr ""
+msgstr "Dieser Handle ist reserviert. Bitte versuche einen anderen."
#: src/components/dialogs/BirthDateSettings.tsx:41
msgid "This information is not shared with other users."
-msgstr "Diese Informationen werden nicht an andere Benutzer weitergegeben."
+msgstr "Diese Informationen werden nicht mit anderen Nutzern geteilt."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "Das ist wichtig für den Fall, dass du mal deine E-Mail ändern oder dein Passwort zurücksetzen musst."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr ""
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
-msgstr ""
+msgstr "Diese Kennzeichnung wurde vom Autor angewendet."
#: src/components/moderation/LabelsOnMeDialog.tsx:165
msgid "This label was applied by you."
-msgstr ""
+msgstr "Diese Kennzeichnung wurde von dir angewendet."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
-msgstr ""
+msgstr "Dieser Kennzeichner hat nicht angegeben, welche Kennzeichnungen er veröffentlicht und ist möglicherweise nicht aktiv."
#: src/view/com/modals/LinkWarning.tsx:72
msgid "This link is taking you to the following website:"
-msgstr "Dieser Link führt dich auf die folgende Website:"
+msgstr "Dieser Link führt dich zur folgenden Website:"
#: src/screens/List/ListHiddenScreen.tsx:151
msgid "This list – created by <0>{0}0> – contains possible violations of Bluesky's community guidelines in its name or description."
-msgstr ""
+msgstr "Diese Liste – erstellt von <0>{0}0> – enthält mögliche Verstöße gegen die Community-Richtlinien von Bluesky in ihrem Namen oder in ihrer Beschreibung."
#: src/screens/List/ListHiddenScreen.tsx:146
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
-msgstr ""
+msgstr "Diese Liste – erstellt von dir – enthält mögliche Verstöße gegen die Community-Richtlinien von Bluesky in ihrem Namen oder in ihrer Beschreibung."
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
-msgstr ""
+msgstr "Diese Liste ist leer."
#: src/screens/Profile/ErrorState.tsx:40
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
-msgstr ""
+msgstr "Dieser Moderationsdienst ist nicht verfügbar. Siehe unten für weitere Details. Wenn das Problem weiterhin besteht, kontaktiere uns."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
-msgstr ""
+msgstr "Dieser Post soll am <0>{0}0> erstellt worden sein, wurde aber erstmals von Bluesky am <1>{1}1> gesehen."
#: src/components/WhoCanReply.tsx:217
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
-msgstr ""
+msgstr "Dieser Post hat einen unbekannten Threadgate-Typ. Deine App ist möglicherweise veraltet."
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
-msgstr "Dieser Beitrag wurde gelöscht."
+msgstr "Dieser Post wurde gelöscht."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
-msgstr ""
+msgstr "Dieser Post ist nur für eingeloggte Nutzer sichtbar. Er ist nicht für Personen sichtbar, die nicht eingeloggt sind."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
-msgstr ""
+msgstr "Dieser Post wird aus Feeds und Threads ausgeblendet. Dies kann nicht rückgängig gemacht werden."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
-msgstr ""
+msgstr "Der Autor dieses Posts hat das Zitieren dieses Posts deaktiviert."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
-msgstr ""
+msgstr "Dieses Profil ist nur für eingeloggte Nutzer sichtbar. Es ist nicht sichtbar für Personen, die nicht eingeloggt sind."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
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 ""
+msgstr "Diese Antwort wird in einen ausgeblendeten Bereich am Ende deines Threads verschoben und Mitteilungen über nachfolgende Antworten werden sowohl für dich als auch für andere stummgeschaltet."
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
-msgstr ""
+msgstr "Dieser Dienst hat keine Nutzungsbedingungen oder Datenschutzerklärung bereitgestellt."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
+msgstr "Dies sollte einen Domain-Eintrag an folgender Stelle erstellen:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
msgstr ""
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
-msgstr ""
+msgstr "Dieser Nutzer hat keine Follower."
#: src/components/dms/MessagesListBlockedFooter.tsx:68
msgid "This user has blocked you"
-msgstr ""
+msgstr "Dieser Nutzer hat dich blockiert"
#: src/components/moderation/ModerationDetailsDialog.tsx:79
#: src/lib/moderation/useModerationCauseDescription.ts:75
msgid "This user has blocked you. You cannot view their content."
-msgstr "Dieser Benutzer hat dich blockiert. Du kannst deren Inhalte nicht sehen."
+msgstr "Dieser Nutzer hat dich blockiert. Du kannst seinen Inhalt nicht sehen."
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
-msgstr ""
+msgstr "Dieser Nutzer hat angefordert, dass seine Inhalte nur für eingeloggte Nutzer sichtbar sind."
#: src/components/moderation/ModerationDetailsDialog.tsx:59
msgid "This user is included in the <0>{0}0> list which you have blocked."
-msgstr ""
+msgstr "Dieser Nutzer ist in der Liste <0>{0}0> enthalten, die du blockiert hast."
#: src/components/moderation/ModerationDetailsDialog.tsx:91
msgid "This user is included in the <0>{0}0> list which you have muted."
-msgstr ""
+msgstr "Dieser Nutzer ist in der Liste <0>{0}0> enthalten, die du stummgeschaltet hast."
#: src/components/NewskieDialog.tsx:65
msgid "This user is new here. Press for more info about when they joined."
-msgstr ""
+msgstr "Dieser Nutzer ist neu hier. Klicke hier, um weitere Informationen darüber zu erhalten, wann er beigetreten ist."
#: src/view/com/profile/ProfileFollows.tsx:95
msgid "This user isn't following anyone."
-msgstr ""
+msgstr "Dieser Nutzer folgt niemandem."
#: src/components/dialogs/MutedWords.tsx:435
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
-msgstr ""
+msgstr "Dadurch wird „{0}“ aus deinen stummgeschalteten Wörtern gelöscht. Du kannst es später jederzeit wieder hinzufügen."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
-msgstr ""
+msgstr "Dadurch wird @{0} aus der Schnellzugriffsliste entfernt."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
-msgstr ""
+msgstr "Dies wird deinen Post aus diesem Zitat-Post für alle Nutzer entfernen und durch einen Platzhalter ersetzen."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
-msgstr ""
+msgstr "Thread-Optionen"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
-msgstr ""
+msgstr "Thread-Einstellungen"
#: src/screens/Settings/ThreadPreferences.tsx:45
msgid "Thread Preferences"
msgstr "Thread-Einstellungen"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
-msgstr ""
+msgstr "Thread"
#: src/screens/Settings/ThreadPreferences.tsx:142
msgid "Threaded mode"
-msgstr ""
+msgstr "Thread-Modus"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Thread-Einstellungen"
#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34
msgid "Time remaining: {0, plural, one {# second} other {# seconds}}"
-msgstr ""
+msgstr "Verbleibende Zeit: {0, plural, one {# Sekunde} other {# Sekunden}}"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:99
msgid "To disable the email 2FA method, please verify your access to the email address."
+msgstr "Um die E-Mail-2FA-Methode zu deaktivieren, verifiziere bitte deinen Zugriff auf die E-Mail-Adresse."
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
-msgstr ""
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr ""
+msgstr "Um eine Konversation zu melden, melde bitte eine der Nachrichten über den Konversationsbildschirm. So können unsere Moderatoren den Kontext deines Anliegens besser verstehen."
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
-msgstr ""
+msgstr "An wen möchtest du diese Meldung senden?"
#: src/components/dms/DateDivider.tsx:44
msgid "Today"
-msgstr ""
+msgstr "Heute"
#: src/view/com/util/forms/DropdownButton.tsx:258
msgid "Toggle dropdown"
msgstr "Dieses Dropdown umschalten"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
-msgstr ""
+msgstr "Umschalten, um Inhalte für Erwachsene zu aktivieren oder zu deaktivieren"
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158
msgid "Toggles the sound"
-msgstr ""
+msgstr "Schaltet den Ton um"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
-msgstr ""
+msgstr "Top"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
-msgstr ""
+msgstr "Thema"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Übersetzen"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr ""
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr ""
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr ""
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7769,35 +8426,28 @@ msgstr "Erneut versuchen"
#: src/screens/Onboarding/state.ts:115
msgid "TV"
-msgstr ""
+msgstr "TV"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56
msgid "Two-factor authentication (2FA)"
-msgstr ""
+msgstr "Zwei-Faktor-Authentisierung (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
-msgstr "Gib deinen Handle ein"
+msgstr "Gib deinen gewünschten Nutzernamen ein"
#: src/screens/Messages/components/MessageInput.tsx:153
msgid "Type your message here"
-msgstr ""
+msgstr "Gib deine Nachricht hier ein"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
-msgstr ""
-
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Liste entblocken"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Stummschaltung von Liste aufheben"
+msgstr "Typ:"
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
-msgstr ""
+msgstr "Verbindung nicht möglich. Bitte überprüfe deine Internetverbindung und versuche es erneut."
#: src/screens/Login/ForgotPasswordForm.tsx:68
#: src/screens/Login/index.tsx:79
@@ -7807,76 +8457,86 @@ msgstr ""
#: src/view/com/modals/ChangePassword.tsx:71
#: src/view/com/modals/ChangePassword.tsx:117
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."
+msgstr "Dein Dienst kann nicht kontaktiert werden. Bitte überprüfe deine Internetverbindung."
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
-msgstr ""
+msgstr "Löschen nicht möglich"
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Entblocken"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Entblocken"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
-msgstr ""
+msgstr "Account entblocken"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
+msgstr "Account entblocken?"
+
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Repost rückgängig machen"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
-msgstr ""
+msgstr "Repost rückgängig machen ({0, plural, one {# Repost} other {# Reposts}})"
#: src/view/com/profile/FollowButton.tsx:63
msgctxt "action"
msgid "Unfollow"
-msgstr "Nicht mehr folgen"
+msgstr "Entfolgen"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
-msgstr "{0} nicht mehr folgen"
+msgstr "{0} entfolgen"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
-msgstr ""
+msgstr "Account entfolgen"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
-msgstr ""
+msgstr "Entfolgt dem Nutzer"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
-msgstr ""
+msgstr "Leider unterstützt keiner deiner abonnierten Kennzeichner diesen Meldungstyp."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr "Unbekannter Verifizierer"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "Like aufheben"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -7884,198 +8544,222 @@ msgstr ""
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94
msgctxt "video"
msgid "Unmute"
-msgstr ""
+msgstr "Stummschaltung aufheben"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Stummschaltung aufheben"
#: src/components/RichTextTag.tsx:140
#: src/components/RichTextTag.tsx:153
msgid "Unmute {tag}"
-msgstr ""
+msgstr "Stummschaltung von {tag} aufheben"
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
-msgstr ""
+msgstr "Stummschaltung von Account aufheben"
#: src/components/dms/ConvoMenu.tsx:236
msgid "Unmute conversation"
-msgstr ""
+msgstr "Stummschaltung von Konversation aufheben"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr "Liste nicht mehr stummschalten"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
-msgstr "Stummschaltung von Thread aufheben"
+msgstr "Stummschaltung des Threads aufheben"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318
msgid "Unmute video"
-msgstr ""
+msgstr "Stummschaltung von Video aufheben"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
-msgstr "Anheften aufheben"
+msgstr "Lösen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
-msgstr ""
+msgstr "Feed lösen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr "Feed lösen"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
-msgstr ""
+msgstr "Von Startseite lösen"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
-msgstr ""
+msgstr "Vom Profil lösen"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
-msgstr "Anheften der Moderationsliste aufheben"
+msgstr "Moderationsliste lösen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
-msgstr ""
+msgstr "{0} von der Startseite gelöst"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
+msgstr "Aus deinen Feeds gelöst"
+
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
-msgstr ""
+msgstr "Abmelden"
#: src/screens/List/ListHiddenScreen.tsx:198
#: src/screens/List/ListHiddenScreen.tsx:208
msgid "Unsubscribe from list"
-msgstr ""
+msgstr "Von der Liste abmelden"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
-msgstr ""
+msgstr "Von diesem Kennzeichner abmelden"
#: src/screens/List/ListHiddenScreen.tsx:86
msgid "Unsubscribed from list"
-msgstr ""
+msgstr "Von der Liste abgemeldet"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
-msgstr ""
+msgstr "Nicht unterstützter Videotyp"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
-msgstr ""
+msgstr "Nicht unterstützter Videotyp: {0}"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:77
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:90
#: src/lib/moderation/useReportOptions.ts:77
#: src/lib/moderation/useReportOptions.ts:90
msgid "Unwanted Sexual Content"
-msgstr ""
+msgstr "Unerwünschter sexueller Inhalt"
#: src/screens/Settings/components/OTAInfo.tsx:58
#: src/screens/Settings/components/OTAInfo.tsx:74
msgid "Update"
-msgstr ""
+msgstr "Aktualisieren"
#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update <0>{displayName}0> in Lists"
+msgstr "<0>{displayName}0> in Listen aktualisieren"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
+msgstr "Aktualisieren auf {domain}"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
msgctxt "toast"
msgid "Updating quote attachment failed"
-msgstr ""
+msgstr "Aktualisieren des Zitat-Anhangs ist fehlgeschlagen"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "Aktualisieren der Antwort-Sichtbarkeit ist fehlgeschlagen"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "Wird aktualisiert…"
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
-msgstr ""
+msgstr "Stattdessen ein Foto hochladen"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Hochladen einer Textdatei auf:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
-msgstr ""
+msgstr "Von Kamera hochladen"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
-msgstr ""
+msgstr "Von Dateien hochladen"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
-msgstr ""
+msgstr "Aus der Bibliothek hochladen"
#: src/lib/api/index.ts:302
msgid "Uploading images..."
-msgstr ""
+msgstr "Bilder werden hochgeladen..."
#: src/lib/api/index.ts:356
#: src/lib/api/index.ts:380
msgid "Uploading link thumbnail..."
-msgstr ""
+msgstr "Link-Vorschaubild wird hochgeladen..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
-msgstr ""
+msgstr "Video wird hochgeladen..."
#: src/screens/Settings/AppPasswords.tsx:67
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
-msgstr ""
+msgstr "Verwende App-Passwörter, um dich bei anderen Bluesky-Clients einzuloggen, ohne vollständigen Zugriff auf deinen Account oder Passwort zu gewähren."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Standardanbieter verwenden"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "In-App-Browser verwenden"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
-msgstr ""
+msgstr "In-App-Browser zum Öffnen von Links verwenden"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Meinen Standardbrowser verwenden"
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53
msgid "Use recommended"
-msgstr ""
+msgstr "Empfehlung verwenden"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190
msgid "Use this to sign in to the other app along with your handle."
-msgstr ""
+msgstr "Verwende dies, um dich mit deinem Handle bei der anderen App einzuloggen."
#: src/view/com/modals/InviteCodes.tsx:201
msgid "Used by:"
@@ -8084,242 +8768,273 @@ msgstr "Verwendet von:"
#: src/components/dms/ReportDialog.tsx:324
msgctxt "toast"
msgid "User blocked"
-msgstr ""
+msgstr "Nutzer blockiert"
#: src/components/moderation/ModerationDetailsDialog.tsx:71
#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "User Blocked"
-msgstr "Benutzer blockiert"
+msgstr "Nutzer blockiert"
#: src/lib/moderation/useModerationCauseDescription.ts:55
msgid "User Blocked by \"{0}\""
-msgstr ""
+msgstr "Nutzer blockiert von „{0}“"
#: src/components/dms/BlockedByListDialog.tsx:27
msgid "User blocked by list"
-msgstr ""
+msgstr "Nutzer durch Liste blockiert"
#: src/components/moderation/ModerationDetailsDialog.tsx:57
msgid "User Blocked by List"
-msgstr "Benutzer über Liste blockiert"
+msgstr "Nutzer durch Liste blockiert"
#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "User Blocking You"
-msgstr ""
+msgstr "Nutzer blockiert dich"
#: src/components/moderation/ModerationDetailsDialog.tsx:77
msgid "User Blocks You"
-msgstr "Benutzer blockiert dich"
+msgstr "Nutzer blockiert dich"
#: src/view/com/modals/UserAddRemoveLists.tsx:214
msgid "User list by {0}"
-msgstr "Benutzerliste von {0}"
+msgstr "Nutzerliste von {0}"
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
-msgstr "Benutzerliste von dir"
+msgstr "Nutzerliste von dir"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "Nutzerliste erstellt"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "Nutzerliste aktualisiert"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
-msgstr "Benutzername oder E-Mail-Adresse"
+msgstr "Nutzername oder E-Mail-Adresse"
#: src/components/WhoCanReply.tsx:280
msgid "users followed by <0>@{0}0>"
-msgstr ""
+msgstr "Nutzer gefolgt von <0>@{0}0>"
#: src/components/WhoCanReply.tsx:267
msgid "users following <0>@{0}0>"
-msgstr ""
+msgstr "Nutzer, die <0>@{0}0> folgen"
#: src/screens/Messages/Settings.tsx:92
#: src/screens/Messages/Settings.tsx:95
msgid "Users I follow"
-msgstr ""
+msgstr "Nutzer, denen ich folge"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456
msgid "Users in \"{0}\""
-msgstr "Benutzer in „{0}“"
-
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr ""
+msgstr "Nutzer in „{0}“"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
-msgstr ""
+msgstr "Nutzer, denen du folgst"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
+msgstr "Wert:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr "Verifizierungseinstellungen"
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr "Verifizierungseinstellungen"
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr "Verifizierungen auf Bluesky funktionieren anders als auf anderen Plattformen. <0>Hier erfährst du mehr (auf Englisch).0>"
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr "Verifiziert von:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr "Account verifizieren"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
+msgstr "DNS-Eintrag verifizieren"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
-msgstr ""
+msgstr "E-Mail-Verifizierungsdialog"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Neue E-Mail bestätigen"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr ""
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
-msgstr ""
+msgstr "Textdatei verifizieren"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr "Diesen Account verifizieren?"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
-msgstr ""
+msgstr "Verifiziere deine E-Mail"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
-msgstr "Überprüfe deine E-Mail"
+msgstr "Verifiziere deine E-Mail"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
-msgstr ""
+msgstr "Version {appVersion}"
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134
msgid "Video"
-msgstr ""
+msgstr "Video"
#: src/view/com/composer/state/video.ts:358
msgid "Video failed to process"
-msgstr ""
+msgstr "Video konnte nicht verarbeitet werden"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
-msgstr ""
+msgstr "Video-Feed"
#: src/components/VideoPostCard.tsx:122
msgid "Video from {0}: {text}"
-msgstr ""
+msgstr "Video von {0}: {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Videospiele"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
-msgstr ""
+msgstr "Video ist pausiert"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
-msgstr ""
+msgstr "Video wird abgespielt"
#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191
msgid "Video not found."
-msgstr ""
+msgstr "Video nicht gefunden."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
-msgstr ""
+msgstr "Video-Einstellungen"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
-msgstr ""
+msgstr "Video hochgeladen"
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83
msgid "Video: {0}"
-msgstr ""
+msgstr "Video: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
-msgstr ""
+msgstr "Videos"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
-msgstr ""
+msgstr "Videos dürfen nicht länger als 3 Minuten sein"
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "Avatar von {0} ansehen"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
-msgstr ""
+msgstr "Profil von {0} ansehen"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
-msgstr ""
+msgstr "Profil von {displayName} ansehen"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
-msgstr ""
+msgstr "Profil des blockierten Nutzers ansehen"
#: src/screens/Settings/components/ExportCarDialog.tsx:100
msgid "View blogpost for more details"
-msgstr ""
+msgstr "Blogpost für weitere Details ansehen"
#: src/view/screens/Log.tsx:57
msgid "View debug entry"
msgstr "Debug-Eintrag anzeigen"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
-msgstr ""
+msgstr "Details ansehen"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
-msgstr ""
+msgstr "Details zum Melden einer Urheberrechtsverletzung ansehen"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Vollständigen Thread ansehen"
#: src/components/moderation/LabelsOnMe.tsx:46
msgid "View information about these labels"
-msgstr ""
+msgstr "Informationen zu diesen Kennzeichnungen anzeigen"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
-msgstr ""
+msgstr "Mehr ansehen"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Profil ansehen"
@@ -8329,45 +9044,53 @@ msgstr "Avatar ansehen"
#: src/components/LabelingServiceCard/index.tsx:164
msgid "View the labeling service provided by @{0}"
-msgstr ""
+msgstr "Sieh dir den von @{0} bereitgestellten Kennzeichnungsdienst an"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr "Verifizierungen dieses Nutzers ansehen"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
-msgstr ""
+msgstr "Nutzer ansehen, denen dieser Feed gefällt"
#: src/components/VideoPostCard.tsx:398
msgid "View video"
-msgstr ""
+msgstr "Video ansehen"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
-msgstr ""
+msgstr "Sieh dir deine blockierten Accounts an"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
-msgstr ""
+msgstr "Sieh dir deine Standard-Einstellungen für die Post-Interaktion an"
#: src/view/com/home/HomeHeaderLayout.web.tsx:56
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77
msgid "View your feeds and explore more"
-msgstr ""
+msgstr "Sieh dir deine Feeds an und entdecke mehr"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
-msgstr ""
+msgstr "Sieh dir deine Moderationslisten an"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
-msgstr ""
+msgstr "Sieh dir deine stummgeschalteten Accounts an"
+
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr "Deine Verifizierungen ansehen"
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
-msgstr ""
+msgstr "Vollständiges Bild ansehen"
#: src/components/VideoPostCard.tsx:121
msgid "Views video in immersive mode"
-msgstr ""
+msgstr "Zeigt Video im immersiven Modus"
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
@@ -8376,7 +9099,7 @@ msgstr "Seite ansehen"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80
msgid "Volume"
-msgstr ""
+msgstr "Lautstärke"
#: src/components/moderation/LabelPreference.tsx:136
#: src/lib/moderation/useLabelBehaviorDescription.ts:17
@@ -8386,31 +9109,36 @@ msgstr "Warnen"
#: src/lib/moderation/useLabelBehaviorDescription.ts:48
msgid "Warn content"
-msgstr ""
+msgstr "Inhaltswarnung anzeigen"
#: src/lib/moderation/useLabelBehaviorDescription.ts:46
msgid "Warn content and filter from feeds"
msgstr ""
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr ""
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "Wir konnten keine Ergebnisse für diesen Hashtag finden."
#: src/screens/Topic.tsx:178
msgid "We couldn't find any results for that topic."
-msgstr ""
+msgstr "Wir konnten keine Ergebnisse zu diesem Thema finden."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
-msgstr ""
+msgstr "Wir konnten diese Konversation nicht laden"
#: src/screens/SignupQueued.tsx:160
msgid "We estimate {estimatedTime} until your account is ready."
-msgstr "Wir schätzen {estimatedTime} bis dein Konto bereit ist."
+msgstr "Wir schätzen, dass es noch {estimatedTime} dauert, bis dein Account bereit ist."
#: src/components/intents/VerifyEmailIntentDialog.tsx:107
msgid "We have sent another verification email to <0>{0}0>."
-msgstr ""
+msgstr "Wir haben eine weitere Verifizierungs-E-Mail an <0>{0}0> gesendet."
#: src/screens/Onboarding/StepFinished.tsx:256
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
@@ -8418,73 +9146,89 @@ msgstr "Wir hoffen, dass du eine schöne Zeit hast. Denke daran, Bluesky ist:"
#: src/view/com/posts/DiscoverFallbackHeader.tsx:29
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
-msgstr "Wir haben keine Beiträge mehr von Gefolgten. Hier ist das Neueste von <0/>."
+msgstr "Wir haben keine weiteren Posts von den Nutzern, denen du folgst. Hier sind die neuesten von <0/>."
+
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr "Wir empfehlen, mindestens zwei Interessen auszuwählen."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
-msgstr ""
+msgstr "Wir konnten nicht feststellen, ob du berechtigt bist, Videos hochzuladen. Bitte versuche es erneut."
#: src/components/dialogs/BirthDateSettings.tsx:52
msgid "We were unable to load your birth date preferences. Please try again."
-msgstr ""
+msgstr "Wir konnten deine Geburtsdatums-Einstellungen nicht laden. Bitte versuche es erneut."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:428
msgid "We were unable to load your configured labelers at this time."
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:129
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."
+msgstr "Wir konnten keine Verbindung herstellen. Bitte versuche es erneut, um mit der Einrichtung deines Accounts fortzufahren. Wenn der Versuch weiterhin fehlschlägt, kannst du diesen Vorgang überspringen."
#: src/screens/SignupQueued.tsx:164
msgid "We will let you know when your account is ready."
-msgstr "Wir werden dich benachrichtigen, wenn dein Konto bereit ist."
+msgstr "Wir werden dich benachrichtigen, wenn dein Account bereit ist."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
-msgstr "Wir verwenden diese Informationen, um dein Erlebnis individuell zu gestalten."
+msgstr "Wir werden dies nutzen, um dein Erlebnis individuell zu gestalten."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
-msgstr ""
+msgstr "Wir haben Netzwerkprobleme, versuche es erneut"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr "Wir führen eine neue Ebene der Verifizierung auf Bluesky ein — ein leicht erkennbares Häkchen."
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "Wir freuen uns sehr, dass du dabei bist!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
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}."
+msgstr "Es tut uns leid, aber wir konnten diese Liste nicht auflösen. Wenn das weiterhin besteht, kontaktiere bitte den Listen-Ersteller, @{handleOrDid}."
#: 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."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
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:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
-msgstr ""
+msgstr "Es tut uns leid! Der Post, auf den du antwortest, wurde gelöscht."
#: src/components/Lists.tsx:194
#: src/view/screens/NotFound.tsx:50
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."
+msgstr "Es tut uns leid! Wir können die von dir gesuchte Seite nicht finden."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr ""
#: src/screens/Deactivated.tsx:125
msgid "Welcome back!"
-msgstr ""
+msgstr "Willkommen zurück!"
#: src/components/NewskieDialog.tsx:103
msgid "Welcome, friend!"
-msgstr ""
+msgstr "Willkommen, Freund!"
#: src/screens/Onboarding/StepInterests/index.tsx:126
msgid "What are your interests?"
@@ -8492,21 +9236,21 @@ msgstr "Was sind deine Interessen?"
#: src/screens/StarterPack/Wizard/StepDetails.tsx:41
msgid "What do you want to call your starter pack?"
-msgstr ""
-
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr ""
+msgstr "Wie möchtest du dein Startpaket nennen?"
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "Was gibt's?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr "Wenn du auf das Häkchen tippst, siehst du, welche Organisationen die Verifizierung vergeben haben."
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
-msgstr "Welche Sprachen werden in diesem Beitrag verwendet?"
+msgstr "Welche Sprachen werden in diesem Post verwendet?"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:79
msgid "Which languages would you like to see in your algorithmic feeds?"
@@ -8514,71 +9258,75 @@ msgstr "Welche Sprachen würdest du gerne in deinen algorithmischen Feeds sehen?
#: src/components/WhoCanReply.tsx:183
msgid "Who can interact with this post?"
-msgstr ""
+msgstr "Wer kann mit diesem Post interagieren?"
#: src/components/WhoCanReply.tsx:91
msgid "Who can reply"
-msgstr "Wer antworten kann"
+msgstr "Wer kann antworten"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr "Wer kann verifizieren?"
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
-msgstr ""
+msgstr "Ups!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr ""
#: src/screens/Takendown.tsx:173
msgid "Why are you appealing?"
-msgstr ""
+msgstr "Warum legst du Widerspruch ein?"
#: src/components/ReportDialog/SelectReportOptionView.tsx:42
msgid "Why should this content be reviewed?"
-msgstr ""
+msgstr "Warum sollte dieser Inhalt überprüft werden?"
#: src/components/moderation/ReportDialog/copy.ts:32
#: src/components/ReportDialog/SelectReportOptionView.tsx:55
msgid "Why should this feed be reviewed?"
-msgstr ""
+msgstr "Warum sollte dieser Feed überprüft werden?"
#: src/components/moderation/ReportDialog/copy.ts:26
#: src/components/ReportDialog/SelectReportOptionView.tsx:52
msgid "Why should this list be reviewed?"
-msgstr ""
+msgstr "Warum sollte diese Liste überprüft werden?"
#: src/components/moderation/ReportDialog/copy.ts:44
#: src/components/ReportDialog/SelectReportOptionView.tsx:61
msgid "Why should this message be reviewed?"
-msgstr ""
+msgstr "Warum sollte diese Nachricht überprüft werden?"
#: src/components/moderation/ReportDialog/copy.ts:20
#: src/components/ReportDialog/SelectReportOptionView.tsx:49
msgid "Why should this post be reviewed?"
-msgstr ""
+msgstr "Warum sollte dieser Post überprüft werden?"
#: src/components/moderation/ReportDialog/copy.ts:38
#: src/components/ReportDialog/SelectReportOptionView.tsx:58
msgid "Why should this starter pack be reviewed?"
-msgstr ""
+msgstr "Warum sollte dieses Startpaket überprüft werden?"
#: src/components/moderation/ReportDialog/copy.ts:14
#: src/components/ReportDialog/SelectReportOptionView.tsx:46
msgid "Why should this user be reviewed?"
-msgstr ""
+msgstr "Warum sollte dieser Nutzer überprüft werden?"
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
-msgstr ""
+msgstr "Schreibe eine Nachricht"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
-msgstr "Beitrag verfassen"
+msgstr "Post verfassen"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Schreibe deine Antwort"
@@ -8588,71 +9336,114 @@ msgstr "Schreibe deine Antwort"
msgid "Writers"
msgstr "Autoren"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
+msgstr "Falsche DID vom Server zurückgegeben. Empfangen: {0}"
+
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
msgstr ""
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Ja"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
-msgstr ""
+msgstr "Ja, deaktivieren"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
-msgstr ""
+msgstr "Ja, dieses Startpaket löschen"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
-msgstr ""
+msgstr "Ja, trennen"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
-msgstr ""
+msgstr "Ja, ausblenden"
#: src/screens/Deactivated.tsx:147
msgid "Yes, reactivate my account"
-msgstr ""
+msgstr "Ja, meinen Account reaktivieren"
#: src/components/dms/DateDivider.tsx:46
msgid "Yesterday"
-msgstr ""
+msgstr "Gestern"
#: src/components/NewskieDialog.tsx:43
msgid "You"
-msgstr ""
+msgstr "Du"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr "Du bist ein vertrauenswürdiger Verifizierer"
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
-msgstr ""
+msgstr "Du erstellst einen Account auf"
#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
msgstr "Du befindest dich in der Warteschlange."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr ""
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr ""
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr ""
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
-msgstr ""
+msgstr "Du darfst keine Videos hochladen."
#: src/view/com/profile/ProfileFollows.tsx:94
msgid "You are not following anyone."
+msgstr "Du folgst niemandem."
+
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
msgstr ""
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr "Du bist verifiziert"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr "Du bist verifiziert. Du verlierst deinen Verifizierungsstatus, wenn du deinen Anzeigenamen änderst. <0>Mehr erfahren (auf Englisch).0>"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr "Du bist verifiziert. Du verlierst deinen Verifizierungsstatus, wenn du deinen Handle änderst. <0>Mehr erfahren (auf Englisch).0>"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr "Du kannst deine Interessen jederzeit in den Einstellungen unter „Inhalte und Medien“ anpassen."
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
-msgstr "Du kannst auch neue benutzerdefinierte Feeds entdecken und ihnen folgen."
+msgstr "Du kannst auch neue benutzerdefinierte Feeds entdecken, denen du folgen kannst."
#: src/view/com/modals/DeleteAccount.tsx:198
msgid "You can also temporarily deactivate your account instead, and reactivate it at any time."
-msgstr ""
+msgstr "Du kannst deinen Account stattdessen auch vorübergehend deaktivieren und ihn jederzeit wieder reaktivieren."
#: src/screens/Messages/Settings.tsx:111
msgid "You can continue ongoing conversations regardless of which setting you choose."
-msgstr ""
+msgstr "Du kannst laufende Konversationen fortsetzen, unabhängig davon, welche Einstellung du wählst."
#: src/screens/Login/index.tsx:182
#: src/screens/Login/PasswordUpdatedForm.tsx:26
@@ -8661,30 +9452,29 @@ msgstr "Du kannst dich jetzt mit deinem neuen Passwort anmelden."
#: src/screens/Deactivated.tsx:133
msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
-msgstr ""
+msgstr "Du kannst deinen Account reaktivieren, um dich weiterhin einzuloggen. Dein Profil und deine Posts werden für andere Nutzer sichtbar sein."
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81
msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings0>."
-msgstr ""
+msgstr "Du kannst die Standard-Interaktionseinstellungen unter <0>Einstellungen → Moderation → Interaktionseinstellungen0> festlegen."
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
-msgstr ""
+msgstr "Du kannst dies später in deinen Einstellungen aktualisieren."
#: src/view/com/profile/ProfileFollowers.tsx:94
msgid "You do not have any followers."
-msgstr ""
+msgstr "Du hast keine Follower."
#: src/screens/Profile/KnownFollowers.tsx:109
msgid "You don't follow any users who follow @{name}."
-msgstr ""
+msgstr "Du folgst keinen Nutzern, die @{name} folgen."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
-msgstr ""
+msgstr "Du hast momentan keine Chat-Anfragen."
#: src/view/com/modals/InviteCodes.tsx:67
msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer."
@@ -8700,17 +9490,17 @@ msgstr "Du hast keine gespeicherten Feeds."
#: src/view/com/post-thread/PostThread.tsx:271
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."
+msgstr "Du hast den Autor blockiert oder der Autor hat dich blockiert."
#: src/components/dms/MessagesListBlockedFooter.tsx:66
msgid "You have blocked this user"
-msgstr ""
+msgstr "Du hast diesen Nutzer blockiert"
#: src/components/moderation/ModerationDetailsDialog.tsx:73
#: src/lib/moderation/useModerationCauseDescription.ts:57
#: src/lib/moderation/useModerationCauseDescription.ts:65
msgid "You have blocked this user. You cannot view their content."
-msgstr "Du hast diesen Benutzer blockiert und kannst seine Inhalte nicht sehen."
+msgstr "Du hast diesen Nutzer blockiert und kannst seine Inhalte nicht sehen."
#: src/screens/Login/SetNewPasswordForm.tsx:49
#: src/screens/Login/SetNewPasswordForm.tsx:95
@@ -8721,53 +9511,57 @@ msgstr "Du hast einen ungültigen Code eingegeben. Er sollte wie XXXXX-XXXXX aus
#: src/lib/moderation/useModerationCauseDescription.ts:116
msgid "You have hidden this post"
-msgstr ""
+msgstr "Du hast diesen Post ausgeblendet"
#: src/components/moderation/ModerationDetailsDialog.tsx:111
msgid "You have hidden this post."
-msgstr ""
+msgstr "Du hast diesen Post ausgeblendet."
#: src/components/moderation/ModerationDetailsDialog.tsx:104
#: src/lib/moderation/useModerationCauseDescription.ts:99
msgid "You have muted this account."
-msgstr ""
+msgstr "Du hast diesen Account stummgeschaltet."
#: src/lib/moderation/useModerationCauseDescription.ts:93
msgid "You have muted this user"
-msgstr ""
+msgstr "Du hast diesen Nutzer stummgeschaltet"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
-msgstr ""
+msgstr "Du hast noch keine Konversationen. Starte eine!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "Du hast keine Feeds."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "Du hast keine Listen."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
-msgstr ""
+msgstr "Du hast noch keine Accounts blockiert. Um einen Account zu blockieren, gehe auf das Profil und wähle „Account blockieren“ im Menü."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
-msgstr ""
+msgstr "Du hast noch keine Accounts stummgeschaltet. Um einen Account stummzuschalten, gehe auf das Profil und wähle „Account stummschalten“ im Menü des Accounts aus."
#: src/components/Lists.tsx:57
msgid "You have reached the end"
+msgstr "Du hast das Ende erreicht"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
msgstr ""
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
-msgstr ""
+msgstr "Du hast vorübergehend das Limit für Video-Uploads erreicht. Bitte versuche es später erneut."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
-msgstr ""
+msgstr "Du hast noch kein Startpaket erstellt!"
#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
@@ -8776,88 +9570,100 @@ msgstr "Du hast noch keine Wörter oder Tags stummgeschaltet"
#: src/components/moderation/ModerationDetailsDialog.tsx:118
#: src/lib/moderation/useModerationCauseDescription.ts:127
msgid "You hid this reply."
-msgstr ""
+msgstr "Du hast diese Antwort ausgeblendet."
#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "You may appeal non-self labels if you feel they were placed in error."
-msgstr ""
+msgstr "Du kannst Einspruch gegen nicht selbst gesetzte Kennzeichnungen erheben, wenn du der Meinung bist, dass sie fälschlicherweise vergeben wurden."
#: src/components/moderation/LabelsOnMeDialog.tsx:84
msgid "You may appeal these labels if you feel they were placed in error."
-msgstr ""
+msgstr "Du kannst gegen diese Kennzeichnungen Einspruch erheben, wenn du der Meinung bist, dass sie zu Unrecht vergeben wurden."
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr ""
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr "Du darfst nur bis zu {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} Profile}} hinzufügen"
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
-msgstr ""
+msgstr "Du kannst nur bis zu 3 Feeds hinzufügen"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
-msgstr ""
+msgstr "Du kannst nur bis zu 4 Bilder auswählen"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr ""
+msgid "You must be 13 years of age or older to create an account."
+msgstr "Du musst mindestens 13 Jahre alt sein, um einen Account zu erstellen."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
-msgstr ""
+msgstr "Du musst mindestens sieben anderen Personen folgen, um ein Startpaket zu erstellen."
#: src/components/StarterPack/QrCodeDialog.tsx:61
msgid "You must grant access to your photo library to save a QR code"
-msgstr ""
-
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr ""
+msgstr "Du musst den Zugriff auf deine Fotomediathek gewähren, um einen QR-Code zu speichern"
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
+msgstr "Du musst mindestens einen Kennzeichner für eine Meldung auswählen"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
msgstr ""
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
+msgstr "Du hast @{0} zuvor deaktiviert."
+
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
msgstr ""
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr "Du hast mit {0} reagiert"
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr "Du hast mit {0} auf {1} reagiert"
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
-msgstr ""
+msgstr "Du wirst von all deinen Accounts ausgeloggt."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
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/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Du erhältst nun Mitteilungen für diesen Thread"
#: src/screens/Login/SetNewPasswordForm.tsx:108
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
-msgstr "Du erhältst eine E-Mail mit einem „Reset-Code“. Gib diesen Code hier ein und gib dann dein neues Passwort ein."
+msgstr "Du erhältst eine E-Mail mit einem „Zurücksetzungscode“. Gib diesen Code hier ein und anschließend dein neues Passwort."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
-msgstr ""
+msgstr "Du: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
-msgstr ""
+msgstr "Du: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
-msgstr ""
+msgstr "Du: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
-msgstr ""
+msgstr "Du folgst den vorgeschlagenen Nutzern und Feeds, sobald du mit der Erstellung deines Accounts fertig bist!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
-msgstr ""
+msgstr "Du folgst den vorgeschlagenen Nutzern, sobald du mit der Erstellung deines Accounts fertig bist!"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:236
msgid "You'll follow these people and {0} others"
@@ -8867,9 +9673,9 @@ msgstr ""
msgid "You'll follow these people right away"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
-msgstr ""
+msgstr "Du erhältst eine E-Mail an <0>{0}0>, um zu verifizieren, dass du es bist."
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:274
msgid "You'll stay updated with these feeds"
@@ -8886,115 +9692,140 @@ msgstr "Du kannst loslegen!"
#: src/screens/Deactivated.tsx:89
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
-msgstr ""
+msgstr "Du bist mit einem App-Passwort eingeloggt. Bitte logge dich mit deinem Hauptpasswort ein, um die Deaktivierung deines Accounts fortzusetzen."
#: src/components/moderation/ModerationDetailsDialog.tsx:108
#: src/lib/moderation/useModerationCauseDescription.ts:108
msgid "You've chosen to hide a word or tag within this post."
-msgstr ""
+msgstr "Du hast dich entschieden, ein Wort oder Tag in diesem Post auszublenden."
#: src/state/shell/progress-guide.tsx:234
msgid "You've found some people to follow"
-msgstr ""
+msgstr "Du hast ein paar Leute gefunden, denen du folgen kannst"
#: src/view/com/posts/FollowingEndOfFeed.tsx:44
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."
+msgstr "Du hast das Ende deines Feeds erreicht! Finde weitere Accounts, denen du folgen kannst."
+
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr ""
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
-msgstr ""
+msgstr "Du hast dein tägliches Limit für Video-Uploads erreicht (zu viele Bytes)"
#: src/view/com/composer/state/video.ts:425
msgid "You've reached your daily limit for video uploads (too many videos)"
-msgstr ""
+msgstr "Du hast dein tägliches Limit für Video-Uploads erreicht (zu viele Videos)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
-msgstr ""
+msgstr "Du hast keine Videos mehr zum Anschauen. Vielleicht ist es ein guter Zeitpunkt, eine Pause zu machen?"
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
-msgstr "Dein Konto"
+msgstr "Dein Account"
#: src/view/com/modals/DeleteAccount.tsx:84
msgid "Your account has been deleted"
-msgstr "Dein Konto wurde gelöscht"
+msgstr "Dein Account wurde gelöscht"
#: src/screens/Takendown.tsx:146
msgid "Your account has been suspended"
-msgstr ""
+msgstr "Dein Account wurde gesperrt"
#: src/view/com/composer/state/video.ts:429
msgid "Your account is not yet old enough to upload videos. Please try again later."
-msgstr ""
+msgstr "Dein Account ist noch nicht alt genug, um Videos hochzuladen. Bitte versuche es später erneut."
#: src/screens/Settings/components/ExportCarDialog.tsx:67
msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately."
-msgstr "Dein Kontodepot, das alle öffentlichen Datensätze enthält, kann als \"CAR\"-Datei heruntergeladen werden. Diese Datei enthält keine Medieneinbettungen, wie z. B. Bilder, oder deine privaten Daten, welche separat abgerufen werden müssen."
+msgstr "Dein Account-Repository, das alle öffentlichen Datensätze enthält, kann als \"CAR\"-Datei heruntergeladen werden. Diese Datei enthält keine Medien-Einbettungen, wie Bilder, oder deine privaten Daten, die separat abgerufen werden müssen."
#: src/screens/Takendown.tsx:214
msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service0>. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error."
-msgstr ""
+msgstr "Es wurde festgestellt, dass dein Account gegen die <0>Bluesky Social Nutzungsbedingungen0> verstößt. Du hast eine E-Mail mit Details zum Verstoß und der gegebenenfalls geltenden Sperrfrist erhalten. Du kannst gegen diese Entscheidung Einspruch einlegen, wenn du glaubst, dass sie fälschlicherweise getroffen wurde."
#: src/screens/Takendown.tsx:154
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "Dein Geburtsdatum"
#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195
msgid "Your browser does not support the video format. Please try a different browser."
-msgstr ""
+msgstr "Dein Browser unterstützt das Videoformat nicht. Bitte versuche es mit einem anderen Browser."
#: src/screens/Messages/components/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
+msgstr "Deine Chats wurden deaktiviert"
+
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
msgstr ""
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "Deine Wahl wird gespeichert, kann aber später in den Einstellungen geändert werden."
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
+msgstr "Dein aktueller Handle <0>{0}0> bleibt automatisch für dich reserviert. Du kannst jederzeit von diesem Account aus zu ihm zurückwechseln."
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Deine E-Mail scheint ungültig zu sein."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "Deine E-Mail wurde aktualisiert, aber nicht bestätigt. Als nächsten Schritt bestätige bitte deine neue E-Mail."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
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."
+msgstr "Deine E-Mail wurde noch nicht verifiziert. Dies ist ein wichtiger Sicherheitsschritt, den wir empfehlen."
#: src/state/shell/progress-guide.tsx:213
msgid "Your first like!"
-msgstr ""
+msgstr "Dein erstes Like!"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443
msgid "Your followers"
-msgstr ""
+msgstr "Deine Follower"
#: src/view/com/posts/FollowingEmptyState.tsx:43
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."
+msgstr "Dein Following-Feed ist leer! Folge mehr Nutzern, um zu sehen, was passiert."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "Dein vollständiger Handle lautet <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
-msgstr ""
+msgstr "Dein vollständiger Nutzername lautet <0>@{0}0>"
+
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr "Deine Interessen"
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr "Deine Interessen wurden aktualisiert!"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr "Deine Interessen helfen uns dabei, das zu finden, was dir gefällt!"
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
@@ -9004,34 +9835,42 @@ msgstr "Deine stummgeschalteten Wörter"
msgid "Your password has been changed successfully!"
msgstr "Dein Passwort wurde erfolgreich geändert!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
-msgstr ""
+msgstr "Dein Passwort muss mindestens 8 Zeichen lang sein."
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
-msgstr "Dein Beitrag wurde veröffentlicht"
+msgstr "Dein Post wurde veröffentlicht"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
-msgstr ""
+msgstr "Deine Posts wurden veröffentlicht"
#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Your posts, likes, and blocks are public. Mutes are private."
-msgstr "Deine Beiträge, Likes und Blockierungen sind öffentlich. Stummschaltungen sind privat."
+msgstr "Deine Posts, Likes und Blockierungen sind öffentlich. Stummschaltungen sind privat."
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
-msgstr ""
+msgstr "Dein Profil, deine Posts, deine Feeds und Listen werden nicht mehr für andere Bluesky-Nutzer sichtbar sein. Du kannst deinen Account jederzeit reaktivieren, indem du dich einloggst."
-#: src/view/com/composer/Composer.tsx:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Deine Antwort wurde veröffentlicht"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
-msgstr ""
+msgstr "Deine Meldung wird an <0>{0}0> gesendet."
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
-msgstr ""
+msgstr "Deine Meldung wird an den Bluesky-Moderationsdienst gesendet"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr "Deine ausgewählten Interessen helfen uns dabei, dir Inhalte anzuzeigen, die dich interessieren."
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr "Deine Verifizierungen"
diff --git a/src/locale/locales/el/messages.po b/src/locale/locales/el/messages.po
index 85d0fa5374..2145322693 100644
--- a/src/locale/locales/el/messages.po
+++ b/src/locale/locales/el/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: el\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 03:35\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Greek\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(ενεργό)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(περιέχει ενσωματωμένο περιεχόμενο)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(χωρίς email)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {# αναδημοσίευση} other {# αναδημοσ
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# δευτερόλεπτο} other {# δευτερόλεπτα}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -90,17 +90,17 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {ακόλουθος} other {ακόλουθοι}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {ακολουθεί} other {ακολουθούν}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {Μου αρέσει} other {Μου αρέσει}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {Μου αρέσει} other {Μου αρέσει}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {ανάρτηση} other {αναρτήσεις}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {πάραθεση} other {παραθέσεις}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {αναδημοσίευση} other {αναδημοσιεύσεις}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr ""
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr ""
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0>σε <1>ετικέτες1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>σε <1>κείμενο & ετικέτες1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr ""
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} εντάχθηκε αυτήν την εβδομάδα"
@@ -139,11 +156,16 @@ msgstr "{0} από {1}"
msgid "{0} out of 50"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0} άτομα έχουν χρησιμοποιήσει αυτό το Starter Pack!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr ""
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "Η εικόνα προφίλ του {0}"
@@ -175,7 +197,7 @@ msgstr "{0}λ."
msgid "{0}s"
msgstr "{0}δευτ."
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, one {ώρα} other {ώρες}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {λεπτό} other {λεπτά}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} άλλοι}}0> σας ακολούθησαν"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "Η προσαρμοσμένη ροή άρεσε σε {firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} άλλους}}0>"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} άλλοι}}0> άρεσαν την ανάρτησή σας"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} άλλοι}}0> αναδημοσίευσαν την ανάρτησή σας"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} άλλοι}}0> εγγεγράφηκαν με το πακέτο εκκίνησής σας"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "Ο/η {firstAuthorLink} σας ακολούθησε"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "Ο/η {firstAuthorLink} σας ακολούθησε πίσω"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "Στον/ην {firstAuthorLink} άρεσε η προσαρμοσμένοη ροή σας"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "Στον/ην {firstAuthorLink} άρεσε την ανάρτησή σας"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "Ο/η {firstAuthorLink} αναδημοσίευσε την ανάρτησή σας"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "Ο/η {firstAuthorLink} γράφτηκε με το Starter Pack σας"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "Ο/η {firstAuthorName} και {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλος} other {{formattedAuthorsCount} άλλοι}} σας ακολούθησαν"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "Η προσαρμοσμένη ροή άρεσε στον/ην {firstAuthorName} και {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλον} other {{formattedAuthorsCount} άλλους}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "Στον/ην {firstAuthorName} και σε {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλον} other {{formattedAuthorsCount} άλλους}} άρεσε την ανάρτησή σας"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "Ο/η {firstAuthorName} και {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλος} other {{formattedAuthorsCount} άλλοι}} αναδημοσίευσαν την ανάρτησή σας"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "Ο/η {firstAuthorName} και {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλος} other {{formattedAuthorsCount} άλλοι}} γράφτηκαν με το πακέτο εκκίνησής σας"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "Ο/η {firstAuthorName} σας ακολούθησε"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "Ο/η {firstAuthorName} σας ακολούθησε πίσω"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "Η προσαρμοσμένη ροή άρεσε στον/ην {firstAuthorName}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "Στον/ην {firstAuthorName} άρεσε η ανάρτησή σας"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "Ο/η {firstAuthorName} αναδημοσίευσε την ανάρτησή σας"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "Ο/η {firstAuthorName} γράφτηκε στο starter pack σας"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} ακόλουθοι"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "Δεν είναι δυνατόν να στείλετε μήνυμα στον/ην {handle}"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr ""
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr ""
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -301,6 +404,34 @@ msgstr "Ο/Η {profileName} εντάχθηκε στο Bluesky πριν από {0
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "Ο/Η {profileName} εντάχθηκε στο Bluesky με starter pack πριν από {0}"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr ""
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr ""
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr ""
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr ""
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr ""
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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 {# άλλοι}} είναι μέσα στο Starter Pack σας"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {ακόλουθος} other {ακόλουθοι}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {ακόλουθος} other {ακόλουθοι}}"
@@ -343,7 +474,7 @@ msgstr "<0>Πειραματικό:0> Όταν αυτή η ρύθμιση εί
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>Εσείς0> και <1> 1><2>{0} 2>περιλαμβάνονται στο πακέτο εκκίνησής σας"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Μη έγκυρο όνομα χρήστη"
@@ -363,19 +494,28 @@ msgstr "30 ημέρες"
msgid "7 days"
msgstr "7 ημέρες"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr ""
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Σχετικά"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr ""
@@ -385,40 +525,40 @@ msgid "Accept Request"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Προσβασιμότητα"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Ρυθμίσεις Προσβασιμότητας"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Λογαριασμός"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "Λογαριασμός μπλοκαρισμένος"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "Ο Λογαριασμός ακολουθείται"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "Λογαριασμός σε σίγαση"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
@@ -429,33 +569,37 @@ msgstr "Λογαριασμός σε σίγαση"
msgid "Account Muted by List"
msgstr "Λογαριασμός σε σίγαση από λίστα"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Επιλογές λογαριασμού"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Λογαριασμός αφαιρέθηκε από την γρήγορη πρόσβαση"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "Λογαριασμός ξεμπλοκαρισμένος"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "Λογαριασμός σταμάτησε να ακολουθείται"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
+msgstr "Άρση σίγασης λογαριασμού"
+
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Προσθήκη"
@@ -473,8 +617,12 @@ msgstr "Προσθήκη {displayName} στο starter pack"
msgid "Add a content warning"
msgstr "Προσθήκη προειδοποίησης περιεχομένου"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "Προσθήκη χρήστη σε αυτήν τη λίστα"
@@ -485,7 +633,7 @@ msgstr "Προσθήκη λογαριασμού"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Προσθήκη λογαριασμού"
msgid "Add alt text"
msgstr "Προσθήκη εναλλακτικού κειμένου"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Προσθήκη εναλλακτικού κειμένου (προαιρετικό)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Προσθήκη άλλου λογαριασμού"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Προσθήκη άλλης ανάρτησης"
@@ -518,8 +666,12 @@ msgstr "Προσθήκη κωδικού πρόσβασης εφαρμογής"
msgid "Add App Password"
msgstr "Προσθήκη κωδικού πρόσβασης εφαρμογής"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr ""
@@ -531,15 +683,23 @@ msgstr ""
msgid "Add muted words and tags"
msgstr "Προσθήκη λέξεων και ετικετών που θα είναι σε σίγαση"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Προσθήκη νέας ανάρτησης"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Προσθήκη ατόμων"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr ""
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Προσθήκη προτεινόμενων ροών"
@@ -552,27 +712,28 @@ msgstr "Προσθέστε μερικές ροές στο πακέτο εκκί
msgid "Add the default feed of only people you follow"
msgstr "Προσθήκη της προεπιλεγμένης ροής μόνο των ατόμων που ακολουθείτε"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Προσθέστε το ακόλουθο αρχείο DNS στο domain σας:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Προσθήκη αυτού της ροής στις ροές σας"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "Προσθήκη σε λίστες"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Προσθήκη σε λίστες"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Προσθήκη στις ροές μου"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Προστέθηκε στη λίστα"
@@ -581,22 +742,22 @@ msgstr "Προστέθηκε στη λίστα"
msgid "Added to my feeds"
msgstr "Προστέθηκε στις ροές μου"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Ενήλικες"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Περιεχόμενο για ενηλίκους"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "Το περιεχόμενο για ενηλίκους μπορεί να ενεργοποιηθεί μόνο μέσω του Web στην διεύθυνση <0>bsky.app0>."
@@ -604,30 +765,35 @@ msgstr "Το περιεχόμενο για ενηλίκους μπορεί να
msgid "Adult content is disabled."
msgstr "Το περιεχόμενο για ενηλίκους είναι απενεργοποιημένο."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Ετικέτες περιεχομένου για ενηλίκους"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Προηγμένες"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr ""
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Όλα"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "Όλοι οι λογαριασμοί έχουν ακολουθηθεί!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "Όλες οι γλώσσες"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "Όλες οι ροές που έχετε αποθηκεύσει, σε ένα μέρος."
@@ -671,10 +837,10 @@ msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Εναλλακτικό κείμενο"
@@ -688,19 +854,18 @@ msgstr "Το εναλλακτικό κείμενο περιγράφει εικό
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "Το εναλλακτικό κείμενο θα περικοπεί. Όριο: {0} χαρακτήρες."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr ""
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "Ένα email έχει σταλεί στο {0}. Περιλαμβάνει έναν κωδικό επιβεβαίωσης που μπορείτε να εισαγάγετε παρακάτω."
-#: src/view/com/modals/ChangeEmail.tsx:114
-msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
-msgstr "Ένα email έχει σταλεί στην προηγούμενη διεύθυνσή σας, {0}. Περιλαμβάνει έναν κωδικό επιβεβαίωσης που μπορείτε να εισαγάγετε παρακάτω."
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "Ένα email έχει σταλεί! Παρακαλώ εισάγετε τον κωδικό επιβεβαίωσης που περιλαμβάνεται στο email παρακάτω."
@@ -716,7 +881,11 @@ msgstr "Παρουσιάστηκε σφάλμα"
msgid "An error occurred while compressing the video."
msgstr "Παρουσιάστηκε σφάλμα κατά τη συμπίεση του βίντεο."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Παρουσιάστηκε σφάλμα κατά τη δημιουργία του πακέτου έναρξής σας. Θέλετε να δοκιμάσετε ξανά;"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "Παρουσιάστηκε σφάλμα κατά τη φόρτωση του βίντεο. Παρακαλώ δοκιμάστε ξανά."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του QR code!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "Παρουσιάστηκε σφάλμα κατά την επιλογή του βίντεο"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "Παρουσιάστηκε σφάλμα κατά την προσπάθεια παρακολούθησης όλων"
@@ -746,12 +914,17 @@ msgstr "Παρουσιάστηκε σφάλμα κατά την προσπάθε
msgid "An error occurred while uploading the video."
msgstr "Παρουσιάστηκε σφάλμα κατά τη μεταφόρτωση του βίντεο."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Ένα θέμα που δεν περιλαμβάνεται σε αυτές τις επιλογές"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "Παρουσιάστηκε πρόβλημα κατά την έναρξη της συνομιλίας"
@@ -761,13 +934,17 @@ msgstr "Παρουσιάστηκε πρόβλημα κατά την προσπά
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Παρουσιάστηκε πρόβλημα, παρακαλώ δοκιμάστε ξανά."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "παρουσιάστηκε άγνωστο σφάλμα"
@@ -790,6 +967,10 @@ msgstr "Ζώα"
msgid "Animated GIF"
msgstr "Κινούμενο GIF"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Αντικοινωνική Συμπεριφορά"
msgid "Anybody can interact"
msgstr "Ο καθένας μπορεί να αλληλεπιδράσει"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
-msgstr ""
+msgstr "Εικονίδιο εφαρμογής"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "Γλώσσα εφαρμογής"
@@ -817,7 +998,7 @@ msgstr "Κωδικός πρόσβασης εφαρμογής"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "Κωδικός πρόσβασης εφαρμογής διαγράφηκε"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
@@ -836,7 +1017,7 @@ msgstr "Τα ονόματα κωδικών πρόσβασης εφαρμογής
msgid "App passwords"
msgstr "Κωδικοί πρόσβασης εφαρμογής"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Κωδικοί Πρόσβασης Εφαρμογής"
@@ -854,7 +1035,7 @@ msgstr "Ένσταση ετικέτας"
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "Έφεση υποβλήθηκε"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -872,10 +1053,10 @@ msgstr ""
msgid "Appeal this decision"
msgstr "Εφεση σε αυτήν την απόφαση"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Εμφάνιση"
@@ -884,12 +1065,12 @@ msgstr "Εμφάνιση"
msgid "Apply default recommended feeds"
msgstr "Εφαρμογή προεπιλεγμένων προτεινόμενων ροών"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Αρχειοθετήθηκε από {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Αρχειοθετημένη ανάρτηση"
@@ -897,15 +1078,15 @@ msgstr "Αρχειοθετημένη ανάρτηση"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε τον κωδικό πρόσβασης εφαρμογής;"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
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:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το Starter Pack;"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "Θέλετε σίγουρα να απορρίψετε τις αλλαγές σας;"
@@ -921,15 +1102,15 @@ msgstr "Θέλετε σίγουρα να αποχωρήσετε από αυτή
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Θέλετε σίγουρα να αφαιρέσετε τον/την {0} από τις ροές σας;"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Είστε σίγουροι ότι θέλετε να αφαιρέσετε αυτό από τις ροές σας;"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "Είστε σίγουροι ότι θέλετε να απορρίψετε αυτό το προσχέδιο;"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "Είστε σίγουροι ότι θέλετε να απορρίψετε αυτήν την ανάρτηση;"
@@ -937,20 +1118,25 @@ msgstr "Είστε σίγουροι ότι θέλετε να απορρίψετ
msgid "Are you sure?"
msgstr "Είστε σίγουροι;"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
-msgstr ""
+msgstr "Γράφετε σε <0>{suggestedLanguageName}0>;"
#: src/screens/Onboarding/index.tsx:23
#: src/screens/Onboarding/state.ts:95
msgid "Art"
msgstr "Τέχνη"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Καλλιτεχνική ή μη ερωτική γυμνότητα."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "Τουλάχιστον 3 χαρακτήρες"
@@ -963,12 +1149,12 @@ msgstr ""
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Οι επιλογές αυτόματης αναπαραγωγής έχουν μετακινηθεί στις <0>Ρυθμίσεις περιεχομένου και μέσων0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Αυτόματη αναπαραγωγή βίντεο και GIF"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Αυτόματη αναπαραγωγή βίντεο και GIF"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Πίσω"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr ""
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Πριν δημιουργήσετε μια λίστα, πρέπει πρώτα να επαληθεύσετε το email σας."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Πριν δημιουργήσετε μια ανάρτηση, πρέπει πρώτα να επαληθεύσετε το email σας."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Πριν δημιουργήσετε ένα Starter Pack, πρέπει πρώτα να επαληθεύσετε το email σας."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "Πριν στείλετε μήνυμα σε άλλον χρήστη, πρέπει πρώτα να επαληθεύσετε το email σας."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Ημερομηνία γέννησης"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Αποκλεισμός"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Αποκλεισμός λογαριασμού"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "Αποκλεισμός λογαριασμού;"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Αποκλεισμός λογαριασμών"
@@ -1052,9 +1239,9 @@ msgstr ""
#: src/components/dms/ReportDialog.tsx:352
msgid "Block and/or delete this conversation"
-msgstr ""
+msgstr "Αποκλεισμός και/ή διαγραφή αυτής της συνομιλίας"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Λίστα αποκλεισμένων"
@@ -1062,7 +1249,7 @@ msgstr "Λίστα αποκλεισμένων"
msgid "Block or report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "Αποκλεισμός αυτών των λογαριασμών;"
@@ -1079,21 +1266,21 @@ msgstr ""
msgid "Blocked"
msgstr "Αποκλεισμένος"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Αποκλεισμένοι λογαριασμοί"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Αποκλεισμένοι Λογαριασμοί"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Οι αποκλεισμένοι λογαριασμοί δεν μπορούν να απαντήσουν στις συζητήσεις σας, να σας αναφέρουν ή να αλληλεπιδράσουν με άλλο τρόπο μαζί σας."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 "Οι αποκλεισμένοι λογαριασμοί δεν μπορούν να απαντήσουν στις συζητήσεις σας, να σας αναφέρουν ή να αλληλεπιδράσουν με άλλο τρόπο μαζί σας. Δε θα βλέπετε το περιεχόμενό τους και θα τους εμποδίζετε να δουν το δικό σας."
@@ -1101,19 +1288,19 @@ msgstr "Οι αποκλεισμένοι λογαριασμοί δεν μπορο
msgid "Blocked post."
msgstr "Αποκλεισμένη ανάρτηση."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Ο αποκλεισμός δεν εμποδίζει αυτόν τον ετικετοποιητή από το να τοποθετεί ετικέτες στον λογαριασμό σας."
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Ο αποκλεισμός είναι δημόσιος. Οι αποκλεισμένοι λογαριασμοί δεν μπορούν να απαντήσουν στις συζητήσεις σας, να σας αναφέρουν ή να αλληλεπιδράσουν με άλλο τρόπο μαζί σας."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
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:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Ιστολόγιο"
@@ -1122,7 +1309,7 @@ msgstr "Ιστολόγιο"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Το Bluesky δεν μπορεί να επιβεβαιώσει την αυθεντικότητα της ημερομηνίας που δηλώθηκε."
@@ -1148,7 +1335,7 @@ msgstr "Το Bluesky είναι καλύτερο με φίλους!"
msgid "Bluesky Social Terms of Service"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Το Bluesky θα επιλέξει μια σειρά από προτεινόμενους λογαριασμούς από άτομα στο δίκτυό σας."
@@ -1156,6 +1343,10 @@ msgstr "Το Bluesky θα επιλέξει μια σειρά από προτει
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Το Bluesky δεν θα εμφανίσει το προφίλ και τις αναρτήσεις σας σε χρήστες που δεν έχουν συνδεθεί. Άλλες εφαρμογές ενδέχεται να μην σεβαστούν αυτό το αίτημα. Αυτό δεν κάνει τον λογαριασμό σας ιδιωτικό."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr ""
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "Θολώστε εικόνες και φιλτράρετε από τις
msgid "Books"
msgstr "Βιβλία"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "Περιηγηθείτε σε περισσότερους λογαριασμούς στην σελίδα Εξερεύνησης"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "Περιηγηθείτε σε περισσότερες ροές στην σελίδα Εξερεύνησης"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Περιηγηθείτε σε περισσότερες προτάσεις"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "Περιηγηθείτε σε περισσότερες προτάσεις στην σελίδα Εξερεύνησης"
@@ -1214,20 +1405,26 @@ msgstr ""
msgid "Browse starter pack {displayName}"
msgstr ""
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr ""
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Επιχειρήσεις"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "Από {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
@@ -1243,44 +1440,51 @@ msgstr "Δημιουργώντας λογαριασμό συμφωνείτε μ
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Δημιουργώντας λογαριασμό συμφωνείτε με τους <0>Όρους Χρήσης0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr ""
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Κάμερα"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Ακύρωση"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "Ακύρωση διαγραφής λογαριασμού"
msgid "Cancel image crop"
msgstr "Ακύρωση περικοπής εικόνας"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Ακύρωση επεξεργασίας προφίλ"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Ακύρωση αναδημοσίευσης"
@@ -1308,8 +1512,7 @@ msgstr "Ακύρωση αναδημοσίευσης"
msgid "Cancel reactivation and sign out"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Ακύρωση αναζήτησης"
@@ -1317,24 +1520,23 @@ msgstr "Ακύρωση αναζήτησης"
msgid "Cancels opening the linked website"
msgstr "Ακυρώνει το άνοιγμα του συνδεδεμένου ιστότοπου"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "Δεν μπορείτε να αλληλεπιδράσετε με έναν μπλοκαρισμένο χρήστη"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Υπότιτλοι (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Υπότιτλοι & εναλλακτικό κείμενο"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Αλλαγή"
@@ -1347,46 +1549,41 @@ msgstr ""
msgid "Change app icon to \"{0}\""
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Αλλαγή email"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Αλλαγή διεύθυνσης email"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Αλλαγή Ονόματος Χρήστη"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Αλλαγή του email μου"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Αλλαγή Κωδικού"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Αλλαγή του Email σας"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Αλλαγή της διεύθυνσης email σας"
@@ -1394,20 +1591,20 @@ msgstr "Αλλαγή της διεύθυνσης email σας"
msgid "Changes app icon"
msgstr ""
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr ""
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Συνομιλία"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
msgstr ""
@@ -1415,22 +1612,21 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "Σίγαση συνομιλίας"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr ""
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Ρυθμίσεις συνομιλίας"
@@ -1441,10 +1637,10 @@ msgstr "Ρυθμίσεις Συνομιλίας"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "Αφαίρεση σίγασης συνομιλίας"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr ""
@@ -1461,7 +1657,7 @@ msgstr ""
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Ελέγξτε τα εισερχόμενά σας για ένα email με τον κωδικό επιβεβαίωσης για να τον εισάγετε παρακάτω:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Επιλέξτε μέθοδο επαλήθευσης domain"
@@ -1469,7 +1665,7 @@ msgstr "Επιλέξτε μέθοδο επαλήθευσης domain"
msgid "Choose Feeds"
msgstr "Επιλέξτε Ροές"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Επιλέξτε για μένα"
@@ -1477,10 +1673,6 @@ msgstr "Επιλέξτε για μένα"
msgid "Choose People"
msgstr "Επιλέξτε Άτομα"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Επιλέξτε αυτο-ετικέτες που ισχύουν για τα μέσα που δημοσιεύετε. Εάν δεν επιλεγεί καμία, αυτή η ανάρτηση είναι κατάλληλη για όλα τα κοινά."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Επιλέξτε τους αλγορίθμους που τροφοδοτούν τις προσαρμοσμένες ροές σας."
@@ -1493,27 +1685,31 @@ msgstr "Επιλέξτε αυτό το χρώμα ως εικόνα προφίλ
msgid "Choose your account provider"
msgstr ""
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Επιλέξτε τον κωδικό σας"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr ""
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Εκκαθάριση όλων των δεδομένων αποθήκευσης"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Εκκαθάριση όλων των δεδομένων αποθήκευσης (επανεκκίνηση μετά από αυτό)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr ""
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Καθαρισμός αναζήτησης"
@@ -1522,6 +1718,14 @@ msgstr "Καθαρισμός αναζήτησης"
msgid "click here"
msgstr "κάντε κλικ εδώ"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Κάντε κλικ για να απενεργοποιήσετε τις αναδημοσιεύσεις αυτής της ανάρτησης."
@@ -1534,7 +1738,7 @@ msgstr "Κάντε κλικ για να ενεργοποιήσετε τις αν
msgid "Click to open tag menu for {tag}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Κάντε κλικ για να επαναλάβετε το αποτυχημένο μήνυμα"
@@ -1546,24 +1750,34 @@ msgstr "Κλίμα"
msgid "Clip 🐴 clop 🐴"
msgstr ""
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Κλείσιμο"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Κλείσιμο ενεργού διαλόγου"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Κλείσιμο κάτω συρταριού"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Κλείσιμο διαλόγου"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr ""
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr ""
@@ -1600,7 +1816,13 @@ msgstr "Κλείσιμο εικόνας"
msgid "Close image viewer"
msgstr "Κλείσιμο προγράμματος προβολής εικόνας"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr ""
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Κλείσιμο αυτού του διαλόγου"
@@ -1608,8 +1830,12 @@ msgstr "Κλείσιμο αυτού του διαλόγου"
msgid "Closes password update alert"
msgstr "Κλείνει την ειδοποίηση ενημέρωσης κωδικού πρόσβασης"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr ""
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr ""
@@ -1617,11 +1843,11 @@ msgstr ""
msgid "Closes viewer for header image"
msgstr "Κλείνει το πρόγραμμα προβολής για την εικόνα κεφαλίδας"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Σύμπτυξη λίστας χρηστών"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Συμπτύσσει τη λίστα χρηστών για μια δεδομένη ειδοποίηση"
@@ -1644,7 +1870,7 @@ msgstr "Κωμωδία"
msgid "Comics"
msgstr "Κόμικς"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Οδηγίες Κοινότητας"
@@ -1653,23 +1879,23 @@ msgstr "Οδηγίες Κοινότητας"
msgid "Complete onboarding and start using your account"
msgstr "Ολοκληρώστε την εισαγωγή και ξεκινήστε να χρησιμοποιείτε τον λογαριασμό σας"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Ολοκλήρωση της πρόκλησης"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Σύνταξη νέας ανάρτησης"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "Σύνταξη αναρτήσεων έως {MAX_GRAPHEME_LENGTH} χαρακτήρες σε μήκος"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr ""
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Σύνταξη απάντησης"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Συμπίεση βίντεο..."
@@ -1681,23 +1907,17 @@ msgstr "Ρύθμιση ρύθμισης φιλτραρίσματος περιε
msgid "Configured in <0>moderation settings0>."
msgstr "Ρυθμισμένο στις <0>ρυθμίσεις διαχείρισης0>."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Επιβεβαίωση"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Επιβεβαίωση Αλλαγής"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Επιβεβαίωση ρυθμίσεων γλώσσας περιεχομένου"
@@ -1706,26 +1926,27 @@ msgstr "Επιβεβαίωση ρυθμίσεων γλώσσας περιεχο
msgid "Confirm delete account"
msgstr "Επιβεβαίωση διαγραφής λογαριασμού"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Επιβεβαιώστε την ηλικία σας:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Επιβεβαιώστε την ημερομηνία γέννησής σας"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Κωδικός επιβεβαίωσης"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Κωδικός Επιβεβαίωσης"
@@ -1733,22 +1954,22 @@ msgstr "Κωδικός Επιβεβαίωσης"
msgid "Connecting..."
msgstr "Σύνδεση..."
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Επικοινωνία με την υποστήριξη"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Περιεχόμενο και μέσα"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Περιεχόμενο και Μέσα"
@@ -1756,15 +1977,15 @@ msgstr "Περιεχόμενο και Μέσα"
msgid "Content Blocked"
msgstr "Αποκλεισμένο Περιεχόμενο"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Φίλτρα περιεχομένου"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Γλώσσες Περιεχομένου"
@@ -1785,16 +2006,16 @@ msgstr "Προειδοποίηση Περιεχομένου"
msgid "Content warnings"
msgstr "Προειδοποιήσεις περιεχομένου"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "Φόντο μενού περιβάλλοντος, κάντε κλικ για να κλείσετε το μενού."
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Συνέχεια"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Συνέχεια ως {0} (είστε ήδη συνδεδεμένος/η)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Συνέχεια συζήτησης..."
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Συνέχεια στο επόμενο βήμα"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Διαγραμμένη συνομιλία"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Διαγραμμένη συνομιλία"
@@ -1826,16 +2047,17 @@ msgstr "Μαγειρική"
msgid "Copied"
msgstr "Αντιγράφηκε"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Η έκδοση build αντιγράφηκε στο πρόχειρο"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Αντιγράφηκε στο πρόχειρο"
@@ -1844,25 +2066,29 @@ msgstr "Αντιγράφηκε στο πρόχειρο"
msgid "Copied!"
msgstr "Αντιγράφηκε!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Αντιγραφή"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr ""
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Αντιγραφή κωδικού πρόσβασης εφαρμογής"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr ""
@@ -1871,57 +2097,69 @@ msgstr ""
msgid "Copy code"
msgstr "Αντιγραφή κωδικού"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Αντιγραφή DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Αντιγραφή host"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Αντιγραφή συνδέσμου"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Αντιγραφή Συνδέσμου"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Αντιγραφή συνδέσμου στη λίστα"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Αντιγραφή συνδέσμου στην ανάρτηση"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Αντιγραφή κειμένου μηνύματος"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Αντιγραφή κειμένου ανάρτησης"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Αντιγραφή QR κώδικα"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "Αντιγραφή τιμής εγγραφής TXT"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Πολιτική Πνευματικών Δικαιωμάτων"
@@ -1931,11 +2169,11 @@ msgstr "Πολιτική Πνευματικών Δικαιωμάτων"
msgid "Could not leave chat"
msgstr "Δεν ήταν δυνατή η αποχώρηση από τη συνομιλία"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "Δεν ήταν δυνατή η φόρτωση της ροής"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "Δεν ήταν δυνατή η φόρτωση της λίστας"
@@ -1947,28 +2185,28 @@ msgstr "Δεν ήταν δυνατή η σίγαση της συνομιλίας
msgid "Could not process your video"
msgstr "Δεν ήταν δυνατή η επεξεργασία του βίντεο σας"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Δημιουργία"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "Δημιουργία QR κώδικα για ένα starter pack"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Δημιουργία starter pack"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Δημιουργία starter pack για μένα"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Δημιουργία starter pack για μένα"
msgid "Create account"
msgstr "Εγγραφή"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Δημιουργία Λογαριασμού"
@@ -1985,11 +2223,16 @@ msgstr "Δημιουργία Λογαριασμού"
msgid "Create an account"
msgstr "Δημιουργία λογαριασμού"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Δημιουργήστε μια εικόνα προφίλ εωαλλακτικά"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Δημιουργία άλλου"
@@ -1998,7 +2241,7 @@ msgstr "Δημιουργία άλλου"
msgid "Create new account"
msgstr "Δημιουργία νέου λογαριασμού"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Δημιουργία αναφοράς για {0}"
@@ -2053,17 +2296,17 @@ msgstr "Σκοτεινή λειτουργία"
msgid "Dark theme"
msgstr "Σκοτεινό θέμα"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Ημερομηνία γέννησης"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Απενεργοποίηση λογαριασμού"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Debug Διαχείρισης"
@@ -2079,19 +2322,19 @@ msgstr "Προεπιλογή"
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Διαγραφή"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Διαγραφή λογαριασμού"
@@ -2107,19 +2350,19 @@ msgstr "Διαγραφή κωδικού πρόσβασης εφαρμογής"
msgid "Delete app password?"
msgstr "Διαγραφή κωδικού πρόσβασης εφαρμογής;"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr ""
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Διαγραφή εγγραφής δήλωσης συνομιλίας"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr ""
@@ -2127,19 +2370,19 @@ msgstr ""
msgid "Delete Conversation"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Διαγραφή για μένα"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
-msgstr "Διαγραφή Λίστας"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Διαγραφή μηνύματος"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Διαγραφή μηνύματος για μένα"
@@ -2147,26 +2390,26 @@ msgstr "Διαγραφή μηνύματος για μένα"
msgid "Delete my account"
msgstr "Διαγραφή του λογαριασμού μου"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Διαγραφή ανάρτησης"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Διαγραφή starter pack"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "Διαγραφή starter pack;"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "Διαγραφή αυτής της λίστας;"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "Διαγραφή αυτής της ανάρτησης;"
@@ -2174,8 +2417,8 @@ msgstr "Διαγραφή αυτής της ανάρτησης;"
msgid "Deleted"
msgstr "Διαγραμμένο"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Διαγραμμένος Λογαριασμός"
@@ -2183,48 +2426,48 @@ msgstr "Διαγραμμένος Λογαριασμός"
msgid "Deleted post."
msgstr "Διαγραμμένη ανάρτηση."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Περιγραφή"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "Η περιγραφή είναι πολύ μεγάλη"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "Η περιγραφή είναι πολύ μεγάλη. Ο μέγιστος αριθμός χαρακτήρων είναι {DESCRIPTION_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Περιγραφικό εναλλακτικό κείμενο"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Αποσύνδεση απόσπασης"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "Αποσύνδεση αναδημοσίευσης;"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
-msgstr ""
+msgstr "Η λειτουργία προγραμματιστή απενεργοποιήθηκε"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
-msgstr ""
+msgstr "Η λειτουργία προγραμματιστή ενεργοποιήθηκε"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Επιλογές προγραμματιστή"
@@ -2236,6 +2479,15 @@ msgstr "Διάλογος: ρυθμίστε ποιοι μπορούν να αλλ
msgid "Dim"
msgstr "Ντιμαρισμένο"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr ""
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "Απενεργοποίηση Email 2FA"
@@ -2254,25 +2506,25 @@ msgstr "Απενεργοποίηση υποτίτλων"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Απενεργοποιημένο"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Απόρριψη"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "Απόρριψη αλλαγών;"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "Απόρριψη προσχεδίου;"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "Απόρριψη ανάρτησης;"
@@ -2281,24 +2533,24 @@ msgstr "Απόρριψη ανάρτησης;"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Αποθάρρυνση των εφαρμογών από την εμφάνιση του λογαριασμού μου σε χρήστες που δεν έχουν συνδεθεί"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Ανακαλύψτε νέες προσαρμοσμένες ροές"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Ανακαλύψτε νέες ροές"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Ανακαλύψτε Νέες Ροές"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Απόρριψη"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Απόρριψη σφάλματος"
@@ -2306,6 +2558,10 @@ msgstr "Απόρριψη σφάλματος"
msgid "Dismiss getting started guide"
msgstr "Απόρριψη οδηγού Starter Pack"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr ""
@@ -2315,27 +2571,27 @@ msgstr ""
msgid "Display larger alt text badges"
msgstr "Εμφάνιση μεγαλύτερων ετικετών εναλλακτικού κειμένου"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Εμφανιζόμενο όνομα"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Εμφανιζόμενο Όνομα"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "Το όνομα προβολής είναι πολύ μεγάλο"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "Το όνομα προβολής είναι πολύ μεγάλο. Ο μέγιστος αριθμός χαρακτήρων είναι {DISPLAY_NAME_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "Πίνακας DNS"
@@ -2347,37 +2603,45 @@ msgstr "Μην εφαρμόσετε αυτήν την λέξη σίγασης σ
msgid "Does not include nudity."
msgstr "Δεν περιλαμβάνει γυμνό."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "Δεν ξεκινάει ή τελειώνει με παύλα"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "Το domain σας επαληθεύτηκε!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Ολοκληρώθηκε"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Ολοκληρώθηκε"
msgid "Done{extraText}"
msgstr "Ολοκληρώθηκε{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr ""
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Πατήστε δύο φορές για να κλείσετε το παράθυρο διαλόγου"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr ""
@@ -2413,23 +2681,23 @@ msgstr "Σύρετε για να προσθέσετε εικόνες"
msgid "Duration:"
msgstr "Διάρκεια:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "π.χ. alice"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "π.χ. Alice Lastname"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "π.χ. Alice Roberts"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "π.χ. alice.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "π.χ. Καλλιτέχνης, λάτρης των σκύλων και φανατικός αναγνώστης."
@@ -2437,19 +2705,19 @@ msgstr "π.χ. Καλλιτέχνης, λάτρης των σκύλων και
msgid "E.g. artistic nudes."
msgstr "Π.χ. καλλιτεχνικά γυμνά."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "π.χ. Σπουδαίες αφίσες"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "π.χ. Spammers"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "π.χ. Οι δημιουργοί που δεν θες να χάσεις."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "π.χ. Χρήστες που απαντούν επανειλημμένα με διαφημίσεις."
@@ -2457,20 +2725,21 @@ msgstr "π.χ. Χρήστες που απαντούν επανειλημμένα
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Κάθε κωδικός λειτουργεί μία φορά. Θα λαμβάνετε περισσότερους κωδικούς πρόσκλησης περιοδικά."
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Επεξεργασία"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Επεξεργασία"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Επεξεργασία εικόνας προφίλ"
@@ -2478,31 +2747,41 @@ msgstr "Επεξεργασία εικόνας προφίλ"
msgid "Edit Feeds"
msgstr "Επεξεργασία ροών"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Επεξεργασία εικόνας"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Επεξεργασία ρυθμίσεων αλληλεπίδρασης"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Επεξεργασία λεπτομερειών λίστας"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Επεξεργασία λίστας διαχείρισης"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Επεξεργασία των ροών μου"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Επεξεργασία του προφίλ μου"
@@ -2515,23 +2794,23 @@ msgstr "Επεξεργασία ατόμων"
msgid "Edit post interaction settings"
msgstr "Επεξεργασία ρυθμίσεων αλληλεπίδρασης ανάρτησης"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Επεξεργασία προφίλ"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Επεξεργασία προφίλ"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Επεξεργασία starter pack"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Επεξεργασία λίστας χρηστών"
@@ -2539,15 +2818,15 @@ msgstr "Επεξεργασία λίστας χρηστών"
msgid "Edit who can reply"
msgstr "Επεξεργασία του ποιος μπορεί να απαντήσει"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Επεξεργασία του ονόματος προβολής σας"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Επεξεργασία της περιγραφής του προφίλ σας"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Επεξεργασία του starter pack σας"
@@ -2560,16 +2839,15 @@ msgstr "Εκπαίδευση"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr ""
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "Η 2FA μέσω email απενεργοποιήθηκε"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
@@ -2583,19 +2861,16 @@ msgstr "Διεύθυνση email"
msgid "Email Resent"
msgstr "Email Απεστάλη ξανά"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "Email Ενημερώθηκε"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
msgstr ""
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
@@ -2608,8 +2883,8 @@ msgstr "Ενσωματώστε κώδικα HTML"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Ενσωμάτωση ανάρτησης"
@@ -2617,12 +2892,13 @@ msgstr "Ενσωμάτωση ανάρτησης"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Ενσωματώστε αυτήν την ανάρτηση στον ιστότοπό σας. Απλώς αντιγράψτε το παρακάτω τμήμα και επικολλήστε το στον κώδικα HTML του ιστότοπού σας."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr ""
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Ενεργοποίηση"
@@ -2630,13 +2906,13 @@ msgstr "Ενεργοποίηση"
msgid "Enable {0} only"
msgstr "Ενεργοποίηση μόνο {0}"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Ενεργοποίηση περιεχομένου ενηλίκων"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr "Ενεργοποίηση 2FA μέσω email"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2660,30 +2936,30 @@ msgstr "Ενεργοποίηση υπότιτλων"
msgid "Enable this source only"
msgstr "Ενεργοποίηση μόνο αυτής της πηγής"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr ""
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Ενεργοποιημένο"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Τέλος ροής"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Βεβαιωθείτε ότι έχετε επιλέξει γλώσσα για κάθε αρχείο υπότιτλων."
@@ -2696,14 +2972,15 @@ msgstr "Εισάγετε έναν κωδικό πρόσβασης"
msgid "Enter a word or tag"
msgstr "Εισάγετε μια λέξη ή ετικέτα"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
msgid "Enter Code"
msgstr "Εισάγετε κωδικό"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Εισάγετε κωδικό επιβεβαίωσης"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
msgstr ""
@@ -2712,7 +2989,7 @@ msgstr ""
msgid "Enter the code you received to change your password."
msgstr "Εισάγετε τον κωδικό που λάβατε για να αλλάξετε τον κωδικό πρόσβασης σας."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Εισάγετε το domain που θέλετε να χρησιμοποιήσετε"
@@ -2720,20 +2997,20 @@ msgstr "Εισάγετε το domain που θέλετε να χρησιμοπο
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Εισάγετε το email που χρησιμοποιήσατε για τη δημιουργία του λογαριασμού σας. Θα σας στείλουμε έναν “κωδικό επαναφοράς” για να ορίσετε νέο κωδικό πρόσβασης."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Εισάγετε την ημερομηνία γέννησης σας"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Εισάγετε την διεύθυνση email σας"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Εισάγετε το νέο σας email παραπάνω"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Εισάγετε τη νέα σας διεύθυνση email παρακάτω."
@@ -2749,7 +3026,11 @@ msgstr "Εισάγετε το όνομα χρήστη και τον κωδικό
msgid "Enters full screen"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Σφάλμα"
@@ -2758,15 +3039,18 @@ msgstr "Σφάλμα"
msgid "Error occurred while saving file"
msgstr "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "Σφάλμα λήψης απάντησης captcha."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Σφάλμα:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Όλοι"
@@ -2818,30 +3102,22 @@ msgstr "Έξοδος από τη διαδικασία περικοπής εικ
msgid "Exits image view"
msgstr "Έξοδος από την προβολή εικόνας"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Έξοδος από την εισαγωγή ερωτήματος αναζήτησης"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Ανάπτυξη εναλλακτικού κειμένου"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Ανάπτυξη λίστας χρηστών"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "Ανάπτυξη ή συμπίεση της πλήρους ανάρτησης στην οποία απαντάτε"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr ""
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "Αναμενόταν το uri να επιλυθεί σε ένα αρχείο"
@@ -2864,6 +3140,10 @@ msgstr "Λήγει {0}"
msgid "Expires in {0}"
msgstr ""
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "Γυμνό ή ενδεχομένως ενοχλητικό μέσο."
msgid "Explicit sexual images."
msgstr "Γυμνές σεξουαλικές εικόνες."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Εξαγωγή των δεδομένων μου"
@@ -2882,8 +3169,8 @@ msgstr "Εξαγωγή των δεδομένων μου"
msgid "Export My Data"
msgstr "Εξαγωγή των δεδομένων μου"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "Εξωτερικό μέσο"
@@ -2897,17 +3184,22 @@ msgstr "Εξωτερικό μέσο"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Τα εξωτερικά μέσα ενδέχεται να επιτρέπουν σε ιστοσελίδες να συλλέγουν πληροφορίες για εσάς και τη συσκευή σας. Καμία πληροφορία δεν αποστέλλεται ή ζητείται μέχρι να πατήσετε το κουμπί \"αναπαραγωγή\"."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Προτιμήσεις εξωτερικού μέσου"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "Απέτυχε η αλλαγή του ονόματος χρήστη. Παρακαλώ δοκιμάστε ξανά."
@@ -2915,7 +3207,7 @@ msgstr "Απέτυχε η αλλαγή του ονόματος χρήστη. Π
msgid "Failed to create app password. Please try again."
msgstr "Απέτυχε η δημιουργία κωδικού πρόσβασης εφαρμογής. Παρακαλώ δοκιμάστε ξανά."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr ""
@@ -2924,35 +3216,37 @@ msgstr ""
msgid "Failed to create starter pack"
msgstr "Απέτυχε η δημιουργία starter pack"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "Απέτυχε η δημιουργία της λίστας. Ελέγξτε τη σύνδεση στο internet και δοκιμάστε ξανά."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Απέτυχε η διαγραφή μηνύματος"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "Απέτυχε η διαγραφή ανάρτησης, παρακαλώ δοκιμάστε ξανά"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "Απέτυχε η διαγραφή starter pack"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "Απέτυχε η φόρτωση προτιμήσεων ροών"
@@ -2964,17 +3258,19 @@ msgstr "Απέτυχε η φόρτωση GIFs"
msgid "Failed to load past messages"
msgstr "Απέτυχε η φόρτωση παλαιότερων μηνυμάτων"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "Απέτυχε η φόρτωση προτεινόμενων ροών"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "Απέτυχε η φόρτωση προτεινόμενων ακολουθιών"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr ""
@@ -2982,7 +3278,16 @@ msgstr ""
msgid "Failed to pin post"
msgstr "Απέτυχε το καρφίτσωμα ανάρτησης"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr ""
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Απέτυχε η αποθήκευση εικόνας: {0}"
@@ -2994,20 +3299,39 @@ msgstr "Απέτυχε η αποθήκευση προτιμήσεων ειδοπ
msgid "Failed to save settings. Please try again."
msgstr ""
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "Απέτυχε η αποστολή"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Απέτυχε η υποβολή ένστασης, παρακαλώ δοκιμάστε ξανά."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "Απέτυχε η εναλλαγή σίγασης συνομιλίας, παρακαλώ δοκιμάστε ξανά"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr ""
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "Απέτυχε η ενημέρωση ροών"
@@ -3022,20 +3346,24 @@ msgstr "Απέτυχε η ενημέρωση ρυθμίσεων"
msgid "Failed to upload video"
msgstr "Απέτυχε η μεταφόρτωση βίντεο"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "Απέτυχε η επαλήθευση του ονόματος χρήστη. Παρακαλώ δοκιμάστε ξανά."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Ροή"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Ροή από {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr ""
@@ -3043,26 +3371,26 @@ msgstr ""
msgid "Feed toggle"
msgstr "Εναλλαγή ροής"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Σχόλια"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "Τα σχόλια στάλθηκαν!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Ροές"
@@ -3070,13 +3398,13 @@ msgstr "Ροές"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Οι ροές είναι προσαρμοσμένοι αλγόριθμοι που δημιουργούν οι χρήστες μικρής προγραμματιστικής εμπειρίας. <0/> για περισσότερες πληροφορίες."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "Οι ροές ενημερώθηκαν!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr ""
@@ -3092,11 +3420,11 @@ msgstr "Το αρχείο αποθηκεύτηκε με επιτυχία!"
msgid "Filter from feeds"
msgstr "Φίλτρο από ροές"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr ""
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr ""
@@ -3110,13 +3438,13 @@ msgstr "Ολοκλήρωση"
msgid "Find accounts to follow"
msgstr "Βρείτε λογαριασμούς για να ακολουθήσετε"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr ""
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
@@ -3148,11 +3476,11 @@ msgid "Flexible"
msgstr "Ευέλικτο"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Ακολουθήστε"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Ακολουθήστε"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Ακολουθήστε {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Ακολουθήστε {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr ""
msgid "Follow 7 accounts"
msgstr "Ακολουθήστε 7 λογαριασμούς"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Ακολουθήστε τους όλους"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Κάντε follow back"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Κάντε follow back"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "Ακολουθήστε περισσότερους λογαριασμούς για να συνδεθείτε με τα ενδιαφέροντά σας και να δημιουργήσετε το δίκτυό σας."
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "Ακολουθείται από <0>{0}0>"
@@ -3224,7 +3544,7 @@ 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/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Ακολούθοι του/της @{0} που γνωρίζετε"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Ακολούθοι που γνωρίζετε"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Ακολουθείτε"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "Ακολουθείτε {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Ακολουθείτε {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Προτιμήσεις της ροής Ακολουθείτε"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Προτιμήσεις της ροής Ακολουθείτε"
@@ -3301,6 +3617,10 @@ msgstr "Για λόγους ασφαλείας, δεν θα μπορείτε ν
msgid "For the best experience, we recommend using the theme font."
msgstr "Για την καλύτερη εμπειρία, σας προτείνουμε να χρησιμοποιήσετε τη γραμματοσειρά του θέματος."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Για πάντα"
@@ -3327,7 +3647,7 @@ msgstr "Συχνά δημοσιεύει ανεπιθύμητο περιεχόμ
msgid "From @{sanitizedAuthor}"
msgstr "Από @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Από <0/>"
@@ -3336,28 +3656,30 @@ msgstr "Από <0/>"
msgid "Gallery"
msgstr "Εικόνες"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Δημιουργήστε ένα starter pack"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Λάβετε βοήθεια"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "Ξεκινήστε"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr ""
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Ξεκινώντας"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Δώστε στο προφίλ σας ένα πρόσωπο"
@@ -3366,17 +3688,17 @@ msgstr "Δώστε στο προφίλ σας ένα πρόσωπο"
msgid "Glaring violations of law or terms of service"
msgstr "Φανοφανείς παραβιάσεις του νόμου ή των όρων παροχής υπηρεσιών"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Πίσω"
@@ -3384,10 +3706,10 @@ msgstr "Πίσω"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Πίσω"
@@ -3408,7 +3730,27 @@ msgstr "Αρχική"
msgid "Go Home"
msgstr "Αρχική"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Μετάβαση στην συνομιλία με {0}"
@@ -3427,8 +3769,8 @@ msgstr "Προφίλ χρήστη"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Εικονικά μέσα"
@@ -3437,21 +3779,21 @@ msgstr "Εικονικά μέσα"
msgid "Half way there!"
msgstr "Στα μισά της διαδρομής!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Όνομα χρήστη"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "Το όνομα χρήστη υπάρχει ήδη. Παρακαλώ δοκιμάστε ένα διαφορετικό."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "Το όνομα χρήστη άλλαξε!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "Το όνομα χρήστη είναι πολύ μακρύ. Παρακαλώ δοκιμάστε ένα πιο σύντομο."
@@ -3464,7 +3806,7 @@ msgstr "Απτικές αντιδράσεις"
msgid "Harassment, trolling, or intolerance"
msgstr "Παρενοχλήσεις, τρολάρισμα ή μισαλλοδοξία"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr ""
@@ -3472,19 +3814,24 @@ msgstr ""
msgid "Hashtag {tag}"
msgstr ""
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "Έχετε πρόβλημα;"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Βοήθεια"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Βοηθήστε τους ανθρώπους να καταλάβουν ότι δεν είστε bot ανεβάζοντας μια εικόνα ή δημιουργώντας μια εικόνα προφίλ."
@@ -3497,7 +3844,7 @@ msgstr "Αυτός είναι ο κωδικός πρόσβασης της εφα
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr ""
@@ -3509,18 +3856,17 @@ msgstr "Κρυφή λίστα"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Απόκρυψη"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Απόκρυψη"
@@ -3529,38 +3875,40 @@ msgstr "Απόκρυψη"
msgid "Hide customization options"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Απόκρυψη ανάρτησης για μένα"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Απόκρυψη απάντησης για όλους"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Απόκρυψη απάντησης για μένα"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "Απόκρυψη αυτής της ανάρτησης;"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "Απόκρυψη αυτής της απάντησης;"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr ""
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr ""
@@ -3569,10 +3917,15 @@ msgstr ""
msgid "Hide trending videos?"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Απόκρυψη λίστας χρηστών"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "Χμμ, ο διακομιστής ροής έδωσε μια κακή α
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Χμμ, έχουμε πρόβλημα να βρούμε αυτήν την ροή. Ίσως να έχει διαγραφεί."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Χμμμ, φαίνεται ότι έχουμε πρόβλημα με τη φόρτωση αυτών των δεδομένων. Δείτε παρακάτω για περισσότερες λεπτομέρειες. Αν το πρόβλημα επιμένει, επικοινωνήστε μαζί μας."
@@ -3610,15 +3963,15 @@ msgstr "Χμμμ, δεν καταφέραμε να φορτώσουμε αυτή
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Περιμένετε! Δίνουμε σταδιακά πρόσβαση στο βίντεο και εσείς περιμένετε στην ουρά. Ελέγξτε ξανά σύντομα!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Αρχική"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "Διεύθυνση:"
@@ -3627,34 +3980,33 @@ msgstr "Διεύθυνση:"
msgid "Hosting provider"
msgstr "Πάροχος φιλοξενίας"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr ""
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr ""
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "Πώς πρέπει να ανοίξουμε αυτόν τον σύνδεσμο;"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Έχω έναν κωδικό"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Έχω έναν κωδικό"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Έχω έναν κωδικό επιβεβαίωσης"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Έχω το δικό μου domain"
@@ -3667,22 +4019,30 @@ msgstr "Κατανοώ"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Εάν το εναλλακτικό κείμενο είναι μακρύ, ενεργοποιεί/απενεργοποιεί το επεκταμένο εναλλακτικό κείμενο"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "Εάν διαγράψετε αυτήν τη λίστα, δεν θα μπορείτε να την ανακτήσετε."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Εάν καταργήσετε αυτήν την ανάρτηση, δεν θα μπορείτε να την ανακτήσετε."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr ""
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Εάν θέλετε να αλλάξετε τον κωδικό σας, θα σας στείλουμε έναν κωδικό για να επαληθεύσουμε ότι αυτός είναι ο λογαριασμός σας."
@@ -3704,9 +4064,22 @@ msgstr "Παράνομο και Επείγον"
msgid "Image"
msgstr "Εικόνα"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "Η εικόνα αποθηκεύτηκε στο άλμπουμ της συσκευής σας!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr ""
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr ""
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr ""
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "Ανάρμοστα μηνύματα ή ακατάλληλοι σύνδεσμοι"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr ""
@@ -3752,15 +4125,11 @@ msgstr "Εισαγάγετε τον κωδικό πρόσβασης για δι
msgid "Input the code which has been emailed to you"
msgstr "Εισαγάγετε τον κωδικό που σας στάλθηκε μέσω email"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "Εισαγάγετε το όνομα χρήστη ή τη διεύθυνση email που χρησιμοποιήσατε κατά την εγγραφή"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Περιορισμένη αλληλεπίδραση"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr ""
@@ -3769,11 +4138,11 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Μη έγκυρος κωδικός επιβεβαίωσης 2FA."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Μη έγκυρο όνομα χρήστη. Παρακαλώ δοκιμάστε ένα διαφορετικό."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "Μη έγκυρη ή μη υποστηριζόμενη εγγραφή ανάρτησης"
@@ -3789,11 +4158,11 @@ msgstr "Μη έγκυρος κωδικός επαλήθευσης"
msgid "Invite a Friend"
msgstr "Προσκαλέστε έναν φίλο"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Κωδικός πρόσκλησης"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Ο κωδικός πρόσκλησης δεν έγινε δεκτός. Βεβαιωθείτε ότι τον εισάγατε σωστά και δοκιμάστε ξανά."
@@ -3805,7 +4174,7 @@ msgstr "Κωδικοί πρόσκλησης: {0} διαθέσιμοι"
msgid "Invite codes: 1 available"
msgstr "Κωδικοί πρόσκλησης: 1 διαθέσιμος"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "Προσκαλέστε άτομα σε αυτό το starter pack!"
@@ -3817,7 +4186,7 @@ msgstr "Προσκαλέστε τους φίλους σας να ακολουθ
msgid "Invites, but personal"
msgstr "Προσκλήσεις, αλλά προσωπικές"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "Είναι σωστό"
@@ -3825,19 +4194,19 @@ msgstr "Είναι σωστό"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Είστε μόνοι σας αυτή τη στιγμή! Προσθέστε περισσότερους ανθρώπους στο starter pack σας κάνοντας αναζήτηση παραπάνω."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "ID εργασίας: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Εργασίες"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Εγγραφείτε στο Bluesky"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "Επισημασμένο από τον/την συγγραφέα."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Ετικέτες"
@@ -3868,7 +4237,7 @@ msgstr "Ετικέτες"
msgid "Labels added"
msgstr "Οι Ετικέτες προστέθηκαν"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "Οι ετικέτες είναι σημειώσεις σε χρήστες και περιεχόμενο. Μπορούν να χρησιμοποιηθούν για να αποκρύψουν, να προειδοποιήσουν και να κατηγοριοποιήσουν το δίκτυο."
@@ -3884,13 +4253,13 @@ msgstr "Οι Ετικέτες στο περιεχόμενό σας"
msgid "Language selection"
msgstr "Επιλογή γλώσσας"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Ρυθμίσεις γλώσσας"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Γλώσσες"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Μεγαλύτερο"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "Πιο πρόσφατα"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "μαθετε περισσότερα"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Μάθετε περισσότερα"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Μάθετε περισσότερα για το Bluesky"
@@ -3933,6 +4311,11 @@ msgstr "Μάθετε περισσότερα για τη διαχείριση π
msgid "Learn more about this warning"
msgstr "Μάθετε περισσότερα για αυτήν την προειδοποίηση"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr ""
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "Αποχώρηση από το Bluesky"
msgid "left to go."
msgstr "απομένουν."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Αφήστε με να διαλέξω"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Φωτεινό"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -4013,17 +4397,16 @@ msgstr "\"Μου αρέσει\" σε 10 αναρτήσεις"
msgid "Like 10 posts to train the Discover feed"
msgstr "\"Μου αρέσει\" σε 10 αναρτήσεις για να εκπαιδεύσετε την ροής Ανακαλύψτε"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Πατήστε \"Μου αρέσει\" σε αυτήν την ροή"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr ""
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "\"Μου αρέσει\" από"
@@ -4033,43 +4416,43 @@ msgstr "\"Μου αρέσει\" από"
msgid "Liked By"
msgstr "\"Μου αρέσει\" από"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "\"Μου αρέσει\""
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "\"Μου αρέσει\" σε αυτήν την ανάρτηση"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr ""
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Λίστα"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Εικόνα λίστας"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "Λίστα μπλοκαρισμένη"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4084,44 +4467,44 @@ msgstr ""
msgid "List by you"
msgstr ""
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "Λίστα διαγραμμένη"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
msgstr "Η λίστα έχει κρυφτεί"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "Λίστα κρυφή"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "Λίστα σε σίγαση"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Όνομα λίστας"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "Λίστα ξεμπλοκαρισμένη"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "Λίστα αφαίρεση σίγασης"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Λίστες"
@@ -4129,34 +4512,47 @@ msgstr "Λίστες"
msgid "Lists blocking this user:"
msgstr "Λίστες που μπλοκάρουν αυτόν τον χρήστη:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr ""
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr ""
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Φόρτωση περισσότερων"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "Φόρτωση περισσότερων προτεινόμενων ροών"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Φόρτωση περισσότερων προτεινόμενων ακολουθιών"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Φόρτωση νέων ειδοποιήσεων"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Φόρτωση νέων αναρτήσεων"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Φόρτωση..."
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Ημερολόγιο"
@@ -4164,12 +4560,12 @@ msgstr "Ημερολόγιο"
msgid "Logged-out visibility"
msgstr "Ορατότητα κατά την αποσύνδεση"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Λογότυπο από <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "Φαίνεται ότι ξεκαρφώσατε όλες τις ροές
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Φαίνεται ότι λείπει μια ροή που ακολουθείτε. <0>Κάντε κλικ εδώ για να προσθέσετε μια.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "Φτιάξε ένα για μένα"
@@ -4201,18 +4601,22 @@ msgstr "Φτιάξε ένα για μένα"
msgid "Make sure this is where you intend to go!"
msgstr "Βεβαιωθείτε ότι αυτό είναι το μέρος που θέλετε να πάτε!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "Διαχείριση αποθηκευμένων ροών"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Διαχειριστείτε τις λέξεις και ετικέτες σας σε σίγαση"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr ""
@@ -4221,16 +4625,23 @@ msgstr ""
msgid "Mark as read"
msgstr "Σημείωση ως ανάγνωση"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr ""
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Μέσα"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Μέσα που μπορεί να είναι ενοχλητικά ή ακατάλληλα για ορισμένα ακροατήρια."
@@ -4246,23 +4657,27 @@ msgstr "Αναφερόμενοι χρήστες"
msgid "Mentions"
msgstr ""
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Μενού"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Μήνυμα {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Το μήνυμα διαγράφηκε"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Το μήνυμα διαγράφηκε"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr ""
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Μήνυμα από τον διακομιστή: {0}"
@@ -4276,7 +4691,11 @@ msgstr "Πεδίο εισαγωγής μηνύματος"
msgid "Message is too long"
msgstr "Το μήνυμα είναι πολύ μακρύ"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr ""
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Μηνύματα"
@@ -4295,10 +4714,10 @@ msgstr "Παραπλανητικός Λογαριασμός"
msgid "Misleading Post"
msgstr "Παραπλανητική Δημοσίευση"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Διαχείριση"
@@ -4320,22 +4739,22 @@ msgstr "Λίστα διαχείρισης από <0/>"
msgid "Moderation list by you"
msgstr "Λίστα διαχείρισης από εσάς"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "Η Λίστα διαχείρισης δημιουργήθηκε"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "Η Λίστα διαχείρισης ενημερώθηκε"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Λίστες διαχείρισης"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Λίστες Διαχείρισης"
@@ -4343,11 +4762,11 @@ msgstr "Λίστες Διαχείρισης"
msgid "moderation settings"
msgstr "ρυθμίσεις διαχείρισης"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "Καταστάσεις διαχείρισης"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Εργαλεία διαχείρισης"
@@ -4356,7 +4775,7 @@ msgstr "Εργαλεία διαχείρισης"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Ο/η διαχειριστής επέλεξε να θέσει μια γενική προειδοποίηση στο περιεχόμενο."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Περισσότερα"
@@ -4365,9 +4784,9 @@ msgstr "Περισσότερα"
msgid "More feeds"
msgstr "Περισσότερες ροές"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Περισσότερες επιλογές"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "Τα Πιο πολύ αγαπημένα πρώτα"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Πιο πολύ αγαπημένες απαντήσεις πρώτα"
@@ -4400,14 +4819,14 @@ msgstr "Σίγαση"
msgid "Mute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr ""
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Σίγαση λογαριασμών"
@@ -4420,11 +4839,11 @@ msgstr "Σίγαση συνομιλίας"
msgid "Mute in:"
msgstr "Σίγαση σε:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Λίστα σίγασης"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "Σίγαση αυτών των λογαριασμών;"
@@ -4452,26 +4871,26 @@ msgstr "Σίγαση αυτής της λέξης μόνο στις ετικέτ
msgid "Mute this word until you unmute it"
msgstr "Σίγαση αυτής της λέξης μέχρι να την ξεσιγάσετε"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Σίγαση νήματος"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Σίγαση λέξεων & ετικετών"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Λογαριασμοί σε σίγαση"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Λογαριασμοί σε σίγαση"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr ""
@@ -4479,11 +4898,11 @@ msgstr ""
msgid "Muted by \"{0}\""
msgstr "Σε σίγαση από “{0}”"
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Λέξεις & ετικέτες σε σίγαση"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Η σίγαση είναι ιδιωτική. Οι λογαριασμοί σε σίγαση μπορούν να αλληλεπιδράσουν μαζί σας, αλλά δεν θα βλέπετε τις δημοσιεύσεις τους ούτε θα λαμβάνετε ειδοποιήσεις από αυτούς."
@@ -4492,15 +4911,15 @@ msgstr "Η σίγαση είναι ιδιωτική. Οι λογαριασμοί
msgid "My Birthday"
msgstr "Τα γενέθλιά μου"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "Οι Ροές μου"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Όνομα"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "Απαιτείται όνομα"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Φύση"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "Μετάβαση σε {0}"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "Μεταβαίνει στην επόμενη οθόνη"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Μεταβαίνει στο προφίλ σας"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "Πρέπει να το αλλάξετε;"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "Πρέπει να αναφέρετε μια παραβίαση πνευματικών δικαιωμάτων;"
@@ -4547,30 +4971,43 @@ msgstr "Πρέπει να αναφέρετε μια παραβίαση πνευ
msgid "Never lose access to your followers or data."
msgstr "Μην χάσετε ποτέ την πρόσβαση στους ακόλουθούς σας ή στα δεδομένα σας."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "Δεν πειράζει, δημιουργήστε ένα όνομα χρήστη για μένα"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Νέο"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Νέο"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "Νέα συνομιλία"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "Νέο όνομα χρήστη"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr ""
@@ -4578,7 +5015,7 @@ msgstr ""
msgid "New messages"
msgstr "Νέα μηνύματα"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Νέα λίστα διαχείρισης"
@@ -4590,12 +5027,12 @@ msgstr "Νέος κωδικός πρόσβασης"
msgid "New Password"
msgstr "Νέος Κωδικός Πρόσβασης"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Νέα δημοσίευση"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "Νέα δημοσίευση"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Νέα Δημοσίευση"
@@ -4613,19 +5050,20 @@ msgstr "Νέα Δημοσίευση"
msgid "New user info dialog"
msgstr "Νέο παράθυρο πληροφοριών χρήστη"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Νέα λίστα χρηστών"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "Πιο πρόσφατες απαντήσεις πρώτα"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Ειδήσεις"
@@ -4655,11 +5093,15 @@ msgstr "Επόμενη εικόνα"
msgid "No app passwords yet"
msgstr "Δεν υπάρχουν ακόμη κωδικοί πρόσβασης εφαρμογής"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "Χωρίς πίνακα DNS"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "Δεν βρέθηκαν προτεινόμενα GIF. Μπορεί να υπάρχει πρόβλημα με το Tenor."
@@ -4668,21 +5110,25 @@ msgstr "Δεν βρέθηκαν προτεινόμενα GIF. Μπορεί να
msgid "No feeds found. Try searching for something else."
msgstr "Δεν βρέθηκαν ροές. Δοκιμάστε να αναζητήσετε κάτι άλλο."
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr ""
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "Δεν υπάρχουν ακόμη \"Μου αρέσει\""
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "Δεν ακολουθώ πλέον τον {0}"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "Δεν υπάρχουν ακόμη μηνύματα"
@@ -4711,31 +5157,38 @@ msgstr "Δεν υπάρχουν ακόμη παραθέσεις"
msgid "No reposts yet"
msgstr "Δεν υπάρχουν ακόμη αναδημοσιεύσεις"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Χωρίς αποτέλεσμα"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "Χωρίς αποτελέσματα"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr ""
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "Δεν βρέθηκαν αποτελέσματα"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "Δεν βρέθηκαν αποτελέσματα για “{query}”"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "Δεν βρέθηκαν αποτελέσματα για {query}"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "Χωρίς αποτελέσματα αναζήτησης για “{search}”."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Κανείς"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "Κανείς δεν το έχει κάνει \"Μου αρέσει\" ακόμη. Ίσως θα έπρεπε να είστε ο πρώτος!"
@@ -4775,19 +5227,15 @@ msgstr "Μη σεξουαλικό γυμνό"
msgid "Not followed by anyone you're following"
msgstr ""
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "Δεν Βρέθηκε"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "Όχι τώρα"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Σημείωση σχετικά με την κοινή χρήση"
@@ -4795,7 +5243,7 @@ msgstr "Σημείωση σχετικά με την κοινή χρήση"
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Σημείωση: Το Bluesky είναι ένα ανοιχτό και δημόσιο δίκτυο. Αυτή η ρύθμιση περιορίζει μόνο την ορατότητα του περιεχομένου σας στην εφαρμογή και τον ιστότοπο Bluesky, και άλλες εφαρμογές ενδέχεται να μην σεβαστούν αυτήν τη ρύθμιση. Το περιεχόμενό σας μπορεί να εξακολουθεί να εμφανίζεται σε χρήστες που δεν έχουν συνδεθεί από άλλες εφαρμογές και ιστότοπους."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Τίποτα εδώ"
@@ -4803,7 +5251,7 @@ msgstr "Τίποτα εδώ"
msgid "Notification filters"
msgstr "Φίλτρα ειδοποιήσεων"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Ρυθμίσεις ειδοποιήσεων"
@@ -4820,11 +5268,11 @@ msgstr "Ήχοι ειδοποιήσεων"
msgid "Notification Sounds"
msgstr "Ήχοι Ειδοποιήσεων"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Ειδοποιήσεις"
@@ -4832,12 +5280,12 @@ msgstr "Ειδοποιήσεις"
msgid "now"
msgstr "τώρα"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Τώρα"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Γύμνια"
@@ -4859,21 +5307,23 @@ msgstr "Ωχ όχι!"
msgid "Oh no! Something went wrong."
msgstr "Ωχ όχι! Κάτι πήγε στραβά."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "Εντάξει"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "Πιο παλιές απαντήσεις πρώτα"
@@ -4881,19 +5331,19 @@ msgstr "Πιο παλιές απαντήσεις πρώτα"
msgid "on<0><1/><2><3/>2>0>"
msgstr ""
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Επαναφορά onboardin"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "Ένα ή περισσότερα GIF λείπουν το εναλλακτικό κείμενο."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "Μία ή περισσότερες εικόνες λείπουν το εναλλακτικό κείμενο."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "Ένα ή περισσότερα βίντεο λείπουν το εναλλακτικό κείμενο."
@@ -4905,11 +5355,11 @@ msgstr "Υποστηρίζονται μόνο αρχεία .jpg και .png"
msgid "Only {0} can reply."
msgstr "Μόνο ο/η {0} μπορεί να απαντήσει."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Περιέχει μόνο γράμματα, αριθμούς και παύλες"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "Υποστηρίζονται μόνο αρχεία εικόνας"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "Ουπς, κάτι πήγε στραβά!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "Ουπς!"
@@ -4935,67 +5385,80 @@ msgstr "Ουπς!"
msgid "Open"
msgstr "Άνοιγμα"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "Άνοιγμα μενού συντόμευσης προφίλ {name}"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Άνοιγμα δημιουργού εικόνας προφίλ"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "Άνοιγμα επιλογών συνομιλίας"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Άνοιγμα επιλογέα emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "Άνοιγμα μενού επιλογών ροών"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr ""
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "Άνοιγμα συνδέσμου προς {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "Άνοιγμα επιλογών μηνύματος"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "Άνοιγμα σελίδας εντοπισμού σφαλμάτων διαχείρισης"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Άνοιγμα ρυθμίσεων λέξεων και ετικετών σε σίγαση"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "Άνοιγμα μενού επιλογών δημοσίευσης"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "Άνοιγμα μενού starter pack"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Άνοιγμα σελίδας storybook"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Άνοιγμα αρχείου καταγραφής συστήματος"
@@ -5015,19 +5478,19 @@ msgstr "Ανοίγει ένα παράθυρο διαλόγου για να επ
msgid "Opens additional details for a debug entry"
msgstr "Ανοίγει πρόσθετες λεπτομέρειες για μια καταχώρηση εντοπισμού σφαλμάτων"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Ανοίγει την κάμερα στη συσκευή"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr ""
@@ -5039,7 +5502,7 @@ msgstr "Ανοίγει το εργαλείο σύνταξης κειμένου"
msgid "Opens device photo gallery"
msgstr "Ανοίγει τη συλλογή φωτογραφιών της συσκευής"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr ""
@@ -5057,7 +5520,7 @@ msgstr ""
msgid "Opens GIF select dialog"
msgstr "Ανοίγει το παράθυρο επιλογής GIF"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr ""
@@ -5065,6 +5528,10 @@ msgstr ""
msgid "Opens list of invite codes"
msgstr "Ανοίγει τη λίστα με τους κωδικούς πρόσκλησης"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Ανοίγει τη φόρμα επαναφοράς κωδικού πρόσβασης"
@@ -5073,12 +5540,12 @@ msgstr "Ανοίγει τη φόρμα επαναφοράς κωδικού πρ
msgid "Opens the linked website"
msgstr "Ανοίγει τον συνδεδεμένο ιστότοπο"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Ανοίγει αυτό το προφίλ"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Ανοίγει την επιλογή βίντεο"
@@ -5121,11 +5588,11 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Άλλο"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Άλλος λογαριασμός"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Η Σελίδα Δεν Βρέθηκε"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "Παύση"
msgid "Pause video"
msgstr "Παύση βίντεο"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "Άτομα"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "Άτομα που ακολουθούν τον/την @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "Άτομα που ακολουθούνται από τον/την @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "Απαιτείται άδεια πρόσβασης στο άλμπουμ της κάμερας."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "Η άδεια πρόσβασης στο άλμπουμ της κάμερας απορρίφθηκε. Ενεργοποιήστε την στις ρυθμίσεις του συστήματός σας."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr ""
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "Κατοικίδια"
msgid "Photography"
msgstr "Φωτογραφία"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Εικόνες για ενήλικες."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr ""
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
msgstr ""
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Καρφίτσωμα στην αρχική"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Καρφίτσωμα στην Αρχική"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Καρφίτσωμα στο προφίλ σας"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Καρφιτσωμένο"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr ""
@@ -5263,7 +5722,7 @@ msgstr ""
msgid "Pinned Feeds"
msgstr "Καρφιτσωμένες ροές"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "Καρφιτσωμένο στις ροές σας"
@@ -5302,24 +5761,28 @@ msgstr "Αναπαράγει το GIF"
msgid "Plays the video"
msgstr ""
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr ""
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Παρακαλώ επιλέξτε το όνομα χρήστη σας."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Παρακαλώ επιλέξτε τον κωδικό πρόσβασης σας."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr ""
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Παρακαλώ ολοκληρώστε τον έλεγχο captcha."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Παρακαλώ επιβεβαιώστε το email σας πριν το αλλάξετε. Αυτή είναι μια προσωρινή απαίτηση ενώ προστίθενται εργαλεία ενημέρωσης email και σύντομα θα καταργηθεί."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr ""
@@ -5335,19 +5798,41 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Παρακαλώ εισάγετε ένα μοναδικό όνομα για αυτόν τον κωδικό πρόσβασης εφαρμογής ή χρησιμοποιήστε τον τυχαία δημιουργημένο από εμάς."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Παρακαλώ εισάγετε μια έγκυρη λέξη, ετικέτα ή φράση για να θέσετε σε σίγαση"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr ""
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Παρακαλώ εισάγετε το email σας."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Παρακαλώ εισάγετε τον κωδικό πρόσκλησης σας."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr ""
@@ -5381,24 +5866,25 @@ msgstr ""
msgid "Please sign in as @{0}"
msgstr "Παρακαλώ συνδεθείτε ως @{0}"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Παρακαλώ Επιβεβαιώστε το Email Σας"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Πολιτική"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr ""
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Πορνογραφία"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Δημοσίευση"
@@ -5408,32 +5894,32 @@ msgctxt "description"
msgid "Post"
msgstr "Δημοσίευση"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Δημοσίευση Όλων"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "Δημοσίευση από {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "Δημοσίευση από @{0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "Η δημοσίευση διαγράφηκε"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Η δημοσίευση απέτυχε να μεταφορτωθεί. Παρακαλώ ελέγξτε τη σύνδεση στο internet και προσπαθήστε ξανά."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr ""
@@ -5455,7 +5941,7 @@ msgstr "Δημοσίευση κρυμμένη από εσάς"
msgid "Post interaction settings"
msgstr "Ρυθμίσεις αλληλεπίδρασης δημοσίευσης"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr ""
@@ -5476,15 +5962,16 @@ msgstr "Η δημοσίευση δεν βρέθηκε"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "Δημοσίευση καρφιτσωμένη"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "Δημοσίευση ξεκαρφιτσωμένη"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Δημοσιεύσεις"
@@ -5503,7 +5990,7 @@ msgstr "Πιθανώς παραπλανητικός σύνδεσμος"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "Προτίμηση αποθηκευμένη"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -5524,7 +6011,7 @@ msgstr "Πατήστε για να δείτε τους ακόλουθους αυ
msgid "Previous image"
msgstr "Προηγούμενη εικόνα"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Κύρια Γλώσσα"
@@ -5537,31 +6024,31 @@ msgstr "Προτεραιότητα σε όσους λογαριασμούς ακ
msgid "Priority notifications"
msgstr "Προτεραιότητες ειδοποιήσεων"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Απόρρητο"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "Απόρρητο και ασφάλεια"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Απόρρητο και Ασφάλεια"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Πολιτική Απορρήτου"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Επεξεργασία βίντεο..."
@@ -5570,23 +6057,23 @@ msgstr "Επεξεργασία βίντεο..."
msgid "Processing..."
msgstr "Επεξεργασία..."
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "προφίλ"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Προφίλ"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "Προφίλ ενημερωμένο"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
@@ -5600,6 +6087,26 @@ msgstr ""
msgid "Public, sharable lists which can be used to drive feeds."
msgstr ""
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr ""
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr ""
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr ""
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr ""
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "Ο κωδικός QR αντιγράφηκε στο πρόχειρό σας!"
@@ -5612,25 +6119,25 @@ msgstr "Ο κωδικός QR έχει κατέβει!"
msgid "QR code saved to your camera roll!"
msgstr "Ο κωδικός QR αποθηκεύτηκε στο φιλμ της κάμερας σας!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Παράθεση δημοσίευσης"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "Η παράθεση δημοσίευσης προστέθηκε ξανά"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "Η παράθεση δημοσίευσης αφαιρέθηκε επιτυχώς"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "Οι παραθέσεις δημοσιεύσεων είναι απενεργοποιημένες"
@@ -5642,39 +6149,48 @@ msgstr "Ρυθμίσεις παραθέσεων"
msgid "Quotes"
msgstr "Παραθέσεις"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "Παραθέσεις αυτής της δημοσίευσης"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Τυχαίο (aka “Poster’s Roulette”)"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "Προσθήκη παράθεσης ξανά"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr ""
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Επαναενεργοποίηση του λογαριασμού σας"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Διαβάστε το blog του Bluesky"
@@ -5697,11 +6213,11 @@ msgstr ""
msgid "Reason:"
msgstr "Λόγος:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Πρόσφατες Αναζητήσεις"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr ""
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "Επανασύνδεση"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Επαναφόρτωση συνομιλιών"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Αφαίρεση"
msgid "Remove {displayName} from starter pack"
msgstr "Αφαίρεση του/της {displayName} από το starter pack"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr ""
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Αφαίρεση λογαριασμού"
@@ -5752,13 +6268,13 @@ msgstr "Αφαίρεση λογαριασμού"
msgid "Remove attachment"
msgstr "Αφαίρεση συνημμένου"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Αφαίρεση φωτογραφίας προφίλ"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr ""
@@ -5776,24 +6292,25 @@ msgstr "Αφαίρεση ροής"
msgid "Remove feed?"
msgstr "Αφαίρεση ροής;"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Αφαίρεση από τις ροές μου"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "Αφαίρεση από την γρήγορη πρόσβαση;"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "Αφαίρεση από τις αποθηκευμένες ροές"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr ""
@@ -5802,11 +6319,16 @@ msgstr ""
msgid "Remove image"
msgstr "Αφαίρεση εικόνας"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Αφαίρεση λέξης σε σίγαση από τη λίστα σας"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Αφαίρεση προφίλ"
@@ -5814,12 +6336,12 @@ msgstr "Αφαίρεση προφίλ"
msgid "Remove quote"
msgstr "Αφαίρεση παράθεσης"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Αφαίρεση αναδημοσίευσης"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Αφαίρεση αρχείου υπότιτλων"
@@ -5827,6 +6349,21 @@ msgstr "Αφαίρεση αρχείου υπότιτλων"
msgid "Remove this feed from your saved feeds"
msgstr "Αφαίρεση αυτής της ροής από τις αποθηκευμένες ροές σας"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr ""
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "Αφαιρέθηκε από τον δημιουργό"
@@ -5835,7 +6372,7 @@ msgstr "Αφαιρέθηκε από τον δημιουργό"
msgid "Removed by you"
msgstr "Αφαιρέθηκε από εσάς"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Αφαιρέθηκε από τη λίστα"
@@ -5845,18 +6382,17 @@ msgid "Removed from my feeds"
msgstr "Αφαιρέθηκε από τις ροές μου"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Αφαιρέθηκε από τις αποθηκευμένες ροές"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Αφαιρέθηκε από τις ροές σας"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
msgstr ""
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
@@ -5868,7 +6404,7 @@ msgstr "Αφαιρεί την παρατεθειμένη δημοσίευση"
msgid "Replace with Discover"
msgstr "Αντικατάσταση με την ροή Ανακαλύψτε"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Απαντήσεις"
@@ -5880,12 +6416,13 @@ msgstr "Οι απαντήσεις είναι απενεργοποιημένες"
msgid "Replies to this post are disabled."
msgstr "Οι απαντήσεις σε αυτή τη δημοσίευση είναι απενεργοποιημένες."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Απάντηση"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -5907,86 +6444,86 @@ msgstr "Ρυθμίσεις απαντήσεων"
msgid "Reply settings are chosen by the author of the thread"
msgstr "Οι ρυθμίσεις απαντήσεων επιλέγονται από τον δημιουργό του νήματος"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr ""
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Απάντηση σε <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Απάντηση σε μια μπλοκαρισμένη δημοσίευση"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "Απάντηση σε μια δημοσίευση"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Απάντηση σε εσάς"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "Η ορατότητα απάντησης ενημερώθηκε"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "Η απάντηση κρύφτηκε επιτυχώς"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Αναφορά"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Αναφορά συνομιλίας"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "Παράθυρο αναφοράς"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Αναφορά ροής"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
-msgstr "Αναφορά Λίστας"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Αναφορά μηνύματος"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Αναφορά δημοσίευσης"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "Αναφορά starter pack"
@@ -6030,25 +6567,26 @@ msgstr "Αναφορά αυτού του Starter Pack"
msgid "Report this user"
msgstr "Αναφέρετε αυτόν τον χρήστη"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Αναδημοσίευση"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Αναδημοσίευση"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Αναδημοσίευση ή παράθεση ανάρτησης"
@@ -6056,27 +6594,27 @@ msgstr "Αναδημοσίευση ή παράθεση ανάρτησης"
msgid "Reposted By"
msgstr "Αναδημοσίευση από"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "Αναδημοσίευση από {0}"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "Αναδημοσίευση από <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "Αναδημοσίευση από εσάς"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "Αναδημοσίευση αυτής της ανάρτησης"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "Αίτηση αλλαγής"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr ""
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6088,11 +6626,11 @@ msgstr "Αίτηση κώδικα"
msgid "Require alt text before posting"
msgstr "Απαιτείται εναλλακτικό κείμενο πριν την ανάρτηση"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Απαιτείται για αυτόν τον πάροχο"
@@ -6100,13 +6638,19 @@ msgstr "Απαιτείται για αυτόν τον πάροχο"
msgid "Required in your region"
msgstr "Απαιτείται στην περιοχή σας"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "Επανεπιβεβαίωση email"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "Επανεπιβεβαίωση Email"
@@ -6123,8 +6667,8 @@ msgstr "Επαναφορά κωδικού"
msgid "Reset Code"
msgstr "Επαναφορά Κωδικού"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr ""
@@ -6141,16 +6685,16 @@ msgstr ""
msgid "Retries the last action, which errored out"
msgstr "Επανάληψη της τελευταίας ενέργειας, η οποία παρουσίασε σφάλμα"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "Επανάληψη της τελευταίας ενέργειας, η ο
msgid "Retry"
msgstr "Προσπαθείστε ξανά"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr ""
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Επιστροφή στην προηγούμενη σελίδα"
@@ -6175,11 +6719,11 @@ msgstr "Επιστροφή στην προηγούμενη σελίδα"
msgid "Returns to home page"
msgstr "Επιστροφή στην αρχική σελίδα"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "Επιστροφή στην προηγούμενη σελίδα"
@@ -6190,24 +6734,26 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Αποθήκευση"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Αποθήκευση"
@@ -6221,12 +6767,12 @@ msgstr "Αποθήκευση ημερομηνίας γέννησης"
msgid "Save changes"
msgstr "Αποθήκευση αλλαγών"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Αποθήκευση αλλαγών"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Αποθήκευση εικόνας"
@@ -6234,16 +6780,16 @@ msgstr "Αποθήκευση εικόνας"
msgid "Save image crop"
msgstr "Αποθήκευση περικοπής εικόνας"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Αποθήκευση νέου ονόματος χρήστη"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "Αποθήκευση QR κώδικα"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Αποθήκευση στις ροές μου"
@@ -6251,16 +6797,12 @@ msgstr "Αποθήκευση στις ροές μου"
msgid "Saved Feeds"
msgstr "Αποθηκευμένες ροές"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "Αποθηκεύτηκε στο άλμπουμ της κάμεράς σας"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "Αποθηκεύτηκε στις ροές σας"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "Αποθηκεύει τυχόν αλλαγές στο προφίλ σας"
@@ -6270,8 +6812,8 @@ msgstr "Αποθηκεύει τις ρυθμίσεις περικοπής εικ
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "Πείτε γεια!"
@@ -6280,45 +6822,42 @@ msgstr "Πείτε γεια!"
msgid "Science"
msgstr "Επιστήμη"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "Μετακίνηση στην κορυφή"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Αναζήτηση"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr ""
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr ""
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Αναζήτησή για “{query}”"
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "Αναζήτησή για “{searchText}”"
@@ -6326,29 +6865,33 @@ msgstr "Αναζήτησή για “{searchText}”"
msgid "Search for feeds that you want to suggest to others."
msgstr "Αναζητήστε ροές που θέλετε να προτείνετε σε άλλους."
-#: src/view/screens/Search/Search.tsx:875
-msgid "Search for posts, users, or feeds"
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Αναζήτηση χρηστών"
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr ""
+
+#: src/screens/Search/Shell.tsx:334
+msgid "Search for posts, users, or feeds"
+msgstr ""
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "Αναζήτηση GIFs"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Αναζήτηση προφίλ"
@@ -6356,16 +6899,20 @@ msgstr "Αναζήτηση προφίλ"
msgid "Search Tenor"
msgstr "Αναζήτηση Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Απαιτείται ένα βήμα ασφαλείας"
@@ -6385,7 +6932,7 @@ msgstr ""
msgid "See #{tag} posts by user"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Δείτε θέσεις εργασίας στο Bluesky"
@@ -6405,6 +6952,10 @@ msgstr "Επιλογή χρώματος"
msgid "Select account"
msgstr "Επιλογή λογαριασμού"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Επιλογή εικόνας προφίλ"
@@ -6413,10 +6964,22 @@ msgstr "Επιλογή εικόνας προφίλ"
msgid "Select an emoji"
msgstr "Επιλογή emoji"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Επιλογή γλωσσών περιεχομένου"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr ""
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Επιλογή από υπάρχοντα λογαριασμό"
@@ -6433,15 +6996,15 @@ msgstr "Επιλέξτε GIF “{0}”"
msgid "Select how long to mute this word for."
msgstr "Επιλέξτε πόσο καιρό να σιωπήσετε αυτήν τη λέξη."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Επιλογή γλώσσας..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Επιλογή γλωσσών"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr ""
@@ -6449,6 +7012,10 @@ msgstr ""
msgid "Select moderator"
msgstr "Επιλογή διαχειριστή"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "Επιλέξτε το emoji {emojiName} ως εικόνα προφίλ
msgid "Select the moderation service(s) to report to"
msgstr "Επιλέξτε την/τις υπηρεσία/ες διαχείρισης στις οποίες θα καταγγείλετε"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Επιλογή βίντεο"
@@ -6470,23 +7037,24 @@ msgstr "Επιλογή βίντεο"
msgid "Select what content this mute word should apply to."
msgstr "Επιλέξτε σε ποιο περιεχόμενο πρέπει να εφαρμόζεται αυτή η λέξη σίγασης."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Επιλέξτε ποιες γλώσσες θέλετε να περιλαμβάνονται στις ροές που ακολουθείτε. Εάν δεν επιλεγεί καμία, θα εμφανίζονται όλες οι γλώσσες."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Επιλέξτε την ημερομηνία γέννησής σας"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "Επιλέξτε τα ενδιαφέροντά σας από τις παρακάτω επιλογές"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "Επιλέξτε την προτιμώμενη γλώσσα σας για τις μεταφράσεις στη ροή σας."
@@ -6498,19 +7066,17 @@ msgstr ""
msgid "Send a neat website!"
msgstr "Στείλτε μια σένια ιστοσελίδα!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr "Αποστολή επιβεβαίωσης"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Αποστολή email επιβεβαίωσης"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Αποστολή email επιβεβαίωσης"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Αποστολή email"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Αποστολή Email"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Αποστολή σχολίων"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Αποστολή μηνύματος"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr ""
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Αποστολή ανάρτησης σε..."
@@ -6544,17 +7114,20 @@ msgstr "Αποστολή καταγγελίας"
msgid "Send report to {0}"
msgstr "Αποστολή καταγγελίας σε {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Αποστολή email επαλήθευσης"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Αποστολή μέσω προσωπικού μηνύματος"
@@ -6570,7 +7143,7 @@ msgstr "Διεύθυνση διακομιστή"
msgid "Set app icon to {0}"
msgstr ""
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "Ορισμός ημερομηνίας γέννησης"
@@ -6586,19 +7159,19 @@ msgstr "Ρύθμιση του λογαριασμού σας"
msgid "Sets email for password reset"
msgstr "Ορίζει email για επαναφορά κωδικού πρόσβασης"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Ρυθμίσεις"
#: src/screens/ModerationInteractionSettings/index.tsx:102
msgctxt "toast"
msgid "Settings saved"
-msgstr ""
+msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Σεξουαλική δραστηριότητα ή ερωτικό γυμνό."
@@ -6606,21 +7179,15 @@ msgstr "Σεξουαλική δραστηριότητα ή ερωτικό γυμ
msgid "Sexually Suggestive"
msgstr "Σεξουαλικά προκλητικό"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Κοινή χρήση"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Κοινή χρήση"
@@ -6633,15 +7200,19 @@ msgstr "Κοινή χρήση μιας κουλ ιστορίας!"
msgid "Share a fun fact!"
msgstr "Κοινή χρήση ενός διασκεδαστικού γεγονότος!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Κοινή χρήση ούτως ή άλλως"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "Κοινή χρήση συνδέσμου"
@@ -6650,32 +7221,46 @@ msgstr "Κοινή χρήση συνδέσμου"
msgid "Share Link"
msgstr "Κοινή χρήση συνδέσμου"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "Παράθυρο διαλόγου κοινής χρήσης συνδέσμου"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Κοινή χρήση QR κώδικα"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "Κοινή χρήση αυτού του Starter Pack"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "Μοιραστείτε αυτό το Starter Pack και βοηθήστε κι άλλους να γίνουν μέλη της κοινότητάς σας στο Bluesky."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr ""
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "Κοινή χρήση της αγαπημένης σας ροής!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "Ελεγκτής κοινών προτιμήσεων"
@@ -6685,7 +7270,7 @@ msgstr "Κοινή χρήση της συνδεδεμένης ιστοσελίδ
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Εμφάνιση"
@@ -6696,8 +7281,8 @@ msgstr "Εμφάνιση εναλλακτικού κειμένου"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Εμφάνιση ούτως ή άλλως"
@@ -6718,8 +7303,8 @@ msgstr ""
msgid "Show hidden replies"
msgstr "Εμφάνιση κρυφών απαντήσεων"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "Εμφάνιση λιγότερων παρόμοιων"
@@ -6727,14 +7312,14 @@ msgstr "Εμφάνιση λιγότερων παρόμοιων"
msgid "Show list anyway"
msgstr "Εμφάνιση λίστας ούτως ή άλλως"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Εμφάνιση περισσότερων"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Εμφάνιση περισσότερων σαν αυτό"
@@ -6752,7 +7337,7 @@ msgstr ""
msgid "Show replies"
msgstr "Εμφάνιση απαντήσεων"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr ""
@@ -6764,8 +7349,8 @@ msgstr ""
msgid "Show replies by people you follow before all other replies"
msgstr "Εμφάνιση απαντήσεων από άτομα που ακολουθείτε πριν από όλες τις άλλες απαντήσεις"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "Εμφάνιση απάντησης για όλους"
@@ -6787,11 +7372,11 @@ msgstr "Εμφάνιση προειδοποίησης"
msgid "Show warning and filter from feeds"
msgstr "Εμφάνιση προειδοποίησης και φιλτράρισμα από τις ροές"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr ""
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr ""
@@ -6809,8 +7394,8 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr ""
msgid "Sign in"
msgstr "Σύνδεση"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Σύνδεση ως {0}"
@@ -6826,16 +7411,16 @@ msgstr "Σύνδεση ως {0}"
msgid "Sign in as..."
msgstr "Σύνδεση ως..."
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr ""
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "Συνδεθείτε ή δημιουργήστε λογαριασμό για να συμμετάσχετε στη συζήτηση!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr ""
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr ""
@@ -6843,15 +7428,15 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Αποσύνδεση"
@@ -6859,8 +7444,8 @@ msgstr "Αποσύνδεση"
msgid "Sign Out"
msgstr ""
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "Αποσύνδεση;"
@@ -6874,11 +7459,6 @@ msgstr "Απαιτείται σύνδεση"
msgid "Signed in as @{0}"
msgstr "Συνδεδεμένος ως @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "Εγγραφή χωρίς starter pack"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Παρόμοιοι λογαριασμοί"
@@ -6896,12 +7476,21 @@ msgstr "Παράλειψη αυτής της ροής"
msgid "Smaller"
msgstr "Μικρότερο"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Ανάπτυξη λογισμικού"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "Κάποιες άλλες ροές που μπορεί να σας αρέσουν"
@@ -6909,23 +7498,31 @@ msgstr "Κάποιες άλλες ροές που μπορεί να σας αρ
msgid "Some people can reply"
msgstr ""
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Κάτι πήγε στραβά"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Κάτι πήγε στραβά, παρακαλώ δοκιμάστε ξανά"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Κάτι πήγε στραβά, παρακαλώ δοκιμάστε ξανά."
@@ -6934,16 +7531,16 @@ msgstr "Κάτι πήγε στραβά, παρακαλώ δοκιμάστε ξα
msgid "Something went wrong!"
msgstr "Κάτι πήγε στραβά!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr ""
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr ""
@@ -6978,34 +7575,39 @@ msgstr "Spam; υπερβολικές αναφορές ή απαντήσεις"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Αθλήματα"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Έναρξη νέας συνομιλίας"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr ""
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Έναρξη συνομιλίας με {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "starter pack"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "starter pack από {0}"
@@ -7013,38 +7615,39 @@ msgstr "starter pack από {0}"
msgid "Starter pack by <0/>"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "starter pack από εσάς"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "Το starter pack είναι άκυρο"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Τα Starter Packs σας επιτρέπουν να μοιράζεστε εύκολα τις αγαπημένες σας ροές και άτομα με τους φίλους σας."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Σελίδα κατάστασης"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "Βήμα {0} από {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "Η αποθήκευση εκκαθαρίστηκε, πρέπει να επανεκκινήσετε την εφαρμογή τώρα."
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr ""
@@ -7063,46 +7666,51 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Εγγραφή"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "Εγγραφείτε στο @{0} για να χρησιμοποιήσετε αυτές τις ετικέτες:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "Εγγραφείτε στον ετικετογράφο"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "Εγγραφείτε σε αυτόν τον δημιουργό ετικετών"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "Εγγραφείτε σε αυτήν τη λίστα"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "Επιτυχία!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
-msgstr "Προτεινόμενοι λογαριασμοί"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
+msgstr ""
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Προτεινόμενα για εσάς"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Προκλητικό"
@@ -7116,16 +7724,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Υποστήριξη"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Αλλαγή λογαριασμού"
@@ -7134,11 +7742,11 @@ msgstr "Αλλαγή λογαριασμού"
msgid "Switch Account"
msgstr "Αλλαγή λογαριασμού"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr ""
@@ -7149,9 +7757,9 @@ msgstr ""
msgid "System"
msgstr "Σύστημα"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Λογαριασμός συστήματος"
@@ -7159,6 +7767,12 @@ msgstr "Λογαριασμός συστήματος"
msgid "Tags only"
msgstr "Μόνο ετικέτες"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Πατήστε για να απορρίψετε"
@@ -7184,7 +7798,7 @@ msgstr "Τεχνολογία"
msgid "Tell a joke!"
msgstr "Πες ένα αστείο!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "Πες μας λίγα πράγματα για τον εαυτό σου"
@@ -7192,17 +7806,17 @@ msgstr "Πες μας λίγα πράγματα για τον εαυτό σου"
msgid "Tell us a little more"
msgstr "Πες μας λίγα ακόμη"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Όροι"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Όροι Χρήσης"
@@ -7230,7 +7844,11 @@ msgstr ""
msgid "Text input field"
msgstr "Πεδίο εισαγωγής κειμένου"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "Σας ευχαριστούμε! Το email σας επαληθεύτηκε με επιτυχία."
@@ -7242,7 +7860,7 @@ msgstr "Σας ευχαριστούμε. Η αναφορά σας εστάλη."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Σας ευχαριστούμε, έχετε επαληθεύσει με επιτυχία τη διεύθυνση email σας. Μπορείτε να κλείσετε αυτό το παράθυρο διαλόγου."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "Αυτό περιέχει τα ακόλουθα:"
@@ -7250,10 +7868,10 @@ msgstr "Αυτό περιέχει τα ακόλουθα:"
msgid "That handle is already taken."
msgstr "Αυτό το όνομα χρήστη έχει ήδη ληφθεί."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "Δεν βρέθηκε αυτό το starter pack."
msgid "That's all, folks!"
msgstr "Αυτά ήταν όλα, παιδιά!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "Ο λογαριασμός θα μπορεί να αλληλεπιδράσει μαζί σας μετά την απελευθέρωση."
@@ -7282,7 +7900,7 @@ msgstr ""
msgid "The author of this thread has hidden this reply."
msgstr "Ο συντάκτης αυτού του νήματος έχει κρύψει αυτήν την απάντηση."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr ""
@@ -7302,6 +7920,10 @@ msgstr "Η ροή Ανακαλύψτε"
msgid "The Discover feed now knows what you like"
msgstr "Η ροή Ανακαλύψτε ξέρει πλέον τι σας αρέσει"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Η εμπειρία είναι καλύτερη στην εφαρμογή. Κατεβάστε το Bluesky τώρα και θα συνεχίσουμε από εκεί που σταματήσαμε."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "Η Πολιτική Απορρήτου έχει μετακινηθεί στο <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "Το επιλεγμένο βίντεο είναι μεγαλύτερο από 50MB."
+msgid "The selected video is larger than 100 MB."
+msgstr "Το επιλεγμένο βίντεο είναι μεγαλύτερο από 100 MB."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "Ο διακομιστής φαίνεται να αντιμετωπίζει προβλήματα. Παρακαλούμε δοκιμάστε ξανά σε λίγα λεπτά."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "Το starter pack που προσπαθείτε να δείτε είναι άκυρο. Μπορείτε να διαγράψετε αυτό το starter pack αντίθετα."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr ""
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "Η φόρμα υποστήριξης έχει μετακινηθεί. Εάν χρειάζεστε βοήθεια, παρακαλούμε <0/> ή επισκεφθείτε το {HELP_DESK_URL} για να επικοινωνήσετε μαζί μας."
@@ -7367,15 +7994,15 @@ msgstr "Δεν υπάρχει χρονικό όριο για την απενερ
msgid "There was an issue connecting to Tenor."
msgstr "Παρουσιάστηκε πρόβλημα σύνδεσης με το Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "Παρουσιάστηκε πρόβλημα επικοινωνίας με τον διακομιστή"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Παρουσιάστηκε πρόβλημα επικοινωνίας με τον διακομιστή, παρακαλούμε ελέγξτε τη σύνδεσή σας στο internet και δοκιμάστε ξανά."
@@ -7388,11 +8015,12 @@ msgstr "Παρουσιάστηκε πρόβλημα επικοινωνίας μ
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Παρουσιάστηκε πρόβλημα λήψης ειδοποιήσεων. Πατήστε εδώ για να δοκιμάσετε ξανά."
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Παρουσιάστηκε πρόβλημα λήψης αναρτήσεων. Πατήστε εδώ για να δοκιμάσετε ξανά."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Παρουσιάστηκε πρόβλημα λήψης της λίστας. Πατήστε εδώ για να δοκιμάσετε ξανά."
@@ -7400,12 +8028,12 @@ msgstr "Παρουσιάστηκε πρόβλημα λήψης της λίστα
msgid "There was an issue fetching your app passwords"
msgstr "Παρουσιάστηκε πρόβλημα λήψης των κωδικών πρόσβασης της εφαρμογής σας"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Παρουσιάστηκε πρόβλημα λήψης των λιστών σας. Πατήστε εδώ για να δοκιμάσετε ξανά."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "Παρουσιάστηκε πρόβλημα λήψης των πληροφοριών υπηρεσίας σας"
@@ -7418,26 +8046,26 @@ msgstr "Παρουσιάστηκε πρόβλημα κατά την κατάργ
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Παρουσιάστηκε πρόβλημα κατά την αποστολή της αναφοράς σας. Παρακαλούμε ελέγξτε τη σύνδεσή σας στο internet."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "Παρουσιάστηκε πρόβλημα κατά την ενημέρωση των ροών σας, παρακαλούμε ελέγξτε τη σύνδεσή σας στο internet και δοκιμάστε ξανά."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "Παρουσιάστηκε πρόβλημα! {0}"
@@ -7445,10 +8073,10 @@ msgstr "Παρουσιάστηκε πρόβλημα! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Παρουσιάστηκε πρόβλημα. Παρακαλούμε ελέγξτε τη σύνδεσή σας στο internet και δοκιμάστε ξανά."
@@ -7469,6 +8097,14 @@ msgstr "Αυτές οι ρυθμίσεις ισχύουν μόνο για τη
msgid "This {screenDescription} has been flagged:"
msgstr "Αυτό το {screenDescription} έχει επισημανθεί:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "Αυτός ο λογαριασμός έχει ζητήσει από τους χρήστες να συνδεθούν για να δουν το προφίλ τους."
@@ -7477,6 +8113,10 @@ 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/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Αυτή η ένσταση θα σταλεί στο <0>{sourceName}0>."
@@ -7510,14 +8150,22 @@ msgstr "Αυτό το περιεχόμενο δεν είναι διαθέσιμ
msgid "This content is not viewable without a Bluesky account."
msgstr "Αυτό το περιεχόμενο δεν είναι ορατό χωρίς λογαριασμό Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "Αυτό το χαρακτηριστικό βρίσκεται σε beta έκδοση. Μπορείτε να διαβάσετε περισσότερα για τις εξαγωγές αποθετηρίου σε <0>αυτή την ανάρτηση ιστολογίου0>."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr ""
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "Αυτό το χαρακτηριστικό δεν είναι διαθέσιμο κατά τη χρήση κωδικού πρόσβασης εφαρμογής. Παρακαλούμε συνδεθείτε με τον κύριο κωδικό πρόσβασής σας."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Αυτή η ροή είναι άδεια! Ίσως χρειαστεί να ακολουθήσετε περισσότερους χρήστες ή να ρυθμίσετε τις γλωσσικές σας ρυθμίσεις."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Αυτή η ροή είναι άδεια."
@@ -7540,7 +8188,7 @@ msgstr "Αυτή η ροή είναι άδεια."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Αυτή η ροή δεν είναι πλέον διαθέσιμη. Σας δείχνουμε την ροή <0>Ανακαλύψτε0>."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "Αυτό το όνομα χρήστη είναι κρατημένο. Παρακαλούμε δοκιμάστε ένα διαφορετικό."
@@ -7548,9 +8196,10 @@ msgstr "Αυτό το όνομα χρήστη είναι κρατημένο. Π
msgid "This information is not shared with other users."
msgstr "Αυτές οι πληροφορίες δεν κοινοποιούνται σε άλλους χρήστες."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "Αυτό είναι σημαντικό σε περίπτωση που χρειαστεί να αλλάξετε το email σας ή να επαναφέρετε τον κωδικό πρόσβασής σας."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr ""
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "Αυτή η ετικέτα εφαρμόστηκε από τον συντ
msgid "This label was applied by you."
msgstr "Αυτή η ετικέτα εφαρμόστηκε από εσάς."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "Αυτός ο ετικετογράφος δεν έχει δηλώσει ποιες ετικέτες δημοσιεύει, και ενδέχεται να μην είναι ενεργός."
@@ -7576,7 +8225,7 @@ msgstr ""
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr ""
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr ""
@@ -7584,7 +8233,7 @@ msgstr ""
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Η υπηρεσία διαχείρισης δεν είναι διαθέσιμη. Δείτε παρακάτω για περισσότερες λεπτομέρειες. Εάν το πρόβλημα παραμένει, επικοινωνήστε μαζί μας."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr ""
@@ -7592,28 +8241,29 @@ msgstr ""
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "Αυτή η ανάρτηση έχει διαγραφεί."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Αυτή η ανάρτηση θα κρυφτεί από τις ροές και τα νήματα. Αυτό δεν μπορεί να αναιρεθεί."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
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 ""
@@ -7621,10 +8271,14 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Η υπηρεσία αυτή δεν έχει παράσχει όρους χρήσης ή πολιτική απορρήτου."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "Αυτό θα πρέπει να δημιουργήσει ένα domain record στο:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr ""
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "Αυτός ο χρήστης δεν έχει ακόλουθους."
@@ -7662,21 +8316,21 @@ msgstr "Αυτός ο χρήστης δεν ακολουθεί κανέναν."
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "Αυτό θα διαγράψει “{0}” από τις λέξεις σε σίγαση. Μπορείτε πάντα να το προσθέσετε ξανά αργότερα."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "Αυτό θα αφαιρέσει τον @{0} από τη λίστα γρήγορης πρόσβασης."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Προτιμήσεις νήματος"
@@ -7684,8 +8338,8 @@ msgstr "Προτιμήσεις νήματος"
msgid "Thread Preferences"
msgstr "Προτιμήσεις Νήματος"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr ""
@@ -7693,7 +8347,7 @@ msgstr ""
msgid "Threaded mode"
msgstr "Λειτουργία νήματος"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Προτιμήσεις Νημάτων"
@@ -7705,14 +8359,15 @@ msgstr ""
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "Για να απενεργοποιήσετε τη μέθοδο email 2FA, παρακαλούμε επαληθεύστε την πρόσβαση σας στην ηλεκτρονική διεύθυνση."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr ""
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "Για να αναφέρετε μια συνομιλία, παρακαλούμε αναφέρετε ένα από τα μηνύματά της μέσω της οθόνης συνομιλίας. Αυτό επιτρέπει στους διαχειριστές μας να κατανοήσουν το πλαίσιο του προβλήματός σας."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Για να ανεβάσετε βίντεο στο Bluesky, πρέπει πρώτα να επαληθεύσετε το email σας."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "Σε ποιον θέλετε να στείλετε αυτήν την αναφορά;"
@@ -7725,7 +8380,7 @@ msgstr "Σήμερα"
msgid "Toggle dropdown"
msgstr "Εναλλαγή αναπτυσσόμενου μενού"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "Εναλλαγή για να ενεργοποιήσετε ή να απενεργοποιήσετε περιεχόμενο για ενήλικες"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr ""
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Κορυφή"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Μετάφραση"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr ""
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr ""
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr ""
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr ""
msgid "Two-factor authentication (2FA)"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr ""
@@ -7783,18 +8440,11 @@ msgstr ""
msgid "Type your message here"
msgstr "Πληκτρολογήστε το μήνυμά σας εδώ"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Τύπος:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Ακύρωση μπλοκαρίσματος λίστας"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Ακύρωση σίγασης λίστας"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "Αδυναμία σύνδεσης. Παρακαλούμε ελέγξτε τη σύνδεσή σας στο διαδίκτυο και προσπαθήστε ξανά."
@@ -7809,7 +8459,7 @@ msgstr "Αδυναμία σύνδεσης. Παρακαλούμε ελέγξτε
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Αδυναμία επικοινωνίας με την υπηρεσία σας. Παρακαλούμε ελέγξτε τη σύνδεσή σας στο διαδίκτυο."
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "Αδυναμία διαγραφής"
@@ -7817,36 +8467,41 @@ msgstr "Αδυναμία διαγραφής"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Ξεμπλοκάρισμα"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Ξεμπλοκάρισμα"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Ξεμπλοκάρισμα λογαριασμού"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "Ξεμπλοκάρισμα Λογαριασμού;"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Αναίρεση αναδημοσίευσης"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Διακοπή παρακολούθησης"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "Διακοπή παρακολούθησης {0}"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr ""
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Ακύρωση Σίγασης"
@@ -7895,10 +8555,10 @@ msgstr "Ακύρωση Σίγασης"
msgid "Unmute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr ""
@@ -7906,8 +8566,12 @@ msgstr ""
msgid "Unmute conversation"
msgstr "Ακύρωση Σίγασης συνομιλίας"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Ακύρωση Σίγασης νήματος"
@@ -7915,38 +8579,47 @@ msgstr "Ακύρωση Σίγασης νήματος"
msgid "Unmute video"
msgstr "Ακύρωση Σίγασης βίντεο"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Αφαίρεση καρφιτσωμένου"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Αφαίρεση καρφιτσωμένου από την αρχική σελίδα"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "Αφαίρεση καρφιτσωμένου από το προφίλ"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Αφαίρεση καρφιτσωμένου από τη λίστα διαχείρισης"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr ""
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Αφαιρέθηκε το καρφιτσωμένο από τις ροές σας"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Απεγγραφή"
@@ -7955,7 +8628,7 @@ msgstr "Απεγγραφή"
msgid "Unsubscribe from list"
msgstr "Απεγγραφή από τη λίστα"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Απεγγραφή από αυτόν τον ετικετογράφο"
@@ -7963,11 +8636,11 @@ msgstr "Απεγγραφή από αυτόν τον ετικετογράφο"
msgid "Unsubscribed from list"
msgstr "Απεγγραφή από αυτήν την λίστα"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr ""
@@ -7987,49 +8660,60 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "Ενημέρωση <0>{displayName}0> στις Λίστες"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Ενημέρωση σε {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
-msgctxt "toast"
-msgid "Updating quote attachment failed"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
+msgctxt "toast"
+msgid "Updating quote attachment failed"
+msgstr "Η ενημέρωση της επισυναπτόμενης παράθεσης απέτυχε"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "Η ενημέρωση της ορατότητας της απάντησης απέτυχε"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "Ενημέρωση..."
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Αντ'αυτού, ανεβάστε μια φωτογραφία"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Ανεβάστε ένα αρχείο κειμένου στο:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Ανεβάστε από την κάμερα"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Ανεβάστε από αρχεία"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Ανεβάστε από τη βιβλιοθήκη"
@@ -8042,7 +8726,7 @@ msgstr "Ανεβάζω εικόνες..."
msgid "Uploading link thumbnail..."
msgstr "Ανεβάζω μικρογραφία συνδέσμου..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "Ανεβάζω βίντεο..."
@@ -8050,22 +8734,22 @@ msgstr "Ανεβάζω βίντεο..."
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Χρησιμοποιήστε κωδικούς πρόσβασης εφαρμογής για να συνδεθείτε σε άλλους πελάτες Bluesky χωρίς να δώσετε πλήρη πρόσβαση στον λογαριασμό ή τον κωδικό πρόσβασής σας."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Χρησιμοποιήστε τον προεπιλεγμένο πάροχο"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Χρησιμοποιήστε το ενσωματωμένο πρόγραμμα περιήγησης"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Χρησιμοποιήστε το ενσωματωμένο πρόγραμμα περιήγησης για να ανοίξετε συνδέσμους"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Χρησιμοποιήστε το προεπιλεγμένο πρόγραμμα περιήγησής μου"
@@ -8119,15 +8803,15 @@ msgstr "Λίστα χρηστών από {0}"
msgid "User list by you"
msgstr "Λίστα χρηστών από εσάς"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "Η λίστα χρηστών δημιουργήθηκε"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "Η λίστα χρηστών ενημερώθηκε"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8150,58 +8834,88 @@ msgstr "Χρήστες που ακολουθώ"
msgid "Users in \"{0}\""
msgstr "Χρήστες σε \"{0}\""
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "Χρήστες που έχουν κάνει \"Μου αρέσει\" σε αυτό το περιεχόμενο ή προφίλ"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Τιμή:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "Απαιτείται επαληθευμένο email"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr ""
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr ""
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Επαλήθευση εγγραφής DNS"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Παράθυρο διαλόγου επαλήθευσης email"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Επαλήθευση νέου email"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Επαλήθευση τώρα"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Επαλήθευση αρχείου κειμένου"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Επαληθεύστε το email σας"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Επαληθεύστε το email σας"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Έκδοση {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "Βίντεο"
msgid "Video failed to process"
msgstr "Αποτυχία επεξεργασίας βίντεο"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr ""
@@ -8224,14 +8938,15 @@ msgstr ""
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Βιντεοπαιχνίδια"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr ""
@@ -8239,11 +8954,11 @@ msgstr ""
msgid "Video not found."
msgstr "Το βίντεο δεν βρέθηκε."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Ρυθμίσεις βίντεο"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Το βίντεο ανέβηκε"
@@ -8251,31 +8966,32 @@ msgstr "Το βίντεο ανέβηκε"
msgid "Video: {0}"
msgstr "Βίντεο: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "Προβολή εικόνας προφίλ του/της {0}"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "Προβολή προφίλ του/της {0}"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "Προβολή προφίλ του/της {displayName}"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "Προβολή προφίλ αποκλεισμένου χρήστη"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "Προβολή καταχώρησης εντοπισμού σφαλμάτων"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Προβολή λεπτομερειών"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "Προβολή λεπτομερειών για την αναφορά παραβίασης πνευματικών δικαιωμάτων"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Προβολή πλήρους νήματος"
@@ -8308,18 +9024,17 @@ msgstr "Προβολή πληροφοριών σχετικά με αυτές τ
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Προβολή προφίλ"
@@ -8331,7 +9046,11 @@ msgstr "Προβολή της εικόνας προφίλ"
msgid "View the labeling service provided by @{0}"
msgstr "Προβολή της υπηρεσίας επισήμανσης που παρέχεται από το @{0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "Προβολή χρηστών που τους αρέσει αυτή η ροή"
@@ -8339,11 +9058,11 @@ msgstr "Προβολή χρηστών που τους αρέσει αυτή η
msgid "View video"
msgstr ""
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Προβολή των αποκλεισμένων λογαριασμών σας"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr ""
@@ -8352,14 +9071,18 @@ msgstr ""
msgid "View your feeds and explore more"
msgstr "Δείτε τις ροές σας και εξερευνήστε περισσότερα"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Προβολή των λιστών εποπτείας σας"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "Προβολή των λογαριασμών που έχετε σε σίγαση"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "Προειδοποίηση περιεχομένου"
msgid "Warn content and filter from feeds"
msgstr "Προειδοποίηση περιεχομένου και φιλτράρισμα από τις ροές"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr ""
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "Δεν μπορέσαμε να βρούμε αποτελέσματα για αυτό το hashtag."
@@ -8400,7 +9128,7 @@ msgstr "Δεν μπορέσαμε να βρούμε αποτελέσματα γ
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "Δεν μπορέσαμε να φορτώσουμε αυτήν τη συνομιλία"
@@ -8420,6 +9148,14 @@ msgstr "Ελπίζουμε να περάσετε υπέροχα. Θυμηθεί
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Δεν έχουμε άλλες αναρτήσεις από αυτούς που ακολουθείτε. Ακολουθούν οι πιο πρόσφατες από <0/>."
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Δεν μπορέσαμε να προσδιορίσουμε εάν επιτρέπεται να ανεβάζετε βίντεο. Παρακαλώ προσπαθήστε ξανά."
@@ -8428,7 +9164,7 @@ 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:428
msgid "We were unable to load your configured labelers at this time."
msgstr "Δεν μπορέσαμε να φορτώσουμε τους διαμορφωμένους ετικετογράφους σας αυτήν τη στιγμή."
@@ -8440,20 +9176,28 @@ msgstr "Δεν μπορέσαμε να συνδεθούμε. Προσπαθήσ
msgid "We will let you know when your account is ready."
msgstr "Θα σας ενημερώσουμε όταν ο λογαριασμός σας είναι έτοιμος."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "Θα το χρησιμοποιήσουμε για να προσαρμόσουμε την εμπειρία σας."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "Αντιμετωπίζουμε προβλήματα δικτύου, δοκιμάστε ξανά"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr ""
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "Είμαστε τόσο ενθουσιασμένοι που θα γίνετε μέλος μας!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Λυπούμαστε, αλλά δεν μπορέσαμε να επιλύσουμε αυτήν τη λίστα. Εάν αυτό συνεχιστεί, επικοινωνήστε με τον δημιουργό της λίστας, @{handleOrDid}."
@@ -8461,11 +9205,11 @@ msgstr "Λυπούμαστε, αλλά δεν μπορέσαμε να επιλύ
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Λυπούμαστε, αλλά δεν μπορέσαμε να φορτώσουμε τις λέξεις που έχετε σε σίγαση αυτήν τη στιγμή. Παρακαλώ προσπαθήστε ξανά."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
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:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Λυπούμαστε! Η ανάρτηση στην οποία απαντάτε έχει διαγραφεί."
@@ -8474,7 +9218,7 @@ msgstr "Λυπούμαστε! Η ανάρτηση στην οποία απαντ
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Λυπούμαστε! Δεν μπορούμε να βρούμε τη σελίδα που αναζητούσατε."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Λυπούμαστε! Μπορείτε να εγγραφείτε μόνο σε είκοσι ετικετογράφους και έχετε φτάσει στο όριο των είκοσι."
@@ -8494,16 +9238,16 @@ msgstr "Ποια είναι τα ενδιαφέροντά σας;"
msgid "What do you want to call your starter pack?"
msgstr "Πώς θέλετε να ονομάσετε το starter pack σας;"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr ""
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "Τι συμβαίνει;"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr ""
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "Ποιες γλώσσες χρησιμοποιούνται σε αυτήν την ανάρτηση;"
@@ -8520,14 +9264,18 @@ msgstr "Ποιος μπορεί να αλληλεπιδράσει με αυτή
msgid "Who can reply"
msgstr "Ποιος μπορεί να απαντήσει"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "Ουπς!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr ""
@@ -8574,11 +9322,11 @@ msgstr "Γιατί πρέπει να ελεγχθεί αυτός ο χρήστη
msgid "Write a message"
msgstr "Γράψτε ένα μήνυμα"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Γράψτε ανάρτηση"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Γράψτε την απάντησή σας"
@@ -8588,11 +9336,16 @@ msgstr "Γράψτε την απάντησή σας"
msgid "Writers"
msgstr "Συγγραφείς"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "Επιστράφηκε λάθος DID από τον διακομιστή. Ελήφθη: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Ναι"
@@ -8601,15 +9354,15 @@ msgstr "Ναι"
msgid "Yes, deactivate"
msgstr "Ναι, απενεργοποίηση"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Ναι, διαγράψτε αυτό το starter pack"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Ναι, αποσύνδεση"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Ναι, απόκρυψη"
@@ -8625,7 +9378,11 @@ msgstr "Χθες"
msgid "You"
msgstr "Εσείς"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr ""
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
msgstr ""
@@ -8633,6 +9390,19 @@ msgstr ""
msgid "You are in line."
msgstr "Είστε στην ουρά."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr ""
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr ""
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr ""
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "Δεν επιτρέπεται να ανεβάζετε βίντεο."
@@ -8641,6 +9411,27 @@ msgstr "Δεν επιτρέπεται να ανεβάζετε βίντεο."
msgid "You are not following anyone."
msgstr "Δεν ακολουθείτε κανέναν."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr ""
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr ""
@@ -8682,7 +9472,7 @@ msgstr "Δεν έχετε ακόλουθους."
msgid "You don't follow any users who follow @{name}."
msgstr "Δεν ακολουθείτε κανέναν χρήστη που ακολουθεί τον/την @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr ""
@@ -8736,24 +9526,24 @@ msgstr "Έχετε θέσει αυτόν τον λογαριασμό σε σίγ
msgid "You have muted this user"
msgstr "Έχετε θέσει αυτόν τον χρήστη σε σίγαση"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "Δεν έχετε ακόμη συνομιλίες. Ξεκινήστε μία!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "Δεν έχετε ροές."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "Δεν έχετε λίστες."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Δεν έχετε μπλοκάρει κανένα λογαριασμό ακόμα. Για να μπλοκάρετε ένα λογαριασμό, μεταβείτε στο προφίλ τους και επιλέξτε \"Αποκλεισμός λογαριασμού\" από το μενού στο λογαριασμό τους."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Δεν έχετε θέσει κάποιον λογαριασμό σε σίγαση ακόμα. Για να θέσετε ένα λογαριασμό σε σίγαση, πηγαίντε στο προφίλ του και επίλεξτε \\¨Σίγαση λογαριασμού\" από το μενού του λογαριασμού του."
@@ -8761,11 +9551,15 @@ msgstr "Δεν έχετε θέσει κάποιον λογαριασμό σε σ
msgid "You have reached the end"
msgstr "Φτάσατε στο τέλος"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr ""
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Έχετε φτάσει προσωρινά το όριο για μεταφορτώσεις βίντεο. Παρακαλώ προσπαθήστε ξανά αργότερα."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "Δεν έχετε δημιουργήσει ακόμη starter pack!"
@@ -8787,22 +9581,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Μπορείτε να ασκήσετε ένσταση για αυτές τις ετικέτες εάν πιστεύετε ότι τοποθετήθηκαν κατά λάθος."
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "Μπορείτε να προσθέσετε έως και {STARTER_PACK_MAX_SIZE} προφίλ"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Μπορείτε να προσθέσετε έως και 3 ροές"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "Μπορείτε να επιλέξετε έως και 4 εικόνες"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "Πρέπει να είστε 13 ετών και άνω για να εγγραφείτε."
+msgid "You must be 13 years of age or older to create an account."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Πρέπει να ακολουθείτε τουλάχιστον επτά άλλα άτομα για να δημιουργήσετε ένα starter pack."
@@ -8810,28 +9604,40 @@ msgstr "Πρέπει να ακολουθείτε τουλάχιστον επτά
msgid "You must grant access to your photo library to save a QR code"
msgstr "Πρέπει να παραχωρήσετε πρόσβαση στη βιβλιοθήκη φωτογραφιών σας για να αποθηκεύσετε έναν κωδικό QR"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "Πρέπει να παραχωρήσετε πρόσβαση στη βιβλιοθήκη φωτογραφιών σας για να αποθηκεύσετε την εικόνα."
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "Πρέπει να επιλέξετε τουλάχιστον έναν ετικετογράφο για μια αναφορά"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr ""
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "Προηγουμένως απενεργοποιήσατε τον @{0}."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "Θα αποσυνδεθείτε από όλους τους λογαριασμούς σας."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "Δεν θα λαμβάνετε πλέον ειδοποιήσεις για αυτό το νήμα"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Τώρα θα λαμβάνετε ειδοποιήσεις για αυτό το νήμα"
@@ -8839,23 +9645,23 @@ msgstr "Τώρα θα λαμβάνετε ειδοποιήσεις για αυτ
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Θα λάβετα ένα email με ένα \"κωδικό επαναφοράς.\\ Εισάγετε αυτό τον κωδικό εδώ, εν συνεχεία εισάγετε το νέο σας κωδικό πρόσβασης.\""
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "Εσείς: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Εσείς: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "Εσείς: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "Θα ακολουθήσετε τους προτεινόμενους χρήστες και τις ροές μόλις ολοκληρώσετε τη δημιουργία του λογαριασμού σας!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "Θα ακολουθήσετε τους προτεινόμενους χρήστες μόλις ολοκληρώσετε τη δημιουργία του λογαριασμού σας!"
@@ -8867,7 +9673,7 @@ msgstr "Θα ακολουθήσετε αυτούς τους ανθρώπους
msgid "You'll follow these people right away"
msgstr "Θα ακολουθήσετε αυτούς τους ανθρώπους αμέσως"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "Θα λάβετε ένα email στη διεύθυνση <0>{0}0> για να επαληθεύσετε ότι είστε εσείς."
@@ -8901,6 +9707,10 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Φτάσατε στο τέλος της ροής σας! Βρείτε περισσότερους λογαριασμούς για να ακολουθήσετε."
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Έχετε φτάσει το ημερήσιο όριο για μεταφορτώσεις βίντεο (πάρα πολλά bytes)"
@@ -8909,11 +9719,11 @@ msgstr "Έχετε φτάσει το ημερήσιο όριο για μεταφ
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Έχετε φτάσει το ημερήσιο όριο για μεταφορτώσεις βίντεο (πάρα πολλά βίντεο)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "Ο λογαριασμός σας"
@@ -8941,7 +9751,7 @@ msgstr ""
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "Η ημερομηνία γέννησής σας"
@@ -8953,26 +9763,30 @@ msgstr "Το πρόγραμμα περιήγησής σας δεν υποστη
msgid "Your chats have been disabled"
msgstr "Οι συνομιλίες σας έχουν απενεργοποιηθεί"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "Η επιλογή σας θα αποθηκευτεί, αλλά μπορεί να αλλάξει αργότερα στις ρυθμίσεις."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr ""
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Το email σας φαίνεται να είναι μη έγκυρο."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "Το email σας έχει ενημερωθεί αλλά δεν έχει επαληθευτεί. Ως επόμενο βήμα, παρακαλούμε επαληθεύστε το νέο σας email."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Το email σας δεν έχει ακόμη επαληθευτεί. Αυτό είναι ένα σημαντικό βήμα ασφαλείας που σας συνιστούμε."
@@ -8988,14 +9802,31 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Η ροή που ακολουθείτε είναι άδεια! Ακολουθήστε περισσότερους χρήστες για να δείτε τι συμβαίνει."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "Το πλήρες όνομα χρήστη σας θα είναι <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr ""
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr ""
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Οι λέξεις σας σε σίγαση"
@@ -9004,15 +9835,15 @@ msgstr "Οι λέξεις σας σε σίγαση"
msgid "Your password has been changed successfully!"
msgstr "Ο κωδικός πρόσβασής σας έχει αλλάξει με επιτυχία!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "Η ανάρτησή σας έχει δημοσιευτεί"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "Οι αναρτήσεις σας έχουν δημοσιευτεί"
@@ -9024,14 +9855,22 @@ 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:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Η απάντησή σας έχει δημοσιευτεί"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Η αναφορά σας θα σταλεί στην Υπηρεσία Διαχείρισης του Bluesky"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr ""
diff --git a/src/locale/locales/en-GB/messages.po b/src/locale/locales/en-GB/messages.po
index 72b358487c..e7cccbb255 100644
--- a/src/locale/locales/en-GB/messages.po
+++ b/src/locale/locales/en-GB/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: en_GB\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 03:35\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: English, United Kingdom\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(active)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(contains embedded content)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(no email)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {# repost} other {# reposts}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# second} other {# seconds}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# unread item} other {# unread items}}"
@@ -90,17 +90,17 @@ msgstr "{0, plural, one {# unread item} other {# unread items}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {#mo} other {#mo}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {follower} other {followers}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {following} other {following}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {like} other {likes}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {like} other {likes}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {post} other {posts}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {quote} other {quotes}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {repost} other {reposts}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, other {{1} posts}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "{0, plural, other {# people have}} used this starter pack!"
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0>in <1>tags1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>in <1>text & tags1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr "{0} is live"
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr "{0} is not a valid URL"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} joined this week"
@@ -137,13 +154,18 @@ msgstr "{0} of {1}"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
-msgstr ""
+msgstr "{0} out of 50"
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0} people have used this starter pack!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "{0} reacted {1}"
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "{0} reacted {1} to {2}"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "{0}'s avatar"
@@ -175,7 +197,7 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}s"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# unread item} other {# unread items}}"
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, one {hour} other {hours}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {minute} other {minutes}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} followed you"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} followed you back"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "{firstAuthorLink} liked your custom feed"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "{firstAuthorLink} liked your post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr "{firstAuthorLink} liked your repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr "{firstAuthorLink} removed their verification from your account"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} reposted your post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr "{firstAuthorLink} reposted your repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} signed up with your starter pack"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr "{firstAuthorLink} verified you"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} followed you"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} followed you back"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "{firstAuthorName} liked your custom feed"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "{firstAuthorName} liked your post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr "{firstAuthorName} liked your repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr "{firstAuthorName} removed their verification from your account"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} reposted your post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr "{firstAuthorName} reposted your repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} signed up with your starter pack"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr "{firstAuthorName} verified you"
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} following"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "{handle} can't be messaged"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr "{hours, plural, one {# hour} other {# hours}}"
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "{joinedAllTimeCount, plural, other {# users have}} joined!"
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr "{minutes, plural, one {# minute} other {# minutes}}"
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# unread item} other {# unread items}}"
@@ -301,21 +404,49 @@ msgstr "{profileName} joined Bluesky {0} ago"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} joined Bluesky using a starter pack {0} ago"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "{type}h ago"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr "{userName} is a trusted verifier"
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr "{userName} is verified"
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr "{userName}'s verifications"
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "+{computedTotal}"
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
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>and {2, plural, one {# other} other {# others}} are included in your starter pack"
+msgstr "<0>{0}, 0><1>{1} 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
#: src/screens/StarterPack/Wizard/index.tsx:502
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>and {2, plural, one {# other} other {# others}} are included in your starter pack"
+msgstr "<0>{0}, 0><1>{1} 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {follower} other {followers}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {following} other {following}}"
@@ -343,7 +474,7 @@ msgstr "<0>Experimental:0> When this preference is enabled, you'll only receiv
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Invalid Handle"
@@ -363,19 +494,28 @@ msgstr "30 days"
msgid "7 days"
msgstr "7 days"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "a message"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr "A new form of verification"
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "About"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr "Accept"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr "Accept chat request"
@@ -385,37 +525,37 @@ msgid "Accept Request"
msgstr "Accept Request"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Accessibility"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Accessibility Settings"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Account"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
msgstr "Account blocked"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
msgstr "Account followed"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
msgstr "Account muted"
@@ -429,33 +569,37 @@ msgstr "Account Muted"
msgid "Account Muted by List"
msgstr "Account Muted by List"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Account options"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Account removed from quick access"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
msgstr "Account unblocked"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
msgstr "Account unfollowed"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
msgstr "Account unmuted"
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+msgstr "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Add"
@@ -473,8 +617,12 @@ msgstr "Add {displayName} to starter pack"
msgid "Add a content warning"
msgstr "Add a content warning"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "Add a user to this list"
@@ -485,7 +633,7 @@ msgstr "Add account"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Add account"
msgid "Add alt text"
msgstr "Add alt text"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Add alt text (optional)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Add another account"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Add another post"
@@ -518,8 +666,12 @@ msgstr "Add app password"
msgid "Add App Password"
msgstr "Add App Password"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr "Add emoji reaction"
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr "Add more details (optional)"
@@ -531,15 +683,23 @@ msgstr "Add mute word with chosen settings"
msgid "Add muted words and tags"
msgstr "Add muted words and tags"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Add new post"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Add people"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr "Add people to list"
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr "Add Reaction"
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Add recommended feeds"
@@ -552,27 +712,28 @@ msgstr "Add some feeds to your starter pack!"
msgid "Add the default feed of only people you follow"
msgstr "Add the default feed of only people you follow"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Add the following DNS record to your domain:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Add this feed to your feeds"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "Add to lists"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Add to Lists"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Add to my feeds"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr "Add user to list"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Added to list"
@@ -581,22 +742,22 @@ msgstr "Added to list"
msgid "Added to my feeds"
msgstr "Added to my feeds"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr "Additional details (limit 300 characters)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Adult"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Adult Content"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "Adult content can only be enabled via the Web at <0>bsky.app0>."
@@ -604,30 +765,35 @@ msgstr "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgid "Adult content is disabled."
msgstr "Adult content is disabled."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Adult Content labels"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Advanced"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr "alice@example.com"
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "All"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "All accounts have been followed!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "All languages"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "All the feeds you've saved, right in one place."
@@ -671,10 +837,10 @@ msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Alt text"
@@ -688,19 +854,18 @@ msgstr "Alt text describes images for blind and low-vision users and helps give
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "Alt text will be truncated. Limit: {0} characters."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "An email has been sent to {0}. It includes a confirmation code which you can enter below."
-#: src/view/com/modals/ChangeEmail.tsx:114
-msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
-msgstr "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "An email has been sent! Please enter the confirmation code included in the email below."
@@ -716,7 +881,11 @@ msgstr "An error occurred"
msgid "An error occurred while compressing the video."
msgstr "An error occurred while compressing the video."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr "An error occurred while fetching the feed."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "An error occurred while generating your starter pack. Want to try again?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "An error occurred while loading the video. Please try again."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "An error occurred while saving the QR code!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "An error occurred while selecting the video"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "An error occurred while trying to follow all"
@@ -746,12 +914,17 @@ msgstr "An error occurred while trying to follow all"
msgid "An error occurred while uploading the video."
msgstr "An error occurred while uploading the video."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "An issue not included in these options"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "An issue occurred starting the chat"
@@ -761,13 +934,17 @@ msgstr "An issue occurred while trying to open the chat"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "An issue occurred, please try again."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr "A mockup of an iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "an unknown error occurred"
@@ -790,6 +967,10 @@ msgstr "Animals"
msgid "Animated GIF"
msgstr "Animated GIF"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr "Announcing verification on Bluesky"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Anti-Social Behaviour"
msgid "Anybody can interact"
msgstr "Anybody can interact"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "App Icon"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "App Language"
@@ -836,7 +1017,7 @@ msgstr "App password names must be at least 4 characters long"
msgid "App passwords"
msgstr "App passwords"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "App Passwords"
@@ -872,10 +1053,10 @@ msgstr "Appeal Suspension"
msgid "Appeal this decision"
msgstr "Appeal this decision"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Appearance"
@@ -884,12 +1065,12 @@ msgstr "Appearance"
msgid "Apply default recommended feeds"
msgstr "Apply default recommended feeds"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Archived from {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Archived post"
@@ -897,15 +1078,15 @@ msgstr "Archived post"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Are you sure you want to delete the app password \"{0}\"?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "Are you sure you want to delete this starter pack?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "Are you sure you want to discard your changes?"
@@ -921,15 +1102,15 @@ msgstr "Are you sure you want to leave this conversation? Your messages will be
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Are you sure you want to remove {0} from your feeds?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Are you sure you want to remove this from your feeds?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "Are you sure you'd like to discard this draft?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "Are you sure you'd like to discard this post?"
@@ -937,7 +1118,7 @@ msgstr "Are you sure you'd like to discard this post?"
msgid "Are you sure?"
msgstr "Are you sure?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "Are you writing in <0>{suggestedLanguageName}0>?"
@@ -946,11 +1127,16 @@ msgstr "Are you writing in <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Art"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Artistic or non-erotic nudity."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr "Assign topic for algo"
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "At least 3 characters"
@@ -963,12 +1149,12 @@ msgstr "Aurora"
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Autoplay options have moved to the <0>Content and Media settings0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Autoplay videos and GIFs"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Autoplay videos and GIFs"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Back"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr "Back to Chats"
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Before creating a list, you must first verify your email."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Before creating a post, you must first verify your email."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr "Before creating a post or replying, you must first verify your email."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Before creating a starter pack, you must first verify your email."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "Before you may message another user, you must first verify your email."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr "Before you can accept this chat request, you must first verify your email."
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
+msgstr "Before you can message another user, you must first verify your email."
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Birthday"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Block"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Block account"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "Block Account?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Block accounts"
@@ -1054,7 +1241,7 @@ msgstr "Block and Delete"
msgid "Block and/or delete this conversation"
msgstr "Block and/or delete this conversation"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Block list"
@@ -1062,7 +1249,7 @@ msgstr "Block list"
msgid "Block or report"
msgstr "Block or report"
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "Block these accounts?"
@@ -1079,21 +1266,21 @@ msgstr "Block User"
msgid "Blocked"
msgstr "Blocked"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Blocked accounts"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Blocked Accounts"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 "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."
@@ -1101,19 +1288,19 @@ msgstr "Blocked accounts cannot reply in your threads, mention you, or otherwise
msgid "Blocked post."
msgstr "Blocked post."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Blocking does not prevent this labeller from placing labels on your account."
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
-#: src/view/com/auth/SplashScreen.web.tsx:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blog"
@@ -1122,7 +1309,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky cannot confirm the authenticity of the claimed date."
@@ -1148,7 +1335,7 @@ msgstr "Bluesky is better with friends!"
msgid "Bluesky Social Terms of Service"
msgstr "Bluesky Social Terms of Service"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky will choose a set of recommended accounts from people in your network."
@@ -1156,6 +1343,10 @@ msgstr "Bluesky will choose a set of recommended accounts from people in your ne
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky will not show your profile and posts to logged-out users. Other apps may not honour this request. This does not make your account private."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr "Bluesky will proactively verify notable and authentic accounts."
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "Blur images and filter from feeds"
msgid "Books"
msgstr "Books"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "Browse more accounts on the Explore page"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "Browse more feeds on the Explore page"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Browse more suggestions"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "Browse more suggestions on the Explore page"
@@ -1214,20 +1405,26 @@ msgstr "Browse posts tagged with {displayName}"
msgid "Browse starter pack {displayName}"
msgstr "Browse starter pack {displayName}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr "Browse topic {0}"
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "Browse topic {displayName}"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Business"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "By {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "By <0>{0}0>"
@@ -1243,44 +1440,51 @@ msgstr "By creating an account you agree to the <0>Terms of Service0> and <1>P
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "By creating an account you agree to the <0>Terms of Service0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr "By you"
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Camera"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Cancel"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "Cancel account deletion"
msgid "Cancel image crop"
msgstr "Cancel image crop"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Cancel profile editing"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Cancel quote post"
@@ -1308,8 +1512,7 @@ msgstr "Cancel quote post"
msgid "Cancel reactivation and sign out"
msgstr "Cancel reactivation and sign out"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Cancel search"
@@ -1317,24 +1520,23 @@ msgstr "Cancel search"
msgid "Cancels opening the linked website"
msgstr "Cancels opening the linked website"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "Cannot interact with a blocked user"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Subtitles (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Subtitles & alt text"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Change"
@@ -1347,46 +1549,41 @@ msgstr "Change app icon"
msgid "Change app icon to \"{0}\""
msgstr "Change app icon to \"{0}\""
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Change email"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr "Change app language"
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Change email address"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Change Handle"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr "Change moderation service"
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Change my email"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Change Password"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "Change post language to {suggestedLanguageName}"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr "Change report reason"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Change Your Email"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Change your email address"
@@ -1394,20 +1591,20 @@ msgstr "Change your email address"
msgid "Changes app icon"
msgstr "Changes app icon"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr "Changes hosting provider"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Chat"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
msgstr "Chat deleted"
@@ -1417,20 +1614,19 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Chat muted"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr "Chat request inbox"
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr "Chat requests"
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Chat settings"
@@ -1443,8 +1639,8 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Chat unmuted"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr "Chats"
@@ -1461,7 +1657,7 @@ msgstr "Check your email for a sign in code and enter it here."
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Check your inbox for an email with the confirmation code to enter below:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Choose domain verification method"
@@ -1469,7 +1665,7 @@ msgstr "Choose domain verification method"
msgid "Choose Feeds"
msgstr "Choose Feeds"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Choose for me"
@@ -1477,10 +1673,6 @@ msgstr "Choose for me"
msgid "Choose People"
msgstr "Choose People"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Choose the algorithms that power your custom feeds."
@@ -1493,27 +1685,31 @@ msgstr "Choose this colour as your avatar"
msgid "Choose your account provider"
msgstr "Choose your account provider"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Choose your own timeline! Feeds built by the community help you find content you love."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Choose your password"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "Choose your username"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Clear all storage data"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Clear all storage data (restart after this)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr "Clear image cache"
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Clear search query"
@@ -1522,6 +1718,14 @@ msgstr "Clear search query"
msgid "click here"
msgstr "click here"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr "Click here to restart the verification process."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr "Click here to update your email"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Click to disable quote posts of this post."
@@ -1534,7 +1738,7 @@ msgstr "Click to enable quote posts of this post."
msgid "Click to open tag menu for {tag}"
msgstr "Click to open tag menu for {tag}"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Click to retry failed message"
@@ -1546,24 +1750,34 @@ msgstr "Climate"
msgid "Clip 🐴 clop 🐴"
msgstr "Clip 🐴 clop 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Close"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Close active dialogue"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Close bottom drawer"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Close dialogue"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr "Close drawer menu"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "Close emoji picker"
@@ -1600,7 +1816,13 @@ msgstr "Close image"
msgid "Close image viewer"
msgstr "Close image viewer"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr "Close menu"
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Close this dialogue"
@@ -1608,8 +1830,12 @@ msgstr "Close this dialogue"
msgid "Closes password update alert"
msgstr "Closes password update alert"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr "Closes post composer and discards post draft"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr "Closes the emoji picker"
@@ -1617,11 +1843,11 @@ msgstr "Closes the emoji picker"
msgid "Closes viewer for header image"
msgstr "Closes viewer for header image"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Collapse list of users"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Collapses list of users for a given notification"
@@ -1644,7 +1870,7 @@ msgstr "Comedy"
msgid "Comics"
msgstr "Comics"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Community Guidelines"
@@ -1653,23 +1879,23 @@ msgstr "Community Guidelines"
msgid "Complete onboarding and start using your account"
msgstr "Complete onboarding and start using your account"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Complete the challenge"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Compose new post"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr "Compose posts up to {0, plural, other {# characters}} in length"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Compose reply"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Compressing video..."
@@ -1681,23 +1907,17 @@ msgstr "Configure content filtering setting for category: {name}"
msgid "Configured in <0>moderation settings0>."
msgstr "Configured in <0>moderation settings0>."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Confirm"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Confirm Change"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Confirm content language settings"
@@ -1706,26 +1926,27 @@ msgstr "Confirm content language settings"
msgid "Confirm delete account"
msgstr "Confirm delete account"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Confirm your age:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Confirm your birthdate"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Confirmation code"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Confirmation Code"
@@ -1733,22 +1954,22 @@ msgstr "Confirmation Code"
msgid "Connecting..."
msgstr "Connecting..."
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Contact support"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "Content & Media"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Content and media"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Content and Media"
@@ -1756,15 +1977,15 @@ msgstr "Content and Media"
msgid "Content Blocked"
msgstr "Content Blocked"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Content filters"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr "Content from across the network we think you might like."
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Content Languages"
@@ -1785,16 +2006,16 @@ msgstr "Content Warning"
msgid "Content warnings"
msgstr "Content warnings"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "Context menu backdrop, click to close the menu."
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Continue"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Continue as {0} (currently signed in)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Continue thread..."
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Continue to next step"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversation deleted"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Conversation deleted"
@@ -1826,16 +2047,17 @@ msgstr "Cooking"
msgid "Copied"
msgstr "Copied"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Copied build version to clipboard"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Copied to clipboard"
@@ -1844,25 +2066,29 @@ msgstr "Copied to clipboard"
msgid "Copied!"
msgstr "Copied!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr "Copies build version to clipboard"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Copy"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr "Copy anyway"
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Copy App Password"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr "Copy at:// URI"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr "Copy author DID"
@@ -1871,57 +2097,69 @@ msgstr "Copy author DID"
msgid "Copy code"
msgstr "Copy code"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Copy DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Copy host"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Copy link"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Copy Link"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Copy link to list"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Copy link to post"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr "Copy link to profile"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr "Copy link to starter pack"
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Copy message text"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr "Copy post at:// URI"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Copy post text"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Copy QR code"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "Copy TXT record value"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Copyright Policy"
@@ -1931,11 +2169,11 @@ msgstr "Copyright Policy"
msgid "Could not leave chat"
msgstr "Could not leave chat"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "Could not load feed"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "Could not load list"
@@ -1947,28 +2185,28 @@ msgstr "Could not mute chat"
msgid "Could not process your video"
msgstr "Could not process your video"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Create"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "Create a QR code for a starter pack"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Create a starter pack"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Create a starter pack for me"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Create a starter pack for me"
msgid "Create account"
msgstr "Create account"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Create Account"
@@ -1985,11 +2223,16 @@ msgstr "Create Account"
msgid "Create an account"
msgstr "Create an account"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr "Create an account without using this starter pack"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Create an avatar instead"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Create another"
@@ -1998,7 +2241,7 @@ msgstr "Create another"
msgid "Create new account"
msgstr "Create new account"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Create report for {0}"
@@ -2053,17 +2296,17 @@ msgstr "Dark mode"
msgid "Dark theme"
msgstr "Dark theme"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Date of birth"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Deactivate account"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Debug Moderation"
@@ -2079,19 +2322,19 @@ msgstr "Default"
msgid "Default icons"
msgstr "Default icons"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Delete"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Delete account"
@@ -2107,19 +2350,19 @@ msgstr "Delete app password"
msgid "Delete app password?"
msgstr "Delete app password?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr "Delete chat"
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Delete chat declaration record"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "Delete conversation"
@@ -2127,19 +2370,19 @@ msgstr "Delete conversation"
msgid "Delete Conversation"
msgstr "Delete Conversation"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Delete for me"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
-msgstr "Delete List"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
+msgstr "Delete list"
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Delete message"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Delete message for me"
@@ -2147,26 +2390,26 @@ msgstr "Delete message for me"
msgid "Delete my account"
msgstr "Delete my account"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Delete post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Delete starter pack"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "Delete starter pack?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "Delete this list?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "Delete this post?"
@@ -2174,8 +2417,8 @@ msgstr "Delete this post?"
msgid "Deleted"
msgstr "Deleted"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Deleted Account"
@@ -2183,48 +2426,48 @@ msgstr "Deleted Account"
msgid "Deleted post."
msgstr "Deleted post."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Description"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "Description is too long"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Descriptive alt text"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Detach quote"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "Detach quote post?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
msgstr "Developer mode disabled"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
msgstr "Developer mode enabled"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Developer options"
@@ -2236,6 +2479,15 @@ msgstr "Dialogue: adjust who can interact with this post"
msgid "Dim"
msgstr "Dim"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr "Disable 2FA"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr "Disable email 2FA"
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "Disable Email 2FA"
@@ -2254,25 +2506,25 @@ msgstr "Disable subtitles"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Disabled"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Discard"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "Discard changes?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "Discard draft?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "Discard post?"
@@ -2281,24 +2533,24 @@ msgstr "Discard post?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Discourage apps from showing my account to logged-out users"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr "Discover Feeds"
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Discover new custom feeds"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Discover new feeds"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Discover New Feeds"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Dismiss"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Dismiss error"
@@ -2306,6 +2558,10 @@ msgstr "Dismiss error"
msgid "Dismiss getting started guide"
msgstr "Dismiss getting started guide"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr "Dismiss interests"
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr "Dismiss this section"
@@ -2315,27 +2571,27 @@ msgstr "Dismiss this section"
msgid "Display larger alt text badges"
msgstr "Display larger alt text badges"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Display name"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Display Name"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "Display name is too long"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "DNS Panel"
@@ -2347,37 +2603,45 @@ msgstr "Do not apply this mute word to users you follow"
msgid "Does not include nudity."
msgstr "Does not include nudity."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "Doesn't begin or end with a hyphen"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "Domain verified!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr "Don't have a code or need a new one? <0>Click here.0>"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr "Don't see an email? <0>Click here to resend.0>"
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Done"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Done"
msgid "Done{extraText}"
msgstr "Done{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr "Double tap or long press the message to add a reaction"
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Double tap to close the dialogue"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr "Double tap to like"
@@ -2413,23 +2681,23 @@ msgstr "Drop to add images"
msgid "Duration:"
msgstr "Duration:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "e.g. alice"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "e.g. Alice Lastname"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "e.g. Alice Roberts"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "e.g. alice.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "e.g. Artist, dog-lover and avid reader."
@@ -2437,19 +2705,19 @@ msgstr "e.g. Artist, dog-lover and avid reader."
msgid "E.g. artistic nudes."
msgstr "E.g. artistic nudes."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "e.g. Great Posters"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "e.g. Spammers"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "e.g. The posters who never miss."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "e.g. Users that repeatedly reply with ads."
@@ -2457,20 +2725,21 @@ msgstr "e.g. Users that repeatedly reply with ads."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Each code works once. You'll receive more invite codes periodically."
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Edit"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Edit"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Edit avatar"
@@ -2478,31 +2747,41 @@ msgstr "Edit avatar"
msgid "Edit Feeds"
msgstr "Edit Feeds"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Edit image"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Edit interaction settings"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr "Edit interests"
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Edit list details"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr "Edit live status"
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Edit Moderation List"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Edit My Feeds"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Edit my profile"
@@ -2515,23 +2794,23 @@ msgstr "Edit People"
msgid "Edit post interaction settings"
msgstr "Edit post interaction settings"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Edit profile"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Edit Profile"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Edit starter pack"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Edit User List"
@@ -2539,15 +2818,15 @@ msgstr "Edit User List"
msgid "Edit who can reply"
msgstr "Edit who can reply"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Edit your display name"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Edit your profile description"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Edit your starter pack"
@@ -2560,9 +2839,8 @@ msgstr "Education"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "Either the creator of this list has blocked you or you have blocked the creator."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "Email"
@@ -2583,20 +2861,17 @@ msgstr "Email address"
msgid "Email Resent"
msgstr "Email Resent"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
-msgstr "Email updated"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
+msgstr "Email sent!"
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "Email Updated"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr "Email Updated!"
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
-msgstr "Email verified"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
+msgstr "Email verification complete!"
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
msgid "Email Verified"
@@ -2608,8 +2883,8 @@ msgstr "Embed HTML code"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Embed post"
@@ -2617,12 +2892,13 @@ msgstr "Embed post"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "Embedded video player"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Enable"
@@ -2630,13 +2906,13 @@ msgstr "Enable"
msgid "Enable {0} only"
msgstr "Enable {0} only"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Enable adult content"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr "Enable Email 2FA"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr "Enable email 2FA"
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2660,30 +2936,30 @@ msgstr "Enable subtitles"
msgid "Enable this source only"
msgstr "Enable this source only"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "Enable trending topics"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr "Enable trending videos in your Discover feed"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr "Enable trending videos in your Discover feed."
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Enabled"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "End of feed"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Ensure you have selected a language for each subtitle file."
@@ -2696,14 +2972,15 @@ msgstr "Enter a password"
msgid "Enter a word or tag"
msgstr "Enter a word or tag"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr "Enter code"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
msgid "Enter Code"
msgstr "Enter Code"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Enter Confirmation Code"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
msgstr "Enter fullscreen"
@@ -2712,7 +2989,7 @@ msgstr "Enter fullscreen"
msgid "Enter the code you received to change your password."
msgstr "Enter the code you received to change your password."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Enter the domain you want to use"
@@ -2720,20 +2997,20 @@ msgstr "Enter the domain you want to use"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr "Enter the username or email address you used when you created your account"
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Enter your birthdate"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Enter your email address"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Enter your new email above"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Enter your new email address below."
@@ -2749,7 +3026,11 @@ msgstr "Enter your username and password"
msgid "Enters full screen"
msgstr "Enters fullscreen"
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr "Entertainment"
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Error"
@@ -2758,15 +3039,18 @@ msgstr "Error"
msgid "Error occurred while saving file"
msgstr "Error occurred while saving file"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "Error receiving captcha response."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Error:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr "Error: {error}"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Everybody"
@@ -2818,30 +3102,22 @@ msgstr "Exits image cropping process"
msgid "Exits image view"
msgstr "Exits image view"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Exits inputting search query"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Expand alt text"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Expand list of users"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "Expand or collapse the full post you are replying to"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr "Expands or collapses post text"
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr "Expands or collapses the full post you are replying to"
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "Expected URI to resolve to a record"
@@ -2864,6 +3140,10 @@ msgstr "Expires {0}"
msgid "Expires in {0}"
msgstr "Expires in {0}"
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr "Expires in {0} at {1}"
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "Explicit or potentially disturbing media."
msgid "Explicit sexual images."
msgstr "Explicit sexual images."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr "Explore"
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Export my data"
@@ -2882,8 +3169,8 @@ msgstr "Export my data"
msgid "Export My Data"
msgstr "Export My Data"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "External media"
@@ -2897,17 +3184,22 @@ msgstr "External Media"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "External Media Preferences"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Failed to accept chat"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr "Failed to add emoji reaction"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "Failed to change handle. Please try again."
@@ -2915,7 +3207,7 @@ msgstr "Failed to change handle. Please try again."
msgid "Failed to create app password. Please try again."
msgstr "Failed to create app password. Please try again."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr "Failed to create conversation"
@@ -2924,35 +3216,37 @@ msgstr "Failed to create conversation"
msgid "Failed to create starter pack"
msgstr "Failed to create starter pack"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "Failed to create the list. Check your internet connection and try again."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Failed to delete chat"
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Failed to delete message"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "Failed to delete post, please try again"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "Failed to delete starter pack"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr "Failed to load conversations"
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "Failed to load feeds preferences"
@@ -2964,17 +3258,19 @@ msgstr "Failed to load GIFs"
msgid "Failed to load past messages"
msgstr "Failed to load past messages"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "Failed to load suggested feeds"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "Failed to load suggested follows"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr "Failed to mark all requests as read"
@@ -2982,7 +3278,16 @@ msgstr "Failed to mark all requests as read"
msgid "Failed to pin post"
msgstr "Failed to pin post"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr "Failed to remove emoji reaction"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr "Failed to remove verification"
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Failed to save image: {0}"
@@ -2994,20 +3299,39 @@ msgstr "Failed to save notification preferences, please try again"
msgid "Failed to save settings. Please try again."
msgstr "Failed to save settings. Please try again."
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr "Failed to save your interests."
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "Failed to send"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr "Failed to send email, please try again."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Failed to submit appeal, please try again."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "Failed to toggle thread mute, please try again"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr "Failed to update email 2FA settings"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr "Failed to update email, please try again."
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "Failed to update feeds"
@@ -3022,20 +3346,24 @@ msgstr "Failed to update settings"
msgid "Failed to upload video"
msgstr "Failed to upload video"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr "Failed to verify email, please try again."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "Failed to verify handle. Please try again."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Feed"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Feed by {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "Feed menu"
@@ -3043,26 +3371,26 @@ msgstr "Feed menu"
msgid "Feed toggle"
msgstr "Feed toggle"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Feedback"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
msgstr "Feedback sent!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Feeds"
@@ -3070,13 +3398,13 @@ msgstr "Feeds"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
msgstr "Feeds updated!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "Feeds we think you might like."
@@ -3092,11 +3420,11 @@ msgstr "File saved successfully!"
msgid "Filter from feeds"
msgstr "Filter from feeds"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr "Filter search by language"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr "Filter search by language (currently: {currentLanguageLabel})"
@@ -3110,13 +3438,13 @@ msgstr "Finalising"
msgid "Find accounts to follow"
msgstr "Find accounts to follow"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "Find people to follow"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Find posts, users and feeds on Bluesky"
@@ -3148,11 +3476,11 @@ msgid "Flexible"
msgstr "Flexible"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Follow"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Follow"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Follow {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr "Follow {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Follow {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "Follow 10 accounts"
msgid "Follow 7 accounts"
msgstr "Follow 7 accounts"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "Follow account"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Follow all"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Follow Back"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Follow Back"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "Follow more accounts to get connected to your interests and build your network."
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "Followed by <0>{0}0>"
@@ -3224,7 +3544,7 @@ msgstr "Followed by <0>{0}0> and <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Followed by <0>{0}0>, <1>{1}1> and {2, plural, one {# other} other {# others}}"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Followers of @{0} that you know"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Followers you know"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Following"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "Following {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr "Following {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Following {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Following feed preferences"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Following Feed Preferences"
@@ -3301,6 +3617,10 @@ msgstr "For security reasons, you won't be able to view this again. If you lose
msgid "For the best experience, we recommend using the theme font."
msgstr "For the best experience, we recommend using the theme font."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr "For You"
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Forever"
@@ -3327,7 +3647,7 @@ msgstr "Frequently Posts Unwanted Content"
msgid "From @{sanitizedAuthor}"
msgstr "From @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "From <0/>"
@@ -3336,28 +3656,30 @@ msgstr "From <0/>"
msgid "Gallery"
msgstr "Gallery"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Generate a starter pack"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Get help"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "Get Started"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr "Get started"
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Getting started"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Give your profile a face"
@@ -3366,17 +3688,17 @@ msgstr "Give your profile a face"
msgid "Glaring violations of law or terms of service"
msgstr "Glaring violations of law or terms of service"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Go back"
@@ -3384,10 +3706,10 @@ msgstr "Go back"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Go Back"
@@ -3408,7 +3730,27 @@ msgstr "Go home"
msgid "Go Home"
msgstr "Go Home"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr "Go live"
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr "Go Live"
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr "Go live for"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr "Go to {firstAuthorName}'s profile"
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Go to conversation with {0}"
@@ -3427,8 +3769,8 @@ msgstr "Go to user's profile"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Graphic Media"
@@ -3437,21 +3779,21 @@ msgstr "Graphic Media"
msgid "Half way there!"
msgstr "Half way there!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Handle"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "Handle already taken. Please try a different one."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "Handle changed!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "Handle too long. Please try a shorter one."
@@ -3464,7 +3806,7 @@ msgstr "Haptics"
msgid "Harassment, trolling, or intolerance"
msgstr "Harassment, trolling or intolerance"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Hashtag"
@@ -3472,19 +3814,24 @@ msgstr "Hashtag"
msgid "Hashtag {tag}"
msgstr "Hashtag {tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr "Have a code? <0>Click here.0>"
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "Having trouble?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Help"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Help people know you're not a bot by uploading a picture or creating an avatar."
@@ -3497,7 +3844,7 @@ msgstr "Here is your app password!"
msgid "Hidden"
msgstr "Hidden"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr "Hidden by your moderation settings."
@@ -3509,18 +3856,17 @@ msgstr "Hidden list"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Hide"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Hide"
@@ -3529,38 +3875,40 @@ msgstr "Hide"
msgid "Hide customization options"
msgstr "Hide customisation options"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Hide post for me"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Hide reply for everyone"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Hide reply for me"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr "Hide this card"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "Hide this post?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "Hide this reply?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Hide trending topics"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "Hide trending topics?"
@@ -3569,10 +3917,15 @@ msgstr "Hide trending topics?"
msgid "Hide trending videos?"
msgstr "Hide trending videos?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Hide user list"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr "Hide verification badges"
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "Hmm, the feed server gave a bad response. Please let the feed owner know
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Hmm, we're having trouble finding this feed. It may have been deleted."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Hmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
@@ -3610,15 +3963,15 @@ msgstr "Hmm, we couldn't load that moderation service."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Hold up! We’re gradually giving access to video and you’re still waiting in line. Check back soon!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Home"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "Host:"
@@ -3627,34 +3980,33 @@ msgstr "Host:"
msgid "Hosting provider"
msgstr "Hosting provider"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr "Hot"
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "Hot replies first"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "How should we open this link?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "I have a code"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "I Have a Code"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "I have a confirmation code"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "I have my own domain"
@@ -3667,22 +4019,30 @@ msgstr "I understand"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "If alt text is long, toggles alt text expanded state"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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 "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."
-#: src/view/screens/ProfileList.tsx:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "If you delete this list, you won't be able to recover it."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr "If you need to update your email, <0>click here0>."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "If you remove this post, you won't be able to recover it."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr "If you update your email address, email 2FA will be disabled."
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "If you want to change your password, we will send you a code to verify that this is your account."
@@ -3704,9 +4064,22 @@ msgstr "Illegal and Urgent"
msgid "Image"
msgstr "Image"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "Image saved to your camera roll!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr "Image cache cleared"
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr "Image cache cleared, freed {0}"
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr "Image saved"
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr "Images cannot be saved unless permission is granted to access your photo library."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "Inappropriate messages or explicit links"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr "Inbox zero!"
@@ -3752,15 +4125,11 @@ msgstr "Input password for account deletion"
msgid "Input the code which has been emailed to you"
msgstr "Input the code which has been emailed to you"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "Input the username or email address you used at signup"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Interaction limited"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr "Interaction settings"
@@ -3769,11 +4138,11 @@ msgstr "Interaction settings"
msgid "Invalid 2FA confirmation code."
msgstr "Invalid 2FA confirmation code."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Invalid handle. Please try a different one."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "Invalid or unsupported post record"
@@ -3789,11 +4158,11 @@ msgstr "Invalid Verification Code"
msgid "Invite a Friend"
msgstr "Invite a Friend"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Invite code"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Invite code not accepted. Check that you input it correctly and try again."
@@ -3805,7 +4174,7 @@ msgstr "Invite codes: {0} available"
msgid "Invite codes: 1 available"
msgstr "Invite codes: 1 available"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "Invite people to this starter pack!"
@@ -3817,7 +4186,7 @@ msgstr "Invite your friends to follow your favourite feeds and people"
msgid "Invites, but personal"
msgstr "Invites, but personal"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "It's correct"
@@ -3825,19 +4194,19 @@ msgstr "It's correct"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "It's just you right now! Add more people to your starter pack by searching above."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "Job ID: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Jobs"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Join Bluesky"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "Labelled by the author."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Labels"
@@ -3868,7 +4237,7 @@ msgstr "Labels"
msgid "Labels added"
msgstr "Labels added"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "Labels are annotations on users and content. They can be used to hide, warn and categorise the network."
@@ -3884,13 +4253,13 @@ msgstr "Labels on your content"
msgid "Language selection"
msgstr "Language selection"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Language Settings"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Languages"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Larger"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "Latest"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "learn more"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr "Learn more"
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Learn More"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Learn more about Bluesky"
@@ -3933,6 +4311,11 @@ msgstr "Learn more about the moderation applied to this content."
msgid "Learn more about this warning"
msgstr "Learn more about this warning"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr "Learn more about verification on Bluesky"
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "Leaving Bluesky"
msgid "left to go."
msgstr "left to go."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Let me choose"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Light"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "Like"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Like ({0, plural, one {# like} other {# likes}})"
@@ -4013,17 +4397,16 @@ msgstr "Like 10 posts"
msgid "Like 10 posts to train the Discover feed"
msgstr "Like 10 posts to train the Discover feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Like this feed"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr "Like this labeller"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Liked by"
@@ -4033,40 +4416,40 @@ msgstr "Liked by"
msgid "Liked By"
msgstr "Liked By"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Liked by {0, plural, one {# user} other {# users}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Liked by {likeCount, plural, one {# user} other {# users}}"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "Likes"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "Likes on this post"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "Linear"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "List"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "List Avatar"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
msgstr "List blocked"
@@ -4084,7 +4467,7 @@ msgstr "List by <0/>"
msgid "List by you"
msgstr "List by you"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
msgstr "List deleted"
@@ -4093,35 +4476,35 @@ msgstr "List deleted"
msgid "List has been hidden"
msgstr "List has been hidden"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "List Hidden"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
msgstr "List muted"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "List Name"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
msgstr "List unblocked"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
msgstr "List unmuted"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Lists"
@@ -4129,34 +4512,47 @@ msgstr "Lists"
msgid "Lists blocking this user:"
msgstr "Lists blocking this user:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr "LIVE"
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr "Live feature is in beta testing"
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr "Live link"
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Load more"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "Load more suggested feeds"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Load more suggested follows"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Load new notifications"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Load new posts"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Loading..."
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Log"
@@ -4164,12 +4560,12 @@ msgstr "Log"
msgid "Logged-out visibility"
msgstr "Logged-out visibility"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo by @sawaratsuki.bsky.social"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo by <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "Looks like you unpinned all your feeds. But don't worry, you can add som
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Looks like you're missing a following feed. <0>Click here to add one.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr "Make adjustments to email settings for your account"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "Make one for me"
@@ -4201,18 +4601,22 @@ msgstr "Make one for me"
msgid "Make sure this is where you intend to go!"
msgstr "Make sure this is where you intend to go!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "Manage saved feeds"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr "Manage verification settings"
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Manage your muted words and tags"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr "Mark all as read"
@@ -4221,16 +4625,23 @@ msgstr "Mark all as read"
msgid "Mark as read"
msgstr "Mark as read"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr "Marked all as read"
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr "Maybe later"
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Media"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Media that may be disturbing or inappropriate for some audiences."
@@ -4246,23 +4657,27 @@ msgstr "Mentioned users"
msgid "Mentions"
msgstr "Mentions"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Menu"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Message {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Message deleted"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Message deleted"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr "Message from @{0}: {1}"
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Message from server: {0}"
@@ -4276,7 +4691,11 @@ msgstr "Message input field"
msgid "Message is too long"
msgstr "Message is too long"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr "Message options"
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Messages"
@@ -4295,10 +4714,10 @@ msgstr "Misleading Account"
msgid "Misleading Post"
msgstr "Misleading Post"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Moderation"
@@ -4320,22 +4739,22 @@ msgstr "Moderation list by <0/>"
msgid "Moderation list by you"
msgstr "Moderation list by you"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
msgstr "Moderation list created"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
msgstr "Moderation list updated"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Moderation lists"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Moderation Lists"
@@ -4343,11 +4762,11 @@ msgstr "Moderation Lists"
msgid "moderation settings"
msgstr "moderation settings"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "Moderation states"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Moderation tools"
@@ -4356,7 +4775,7 @@ msgstr "Moderation tools"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Moderator has chosen to set a general warning on the content."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "More"
@@ -4365,9 +4784,9 @@ msgstr "More"
msgid "More feeds"
msgstr "More feeds"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "More options"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "Most-liked first"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Most-liked replies first"
@@ -4400,14 +4819,14 @@ msgstr "Mute"
msgid "Mute {tag}"
msgstr "Mute {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "Mute account"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Mute accounts"
@@ -4420,11 +4839,11 @@ msgstr "Mute conversation"
msgid "Mute in:"
msgstr "Mute in:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Mute list"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "Mute these accounts?"
@@ -4452,26 +4871,26 @@ msgstr "Mute this word in tags only"
msgid "Mute this word until you unmute it"
msgstr "Mute this word until you unmute it"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Mute thread"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Mute words & tags"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Muted accounts"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Muted Accounts"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
@@ -4479,11 +4898,11 @@ msgstr "Muted accounts have their posts removed from your feed and from your not
msgid "Muted by \"{0}\""
msgstr "Muted by \"{0}\""
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Muted words & tags"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
@@ -4492,15 +4911,15 @@ msgstr "Muting is private. Muted accounts can interact with you, but you will no
msgid "My Birthday"
msgstr "My Birthday"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "My Feeds"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Name"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "Name is required"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Nature"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "Navigate to {0}"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr "Navigate to starter pack"
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "Navigates to the next screen"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Navigates to your profile"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "Need to change it?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "Need to report a copyright violation?"
@@ -4547,30 +4971,43 @@ msgstr "Need to report a copyright violation?"
msgid "Never lose access to your followers or data."
msgstr "Never lose access to your followers or data."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "Nevermind, create a handle for me"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "New"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "New"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "New chat"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr "New email address"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr "New Feature"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "New handle"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "New list"
@@ -4578,7 +5015,7 @@ msgstr "New list"
msgid "New messages"
msgstr "New messages"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "New Moderation List"
@@ -4590,12 +5027,12 @@ msgstr "New password"
msgid "New Password"
msgstr "New Password"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "New post"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "New post"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "New Post"
@@ -4613,19 +5050,20 @@ msgstr "New Post"
msgid "New user info dialog"
msgstr "New user info dialogue"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "New User List"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "Newest replies first"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "News"
@@ -4655,11 +5093,15 @@ msgstr "Next image"
msgid "No app passwords yet"
msgstr "No app passwords yet"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "No DNS Panel"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr "No expiry set"
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "No featured GIFs found. There may be an issue with Tenor."
@@ -4668,21 +5110,25 @@ msgstr "No featured GIFs found. There may be an issue with Tenor."
msgid "No feeds found. Try searching for something else."
msgstr "No feeds found. Try searching for something else."
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr "No image"
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "No likes yet"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "No longer following {0}"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "No messages yet"
@@ -4711,31 +5157,38 @@ msgstr "No quotes yet"
msgid "No reposts yet"
msgstr "No reposts yet"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "No result"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "No results"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr "No results for \"{0}\"."
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "No results found"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "No results found for \"{query}\""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "No results found for {query}"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr "No results."
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "No search results found for \"{search}\"."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Nobody"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "Nobody has liked this yet. Maybe you should be the first!"
@@ -4775,19 +5227,15 @@ msgstr "Non-sexual Nudity"
msgid "Not followed by anyone you're following"
msgstr "Not followed by anyone you're following"
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "Not Found"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "Not right now"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Note about sharing"
@@ -4795,7 +5243,7 @@ msgstr "Note about sharing"
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 "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."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Nothing here"
@@ -4803,7 +5251,7 @@ msgstr "Nothing here"
msgid "Notification filters"
msgstr "Notification filters"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Notification settings"
@@ -4820,11 +5268,11 @@ msgstr "Notification sounds"
msgid "Notification Sounds"
msgstr "Notification Sounds"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Notifications"
@@ -4832,12 +5280,12 @@ msgstr "Notifications"
msgid "now"
msgstr "now"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Now"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Nudity"
@@ -4859,21 +5307,23 @@ msgstr "Oh no!"
msgid "Oh no! Something went wrong."
msgstr "Oh no! Something went wrong."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "Okay"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "Oldest replies first"
@@ -4881,19 +5331,19 @@ msgstr "Oldest replies first"
msgid "on<0><1/><2><3/>2>0>"
msgstr "on<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Onboarding reset"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "One or more GIFs is missing alt text."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "One or more images is missing alt text."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "One or more videos is missing alt text."
@@ -4905,11 +5355,11 @@ msgstr "Only .jpg and .png files are supported"
msgid "Only {0} can reply."
msgstr "Only {0} can reply."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Only contains letters, numbers and hyphens"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "Only image files are supported"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "Oops, something went wrong!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "Oops!"
@@ -4935,67 +5385,80 @@ msgstr "Oops!"
msgid "Open"
msgstr "Open"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "Open {name} profile shortcut menu"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Open avatar creator"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "Open conversation options"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "Open drawer menu"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Open emoji picker"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "Open feed info screen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "Open feed options menu"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr "Open full emoji list"
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "Open link to {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "Open message options"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "Open moderation debug page"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Open muted words and tags settings"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr "Open pack"
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "Open post options menu"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr "Open profile"
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr "Open share menu"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "Open starter pack menu"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Open storybook page"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Open system log"
@@ -5015,19 +5478,19 @@ msgstr "Opens a dialogue to choose who can reply to this thread"
msgid "Opens additional details for a debug entry"
msgstr "Opens additional details for a debug entry"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
msgstr "Opens alt text dialogue"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Opens camera on device"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
msgstr "Opens captions and alt text dialogue"
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr "Opens change handle dialogue"
@@ -5039,7 +5502,7 @@ msgstr "Opens composer"
msgid "Opens device photo gallery"
msgstr "Opens device photo gallery"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr "Opens emoji picker"
@@ -5057,7 +5520,7 @@ msgstr "Opens flow to sign in to your existing Bluesky account"
msgid "Opens GIF select dialog"
msgstr "Opens GIF select dialogue"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr "Opens helpdesk in browser"
@@ -5065,6 +5528,10 @@ msgstr "Opens helpdesk in browser"
msgid "Opens list of invite codes"
msgstr "Opens list of invite codes"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr "Opens live status dialogue"
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Opens password reset form"
@@ -5073,12 +5540,12 @@ msgstr "Opens password reset form"
msgid "Opens the linked website"
msgstr "Opens the linked website"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Opens this profile"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Opens video picker"
@@ -5121,11 +5588,11 @@ msgstr "OTA status: None available"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Other"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Other account"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Page Not Found"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "Pause"
msgid "Pause video"
msgstr "Pause video"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "People"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "People followed by @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "People following @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "Permission to access camera roll is required."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "Permission to access camera roll was denied. Please enable it in your system settings."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr "Permission to access your photo library was denied. Please enable it in your system settings."
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "Pets"
msgid "Photography"
msgstr "Photography"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Pictures meant for adults."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr "Pin"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "Pin feed"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr "Pin the trending videos feed to your home screen for easy access"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr "Pin Feed"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Pin to home"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Pin to Home"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Pin to your profile"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Pinned"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "Pinned {0} to Home"
@@ -5263,7 +5722,7 @@ msgstr "Pinned {0} to Home"
msgid "Pinned Feeds"
msgstr "Pinned Feeds"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "Pinned to your feeds"
@@ -5302,24 +5761,28 @@ msgstr "Plays the GIF"
msgid "Plays the video"
msgstr "Plays the video"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr "Please add any content warning labels that are applicable for the media you are posting."
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Please choose your handle."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Please choose your password."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Please complete the verification captcha."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added and it will soon be removed."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr "Please double-check that you have entered your email address correctly."
@@ -5335,19 +5798,41 @@ msgstr "Please enter a password. It must be at least 8 characters long."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Please enter a unique name for this app password or use our randomly generated one."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr "Please enter a valid code."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr "Please enter a valid email address."
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Please enter a valid word, tag or phrase to mute"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr "Please enter the code we sent to <0>{0}0> below."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr "Please enter the security code we sent to your previous email address."
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Please enter your email."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Please enter your invite code."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr "Please enter your new email address."
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr "Please enter your password"
@@ -5381,24 +5866,25 @@ msgstr "Please select a reason for this report"
msgid "Please sign in as @{0}"
msgstr "Please sign in as @{0}"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr "Please verify your email"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Please Verify Your Email"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Politics"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr "Popular videos in your network."
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Porn"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Post"
@@ -5408,23 +5894,23 @@ msgctxt "description"
msgid "Post"
msgstr "Post"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Post All"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "Post by {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "Post by @{0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
msgstr "Post deleted"
@@ -5433,7 +5919,7 @@ msgstr "Post deleted"
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Post failed to upload. Please check your Internet connection and try again."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr "Post has been deleted"
@@ -5455,7 +5941,7 @@ msgstr "Post Hidden by You"
msgid "Post interaction settings"
msgstr "Post interaction settings"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr "Post Interaction Settings"
@@ -5483,8 +5969,9 @@ msgctxt "toast"
msgid "Post unpinned"
msgstr "Post unpinned"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Posts"
@@ -5524,7 +6011,7 @@ msgstr "Press to view followers of this account that you also follow"
msgid "Previous image"
msgstr "Previous image"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Primary Language"
@@ -5537,31 +6024,31 @@ msgstr "Prioritise your Follows"
msgid "Priority notifications"
msgstr "Priority notifications"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Privacy"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "Privacy and security"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Privacy and Security"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Privacy Policy"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Processing video..."
@@ -5570,20 +6057,20 @@ msgstr "Processing video..."
msgid "Processing..."
msgstr "Processing..."
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "profile"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Profile"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
msgstr "Profile updated"
@@ -5600,6 +6087,26 @@ msgstr "Public, shareable lists of users to mute or block in bulk."
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "Public, shareable lists which can be used to drive feeds."
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr "Publish post"
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr "Publish posts"
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr "Publish replies"
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr "Publish reply"
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "QR code copied to your clipboard!"
@@ -5612,25 +6119,25 @@ msgstr "QR code has been downloaded!"
msgid "QR code saved to your camera roll!"
msgstr "QR code saved to your camera roll!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Quote post"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "Quote post was re-attached"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "Quote post was successfully detached"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "Quote posts disabled"
@@ -5642,39 +6149,48 @@ msgstr "Quote settings"
msgid "Quotes"
msgstr "Quotes"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "Quotes of this post"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Random (aka \"Poster's Roulette\")"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "Re-attach quote"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr "React with {emoji}"
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Reactivate your account"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr "Read blog post"
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr "Read less"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr "Read more"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Read the Bluesky blog"
@@ -5697,11 +6213,11 @@ msgstr "Reason for appeal"
msgid "Reason:"
msgstr "Reason:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Recent Searches"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "Recommended"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "Reconnect"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr "Reject"
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr "Reject chat request"
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Reload conversations"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Remove"
msgid "Remove {displayName} from starter pack"
msgstr "Remove {displayName} from starter pack"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr "Remove {historyItem}"
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Remove account"
@@ -5752,13 +6268,13 @@ msgstr "Remove account"
msgid "Remove attachment"
msgstr "Remove attachment"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Remove Avatar"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "Remove Banner"
@@ -5776,24 +6292,25 @@ msgstr "Remove feed"
msgid "Remove feed?"
msgstr "Remove feed?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Remove from my feeds"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "Remove from quick access?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "Remove from saved feeds"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr "Remove from your feeds?"
@@ -5802,11 +6319,16 @@ msgstr "Remove from your feeds?"
msgid "Remove image"
msgstr "Remove image"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr "Remove live status"
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Remove mute word from your list"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Remove profile"
@@ -5814,12 +6336,12 @@ msgstr "Remove profile"
msgid "Remove quote"
msgstr "Remove quote"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Remove repost"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Remove subtitle file"
@@ -5827,6 +6349,21 @@ msgstr "Remove subtitle file"
msgid "Remove this feed from your saved feeds"
msgstr "Remove this feed from your saved feeds"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr "Remove user from list"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr "Remove verification"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr "Remove your verification for this account?"
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "Removed by author"
@@ -5835,7 +6372,7 @@ msgstr "Removed by author"
msgid "Removed by you"
msgstr "Removed by you"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Removed from list"
@@ -5845,19 +6382,18 @@ msgid "Removed from my feeds"
msgstr "Removed from my feeds"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Removed from saved feeds"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Removed from your feeds"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr "Removes profile from search history"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr "Removed verification"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
@@ -5868,7 +6404,7 @@ msgstr "Removes quoted post"
msgid "Replace with Discover"
msgstr "Replace with Discover"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Replies"
@@ -5880,12 +6416,13 @@ msgstr "Replies disabled"
msgid "Replies to this post are disabled."
msgstr "Replies to this post are disabled."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Reply"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Reply ({0, plural, one {# reply} other {# replies}})"
@@ -5907,86 +6444,86 @@ msgstr "Reply settings"
msgid "Reply settings are chosen by the author of the thread"
msgstr "Reply settings are chosen by the author of the thread"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "Reply sorting"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Reply to <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Reply to a blocked post"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "Reply to a post"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Reply to you"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
msgstr "Reply visibility updated"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "Reply was successfully hidden"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Report"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "Report account"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Report conversation"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "Report dialogue"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Report feed"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
-msgstr "Report List"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
+msgstr "Report list"
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Report message"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Report post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "Report starter pack"
@@ -6030,25 +6567,26 @@ msgstr "Report this starter pack"
msgid "Report this user"
msgstr "Report this user"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Repost"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Repost"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Repost ({0, plural, one {# repost} other {# reposts}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Repost or quote post"
@@ -6056,27 +6594,27 @@ msgstr "Repost or quote post"
msgid "Reposted By"
msgstr "Reposted By"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "Reposted by {0}"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "Reposted by <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "Reposted by you"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "Reposts of this post"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "Request Change"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr "Request change"
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6088,11 +6626,11 @@ msgstr "Request Code"
msgid "Require alt text before posting"
msgstr "Require alt text before posting"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr "Require an email code to sign in to your account."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Required for this provider"
@@ -6100,13 +6638,19 @@ msgstr "Required for this provider"
msgid "Required in your region"
msgstr "Required in your region"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr "Resend"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "Resend email"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "Resend Email"
@@ -6123,8 +6667,8 @@ msgstr "Reset code"
msgid "Reset Code"
msgstr "Reset Code"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "Reset onboarding state"
@@ -6141,16 +6685,16 @@ msgstr "Retries signing in"
msgid "Retries the last action, which errored out"
msgstr "Retries the last action, which errored out"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "Retries the last action, which errored out"
msgid "Retry"
msgstr "Retry"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr "Retry loading report options"
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Return to previous page"
@@ -6175,11 +6719,11 @@ msgstr "Return to previous page"
msgid "Returns to home page"
msgstr "Returns to home page"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "Returns to previous page"
@@ -6190,24 +6734,26 @@ msgstr "Returns to the previous step"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Save"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Save"
@@ -6221,12 +6767,12 @@ msgstr "Save birthday"
msgid "Save changes"
msgstr "Save changes"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Save Changes"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Save image"
@@ -6234,16 +6780,16 @@ msgstr "Save image"
msgid "Save image crop"
msgstr "Save image crop"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Save new handle"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "Save QR code"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Save to my feeds"
@@ -6251,16 +6797,12 @@ msgstr "Save to my feeds"
msgid "Saved Feeds"
msgstr "Saved Feeds"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "Saved to your camera roll"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "Saved to your feeds"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "Saves any changes to your profile"
@@ -6270,8 +6812,8 @@ msgstr "Saves image crop settings"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "Say hello!"
@@ -6280,45 +6822,42 @@ msgstr "Say hello!"
msgid "Science"
msgstr "Science"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "Scroll to top"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Search"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Search @{0}'s posts"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "Search by name or interest"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "Search feeds"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "Search for \"{interestsDisplayName}\"{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Search for \"{query}\""
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "Search for \"{searchText}\""
@@ -6326,29 +6865,33 @@ msgstr "Search for \"{searchText}\""
msgid "Search for feeds that you want to suggest to others."
msgstr "Search for feeds that you want to suggest to others."
-#: src/view/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr "Search for more accounts"
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr "Search for more feeds"
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
msgstr "Search for posts, users or feeds"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Search for users"
-
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "Search GIFs"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr "Search my posts"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr "Search posts"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Search profiles"
@@ -6356,16 +6899,20 @@ msgstr "Search profiles"
msgid "Search Tenor"
msgstr "Search Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr "Search..."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr "Searches for profiles"
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr "Security step required"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Security Step Required"
@@ -6385,7 +6932,7 @@ msgstr "See #{tag} posts"
msgid "See #{tag} posts by user"
msgstr "See #{tag} posts by user"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "See jobs at Bluesky"
@@ -6405,6 +6952,10 @@ msgstr "Select a colour"
msgid "Select account"
msgstr "Select account"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr "Select an app language"
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Select an avatar"
@@ -6413,10 +6964,22 @@ msgstr "Select an avatar"
msgid "Select an emoji"
msgstr "Select an emoji"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr "Select an option"
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr "Select app language"
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Select content languages"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr "Select duration"
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Select from an existing account"
@@ -6433,15 +6996,15 @@ msgstr "Select GIF \"{0}\""
msgid "Select how long to mute this word for."
msgstr "Select how long to mute this word for."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Select language..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Select languages"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr "Select moderation service"
@@ -6449,6 +7012,10 @@ msgstr "Select moderation service"
msgid "Select moderator"
msgstr "Select moderator"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr "Select primary language"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "Select the {emojiName} emoji as your avatar"
msgid "Select the moderation service(s) to report to"
msgstr "Select the moderation service(s) to report to"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Select video"
@@ -6470,23 +7037,24 @@ msgstr "Select video"
msgid "Select what content this mute word should apply to."
msgstr "Select what content this mute word should apply to."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr "Select which language to use for the app's user interface."
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Select your date of birth"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "Select your interests from the options below"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "Select your preferred language for translations in your feed."
@@ -6498,19 +7066,17 @@ msgstr "Selects option {0} of {numItems}"
msgid "Send a neat website!"
msgstr "Send a neat website!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr "Send Confirmation"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
+msgstr "Send confirmation"
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Send confirmation email"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Send Confirmation Email"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Send email"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Send Email"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Send feedback"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Send message"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr "Send post to {name}"
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Send post to..."
@@ -6544,17 +7114,20 @@ msgstr "Send report"
msgid "Send report to {0}"
msgstr "Send report to {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr "Send report to {title}"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Send verification email"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Send via direct message"
@@ -6570,7 +7143,7 @@ msgstr "Server address"
msgid "Set app icon to {0}"
msgstr "Set app icon to {0}"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "Set birthdate"
@@ -6586,10 +7159,10 @@ msgstr "Set up your account"
msgid "Sets email for password reset"
msgstr "Sets email for password reset"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Settings"
@@ -6598,7 +7171,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Settings saved"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Sexual activity or erotic nudity."
@@ -6606,21 +7179,15 @@ msgstr "Sexual activity or erotic nudity."
msgid "Sexually Suggestive"
msgstr "Sexually Suggestive"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Share"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Share"
@@ -6633,15 +7200,19 @@ msgstr "Share a cool story!"
msgid "Share a fun fact!"
msgstr "Share a fun fact!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Share anyway"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr "Share author DID"
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "Share link"
@@ -6650,32 +7221,46 @@ msgstr "Share link"
msgid "Share Link"
msgstr "Share Link"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "Share link dialogue"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr "Share post at:// URI"
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Share QR code"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "Share this feed"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "Share this starter pack"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "Share this starter pack and help people join your community on Bluesky."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr "Share via..."
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "Share your favourite feed!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "Shared Preferences Tester"
@@ -6685,7 +7270,7 @@ msgstr "Shares the linked website"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Show"
@@ -6696,8 +7281,8 @@ msgstr "Show alt text"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Show anyway"
@@ -6718,8 +7303,8 @@ msgstr "Show customisation options"
msgid "Show hidden replies"
msgstr "Show hidden replies"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "Show less like this"
@@ -6727,14 +7312,14 @@ msgstr "Show less like this"
msgid "Show list anyway"
msgstr "Show list anyway"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Show More"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Show more like this"
@@ -6752,7 +7337,7 @@ msgstr "Show quote posts"
msgid "Show replies"
msgstr "Show replies"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "Show replies as"
@@ -6764,8 +7349,8 @@ msgstr "Show replies as threaded"
msgid "Show replies by people you follow before all other replies"
msgstr "Show replies by people you follow before all other replies"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "Show reply for everyone"
@@ -6787,11 +7372,11 @@ msgstr "Show warning"
msgid "Show warning and filter from feeds"
msgstr "Show warning and filter from feeds"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr "Shows information about when this post was created"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr "Shows other accounts you can switch to"
@@ -6809,8 +7394,8 @@ msgstr "Shows the content"
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr "Shows the content"
msgid "Sign in"
msgstr "Sign in"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Sign in as {0}"
@@ -6826,16 +7411,16 @@ msgstr "Sign in as {0}"
msgid "Sign in as..."
msgstr "Sign in as..."
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr "Sign in or create an account"
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "Sign in or create your account to join the conversation!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "Sign in or sign up"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "Sign in to account that is not listed"
@@ -6843,15 +7428,15 @@ msgstr "Sign in to account that is not listed"
msgid "Sign in to Bluesky or create a new account"
msgstr "Sign in to Bluesky or create a new account"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Sign out"
@@ -6859,8 +7444,8 @@ msgstr "Sign out"
msgid "Sign Out"
msgstr "Sign Out"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "Sign out?"
@@ -6874,11 +7459,6 @@ msgstr "Sign-in Required"
msgid "Signed in as @{0}"
msgstr "Signed in as @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "Signup without a starter pack"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Similar accounts"
@@ -6896,12 +7476,21 @@ msgstr "Skip this flow"
msgid "Smaller"
msgstr "Smaller"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr "Snoozes the reminder"
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Software Dev"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr "Some of your verifications are invalid."
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "Some other feeds you might like"
@@ -6909,23 +7498,31 @@ msgstr "Some other feeds you might like"
msgid "Some people can reply"
msgstr "Some people can reply"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr "Someone reacted {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr "Someone reacted {0} to {1}"
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Something wasn't quite right with the data you're trying to report. Please contact support."
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Something went wrong"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Something went wrong, please try again"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Something went wrong, please try again."
@@ -6934,16 +7531,16 @@ msgstr "Something went wrong, please try again."
msgid "Something went wrong!"
msgstr "Something went wrong!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr "Something went wrong. Please try again."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "Something wrong? Let us know."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "Sorry! Your session expired. Please sign in again."
@@ -6978,34 +7575,39 @@ msgstr "Spam; excessive mentions or replies"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Sports"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr "Start a conversation, and it will appear here."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Start a new chat"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "Start adding people"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "Start adding people!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Start chat with {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Starter Pack"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "Starter pack by {0}"
@@ -7013,38 +7615,39 @@ msgstr "Starter pack by {0}"
msgid "Starter pack by <0/>"
msgstr "Starter pack by <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "Starter pack by you"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "Starter pack is invalid"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "Starter Packs"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Starter packs let you easily share your favourite feeds and people with your friends."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Status Page"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "Step {0} of {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "Storage cleared, you need to restart the app now."
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "Storybook"
@@ -7063,46 +7666,51 @@ msgstr "Submit appeal"
msgid "Submit Appeal"
msgstr "Submit Appeal"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr "Submit report"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Subscribe"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "Subscribe to @{0} to use these labels:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "Subscribe to Labeller"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "Subscribe to this labeller"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "Subscribe to this list"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "Success!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
-msgstr "Suggested accounts"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr "Successfully verified"
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
+msgstr "Suggested Accounts"
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Suggested for you"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Suggestive"
@@ -7116,16 +7724,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Sunset"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Support"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Switch account"
@@ -7134,11 +7742,11 @@ msgstr "Switch account"
msgid "Switch Account"
msgstr "Switch Account"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "Switch accounts"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr "Switch to {0}"
@@ -7149,9 +7757,9 @@ msgstr "Switch to {0}"
msgid "System"
msgstr "System"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "System log"
@@ -7159,6 +7767,12 @@ msgstr "System log"
msgid "Tags only"
msgstr "Tags only"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr "Tap to close context menu"
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Tap to dismiss"
@@ -7184,7 +7798,7 @@ msgstr "Tech"
msgid "Tell a joke!"
msgstr "Tell a joke!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "Tell us a bit about yourself"
@@ -7192,17 +7806,17 @@ msgstr "Tell us a bit about yourself"
msgid "Tell us a little more"
msgstr "Tell us a little more"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Terms"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Terms of Service"
@@ -7230,7 +7844,11 @@ msgstr "Text field"
msgid "Text input field"
msgstr "Text input field"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr "Thank you for your feedback! It has been sent to the feed operator."
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "Thank you! Your email has been successfully verified."
@@ -7242,7 +7860,7 @@ msgstr "Thank you. Your report has been sent."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Thanks, you have successfully verified your email address. You can close this dialogue."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "That contains the following:"
@@ -7250,10 +7868,10 @@ msgstr "That contains the following:"
msgid "That handle is already taken."
msgstr "That handle is already taken."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "That starter pack could not be found."
msgid "That's all, folks!"
msgstr "That's all, folks!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr "That's everything!"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "The account will be able to interact with you after unblocking."
@@ -7282,7 +7900,7 @@ msgstr "The app will be restarted"
msgid "The author of this thread has hidden this reply."
msgstr "The author of this thread has hidden this reply."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "The Bluesky web application"
@@ -7302,6 +7920,10 @@ msgstr "The Discover feed"
msgid "The Discover feed now knows what you like"
msgstr "The Discover feed now knows what you like"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr "The email address you entered is the same as your current email address."
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "The Privacy Policy has been moved to <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "The selected video is larger than 50 MB."
+msgid "The selected video is larger than 100 MB."
+msgstr "The selected video is larger than 100 MB."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "The server appears to be experiencing issues. Please try again in a few moments."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr "The subject of the context menu"
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
@@ -7367,15 +7994,15 @@ msgstr "There is no time limit for account deactivation, come back any time."
msgid "There was an issue connecting to Tenor."
msgstr "There was an issue connecting to Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "There was an issue contacting the server"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "There was an issue contacting the server, please check your internet connection and try again."
@@ -7388,11 +8015,12 @@ msgstr "There was an issue contacting your server"
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "There was an issue fetching notifications. Tap here to try again."
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "There was an issue fetching posts. Tap here to try again."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "There was an issue fetching the list. Tap here to try again."
@@ -7400,12 +8028,12 @@ msgstr "There was an issue fetching the list. Tap here to try again."
msgid "There was an issue fetching your app passwords"
msgstr "There was an issue fetching your app passwords"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "There was an issue fetching your lists. Tap here to try again."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "There was an issue fetching your service info"
@@ -7418,26 +8046,26 @@ msgstr "There was an issue removing this feed. Please check your internet connec
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "There was an issue sending your report. Please check your internet connection."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "There was an issue updating your feeds, please check your internet connection and try again."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "There was an issue! {0}"
@@ -7445,10 +8073,10 @@ msgstr "There was an issue! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "There was an issue. Please check your internet connection and try again."
@@ -7469,6 +8097,14 @@ msgstr "These settings only apply to the Following feed."
msgid "This {screenDescription} has been flagged:"
msgstr "This {screenDescription} has been flagged:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr "This account has a checkmark because it's been verified by trusted sources."
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr "This account has one or more attempted verifications, but it is not currently verified."
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "This account has requested that users sign in to view their profile."
@@ -7477,6 +8113,10 @@ msgstr "This account has requested that users sign in to view their profile."
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 "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user."
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr "This action can be undone at any time."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "This appeal will be sent to <0>{sourceName}0>."
@@ -7510,14 +8150,22 @@ msgstr "This content is not available because one of the users involved has bloc
msgid "This content is not viewable without a Bluesky account."
msgstr "This content is not viewable without a Bluesky account."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "This conversation is with a deleted or a deactivated account. Press for options"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr "This email is already associated with your account."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr "This feature is not available while using an app password. Please sign in with your main password."
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "This feature is not available while using an App Password. Please sign in with your main password."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "This feed is empty! You may need to follow more users or tune your language settings."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "This feed is empty."
@@ -7540,7 +8188,7 @@ msgstr "This feed is empty."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "This feed is no longer online. We are showing <0>Discover0> instead."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "This handle is reserved. Please try a different one."
@@ -7548,9 +8196,10 @@ msgstr "This handle is reserved. Please try a different one."
msgid "This information is not shared with other users."
msgstr "This information is not shared with other users."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "This is important in case you ever need to change your email or reset your password."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr "This is not a valid link"
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "This label was applied by the author."
msgid "This label was applied by you."
msgstr "This label was applied by you."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "This labeller hasn't declared what labels it publishes and may not be active."
@@ -7576,7 +8225,7 @@ msgstr "This list – created by <0>{0}0> – contains possible violations of
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "This list is empty."
@@ -7584,7 +8233,7 @@ msgstr "This list is empty."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
@@ -7592,28 +8241,29 @@ msgstr "This post claims to have been created on <0>{0}0>, but was first seen
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr "This post has an unknown type of threadgate on it. Your app may be out of date."
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "This post has been deleted."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "This post will be hidden from feeds and threads. This cannot be undone."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "This post's author has disabled quote posts."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies – both for yourself and others."
@@ -7621,10 +8271,14 @@ msgstr "This reply will be sorted into a hidden section at the bottom of your th
msgid "This service has not provided terms of service or a privacy policy."
msgstr "This service has not provided terms of service or a privacy policy."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "This should create a domain record at:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr "This user does not have a display name, and therefore cannot be verified."
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "This user doesn't have any followers."
@@ -7662,21 +8316,21 @@ msgstr "This user isn't following anyone."
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "This will delete \"{0}\" from your muted words. You can always add it back later."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "This will remove @{0} from the quick access list."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "This will remove your post from this quote post for all users, and replace it with a placeholder."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "Thread options"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Thread preferences"
@@ -7684,8 +8338,8 @@ msgstr "Thread preferences"
msgid "Thread Preferences"
msgstr "Thread Preferences"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "Threaded"
@@ -7693,7 +8347,7 @@ msgstr "Threaded"
msgid "Threaded mode"
msgstr "Threaded mode"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Threads Preferences"
@@ -7705,14 +8359,15 @@ msgstr "Time remaining: {0, plural, one {# second} other {# seconds}}"
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "To disable the email 2FA method, please verify your access to the email address."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr "To disable your email 2FA method, please verify your access to <0>{0}0>"
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "To upload videos to Bluesky, you must first verify your email."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "To whom would you like to send this report?"
@@ -7725,7 +8380,7 @@ msgstr "Today"
msgid "Toggle dropdown"
msgstr "Toggle dropdown"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "Toggle to enable or disable adult content"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr "Toggles the sound"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Top"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "Topic"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Translate"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "Trending"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "Trending Videos"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr "Trust emerges from relationships, communities and shared context, so we’re also enabling <0>trusted verifiers0>: organisations that can directly issue verification."
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "TV"
msgid "Two-factor authentication (2FA)"
msgstr "Two-factor authentication (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Type your desired username"
@@ -7783,18 +8440,11 @@ msgstr "Type your desired username"
msgid "Type your message here"
msgstr "Type your message here"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Type:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Unblock list"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Unmute list"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "Unable to connect. Please check your internet connection and try again."
@@ -7809,7 +8459,7 @@ msgstr "Unable to connect. Please check your internet connection and try again."
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Unable to contact your service. Please check your Internet connection."
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "Unable to delete"
@@ -7817,36 +8467,41 @@ msgstr "Unable to delete"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Unblock"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Unblock"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Unblock account"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "Unblock Account?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr "Unblock list"
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Undo repost"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Undo repost ({0, plural, one {# repost} other {# reposts}})"
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Unfollow"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "Unfollow {0}"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "Unfollow account"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr "Unfollows the user"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Unfortunately, none of your subscribed labellers support this report type."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr "Unknown verifier"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "Unlike"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Unlike ({0, plural, one {# like} other {# likes}})"
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr "Unmute"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Unmute"
@@ -7895,10 +8555,10 @@ msgstr "Unmute"
msgid "Unmute {tag}"
msgstr "Unmute {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "Unmute account"
@@ -7906,8 +8566,12 @@ msgstr "Unmute account"
msgid "Unmute conversation"
msgstr "Unmute conversation"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr "Unmute list"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Unmute thread"
@@ -7915,38 +8579,47 @@ msgstr "Unmute thread"
msgid "Unmute video"
msgstr "Unmute video"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Unpin"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "Unpin feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr "Unpin Feed"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Unpin from home"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "Unpin from profile"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Unpin moderation list"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "Unpinned {0} from Home"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Unpinned from your feeds"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr "Unsnooze email reminder"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Unsubscribe"
@@ -7955,7 +8628,7 @@ msgstr "Unsubscribe"
msgid "Unsubscribe from list"
msgstr "Unsubscribe from list"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Unsubscribe from this labeller"
@@ -7963,11 +8636,11 @@ msgstr "Unsubscribe from this labeller"
msgid "Unsubscribed from list"
msgstr "Unsubscribed from list"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "Unsupported video type"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "Unsupported video type: {0}"
@@ -7987,17 +8660,28 @@ msgstr "Update"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Update <0>{displayName}0> in Lists"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr "Update email"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Update to {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
+msgstr "Update your email"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr "Updating quote attachment failed"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Updating reply visibility failed"
@@ -8006,30 +8690,30 @@ msgstr "Updating reply visibility failed"
msgid "Updating..."
msgstr "Updating..."
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Upload a photo instead"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Upload a text file to:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Upload from Camera"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Upload from Files"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Upload from Library"
@@ -8042,7 +8726,7 @@ msgstr "Uploading images..."
msgid "Uploading link thumbnail..."
msgstr "Uploading link thumbnail..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "Uploading video..."
@@ -8050,22 +8734,22 @@ msgstr "Uploading video..."
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Use default provider"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Use in-app browser"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Use in-app browser to open links"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Use my default browser"
@@ -8119,12 +8803,12 @@ msgstr "User list by {0}"
msgid "User list by you"
msgstr "User list by you"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
msgstr "User list created"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
msgstr "User list updated"
@@ -8150,58 +8834,88 @@ msgstr "Users I follow"
msgid "Users in \"{0}\""
msgstr "Users in \"{0}\""
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "Users that have liked this content or profile"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr "Users you follow"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Value:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "Verified email required"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr "Verification failed, please try again."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr "Verification settings"
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr "Verification Settings"
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr "Verified by:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr "Verify account"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr "Verify code"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Verify DNS Record"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr "Verify email"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr "Verify email code"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Verify email dialogue"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Verify New Email"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Verify now"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Verify Text File"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr "Verify this account?"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Verify your email"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Verify Your Email"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Version {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "Video"
msgid "Video failed to process"
msgstr "Video failed to process"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr "Video Feed"
@@ -8224,14 +8938,15 @@ msgstr "Video from {0}: {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Video Games"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr "Video is paused"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr "Video is playing"
@@ -8239,11 +8954,11 @@ msgstr "Video is playing"
msgid "Video not found."
msgstr "Video not found."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Video settings"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Video uploaded"
@@ -8251,31 +8966,32 @@ msgstr "Video uploaded"
msgid "Video: {0}"
msgstr "Video: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "Videos"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
msgstr "Videos must be less than 3 minutes long"
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "View {0}'s avatar"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "View {0}'s profile"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "View {displayName}'s profile"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "View blocked user's profile"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "View debug entry"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "View details"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "View details for reporting a copyright violation"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "View full thread"
@@ -8308,18 +9024,17 @@ msgstr "View information about these labels"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "View more"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "View profile"
@@ -8331,7 +9046,11 @@ msgstr "View the avatar"
msgid "View the labeling service provided by @{0}"
msgstr "View the labelling service provided by @{0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr "View this user's verifications"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "View users who like this feed"
@@ -8339,11 +9058,11 @@ msgstr "View users who like this feed"
msgid "View video"
msgstr "View video"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "View your blocked accounts"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr "View your default post interaction settings"
@@ -8352,14 +9071,18 @@ msgstr "View your default post interaction settings"
msgid "View your feeds and explore more"
msgstr "View your feeds and explore more"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "View your moderation lists"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "View your muted accounts"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr "View your verifications"
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "Warn content"
msgid "Warn content and filter from feeds"
msgstr "Warn content and filter from feeds"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr "Watch now"
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "We couldn't find any results for that hashtag."
@@ -8400,7 +9128,7 @@ msgstr "We couldn't find any results for that hashtag."
msgid "We couldn't find any results for that topic."
msgstr "We couldn't find any results for that topic."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "We couldn't load this conversation"
@@ -8420,6 +9148,14 @@ msgstr "We hope you have a wonderful time. Remember, Bluesky is:"
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "We ran out of posts from your follows. Here's the latest from <0/>."
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr "We recommend selecting at least two interests."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "We were unable to determine if you are allowed to upload videos. Please try again."
@@ -8428,7 +9164,7 @@ msgstr "We were unable to determine if you are allowed to upload videos. Please
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "We were unable to load your birthdate preferences. Please try again."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:428
msgid "We were unable to load your configured labelers at this time."
msgstr "We were unable to load your configured labellers at this time."
@@ -8440,20 +9176,28 @@ msgstr "We weren't able to connect. Please try again to continue setting up your
msgid "We will let you know when your account is ready."
msgstr "We will let you know when your account is ready."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "We'll use this to help customise your experience."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "We're having network issues, try again"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "We're so excited to have you join us!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
@@ -8461,11 +9205,11 @@ msgstr "We're sorry, but we were unable to resolve this list. If this persists,
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "We're sorry, but we weren't able to load your muted words at this time. Please try again."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "We're sorry, but your search could not be completed. Please try again in a few minutes."
-#: src/view/com/composer/Composer.tsx:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "We're sorry! The post you are replying to has been deleted."
@@ -8474,7 +9218,7 @@ msgstr "We're sorry! The post you are replying to has been deleted."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "We're sorry! We can't find the page you were looking for."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "We're sorry! You can only subscribe to twenty labellers and you've reached your limit of twenty."
@@ -8494,16 +9238,16 @@ msgstr "What are your interests?"
msgid "What do you want to call your starter pack?"
msgstr "What do you want to call your starter pack?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "What people are posting about."
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "What's up?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr "When you tap on a check, you’ll see which organisations have granted verification."
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "Which languages are used in this post?"
@@ -8520,14 +9264,18 @@ msgstr "Who can interact with this post?"
msgid "Who can reply"
msgstr "Who can reply"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr "Who can verify?"
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "Whoops!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr "Whoops! Trending videos failed to load."
@@ -8574,11 +9322,11 @@ msgstr "Why should this user be reviewed?"
msgid "Write a message"
msgstr "Write a message"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Write post"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Write your reply"
@@ -8588,11 +9336,16 @@ msgstr "Write your reply"
msgid "Writers"
msgstr "Writers"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "Wrong DID returned from server. Received: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr "www.mylivestream.tv"
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Yes"
@@ -8601,15 +9354,15 @@ msgstr "Yes"
msgid "Yes, deactivate"
msgstr "Yes, deactivate"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Yes, delete this starter pack"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Yes, detach"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Yes, hide"
@@ -8625,14 +9378,31 @@ msgstr "Yesterday"
msgid "You"
msgstr "You"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr "You are a trusted verifier"
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
-msgstr ""
+msgstr "You are creating an account on"
#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
msgstr "You are in line."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr "You are Live"
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr "You are no longer live"
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr "You are not allowed to go live"
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "You are not allowed to upload videos."
@@ -8641,6 +9411,27 @@ msgstr "You are not allowed to upload videos."
msgid "You are not following anyone."
msgstr "You are not following anyone."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr "You are now live!"
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr "You are verified"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr "You can adjust your interests at any time from \"Content and media\" settings."
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr "You can set default interaction settings in <0>Settings → Moderation
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "You can update this later from your settings."
@@ -8682,7 +9472,7 @@ msgstr "You do not have any followers."
msgid "You don't follow any users who follow @{name}."
msgstr "You don't follow any users who follow @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr "You don't have any chat requests at the moment."
@@ -8736,24 +9526,24 @@ msgstr "You have muted this account."
msgid "You have muted this user"
msgstr "You have muted this user"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "You have no conversations yet. Start one!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "You have no feeds."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "You have no lists."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
@@ -8761,11 +9551,15 @@ msgstr "You have not muted any accounts yet. To mute an account, go to their pro
msgid "You have reached the end"
msgstr "You have reached the end"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr "You have successfully verified your email address. You can close this dialogue."
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "You have temporarily reached the limit for video uploads. Please try again later."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "You haven't created a starter pack yet!"
@@ -8787,22 +9581,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "You may appeal these labels if you feel they were placed in error."
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "You may only add up to 3 feeds"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "You may only select up to 4 images"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "You must be 13 years of age or older to sign up."
+msgid "You must be 13 years of age or older to create an account."
+msgstr "You must be 13 years of age or older to create an account."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "You must be following at least seven other people to generate a starter pack."
@@ -8810,28 +9604,40 @@ msgstr "You must be following at least seven other people to generate a starter
msgid "You must grant access to your photo library to save a QR code"
msgstr "You must grant access to your photo library to save a QR code"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "You must grant access to your photo library to save the image."
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "You must select at least one labeller for a report"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr "You need to verify your email address before you can enable email 2FA."
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "You previously deactivated @{0}."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr "You probably want to restart the app now."
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr "You reacted {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr "You reacted {0} to {1}"
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "You will be signed out of all your accounts."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "You will no longer receive notifications for this thread"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "You will now receive notifications for this thread"
@@ -8839,23 +9645,23 @@ msgstr "You will now receive notifications for this thread"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "You: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "You: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "You: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "You'll follow the suggested users and feeds once you finish creating your account!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "You'll follow the suggested users once you finish creating your account!"
@@ -8867,7 +9673,7 @@ msgstr "You'll follow these people and {0} others"
msgid "You'll follow these people right away"
msgstr "You'll follow these people right away"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "You'll receive an email at <0>{0}0> to verify it's you."
@@ -8901,6 +9707,10 @@ msgstr "You've found some people to follow"
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "You've reached the end of your feed! Find some more accounts to follow."
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr "You've reached the maximum number of requests allowed. Please try again later."
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "You've reached your daily limit for video uploads (too many bytes)"
@@ -8909,11 +9719,11 @@ msgstr "You've reached your daily limit for video uploads (too many bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "You've reached your daily limit for video uploads (too many videos)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "You've run out of videos to watch. Maybe it's a good time to take a break?"
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "Your account"
@@ -8941,7 +9751,7 @@ msgstr "Your account was found to be in violation of the <0>Bluesky Social Terms
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "Your birthdate"
@@ -8953,26 +9763,30 @@ msgstr "Your browser does not support the video format. Please try a different b
msgid "Your chats have been disabled"
msgstr "Your chats have been disabled"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "Your choice will be saved, but can be changed later in settings."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr "Your choice will be remembered for future links. You can change it at any time in settings."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Your email appears to be invalid."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "Your email has been updated but not verified. As a next step, please verify your new email."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Your email has not yet been verified. This is an important security step which we recommend."
@@ -8988,14 +9802,31 @@ msgstr "Your followers"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Your following feed is empty! Follow more users to see what's happening."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "Your full handle will be <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr "Your full username will be <0>@{0}0>"
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr "Your interests"
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr "Your interests have been updated!"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr "Your interests help us find what you like!"
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Your muted words"
@@ -9004,15 +9835,15 @@ msgstr "Your muted words"
msgid "Your password has been changed successfully!"
msgstr "Your password has been changed successfully!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr "Your password must be at least 8 characters long."
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "Your post has been published"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "Your posts have been published"
@@ -9024,14 +9855,22 @@ msgstr "Your posts, likes and blocks are public. Mutes are private."
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Your profile, posts, feeds and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
-#: src/view/com/composer/Composer.tsx:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Your reply has been published"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr "Your report will be sent to <0>{0}0>."
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Your report will be sent to the Bluesky Moderation Service"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr "Your selected interests help us serve you content you care about."
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr "Your verifications"
diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po
index 1f96e8a3ff..7f3d35dfce 100644
--- a/src/locale/locales/en/messages.po
+++ b/src/locale/locales/en/messages.po
@@ -13,16 +13,16 @@ msgstr ""
"Language-Team: \n"
"Plural-Forms: \n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr ""
@@ -74,9 +74,9 @@ msgstr ""
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:487
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -85,17 +85,17 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
@@ -103,14 +103,23 @@ msgstr ""
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr ""
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr ""
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -121,6 +130,14 @@ msgstr ""
msgid "{0} <0>in <1>text & tags1>0>"
msgstr ""
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr ""
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr ""
@@ -134,11 +151,16 @@ msgstr ""
msgid "{0} out of 50"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr ""
@@ -170,7 +192,7 @@ msgstr ""
msgid "{0}s"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -187,103 +209,184 @@ msgstr ""
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr ""
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr ""
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr ""
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -296,6 +399,34 @@ msgstr ""
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr ""
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr ""
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr ""
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr ""
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr ""
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr ""
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -306,11 +437,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr ""
@@ -338,7 +469,7 @@ msgstr ""
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr ""
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr ""
@@ -358,19 +489,28 @@ msgstr ""
msgid "7 days"
msgstr ""
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr ""
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr ""
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr ""
@@ -380,37 +520,37 @@ msgid "Accept Request"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr ""
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr ""
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:361
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
msgstr ""
@@ -424,33 +564,37 @@ msgstr ""
msgid "Account Muted by List"
msgstr ""
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr ""
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:374
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
msgstr ""
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr ""
@@ -468,8 +612,12 @@ msgstr ""
msgid "Add a content warning"
msgstr ""
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr ""
@@ -480,7 +628,7 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -488,18 +636,18 @@ msgstr ""
msgid "Add alt text"
msgstr ""
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr ""
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr ""
@@ -513,8 +661,12 @@ msgstr ""
msgid "Add App Password"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr ""
@@ -526,15 +678,23 @@ msgstr ""
msgid "Add muted words and tags"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr ""
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr ""
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr ""
@@ -547,16 +707,16 @@ msgstr ""
msgid "Add the default feed of only people you follow"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr ""
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:273
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr ""
@@ -564,7 +724,11 @@ msgstr ""
msgid "Add to my feeds"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr ""
@@ -573,22 +737,22 @@ msgstr ""
msgid "Added to my feeds"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr ""
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr ""
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr ""
@@ -596,30 +760,35 @@ msgstr ""
msgid "Adult content is disabled."
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr ""
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr ""
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr ""
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr ""
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr ""
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr ""
@@ -663,10 +832,10 @@ msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr ""
@@ -680,19 +849,18 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
msgstr ""
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:114
-msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr ""
@@ -708,7 +876,11 @@ msgstr ""
msgid "An error occurred while compressing the video."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr ""
@@ -721,16 +893,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr ""
@@ -738,12 +909,17 @@ msgstr ""
msgid "An error occurred while uploading the video."
msgstr ""
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr ""
@@ -753,13 +929,17 @@ msgstr ""
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr ""
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr ""
@@ -782,6 +962,10 @@ msgstr ""
msgid "Animated GIF"
msgstr ""
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -791,14 +975,14 @@ msgstr ""
msgid "Anybody can interact"
msgstr ""
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr ""
@@ -828,7 +1012,7 @@ msgstr ""
msgid "App passwords"
msgstr ""
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr ""
@@ -864,10 +1048,10 @@ msgstr ""
msgid "Appeal this decision"
msgstr ""
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr ""
@@ -876,12 +1060,12 @@ msgstr ""
msgid "Apply default recommended feeds"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr ""
@@ -889,15 +1073,15 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
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:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr ""
@@ -913,15 +1097,15 @@ msgstr ""
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr ""
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -929,7 +1113,7 @@ msgstr ""
msgid "Are you sure?"
msgstr ""
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -938,11 +1122,16 @@ msgstr ""
msgid "Art"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:495
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:497
+msgid "Assign topic for algo"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr ""
@@ -955,12 +1144,12 @@ msgstr ""
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -969,11 +1158,11 @@ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:129
#: src/screens/Login/LoginForm.tsx:310
#: src/screens/Login/LoginForm.tsx:316
-#: src/screens/Login/SetNewPasswordForm.tsx:164
-#: src/screens/Login/SetNewPasswordForm.tsx:170
+#: src/screens/Login/SetNewPasswordForm.tsx:168
+#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
@@ -983,58 +1172,59 @@ msgstr ""
msgid "Back to Chats"
msgstr ""
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr ""
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:757
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:642
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:644
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:752
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr ""
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr ""
@@ -1046,7 +1236,7 @@ msgstr ""
msgid "Block and/or delete this conversation"
msgstr ""
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr ""
@@ -1054,7 +1244,7 @@ msgstr ""
msgid "Block or report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr ""
@@ -1071,21 +1261,21 @@ msgstr ""
msgid "Blocked"
msgstr ""
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr ""
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:754
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 ""
@@ -1093,19 +1283,19 @@ msgstr ""
msgid "Blocked post."
msgstr ""
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr ""
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
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:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr ""
@@ -1114,7 +1304,7 @@ msgstr ""
msgid "Bluesky"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr ""
@@ -1140,7 +1330,7 @@ msgstr ""
msgid "Bluesky Social Terms of Service"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
@@ -1148,6 +1338,10 @@ msgstr ""
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr ""
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr ""
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr ""
@@ -1169,23 +1363,23 @@ msgstr ""
msgid "Books"
msgstr ""
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr ""
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr ""
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr ""
@@ -1206,20 +1400,26 @@ msgstr ""
msgid "Browse starter pack {displayName}"
msgstr ""
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr ""
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
@@ -1235,44 +1435,51 @@ msgstr ""
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr ""
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr ""
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:350
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1288,11 +1495,11 @@ msgstr ""
msgid "Cancel image crop"
msgstr ""
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr ""
@@ -1300,8 +1507,7 @@ msgstr ""
msgid "Cancel reactivation and sign out"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr ""
@@ -1309,24 +1515,23 @@ msgstr ""
msgid "Cancels opening the linked website"
msgstr ""
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:121
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:162
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:198
msgid "Cannot interact with a blocked user"
msgstr ""
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr ""
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr ""
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr ""
@@ -1339,46 +1544,41 @@ msgstr ""
msgid "Change app icon to \"{0}\""
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr ""
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr ""
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr ""
@@ -1386,20 +1586,20 @@ msgstr ""
msgid "Changes app icon"
msgstr ""
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr ""
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:455
msgid "Chat"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
msgstr ""
@@ -1409,7 +1609,7 @@ msgctxt "toast"
msgid "Chat muted"
msgstr ""
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr ""
@@ -1420,9 +1620,8 @@ msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:328
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr ""
@@ -1435,8 +1634,8 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:344
-#: src/screens/Messages/ChatList.tsx:368
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr ""
@@ -1453,7 +1652,7 @@ msgstr ""
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr ""
@@ -1461,7 +1660,7 @@ msgstr ""
msgid "Choose Feeds"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr ""
@@ -1469,10 +1668,6 @@ msgstr ""
msgid "Choose People"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr ""
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr ""
@@ -1485,27 +1680,31 @@ msgstr ""
msgid "Choose your account provider"
msgstr ""
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr ""
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr ""
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr ""
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr ""
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr ""
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr ""
@@ -1514,6 +1713,14 @@ msgstr ""
msgid "click here"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr ""
@@ -1526,7 +1733,7 @@ msgstr ""
msgid "Click to open tag menu for {tag}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr ""
@@ -1538,24 +1745,34 @@ msgstr ""
msgid "Clip 🐴 clop 🐴"
msgstr ""
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr ""
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr ""
@@ -1568,15 +1785,17 @@ msgid "Close bottom drawer"
msgstr ""
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr ""
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr ""
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr ""
@@ -1592,7 +1811,13 @@ msgstr ""
msgid "Close image viewer"
msgstr ""
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr ""
+
+#: src/components/Menu/index.tsx:344
msgid "Close this dialog"
msgstr ""
@@ -1600,8 +1825,12 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr ""
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr ""
@@ -1609,11 +1838,11 @@ msgstr ""
msgid "Closes viewer for header image"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr ""
@@ -1636,7 +1865,7 @@ msgstr ""
msgid "Comics"
msgstr ""
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr ""
@@ -1645,23 +1874,23 @@ msgstr ""
msgid "Complete onboarding and start using your account"
msgstr ""
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr ""
@@ -1673,23 +1902,17 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr ""
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr ""
@@ -1698,26 +1921,27 @@ msgstr ""
msgid "Confirm delete account"
msgstr ""
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr ""
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr ""
@@ -1725,22 +1949,22 @@ msgstr ""
msgid "Connecting..."
msgstr ""
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr ""
@@ -1748,15 +1972,15 @@ msgstr ""
msgid "Content Blocked"
msgstr ""
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr ""
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr ""
@@ -1777,16 +2001,16 @@ msgstr ""
msgid "Content warnings"
msgstr ""
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:91
msgid "Context menu backdrop, click to close the menu."
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr ""
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr ""
@@ -1795,7 +2019,7 @@ msgid "Continue thread..."
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr ""
@@ -1806,7 +2030,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr ""
@@ -1818,16 +2042,17 @@ msgstr ""
msgid "Copied"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:234
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:70
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:397
msgid "Copied to clipboard"
msgstr ""
@@ -1836,11 +2061,11 @@ msgstr ""
msgid "Copied!"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr ""
@@ -1848,13 +2073,13 @@ msgstr ""
msgid "Copy App Password"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr ""
@@ -1863,57 +2088,69 @@ msgstr ""
msgid "Copy code"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr ""
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:128
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:85
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88
msgid "Copy link to post"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:452
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454
msgid "Copy post text"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr ""
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr ""
@@ -1923,11 +2160,11 @@ msgstr ""
msgid "Could not leave chat"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr ""
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr ""
@@ -1939,28 +2176,28 @@ msgstr ""
msgid "Could not process your video"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr ""
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1968,7 +2205,7 @@ msgstr ""
msgid "Create account"
msgstr ""
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr ""
@@ -1977,11 +2214,16 @@ msgstr ""
msgid "Create an account"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr ""
@@ -1990,7 +2232,7 @@ msgstr ""
msgid "Create new account"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr ""
@@ -2045,17 +2287,17 @@ msgstr ""
msgid "Dark theme"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr ""
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr ""
@@ -2071,19 +2313,19 @@ msgstr ""
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr ""
@@ -2099,19 +2341,19 @@ msgstr ""
msgid "Delete app password?"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr ""
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr ""
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr ""
@@ -2119,19 +2361,19 @@ msgstr ""
msgid "Delete Conversation"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr ""
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr ""
@@ -2139,26 +2381,26 @@ msgstr ""
msgid "Delete my account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:682
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr ""
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:696
msgid "Delete this post?"
msgstr ""
@@ -2166,8 +2408,8 @@ msgstr ""
msgid "Deleted"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr ""
@@ -2175,20 +2417,20 @@ msgstr ""
msgid "Deleted post."
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:150
@@ -2196,27 +2438,27 @@ msgstr ""
msgid "Descriptive alt text"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:586
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596
msgid "Detach quote"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Detach quote post?"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
msgstr ""
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr ""
@@ -2228,6 +2470,15 @@ msgstr ""
msgid "Dim"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr ""
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr ""
@@ -2246,25 +2497,25 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr ""
@@ -2273,24 +2524,24 @@ msgstr ""
msgid "Discourage apps from showing my account to logged-out users"
msgstr ""
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr ""
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr ""
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr ""
@@ -2298,6 +2549,10 @@ msgstr ""
msgid "Dismiss getting started guide"
msgstr ""
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr ""
@@ -2307,27 +2562,27 @@ msgstr ""
msgid "Display larger alt text badges"
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr ""
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr ""
@@ -2339,37 +2594,45 @@ msgstr ""
msgid "Does not include nudity."
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2380,11 +2643,15 @@ msgstr ""
msgid "Done{extraText}"
msgstr ""
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr ""
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr ""
@@ -2405,23 +2672,23 @@ msgstr ""
msgid "Duration:"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr ""
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr ""
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr ""
@@ -2429,19 +2696,19 @@ msgstr ""
msgid "E.g. artistic nudes."
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr ""
@@ -2449,20 +2716,21 @@ msgstr ""
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr ""
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr ""
@@ -2470,31 +2738,41 @@ msgstr ""
msgid "Edit Feeds"
msgstr ""
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:676
msgid "Edit interaction settings"
msgstr ""
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr ""
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr ""
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr ""
@@ -2507,23 +2785,23 @@ msgstr ""
msgid "Edit post interaction settings"
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr ""
@@ -2531,15 +2809,15 @@ msgstr ""
msgid "Edit who can reply"
msgstr ""
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr ""
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr ""
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr ""
@@ -2552,9 +2830,8 @@ msgstr ""
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr ""
@@ -2575,19 +2852,16 @@ msgstr ""
msgid "Email Resent"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
msgstr ""
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
@@ -2600,8 +2874,8 @@ msgstr ""
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:117
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:122
msgid "Embed post"
msgstr ""
@@ -2609,12 +2883,13 @@ msgstr ""
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr ""
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr ""
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr ""
@@ -2622,12 +2897,12 @@ msgstr ""
msgid "Enable {0} only"
msgstr ""
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr ""
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:81
@@ -2652,34 +2927,34 @@ msgstr ""
msgid "Enable this source only"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr ""
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr ""
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr ""
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr ""
-#: src/screens/Login/SetNewPasswordForm.tsx:143
+#: src/screens/Login/SetNewPasswordForm.tsx:147
msgid "Enter a password"
msgstr ""
@@ -2688,12 +2963,13 @@ msgstr ""
msgid "Enter a word or tag"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
-msgid "Enter Code"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
+msgid "Enter Code"
msgstr ""
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
@@ -2704,7 +2980,7 @@ msgstr ""
msgid "Enter the code you received to change your password."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr ""
@@ -2712,20 +2988,20 @@ msgstr ""
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr ""
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr ""
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr ""
@@ -2741,7 +3017,11 @@ msgstr ""
msgid "Enters full screen"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr ""
@@ -2750,15 +3030,18 @@ msgstr ""
msgid "Error occurred while saving file"
msgstr ""
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr ""
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr ""
@@ -2810,30 +3093,22 @@ msgstr ""
msgid "Exits image view"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr ""
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr ""
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -2856,6 +3131,10 @@ msgstr ""
msgid "Expires in {0}"
msgstr ""
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2865,8 +3144,15 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:625
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:403
+msgid "Explore"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr ""
@@ -2874,8 +3160,8 @@ msgstr ""
msgid "Export My Data"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr ""
@@ -2889,17 +3175,22 @@ msgstr ""
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr ""
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr ""
@@ -2907,7 +3198,7 @@ msgstr ""
msgid "Failed to create app password. Please try again."
msgstr ""
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr ""
@@ -2916,35 +3207,37 @@ msgstr ""
msgid "Failed to create starter pack"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:203
msgid "Failed to delete post, please try again"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:243
+#: src/screens/Messages/ChatList.tsx:244
#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr ""
@@ -2956,12 +3249,14 @@ msgstr ""
msgid "Failed to load past messages"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr ""
@@ -2974,7 +3269,16 @@ msgstr ""
msgid "Failed to pin post"
msgstr ""
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr ""
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr ""
@@ -2986,20 +3290,39 @@ msgstr ""
msgid "Failed to save settings. Please try again."
msgstr ""
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr ""
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr ""
@@ -3014,20 +3337,24 @@ msgstr ""
msgid "Failed to upload video"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr ""
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr ""
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr ""
@@ -3035,26 +3362,26 @@ msgstr ""
msgid "Feed toggle"
msgstr ""
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:357
msgid "Feedback"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:289
msgctxt "toast"
msgid "Feedback sent!"
msgstr ""
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:227
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:519
msgid "Feeds"
msgstr ""
@@ -3062,13 +3389,13 @@ msgstr ""
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr ""
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
msgstr ""
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr ""
@@ -3084,11 +3411,11 @@ msgstr ""
msgid "Filter from feeds"
msgstr ""
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr ""
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr ""
@@ -3102,13 +3429,13 @@ msgstr ""
msgid "Find accounts to follow"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr ""
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
@@ -3140,11 +3467,11 @@ msgid "Flexible"
msgstr ""
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr ""
@@ -3154,19 +3481,15 @@ msgctxt "action"
msgid "Follow"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr ""
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3176,17 +3499,17 @@ msgstr ""
msgid "Follow 7 accounts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr ""
@@ -3196,10 +3519,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr ""
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr ""
@@ -3216,7 +3535,7 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr ""
@@ -3226,36 +3545,32 @@ msgid "Followers you know"
msgstr ""
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr ""
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr ""
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr ""
@@ -3293,6 +3608,10 @@ msgstr ""
msgid "For the best experience, we recommend using the theme font."
msgstr ""
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr ""
@@ -3319,7 +3638,7 @@ msgstr ""
msgid "From @{sanitizedAuthor}"
msgstr ""
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr ""
@@ -3328,28 +3647,30 @@ msgstr ""
msgid "Gallery"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:361
msgid "Get help"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
msgstr ""
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr ""
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr ""
@@ -3358,17 +3679,17 @@ msgstr ""
msgid "Glaring violations of law or terms of service"
msgstr ""
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
#: src/screens/Messages/Inbox.tsx:228
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr ""
@@ -3376,10 +3697,10 @@ msgstr ""
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr ""
@@ -3400,7 +3721,27 @@ msgstr ""
msgid "Go Home"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr ""
@@ -3419,8 +3760,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr ""
@@ -3429,21 +3770,21 @@ msgstr ""
msgid "Half way there!"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr ""
@@ -3456,7 +3797,7 @@ msgstr ""
msgid "Harassment, trolling, or intolerance"
msgstr ""
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr ""
@@ -3464,19 +3805,24 @@ msgstr ""
msgid "Hashtag {tag}"
msgstr ""
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr ""
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:370
msgid "Help"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr ""
@@ -3489,7 +3835,7 @@ msgstr ""
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr ""
@@ -3501,18 +3847,17 @@ msgstr ""
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:712
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr ""
@@ -3521,38 +3866,40 @@ msgstr ""
msgid "Hide customization options"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:549
msgid "Hide post for me"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:560
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
msgid "Hide reply for everyone"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:542
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548
msgid "Hide reply for me"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:707
msgid "Hide this post?"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:707
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
msgid "Hide this reply?"
msgstr ""
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr ""
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr ""
@@ -3561,10 +3908,15 @@ msgstr ""
msgid "Hide trending videos?"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr ""
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3590,7 +3942,7 @@ msgstr ""
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr ""
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr ""
@@ -3602,15 +3954,15 @@ msgstr ""
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/Navigation.tsx:627
-#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:620
+#: src/Navigation.tsx:640
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:429
msgid "Home"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr ""
@@ -3619,34 +3971,33 @@ msgstr ""
msgid "Hosting provider"
msgstr ""
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr ""
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr ""
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr ""
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr ""
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr ""
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr ""
@@ -3659,22 +4010,30 @@ msgstr ""
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:698
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr ""
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr ""
@@ -3696,8 +4055,21 @@ msgstr ""
msgid "Image"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr ""
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr ""
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr ""
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
@@ -3724,7 +4096,7 @@ msgstr ""
msgid "Incorrect username or password"
msgstr ""
-#: src/screens/Login/SetNewPasswordForm.tsx:131
+#: src/screens/Login/SetNewPasswordForm.tsx:133
msgid "Input code sent to your email for password reset"
msgstr ""
@@ -3732,7 +4104,7 @@ msgstr ""
msgid "Input confirmation code for account deletion"
msgstr ""
-#: src/screens/Login/SetNewPasswordForm.tsx:155
+#: src/screens/Login/SetNewPasswordForm.tsx:159
msgid "Input new password"
msgstr ""
@@ -3744,15 +4116,11 @@ msgstr ""
msgid "Input the code which has been emailed to you"
msgstr ""
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr ""
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr ""
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr ""
@@ -3761,11 +4129,11 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr ""
@@ -3781,11 +4149,11 @@ msgstr ""
msgid "Invite a Friend"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr ""
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr ""
@@ -3797,7 +4165,7 @@ msgstr ""
msgid "Invite codes: 1 available"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr ""
@@ -3809,7 +4177,7 @@ msgstr ""
msgid "Invites, but personal"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr ""
@@ -3817,19 +4185,19 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr ""
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr ""
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr ""
@@ -3852,7 +4220,7 @@ msgid "Labeled by the author."
msgstr ""
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:220
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr ""
@@ -3860,7 +4228,7 @@ msgstr ""
msgid "Labels added"
msgstr ""
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr ""
@@ -3876,13 +4244,13 @@ msgstr ""
msgid "Language selection"
msgstr ""
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr ""
@@ -3891,20 +4259,29 @@ msgid "Larger"
msgstr ""
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr ""
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr ""
@@ -3925,6 +4302,11 @@ msgstr ""
msgid "Learn more about this warning"
msgstr ""
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr ""
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3964,7 +4346,7 @@ msgstr ""
msgid "left to go."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr ""
@@ -3988,11 +4370,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:315
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -4005,17 +4388,16 @@ msgstr ""
msgid "Like 10 posts to train the Discover feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr ""
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr ""
@@ -4025,40 +4407,40 @@ msgstr ""
msgid "Liked By"
msgstr ""
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
-#: src/view/screens/Profile.tsx:226
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr ""
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr ""
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
msgstr ""
@@ -4076,7 +4458,7 @@ msgstr ""
msgid "List by you"
msgstr ""
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
msgstr ""
@@ -4085,35 +4467,35 @@ msgstr ""
msgid "List has been hidden"
msgstr ""
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr ""
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr ""
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
msgstr ""
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:221
-#: src/view/screens/Profile.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:534
msgid "Lists"
msgstr ""
@@ -4121,34 +4503,47 @@ msgstr ""
msgid "Lists blocking this user:"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr ""
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr ""
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr ""
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr ""
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr ""
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr ""
@@ -4156,12 +4551,12 @@ msgstr ""
msgid "Logged-out visibility"
msgstr ""
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:672
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr ""
@@ -4169,7 +4564,7 @@ msgstr ""
msgid "Long press to open tag menu for #{tag}"
msgstr ""
-#: src/screens/Login/SetNewPasswordForm.tsx:120
+#: src/screens/Login/SetNewPasswordForm.tsx:122
msgid "Looks like XXXXX-XXXXX"
msgstr ""
@@ -4185,7 +4580,11 @@ msgstr ""
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr ""
@@ -4193,11 +4592,15 @@ msgstr ""
msgid "Make sure this is where you intend to go!"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr ""
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr ""
@@ -4218,11 +4621,18 @@ msgstr ""
msgid "Marked all as read"
msgstr ""
-#: src/view/screens/Profile.tsx:224
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr ""
@@ -4238,23 +4648,27 @@ msgstr ""
msgid "Mentions"
msgstr ""
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:111
msgid "Menu"
msgstr ""
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr ""
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr ""
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr ""
@@ -4268,7 +4682,11 @@ msgstr ""
msgid "Message is too long"
msgstr ""
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr ""
+
+#: src/Navigation.tsx:635
msgid "Messages"
msgstr ""
@@ -4287,10 +4705,10 @@ msgstr ""
msgid "Misleading Post"
msgstr ""
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr ""
@@ -4312,22 +4730,22 @@ msgstr ""
msgid "Moderation list by you"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
msgstr ""
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr ""
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr ""
@@ -4335,11 +4753,11 @@ msgstr ""
msgid "moderation settings"
msgstr ""
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr ""
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr ""
@@ -4348,7 +4766,7 @@ msgstr ""
msgid "Moderator has chosen to set a general warning on the content."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr ""
@@ -4357,9 +4775,9 @@ msgstr ""
msgid "More feeds"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr ""
@@ -4368,8 +4786,8 @@ msgid "Most-liked first"
msgstr ""
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr ""
@@ -4392,14 +4810,14 @@ msgstr ""
msgid "Mute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:625
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:631
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr ""
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr ""
@@ -4412,11 +4830,11 @@ msgstr ""
msgid "Mute in:"
msgstr ""
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr ""
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr ""
@@ -4444,26 +4862,26 @@ msgstr ""
msgid "Mute this word until you unmute it"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:513
msgid "Mute thread"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:523
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:525
msgid "Mute words & tags"
msgstr ""
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr ""
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr ""
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr ""
@@ -4471,11 +4889,11 @@ msgstr ""
msgid "Muted by \"{0}\""
msgstr ""
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr ""
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr ""
@@ -4484,15 +4902,15 @@ msgstr ""
msgid "My Birthday"
msgstr ""
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr ""
@@ -4513,24 +4931,29 @@ msgid "Nature"
msgstr ""
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr ""
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr ""
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr ""
@@ -4539,30 +4962,43 @@ msgstr ""
msgid "Never lose access to your followers or data."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr ""
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr ""
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:351
-#: src/screens/Messages/ChatList.tsx:358
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr ""
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr ""
@@ -4570,10 +5006,11 @@ msgstr ""
msgid "New messages"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr ""
+#: src/screens/Login/SetNewPasswordForm.tsx:141
#: src/view/com/modals/ChangePassword.tsx:224
msgid "New password"
msgstr ""
@@ -4582,12 +5019,12 @@ msgstr ""
msgid "New Password"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:507
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr ""
@@ -4596,7 +5033,7 @@ msgctxt "action"
msgid "New post"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr ""
@@ -4605,19 +5042,20 @@ msgstr ""
msgid "New user info dialog"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr ""
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr ""
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr ""
@@ -4625,8 +5063,8 @@ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:143
#: src/screens/Login/LoginForm.tsx:343
#: src/screens/Login/LoginForm.tsx:350
-#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Login/SetNewPasswordForm.tsx:184
+#: src/screens/Login/SetNewPasswordForm.tsx:182
+#: src/screens/Login/SetNewPasswordForm.tsx:188
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165
#: src/screens/Signup/BackNextButtons.tsx:67
@@ -4647,11 +5085,15 @@ msgstr ""
msgid "No app passwords yet"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr ""
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr ""
@@ -4660,21 +5102,25 @@ msgstr ""
msgid "No feeds found. Try searching for something else."
msgstr ""
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr ""
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr ""
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr ""
@@ -4703,31 +5149,38 @@ msgstr ""
msgid "No reposts yet"
msgstr ""
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr ""
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr ""
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr ""
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr ""
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr ""
@@ -4742,7 +5195,6 @@ msgid "Nobody"
msgstr ""
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr ""
@@ -4767,19 +5219,12 @@ msgstr ""
msgid "Not followed by anyone you're following"
msgstr ""
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr ""
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:361
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr ""
@@ -4787,7 +5232,11 @@ msgstr ""
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr ""
-#: src/screens/Messages/ChatList.tsx:264
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:132
+msgid "Note: This post is only visible to logged-in users."
+msgstr ""
+
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr ""
@@ -4795,7 +5244,7 @@ msgstr ""
msgid "Notification filters"
msgstr ""
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr ""
@@ -4812,11 +5261,11 @@ msgstr ""
msgid "Notification Sounds"
msgstr ""
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:630
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:482
msgid "Notifications"
msgstr ""
@@ -4824,12 +5273,12 @@ msgstr ""
msgid "now"
msgstr ""
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr ""
@@ -4851,21 +5300,23 @@ msgstr ""
msgid "Oh no! Something went wrong."
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr ""
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr ""
@@ -4873,19 +5324,19 @@ msgstr ""
msgid "on<0><1/><2><3/>2>0>"
msgstr ""
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr ""
@@ -4897,11 +5348,11 @@ msgstr ""
msgid "Only {0} can reply."
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr ""
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr ""
@@ -4914,12 +5365,12 @@ msgid "Oops, something went wrong!"
msgstr ""
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr ""
@@ -4927,67 +5378,80 @@ msgstr ""
msgid "Open"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr ""
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr ""
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr ""
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr ""
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr ""
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr ""
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr ""
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr ""
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr ""
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr ""
@@ -5007,19 +5471,19 @@ msgstr ""
msgid "Opens additional details for a debug entry"
msgstr ""
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr ""
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr ""
@@ -5031,7 +5495,7 @@ msgstr ""
msgid "Opens device photo gallery"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr ""
@@ -5049,7 +5513,7 @@ msgstr ""
msgid "Opens GIF select dialog"
msgstr ""
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr ""
@@ -5057,6 +5521,10 @@ msgstr ""
msgid "Opens list of invite codes"
msgstr ""
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr ""
@@ -5065,12 +5533,12 @@ msgstr ""
msgid "Opens the linked website"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr ""
@@ -5113,11 +5581,11 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr ""
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr ""
@@ -5143,9 +5611,9 @@ msgid "Page Not Found"
msgstr ""
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5177,25 +5645,22 @@ msgstr ""
msgid "Pause video"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr ""
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr ""
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr ""
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr ""
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
msgstr ""
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
@@ -5211,43 +5676,38 @@ msgstr ""
msgid "Photography"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr ""
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr ""
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
msgstr ""
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:420
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427
msgid "Pin to your profile"
msgstr ""
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr ""
@@ -5255,7 +5715,7 @@ msgstr ""
msgid "Pinned Feeds"
msgstr ""
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr ""
@@ -5294,24 +5754,28 @@ msgstr ""
msgid "Plays the video"
msgstr ""
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr ""
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr ""
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr ""
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr ""
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr ""
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr ""
@@ -5327,19 +5791,41 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr ""
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr ""
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr ""
@@ -5373,24 +5859,25 @@ msgstr ""
msgid "Please sign in as @{0}"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr ""
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr ""
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr ""
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr ""
@@ -5400,23 +5887,23 @@ msgctxt "description"
msgid "Post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr ""
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:183
msgctxt "toast"
msgid "Post deleted"
msgstr ""
@@ -5425,7 +5912,7 @@ msgstr ""
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr ""
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr ""
@@ -5447,7 +5934,7 @@ msgstr ""
msgid "Post interaction settings"
msgstr ""
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr ""
@@ -5475,8 +5962,9 @@ msgctxt "toast"
msgid "Post unpinned"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:222
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr ""
@@ -5516,7 +6004,7 @@ msgstr ""
msgid "Previous image"
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr ""
@@ -5529,31 +6017,31 @@ msgstr ""
msgid "Priority notifications"
msgstr ""
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr ""
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr ""
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr ""
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:667
+#: src/view/shell/Drawer.tsx:668
msgid "Privacy Policy"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr ""
@@ -5562,20 +6050,20 @@ msgstr ""
msgid "Processing..."
msgstr ""
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:361
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:314
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:559
msgid "Profile"
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
msgstr ""
@@ -5592,6 +6080,26 @@ msgstr ""
msgid "Public, sharable lists which can be used to drive feeds."
msgstr ""
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr ""
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr ""
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr ""
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr ""
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr ""
@@ -5604,25 +6112,25 @@ msgstr ""
msgid "QR code saved to your camera roll!"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308
msgid "Quote post was re-attached"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was successfully detached"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr ""
@@ -5634,39 +6142,48 @@ msgstr ""
msgid "Quotes"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr ""
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595
msgid "Re-attach quote"
msgstr ""
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr ""
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr ""
@@ -5689,11 +6206,11 @@ msgstr ""
msgid "Reason:"
msgstr ""
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr ""
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr ""
@@ -5702,26 +6219,26 @@ msgid "Reconnect"
msgstr ""
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:247
+#: src/screens/Messages/ChatList.tsx:248
#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5731,12 +6248,12 @@ msgstr ""
msgid "Remove {displayName} from starter pack"
msgstr ""
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr ""
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr ""
@@ -5744,13 +6261,13 @@ msgstr ""
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr ""
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr ""
@@ -5768,16 +6285,16 @@ msgstr ""
msgid "Remove feed?"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr ""
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr ""
@@ -5786,7 +6303,7 @@ msgstr ""
msgid "Remove from saved feeds"
msgstr ""
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr ""
@@ -5795,11 +6312,16 @@ msgstr ""
msgid "Remove image"
msgstr ""
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr ""
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr ""
@@ -5807,12 +6329,12 @@ msgstr ""
msgid "Remove quote"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr ""
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr ""
@@ -5820,6 +6342,21 @@ msgstr ""
msgid "Remove this feed from your saved feeds"
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr ""
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr ""
@@ -5828,7 +6365,7 @@ msgstr ""
msgid "Removed by you"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr ""
@@ -5843,12 +6380,12 @@ msgstr ""
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr ""
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
msgstr ""
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
@@ -5860,7 +6397,7 @@ msgstr ""
msgid "Replace with Discover"
msgstr ""
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr ""
@@ -5872,12 +6409,13 @@ msgstr ""
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:267
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -5899,86 +6437,86 @@ msgstr ""
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr ""
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr ""
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr ""
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr ""
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339
msgctxt "toast"
msgid "Reply visibility updated"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgid "Reply was successfully hidden"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr ""
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr ""
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:653
msgid "Report post"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr ""
@@ -6022,25 +6560,26 @@ msgstr ""
msgid "Report this user"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr ""
@@ -6048,26 +6587,26 @@ msgstr ""
msgid "Reposted By"
msgstr ""
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr ""
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr ""
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
msgstr ""
#: src/view/com/modals/ChangePassword.tsx:253
@@ -6080,11 +6619,11 @@ msgstr ""
msgid "Require alt text before posting"
msgstr ""
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr ""
@@ -6092,13 +6631,19 @@ msgstr ""
msgid "Required in your region"
msgstr ""
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr ""
@@ -6107,6 +6652,7 @@ msgstr ""
msgid "Resend Verification Email"
msgstr ""
+#: src/screens/Login/SetNewPasswordForm.tsx:116
#: src/view/com/modals/ChangePassword.tsx:197
msgid "Reset code"
msgstr ""
@@ -6115,8 +6661,8 @@ msgstr ""
msgid "Reset Code"
msgstr ""
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr ""
@@ -6133,14 +6679,14 @@ msgstr ""
msgid "Retries the last action, which errored out"
msgstr ""
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:253
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
@@ -6153,13 +6699,13 @@ msgstr ""
msgid "Retry"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr ""
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr ""
@@ -6167,11 +6713,11 @@ msgstr ""
msgid "Returns to home page"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr ""
@@ -6182,24 +6728,26 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr ""
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr ""
@@ -6213,12 +6761,12 @@ msgstr ""
msgid "Save changes"
msgstr ""
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr ""
@@ -6226,16 +6774,16 @@ msgstr ""
msgid "Save image crop"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr ""
@@ -6243,16 +6791,12 @@ msgstr ""
msgid "Saved Feeds"
msgstr ""
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr ""
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr ""
@@ -6262,8 +6806,8 @@ msgstr ""
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr ""
@@ -6272,45 +6816,42 @@ msgstr ""
msgid "Science"
msgstr ""
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr ""
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr ""
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr ""
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr ""
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr ""
@@ -6318,29 +6859,33 @@ msgstr ""
msgid "Search for feeds that you want to suggest to others."
msgstr ""
-#: src/view/screens/Search/Search.tsx:875
-msgid "Search for posts, users, or feeds"
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr ""
+
+#: src/screens/Search/Shell.tsx:334
+msgid "Search for posts, users, or feeds"
msgstr ""
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr ""
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr ""
@@ -6348,16 +6893,20 @@ msgstr ""
msgid "Search Tenor"
msgstr ""
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr ""
@@ -6377,7 +6926,7 @@ msgstr ""
msgid "See #{tag} posts by user"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr ""
@@ -6397,6 +6946,10 @@ msgstr ""
msgid "Select account"
msgstr ""
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr ""
@@ -6405,10 +6958,22 @@ msgstr ""
msgid "Select an emoji"
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr ""
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr ""
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr ""
@@ -6425,15 +6990,15 @@ msgstr ""
msgid "Select how long to mute this word for."
msgstr ""
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr ""
@@ -6441,6 +7006,10 @@ msgstr ""
msgid "Select moderator"
msgstr ""
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6454,7 +7023,7 @@ msgstr ""
msgid "Select the moderation service(s) to report to"
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr ""
@@ -6462,23 +7031,24 @@ msgstr ""
msgid "Select what content this mute word should apply to."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr ""
@@ -6490,19 +7060,17 @@ msgstr ""
msgid "Send a neat website!"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr ""
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr ""
@@ -6512,15 +7080,19 @@ msgctxt "action"
msgid "Send Email"
msgstr ""
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:350
msgid "Send feedback"
msgstr ""
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr ""
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr ""
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr ""
@@ -6536,17 +7108,20 @@ msgstr ""
msgid "Send report to {0}"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:99
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:105
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:108
msgid "Send via direct message"
msgstr ""
@@ -6562,7 +7137,7 @@ msgstr ""
msgid "Set app icon to {0}"
msgstr ""
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr ""
@@ -6578,10 +7153,10 @@ msgstr ""
msgid "Sets email for password reset"
msgstr ""
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:572
msgid "Settings"
msgstr ""
@@ -6590,7 +7165,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr ""
@@ -6598,21 +7173,15 @@ msgstr ""
msgid "Sexually Suggestive"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:350
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr ""
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr ""
@@ -6625,15 +7194,17 @@ msgstr ""
msgid "Share a fun fact!"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:366
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:160
+msgid "Share author DID"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr ""
@@ -6642,32 +7213,46 @@ msgstr ""
msgid "Share Link"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:148
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:151
+msgid "Share post at:// URI"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr ""
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:115
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:118
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr ""
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr ""
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr ""
@@ -6677,7 +7262,7 @@ msgstr ""
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr ""
@@ -6688,8 +7273,8 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr ""
@@ -6710,8 +7295,8 @@ msgstr ""
msgid "Show hidden replies"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485
msgid "Show less like this"
msgstr ""
@@ -6719,14 +7304,14 @@ msgstr ""
msgid "Show list anyway"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:475
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:477
msgid "Show more like this"
msgstr ""
@@ -6744,7 +7329,7 @@ msgstr ""
msgid "Show replies"
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr ""
@@ -6756,8 +7341,8 @@ msgstr ""
msgid "Show replies by people you follow before all other replies"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:559
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:569
msgid "Show reply for everyone"
msgstr ""
@@ -6779,11 +7364,11 @@ msgstr ""
msgid "Show warning and filter from feeds"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr ""
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr ""
@@ -6801,8 +7386,8 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:353
+#: src/view/shell/bottom-bar/BottomBar.tsx:358
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6810,7 +7395,7 @@ msgstr ""
msgid "Sign in"
msgstr ""
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr ""
@@ -6818,16 +7403,16 @@ msgstr ""
msgid "Sign in as..."
msgstr ""
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr ""
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr ""
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr ""
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr ""
@@ -6835,15 +7420,20 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:463
+msgid "Sign in to view post"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr ""
@@ -6851,8 +7441,8 @@ msgstr ""
msgid "Sign Out"
msgstr ""
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr ""
@@ -6866,11 +7456,6 @@ msgstr ""
msgid "Signed in as @{0}"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr ""
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr ""
@@ -6888,12 +7473,21 @@ msgstr ""
msgid "Smaller"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr ""
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr ""
@@ -6901,23 +7495,31 @@ msgstr ""
msgid "Some people can reply"
msgstr ""
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr ""
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr ""
@@ -6926,16 +7528,16 @@ msgstr ""
msgid "Something went wrong!"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr ""
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr ""
@@ -6970,34 +7572,39 @@ msgstr ""
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
-msgid "Start a new chat"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
-msgid "Start adding people"
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
+msgid "Start a new chat"
msgstr ""
#: src/view/screens/ProfileList.tsx:846
#: src/view/screens/ProfileList.tsx:967
+msgid "Start adding people"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr ""
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr ""
@@ -7005,38 +7612,39 @@ msgstr ""
msgid "Starter pack by <0/>"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr ""
-#: src/view/screens/Profile.tsx:228
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr ""
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr ""
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr ""
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr ""
@@ -7055,46 +7663,51 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr ""
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr ""
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
msgstr ""
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr ""
@@ -7108,16 +7721,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr ""
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr ""
@@ -7126,11 +7739,11 @@ msgstr ""
msgid "Switch Account"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr ""
@@ -7141,9 +7754,9 @@ msgstr ""
msgid "System"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr ""
@@ -7151,6 +7764,12 @@ msgstr ""
msgid "Tags only"
msgstr ""
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr ""
@@ -7176,7 +7795,7 @@ msgstr ""
msgid "Tell a joke!"
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr ""
@@ -7184,17 +7803,17 @@ msgstr ""
msgid "Tell us a little more"
msgstr ""
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr ""
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:660
+#: src/view/shell/Drawer.tsx:662
msgid "Terms of Service"
msgstr ""
@@ -7222,7 +7841,11 @@ msgstr ""
msgid "Text input field"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr ""
@@ -7234,7 +7857,7 @@ msgstr ""
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr ""
@@ -7242,10 +7865,10 @@ msgstr ""
msgid "That handle is already taken."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7255,12 +7878,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr ""
@@ -7274,7 +7897,7 @@ msgstr ""
msgid "The author of this thread has hidden this reply."
msgstr ""
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr ""
@@ -7294,6 +7917,10 @@ msgstr ""
msgid "The Discover feed now knows what you like"
msgstr ""
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -7327,14 +7954,19 @@ msgstr ""
msgid "The selected video is larger than 100 MB."
msgstr ""
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr ""
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr ""
@@ -7359,15 +7991,15 @@ msgstr ""
msgid "There was an issue connecting to Tenor."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr ""
@@ -7380,11 +8012,12 @@ msgstr ""
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr ""
@@ -7392,12 +8025,12 @@ msgstr ""
msgid "There was an issue fetching your app passwords"
msgstr ""
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr ""
@@ -7410,26 +8043,26 @@ msgstr ""
msgid "There was an issue sending your report. Please check your internet connection."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:365
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:378
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr ""
@@ -7437,10 +8070,10 @@ msgstr ""
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr ""
@@ -7461,6 +8094,14 @@ msgstr ""
msgid "This {screenDescription} has been flagged:"
msgstr ""
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr ""
@@ -7469,6 +8110,10 @@ 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/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr ""
@@ -7502,14 +8147,22 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr ""
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr ""
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr ""
@@ -7523,8 +8176,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr ""
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr ""
@@ -7532,7 +8185,7 @@ msgstr ""
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr ""
@@ -7540,8 +8193,9 @@ msgstr ""
msgid "This information is not shared with other users."
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
msgstr ""
#: src/components/moderation/ModerationDetailsDialog.tsx:168
@@ -7552,7 +8206,7 @@ msgstr ""
msgid "This label was applied by you."
msgstr ""
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr ""
@@ -7568,7 +8222,7 @@ msgstr ""
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr ""
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr ""
@@ -7576,7 +8230,7 @@ msgstr ""
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr ""
@@ -7584,28 +8238,27 @@ msgstr ""
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
-msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:138
+msgid "This post is only visible to logged-in users."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744
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 ""
@@ -7613,10 +8266,14 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr ""
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr ""
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr ""
@@ -7654,21 +8311,21 @@ msgstr ""
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr ""
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:734
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr ""
@@ -7676,8 +8333,8 @@ msgstr ""
msgid "Thread Preferences"
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr ""
@@ -7685,7 +8342,7 @@ msgstr ""
msgid "Threaded mode"
msgstr ""
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr ""
@@ -7697,12 +8354,13 @@ msgstr ""
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr ""
-#: src/components/dms/ReportConversationPrompt.tsx:19
-msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
+#: src/components/dms/ReportConversationPrompt.tsx:19
+msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr ""
#: src/components/ReportDialog/SelectLabelerView.tsx:31
@@ -7717,7 +8375,7 @@ msgstr ""
msgid "Toggle dropdown"
msgstr ""
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr ""
@@ -7726,34 +8384,36 @@ msgid "Toggles the sound"
msgstr ""
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr ""
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:444
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:446
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr ""
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr ""
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr ""
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7767,7 +8427,7 @@ msgstr ""
msgid "Two-factor authentication (2FA)"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr ""
@@ -7775,18 +8435,11 @@ msgstr ""
msgid "Type your message here"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr ""
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr ""
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr ""
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr ""
@@ -7801,7 +8454,7 @@ msgstr ""
msgid "Unable to contact your service. Please check your Internet connection."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr ""
@@ -7809,36 +8462,41 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
@@ -7847,28 +8505,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:309
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -7878,7 +8541,7 @@ msgctxt "video"
msgid "Unmute"
msgstr ""
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr ""
@@ -7887,10 +8550,10 @@ msgstr ""
msgid "Unmute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr ""
@@ -7898,8 +8561,12 @@ msgstr ""
msgid "Unmute conversation"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:509
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:513
msgid "Unmute thread"
msgstr ""
@@ -7907,38 +8574,47 @@ msgstr ""
msgid "Unmute video"
msgstr ""
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:419
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426
msgid "Unpin from profile"
msgstr ""
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr ""
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr ""
@@ -7947,7 +8623,7 @@ msgstr ""
msgid "Unsubscribe from list"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr ""
@@ -7955,11 +8631,11 @@ msgstr ""
msgid "Unsubscribed from list"
msgstr ""
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr ""
@@ -7979,49 +8655,60 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:312
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:343
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
-#: src/screens/Login/SetNewPasswordForm.tsx:190
+#: src/screens/Login/SetNewPasswordForm.tsx:194
msgid "Updating..."
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr ""
@@ -8034,7 +8721,7 @@ msgstr ""
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr ""
@@ -8042,22 +8729,22 @@ msgstr ""
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr ""
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr ""
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr ""
@@ -8111,12 +8798,12 @@ msgstr ""
msgid "User list by you"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
msgstr ""
@@ -8142,58 +8829,88 @@ msgstr ""
msgid "Users in \"{0}\""
msgstr ""
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr ""
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr ""
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr ""
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr ""
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr ""
@@ -8206,7 +8923,7 @@ msgstr ""
msgid "Video failed to process"
msgstr ""
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr ""
@@ -8216,14 +8933,15 @@ msgstr ""
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr ""
@@ -8231,11 +8949,11 @@ msgstr ""
msgid "Video not found."
msgstr ""
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr ""
@@ -8243,31 +8961,32 @@ msgstr ""
msgid "Video: {0}"
msgstr ""
-#: src/view/screens/Profile.tsx:225
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr ""
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr ""
@@ -8280,17 +8999,17 @@ msgid "View debug entry"
msgstr ""
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr ""
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr ""
@@ -8300,18 +9019,17 @@ msgstr ""
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr ""
@@ -8323,7 +9041,11 @@ msgstr ""
msgid "View the labeling service provided by @{0}"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr ""
@@ -8331,11 +9053,11 @@ msgstr ""
msgid "View video"
msgstr ""
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr ""
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr ""
@@ -8344,14 +9066,18 @@ msgstr ""
msgid "View your feeds and explore more"
msgstr ""
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr ""
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr ""
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8384,6 +9110,11 @@ msgstr ""
msgid "Warn content and filter from feeds"
msgstr ""
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr ""
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr ""
@@ -8392,7 +9123,7 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr ""
@@ -8412,6 +9143,14 @@ msgstr ""
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr ""
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr ""
@@ -8420,7 +9159,7 @@ 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:428
msgid "We were unable to load your configured labelers at this time."
msgstr ""
@@ -8432,20 +9171,28 @@ msgstr ""
msgid "We will let you know when your account is ready."
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr ""
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr ""
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr ""
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr ""
@@ -8453,11 +9200,11 @@ msgstr ""
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr ""
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
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:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
@@ -8466,7 +9213,7 @@ msgstr ""
msgid "We're sorry! We can't find the page you were looking for."
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr ""
@@ -8486,16 +9233,16 @@ msgstr ""
msgid "What do you want to call your starter pack?"
msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr ""
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr ""
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr ""
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr ""
@@ -8512,14 +9259,18 @@ msgstr ""
msgid "Who can reply"
msgstr ""
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:231
+#: src/screens/Messages/ChatList.tsx:232
#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr ""
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr ""
@@ -8566,11 +9317,11 @@ msgstr ""
msgid "Write a message"
msgstr ""
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr ""
@@ -8580,11 +9331,16 @@ msgstr ""
msgid "Writers"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr ""
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr ""
@@ -8593,15 +9349,15 @@ msgstr ""
msgid "Yes, deactivate"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
msgid "Yes, detach"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747
msgid "Yes, hide"
msgstr ""
@@ -8617,7 +9373,11 @@ msgstr ""
msgid "You"
msgstr ""
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr ""
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
msgstr ""
@@ -8625,6 +9385,19 @@ msgstr ""
msgid "You are in line."
msgstr ""
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr ""
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr ""
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr ""
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr ""
@@ -8633,6 +9406,27 @@ msgstr ""
msgid "You are not following anyone."
msgstr ""
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8661,7 +9455,6 @@ msgstr ""
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr ""
@@ -8728,24 +9521,24 @@ msgstr ""
msgid "You have muted this user"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:274
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr ""
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr ""
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr ""
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr ""
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr ""
@@ -8753,11 +9546,15 @@ msgstr ""
msgid "You have reached the end"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr ""
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr ""
@@ -8779,22 +9576,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr ""
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr ""
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr ""
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
+msgid "You must be 13 years of age or older to create an account."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr ""
@@ -8802,28 +9599,40 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr ""
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr ""
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr ""
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:212
msgid "You will now receive notifications for this thread"
msgstr ""
@@ -8831,23 +9640,23 @@ msgstr ""
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr ""
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr ""
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr ""
@@ -8859,7 +9668,7 @@ msgstr ""
msgid "You'll follow these people right away"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr ""
@@ -8893,6 +9702,10 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr ""
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr ""
@@ -8901,11 +9714,11 @@ msgstr ""
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr ""
@@ -8933,7 +9746,7 @@ msgstr ""
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr ""
@@ -8945,26 +9758,30 @@ msgstr ""
msgid "Your chats have been disabled"
msgstr ""
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr ""
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr ""
@@ -8980,14 +9797,31 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr ""
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr ""
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr ""
@@ -8996,15 +9830,15 @@ msgstr ""
msgid "Your password has been changed successfully!"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr ""
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr ""
@@ -9016,14 +9850,22 @@ 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:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr ""
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr ""
diff --git a/src/locale/locales/eo/messages.po b/src/locale/locales/eo/messages.po
index 0915486567..956b990c6b 100644
--- a/src/locale/locales/eo/messages.po
+++ b/src/locale/locales/eo/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: eo\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 16:40\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Esperanto\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(aktiva)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(enhavas enkorpigitan enhavon)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(sen retpoŝtadreso)"
@@ -49,11 +49,11 @@ msgstr "{0, plural, one {# horo} other {# horoj}}"
#: src/components/moderation/LabelsOnMe.tsx:53
msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account"
-msgstr "{0, plural, one {# etikedo estis metita} other {# etikedoj estis metitaj}} sur tiun konton"
+msgstr "{0, plural, one {# etikedo estas metita} other {# etikedoj estas metitaj}} sur ĉi tiun konton"
#: src/components/moderation/LabelsOnMe.tsx:62
msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content"
-msgstr "{0, plural, one {# etikedo estis metita} other {# etikedoj estis metitaj}} sur tiun enhavon"
+msgstr "{0, plural, one {# etikedo estas metita} other {# etikedoj estas metitaj}} sur ĉi tiun enhavon"
#: src/screens/Post/PostLikedBy.tsx:41
msgid "{0, plural, one {# like} other {# likes}}"
@@ -79,28 +79,28 @@ msgstr "{0, plural, one {# reafiŝo} other {# reafiŝoj}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# sekundo} other {# sekundoj}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
-msgstr ""
+msgstr "{0, plural, one {# nelegita elemento} other {# nelegitaj elementoj}}"
#. How many months have passed, displayed in a narrow form
#: src/lib/hooks/useTimeAgo.ts:182
msgid "{0, plural, one {#mo} other {#mo}}"
-msgstr ""
+msgstr "{0, plural, one {#mo} other {#mo}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {sekvanto} other {sekvantoj}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {sekvata} other {sekvataj}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {ŝato} other {ŝatoj}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {ŝato} other {ŝatoj}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {afiŝo} other {afiŝoj}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citaĵo} other {citaĵoj}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {reafiŝo} other {reafiŝoj}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, one {{1} afiŝo} other {{1} afiŝoj}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "{0, plural, one {# homo}other {# homoj}} uzis ĉi tiun startpakon!"
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -124,7 +133,15 @@ msgstr "{0} <0>en <1>kradvortoj1>0>"
#. Pattern: {wordValue} in text, tags
#: src/components/dialogs/MutedWords.tsx:465
msgid "{0} <0>in <1>text & tags1>0>"
-msgstr ""
+msgstr "{0} <0>en <1>teksto k kradvortoj1>0>"
+
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr "{0} elsendfluas"
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr "{0} ne estas valida URL"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
@@ -137,13 +154,18 @@ msgstr "{0} el {1}"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
-msgstr ""
+msgstr "{0} el 50"
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0} homoj uzis tiun startpakon!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "{0} reagis per {1}"
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "{0} reagis per {1} al {2}"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "Profilbildo de {0}"
@@ -175,9 +197,9 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}s"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
-msgstr ""
+msgstr "{count, plural, one {# nelegita elemento} other {# nelegitaj elementoj}}"
#: src/lib/generate-starterpack.ts:111
#: src/screens/StarterPack/Wizard/index.tsx:178
@@ -192,106 +214,187 @@ msgstr "{estimatedTimeHrs, plural, one {horo} other {horoj}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {minuto} other {minutoj}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}}0> eksekvis vin"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}}0> ŝatas vian propran fluon"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}}0> ŝatas vian afiŝon"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}}0> ŝatas vian reafiŝon"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}}0> forigis iliajn konfirmojn el via konto"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}}0> reafiŝis vian afiŝon"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}}0> reafiŝis vian reafiŝon"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}}0> registriĝis kun via startpako"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}}0> konfirmis vin"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} eksekvis vin"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} eksekvis vin reciproke"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "{firstAuthorLink} ŝatas vian propran fluon"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "{firstAuthorLink} ŝatas vian afiŝon"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr "{firstAuthorLink} ŝatas vian reafiŝon"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr "{firstAuthorLink} forigis ties konfirmon el via konto"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} reafiŝis vian afiŝon"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr "{firstAuthorLink} reafiŝis vian reafiŝon"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} registriĝis kun via startpako"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr "{firstAuthorLink} konfirmis vin"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} eksekvis vin"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} ŝatas vian propran fluon"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} ŝatas vian afiŝon"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} ŝatas vian reafiŝon"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} forigis iliajn konfirmojn el via konto"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} reafiŝis vian afiŝon"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
-msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
-msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} registris kun via startpako"
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} reafiŝis vian reafiŝon"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
+msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} registriĝis kun via startpako"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} konfirmis vin"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} eksekvis vin"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} eksekvis vin reciproke"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "{firstAuthorName} ŝatas vian propran fluon"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "{firstAuthorName} ŝatas vian afiŝon"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr "{firstAuthorName} ŝatas vian reafiŝon"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr "{firstAuthorName} forigis ties konfirmon el via konto"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} reafiŝis vian afiŝon"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
-msgid "{firstAuthorName} signed up with your starter pack"
-msgstr "{firstAuthorName} registris kun via startpako"
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr "{firstAuthorName} reafiŝis vian reafiŝon"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
+msgid "{firstAuthorName} signed up with your starter pack"
+msgstr "{firstAuthorName} registriĝis kun via startpako"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr "{firstAuthorName} konfirmis vin"
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} sekvataj"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "{handle} nemesaĝeblas"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr "{hours, plural, one {# horo {minutesString}} other {# horoj {minutesString}}}"
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr "{hours, plural, one {# horo} other {# horoj}}"
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "{joinedAllTimeCount, plural, one {# uzanto}other {# uzantoj}} aliĝis!"
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr "{minutes, plural, one {# minuto} other {# minutoj}}"
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
-msgstr ""
+msgstr "{notificationCount, plural, one {# nelegita elemento} other {# nelegitaj elementoj}}"
#: src/components/NewskieDialog.tsx:116
msgid "{profileName} joined Bluesky {0} ago"
@@ -301,6 +404,34 @@ msgstr "{profileName} aliĝis al Bluesky antaŭ {0}"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} aliĝis al Bluesky uzante startpakon antaŭ {0}"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "antaŭ {type}h"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr "{userName} estas fidata konfirmanto"
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr "{userName} estas konfirmita"
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr "Konfirmoj de {userName}"
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "+{computedTotal}"
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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>kaj {2, plural, one {# alia} other {# aliaj}} estas en via startpako"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {sekvanto} other {sekvantoj}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {sekvata} other {sekvataj}}"
@@ -337,15 +468,15 @@ msgstr "<0>{date}0> je {time}"
#: src/screens/Settings/NotificationSettings.tsx:85
msgid "<0>Experimental:0> 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 "<0>Eksperimenta:0> Kiam ĉi tiu prefero estas ŝaltita vi ricevos sciigojn pri respondoj kaj citaĵoj de uzantoj, kiujn vi sekvas. Ni poste aldonos pli da agordoj ĉi tie."
#: src/screens/StarterPack/Wizard/index.tsx:440
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>Vi0> kaj<1> 1><2>{0} 2>estas en via startpako"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
-msgstr ""
+msgstr "⚠Nevalida identigilo"
#: src/components/dialogs/MutedWords.tsx:193
msgid "24 hours"
@@ -353,7 +484,7 @@ msgstr "24 horoj"
#: src/screens/Login/LoginForm.tsx:268
msgid "2FA Confirmation"
-msgstr "Konfirmo de la du-faza aŭtentikigo"
+msgstr "2FA-konfirmo"
#: src/components/dialogs/MutedWords.tsx:232
msgid "30 days"
@@ -363,21 +494,30 @@ msgstr "30 tagoj"
msgid "7 days"
msgstr "7 tagoj"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "mesaĝo"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr "Nova konfirmada metodo"
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Pri"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr "Akcepti"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
-msgstr ""
+msgstr "Akcepti babilpeton"
#. Accept a chat request
#: src/screens/Messages/components/RequestListItem.tsx:42
@@ -385,40 +525,40 @@ msgid "Accept Request"
msgstr "Akcepti peton"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Alirebleco"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Alireblecaj agordoj"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Konto"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "Konto blokita"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "Konto eksekvita"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "Konto silentigita"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
@@ -429,33 +569,37 @@ msgstr "Konto silentigita"
msgid "Account Muted by List"
msgstr "Konto silentigita de listo"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Kontaj opcioj"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
-msgstr "Konto forigita de la rapidatingo"
+msgstr "Konto forigita el la rapidatingo"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "Konto malblokita"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "Konto ne plu sekvata"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
-msgstr ""
+msgstr "Konto malsilentigita"
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+msgstr "Kontoj kun gravurita blua kontrolmarko<0><1/>0>povas kontroli aliulojn. Tiuj fidataj konfirmantoj estas elektataj de Bluesky."
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Aldoni"
@@ -473,10 +617,14 @@ msgstr "Aldoni {displayName} al la startpako"
msgid "Add a content warning"
msgstr "Aldoni averton pri enhavo"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr "Aldoni dumtempan elsendfluadan statuson al via profilo. Kiam iu alklakos vian profilbildon, ties vidos informon pri via elsendflua evento."
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
-msgstr ""
+msgstr "Aldoni uzanton al ĉi tiu listo"
#: src/components/dialogs/SwitchAccount.tsx:55
#: src/screens/Deactivated.tsx:192
@@ -485,7 +633,7 @@ msgstr "Aldoni konton"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Aldoni konton"
msgid "Add alt text"
msgstr "Aldoni alternativan tekston"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Aldoni alternativan tekston (nedeviga)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Aldoni plian konton"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Aldoni plian afiŝon"
@@ -518,61 +666,74 @@ msgstr "Aldoni apan pasvorton"
msgid "Add App Password"
msgstr "Aldoni apan pasvorton"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr "Aldoni emoĝian reagon"
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
-msgstr "Aldoni pli da detaloj (nedeviga)"
+msgstr "Aldoni pliaj detaloj (nedeviga)"
#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word with chosen settings"
-msgstr ""
+msgstr "Aldoni silentigitan vorton kun elektitaj agordoj"
#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
-msgstr "Aldoni silentigitajn vortojn kaj kradvortojn"
+msgstr "Aldoni silentigitajn vortojn k kradvortojn"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Aldoni novan afiŝon"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Aldoni homojn"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr "Aldoni homojn al la listo"
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr "Aldoni reagon"
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Aldoni rekomenditajn fluojn"
#: src/screens/StarterPack/Wizard/index.tsx:471
msgid "Add some feeds to your starter pack!"
-msgstr "Aldoni iujn fluojn al via startpako!"
+msgstr "Aldonu iujn fluojn al via startpako!"
#: src/screens/Feeds/NoFollowingFeed.tsx:41
msgid "Add the default feed of only people you follow"
msgstr "Aldoni la defaŭltan fluon kun nur sekvataj homoj"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Aldonu jenan DNS-rikordon al via domajno:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
-msgstr "Aldoni tiun fluon al viaj fluoj"
+msgstr "Aldoni ĉi tiun fluon al viaj fluoj"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "Aldoni al listoj"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Aldoni al listoj"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Aldoni al miaj fluoj"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr "Aldoni uzanton al la listo"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Aldonita al listo"
@@ -581,22 +742,22 @@ msgstr "Aldonita al listo"
msgid "Added to my feeds"
msgstr "Aldonita al miaj fluoj"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr "Aldonaj detaloj (limo de 300 signoj)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Poradolta"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Poradolta enhavo"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "Poradolta enhavo povas esti ebligita nur reteje ĉe <0>bsky.app0>."
@@ -604,30 +765,35 @@ msgstr "Poradolta enhavo povas esti ebligita nur reteje ĉe <0>bsky.app0>."
msgid "Adult content is disabled."
msgstr "Poradolta enhavo estas malebligita."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Etikedoj pri poradolta enhavo"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
-msgstr "Altnivela"
+msgstr "Altnivelaj"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr "ludoviko@ekzemplo.com"
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Ĉiuj"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "Ĉiuj kontoj estas sekvataj!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "Ĉiuj lingvoj"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "Ĉiuj fluoj, kiujn vi konservis, kune en unu loko."
@@ -643,7 +809,7 @@ msgstr "Permesi novajn mesaĝojn de"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344
msgid "Allow quote posts"
-msgstr "Permesi citadon de afiŝo"
+msgstr "Permesi citafiŝojn"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389
msgid "Allow replies from:"
@@ -651,7 +817,7 @@ msgstr "Permesi respondojn de:"
#: src/screens/Settings/AppPasswords.tsx:200
msgid "Allows access to direct messages"
-msgstr ""
+msgstr "Permesas aliron al rektaj mesaĝoj"
#: src/screens/Login/ForgotPasswordForm.tsx:171
#: src/view/com/modals/ChangePassword.tsx:182
@@ -671,10 +837,10 @@ msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Alternativa teksto"
@@ -684,23 +850,22 @@ msgstr "Alternativa teksto"
#: src/view/com/composer/photos/Gallery.tsx:255
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
-msgstr ""
+msgstr "Alternativa teksto priskribas bildojn por blindaj kaj vide handikapitaj uzantoj, kaj helpas doni kuntekston por ĉiuj."
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "Alternativa teksto estos distranĉita. Limigo: {0} signoj."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr "Alternativa teksto estos stucita. Limo: {MAX_ALT_TEXT, plural, one {{0} signo}other {{0} signoj}}."
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "Retmesaĝo estis sendita al {0}. Ĝi enhavas konfirmkodon, kiun vi povas entajpi sube."
-#: src/view/com/modals/ChangeEmail.tsx:114
-msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
-msgstr "Retmesaĝo estis sendita al via antaŭa adreso, {0}. Ĝi enhavas konfirmkodon, kiun vi povas entajpi sube."
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr "Retmesaĝo estis sendita al via antaŭa adreso {currentEmail}. Ĝi enhavas konfirmkodon, kiun vi povas entajpi sube."
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "Retmesaĝo estas sendita! Bonvolu entajpi suben la konfirmkodon, kiu estas en la retmesaĝo."
@@ -716,7 +881,11 @@ msgstr "Eraro okazis"
msgid "An error occurred while compressing the video."
msgstr "Eraro okazis dum densigo de la videaĵo."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr "Eraro okazis dum ŝargado de la fluo."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Eraro okazis dum generado de via startpako. Ĉu vi volas reprovi?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "Eraro okazis dum ŝargado de la videaĵo. Bonvolu reprovi."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "Eraro okazis dum konservado de la QR-kodo!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
-msgstr "Eraro okazis dum elekto de la videaĵo"
+msgstr "Eraro okazis dum elektado de la videaĵo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "Eraro okazis dum provo eksekvi ĉiujn"
@@ -746,12 +914,17 @@ msgstr "Eraro okazis dum provo eksekvi ĉiujn"
msgid "An error occurred while uploading the video."
msgstr "Eraro okazis dum alŝutado de la videaĵo."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr "Ilustraĵo montranta ke Bluesky elektas fidatajn konfirmantojn kaj poste fidataj konfirmantoj konfirmas individuajn kontojn de uzantoj."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
-msgstr "Problemo neinkludita inter tiuj opcioj"
+msgstr "Problemo neinkludita inter ĉi tiuj opcioj"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "Problemo okazis komencante la babilejon"
@@ -761,13 +934,17 @@ msgstr "Problemo okazis dum provo malfermi la babilejon"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Problemo okazis, bonvolu reprovi."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr "Ekrankopio de iPhone montranta la Bluesky-apon malfermitan kun la profilo de konfirmita uzanto kun blua kontrolmarko apud ties montrata nomo."
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "nekonata eraro okazis"
@@ -775,7 +952,7 @@ msgstr "nekonata eraro okazis"
#: src/components/moderation/ModerationDetailsDialog.tsx:134
#: src/lib/moderation/useModerationCauseDescription.ts:144
msgid "an unknown labeler"
-msgstr "nekonata etikedanto"
+msgstr "nekonata etikedilo"
#: src/components/WhoCanReply.tsx:317
msgid "and"
@@ -790,6 +967,10 @@ msgstr "Bestoj"
msgid "Animated GIF"
msgstr "GIF-movbildo"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr "Anoncas konfirmadon ĉe Bluesky"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Kontraŭsocia konduto"
msgid "Anybody can interact"
msgstr "Ĉiu povas interagi"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "Apa piktogramo"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "Apa lingvo"
@@ -817,11 +998,11 @@ msgstr "Apa pasvorto"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "Apa pasvorto forigita"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
-msgstr "La nomo de apa pasvorto devas esti unika"
+msgstr "Nomo de apa pasvorto devas esti unika"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62
msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores"
@@ -836,7 +1017,7 @@ msgstr "Nomoj de apaj pasvortoj devas havi longon de almenaŭ 4 signoj"
msgid "App passwords"
msgstr "Apaj pasvortoj"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Apaj pasvortoj"
@@ -854,7 +1035,7 @@ msgstr "Apelacii pri la etikedo \"{0}\""
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "Apelacio sendita"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -870,12 +1051,12 @@ msgstr "Apelacii pri suspendo"
#: src/screens/Messages/components/ChatDisabled.tsx:99
#: src/screens/Messages/components/ChatDisabled.tsx:101
msgid "Appeal this decision"
-msgstr "Apelacii pri tiu decido"
+msgstr "Apelacii pri ĉi tiu decido"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Aspekto"
@@ -884,12 +1065,12 @@ msgstr "Aspekto"
msgid "Apply default recommended feeds"
msgstr "Apliki defaŭltajn rekomenditajn fluojn"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Arkivigita de {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Arkivigita afiŝo"
@@ -897,21 +1078,21 @@ msgstr "Arkivigita afiŝo"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Ĉu vi certas, ke vi volas forigi la apan pasvorton \"{0}\"?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Ĉu vi certas, ke vi volas forigi ĉi tiun mesaĝon? La mesaĝo estos forigita por vi, sed ne por la alia partoprenanto."
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
-msgstr "Ĉu vi certas, ke vi volas forigi tiun startpakon?"
+msgstr "Ĉu vi certas, ke vi volas forigi ĉi tiun startpakon?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
-msgstr "Ĉu vi certas, ke vi ne volas konservi viajn ŝanĝojn?"
+msgstr "Ĉu vi certas, ke vi volas forĵeti viajn ŝanĝojn?"
#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation?"
-msgstr ""
+msgstr "Ĉu vi certas ke vi volas foriri el ĉi tiu konversacio?"
#: src/components/dms/LeaveConvoPrompt.tsx:45
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
@@ -921,15 +1102,15 @@ msgstr "Ĉu vi certas, ke vi volas foriri el ĉi tiu konversacio? La mesaĝoj es
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Ĉu vi certas, ke vi volas forigi {0} el viaj fluoj?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
-msgstr "Ĉu vi certas, ke vi volas forigi tion el viaj fluoj?"
+msgstr "Ĉu vi certas, ke vi volas forigi ĉi tion el viaj fluoj?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
-msgstr "Ĉu vi certas, ke vi volas forĵeti tiun malneton?"
+msgstr "Ĉu vi certas, ke vi volas forĵeti ĉi tiun malneton?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "Ĉu vi certas, ke vi volas forĵeti ĉi tiun afiŝon?"
@@ -937,7 +1118,7 @@ msgstr "Ĉu vi certas, ke vi volas forĵeti ĉi tiun afiŝon?"
msgid "Are you sure?"
msgstr "Ĉu vi certas?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "Ĉu vi tajpas en <0>{suggestedLanguageName}0>?"
@@ -946,29 +1127,34 @@ msgstr "Ĉu vi tajpas en <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Arto"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Arta aŭ ne-erotika nudeco."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr "Asigni temon por algoritmo"
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "Almenaŭ 3 signoj"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40
msgctxt "Name of app icon variant"
msgid "Aurora"
-msgstr ""
+msgstr "Nordobrilo"
#: src/screens/Settings/AccessibilitySettings.tsx:105
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Opcioj por aŭtomata ludigo translokiĝis al la <0>agordoj pri Enhavo kaj aŭdvidaĵoj0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
-msgstr ""
+msgstr "Aŭtomate ludi videaĵojn kaj GIF-ojn"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Reen"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
-msgstr ""
+msgstr "Reveni al babilejoj"
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
-msgstr "Por krei liston vi devas unue konfirmi vian retpoŝtadreson."
+msgstr "Antaŭ ol krei liston, vi devas unue konfirmi vian retpoŝtadreson."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Por krei afiŝon vi devas unue konfirmi vian retpoŝtadreson."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr "Antaŭ ol krei afiŝon aŭ respondi, vi devas unue konfirmi vian retpoŝtadreson."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
-msgstr "Por krei startpakon vi devas unue konfirmi vian retpoŝtadreson."
+msgstr "Antaŭ ol krei startpakon, vi devas unue konfirmi vian retpoŝtadreson."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "Por povi mesaĝi vi devas unue konfirmi vian retpoŝtadreson."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr "Antaŭ ol vi povos mesaĝi, vi devas unue konfirmi vian retpoŝtadreson."
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
+msgstr "Antaŭ ol vi povos mesaĝi alian uzanton, vi devas unue konfirmi vian retpoŝtadreson."
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Naskiĝtago"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Bloki"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Bloki konton"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "Ĉu bloki konton?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Bloki kontojn"
@@ -1052,9 +1239,9 @@ msgstr "Bloki kaj forigi"
#: src/components/dms/ReportDialog.tsx:352
msgid "Block and/or delete this conversation"
-msgstr ""
+msgstr "Bloki kaj/aŭ forigi ĉi tiun konversacion"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Bloki liston"
@@ -1062,7 +1249,7 @@ msgstr "Bloki liston"
msgid "Block or report"
msgstr "Bloki aŭ raporti"
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "Ĉu bloki tiujn kontojn?"
@@ -1079,21 +1266,21 @@ msgstr "Bloki uzanton"
msgid "Blocked"
msgstr "Blokita"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Blokitaj kontoj"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Blokitaj kontoj"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Blokitaj kontoj ne povas respondi en viaj fadenoj, mencii vin nek alimaniere interagi kun vi."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 "Blokitaj kontoj ne povas respondi en viaj fadenoj, mencii vin nek alimaniere interagi kun vi. Vi ne vidos ilian enhavon kaj ili ne povos vidi la vian."
@@ -1101,19 +1288,19 @@ msgstr "Blokitaj kontoj ne povas respondi en viaj fadenoj, mencii vin nek aliman
msgid "Blocked post."
msgstr "Blokita afiŝo."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
-msgstr "Blokado ne malebligas al etikedanto meti etikedojn sur vian konton."
+msgstr "Blokado ne malebligas al ĉi tiu etikedilo meti etikedojn sur vian konton."
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Blokado estas publika. Baritaj kontoj ne povas respondi en viaj fadenoj, mencii vin nek alimaniere interagi kun vi."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
-msgstr "Barado ne malebligos al oni meti etikedojn sur vian konton, sed malebligos al tiu konto respondi en viaj fadenoj aŭ interagi kun vi."
+msgstr "Barado ne malebligos al oni meti etikedojn sur vian konton, sed malebligos al ĉi tiu konto respondi en viaj fadenoj aŭ interagi kun vi."
-#: src/view/com/auth/SplashScreen.web.tsx:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blogo"
@@ -1122,14 +1309,14 @@ msgstr "Blogo"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky ne povas konfirmi la aŭtentecon de la donita dato."
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129
msgctxt "Name of app icon variant"
msgid "Bluesky Classic™"
-msgstr ""
+msgstr "Bluesky Classic™"
#: src/view/com/auth/server-input/index.tsx:212
msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server."
@@ -1148,14 +1335,18 @@ msgstr "Bluesky pli bonas kun amikoj!"
msgid "Bluesky Social Terms of Service"
msgstr "Uzokondiĉoj de Bluesky Social"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
-msgstr ""
+msgstr "Bluesky elektos aron de rekomenditaj kontoj de homoj en via reto."
#: src/screens/Settings/components/PwiOptOut.tsx:99
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky ne montros vian profilon kaj afiŝojn al elsalutintaj uzantoj. Aliaj apoj eble ne respektos ĉi tiun peton. Ĉi tio ne igas vian konton privata."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr "Bluesky aktive konfirmos rimarkindajn kaj aŭtentikajn kontojn."
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,25 +1368,25 @@ msgstr "Malklarigi bildojn kaj elfiltri el fluoj"
msgid "Books"
msgstr "Libroj"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
-msgstr ""
+msgstr "Foliumi pli da kontoj sur la paĝo Esplori"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
-msgstr ""
+msgstr "Foliumi pli da fluoj sur la paĝo Esplori"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Foliumi pli da proponoj"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
-msgstr ""
+msgstr "Foliumi pli da proponoj sur la paĝo Esplori"
#: src/screens/Home/NoFeedsPinned.tsx:103
#: src/screens/Home/NoFeedsPinned.tsx:109
@@ -1214,20 +1405,26 @@ msgstr "Foliumi afiŝojn etikeditajn per {displayName}"
msgid "Browse starter pack {displayName}"
msgstr "Foliumi startpakon {displayName}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr "Foliumi temon {0}"
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "Foliumi temon {displayName}"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Komerco"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "De {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "De <0>{0}0>"
@@ -1243,44 +1440,51 @@ msgstr "Kreante konton vi konsentas pri la <0>Uzokondiĉoj0> kaj <1>Regularo p
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Kreante konton vi konsentas pri la <0>Uzokondiĉoj0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr "De vi"
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Fotilo"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Nuligi"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,45 +1500,43 @@ msgstr "Nuligi forigon de konto"
msgid "Cancel image crop"
msgstr "Nuligi stucon de bildo"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Nuligi redakton de profilo"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Nuligi citadon de afiŝo"
#: src/screens/Deactivated.tsx:152
msgid "Cancel reactivation and sign out"
-msgstr ""
+msgstr "Nuligi reaktivigon kaj elsaluti"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Nuligi serĉon"
#: src/view/com/modals/LinkWarning.tsx:106
msgid "Cancels opening the linked website"
-msgstr ""
+msgstr "Nuligas malfermon de la ligita retejo"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "Ne eblas interagi kun blokita uzanto"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Subtekstoj (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
-msgstr ""
+msgstr "Subtekstoj k alternativa teksto"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Ŝanĝi"
@@ -1347,90 +1549,84 @@ msgstr "Ŝanĝi apan piktogramon"
msgid "Change app icon to \"{0}\""
msgstr "Ŝanĝi apan piktogramon al \"{0}\""
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Ŝanĝi retpoŝtadreson"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr "Ŝanĝi apan lingvon"
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Ŝanĝi retpoŝtadreson"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
-msgstr ""
+msgstr "Ŝanĝi identigilon"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
-msgstr ""
-
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Ŝanĝi mian retpoŝtadreson"
+msgstr "Ŝanĝi kontrol-servon"
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Ŝanĝi pasvorton"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "Ŝanĝi lingvon de afiŝo al {suggestedLanguageName}"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr "Ŝanĝi kialon de raporto"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Ŝanĝi vian retpoŝtadreson"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Ŝanĝi vian retpoŝtadreson"
#: src/screens/Settings/AppIconSettings/index.tsx:216
msgid "Changes app icon"
-msgstr ""
+msgstr "Ŝanĝas apan piktogramon"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
-msgstr ""
+msgstr "Ŝanĝas la provizanton de gastigo"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
-msgstr "Babilejo"
+msgstr "Babilejoj"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
-msgstr ""
+msgstr "Babilejo forigita"
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "Babilejo silentigita"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
-msgstr ""
+msgstr "Ricevujo de babilpetoj"
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
-msgstr ""
+msgstr "Babilpetoj"
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Agordoj de babilejo"
@@ -1441,10 +1637,10 @@ msgstr "Agordoj de babilejo"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "Babilejo malsilentigita"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr "Babilejoj"
@@ -1461,7 +1657,7 @@ msgstr "Kontrolu vian retpoŝton por trovi ensalut-kodon kaj entajpu ĝin ĉi ti
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "En via ricevujo serĉu retmesaĝon kun konfirmkodo, kaj entajpu ĝin suben:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Elektu metodon por konfirmi vian domajnon"
@@ -1469,7 +1665,7 @@ msgstr "Elektu metodon por konfirmi vian domajnon"
msgid "Choose Feeds"
msgstr "Elektu fluojn"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Elektu por mi"
@@ -1477,43 +1673,43 @@ msgstr "Elektu por mi"
msgid "Choose People"
msgstr "Elektu homojn"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr ""
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Elektu la algoritmojn, kiuj funkciigos viajn proprajn fluojn."
#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107
msgid "Choose this color as your avatar"
-msgstr ""
+msgstr "Elekti ĉi tiun koloron kiel profilbildo"
#: src/view/com/auth/server-input/index.tsx:130
msgid "Choose your account provider"
msgstr "Elekti vian kontogastiganton"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
-msgstr ""
+msgstr "Elektu vian propran novaĵfluon! Fluoj konstruitaj de la komunumo helpas vin trovi enhavon, kiun vi amos."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Elektu vian pasvorton"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "Elektu vian uzantnomon"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Forigi ĉiujn konservitajn datumojn"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Forigi ĉiujn konservitajn datumojn (restartigu poste)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr "Viŝi bildan kaŝmemoron"
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Forigi serĉotekston"
@@ -1522,19 +1718,27 @@ msgstr "Forigi serĉotekston"
msgid "click here"
msgstr "alklaku ĉi tie"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr "Alklaku ĉi tie por restarti la konfimadan procezon."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr "Alklaku ĉi tie por ĝisdatigi vian retpoŝtadreson"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
-msgstr "Alklaku por malebligi citaĵojn de tiu afiŝo."
+msgstr "Alklaku por malebligi citafiŝojn de ĉi tiu afiŝo."
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338
msgid "Click to enable quote posts of this post."
-msgstr "Alklaku por ebligi citaĵojn de tiu afiŝo."
+msgstr "Alklaku por ebligi citafiŝojn de ĉi tiu afiŝo."
#: src/components/RichTextTag.tsx:54
msgid "Click to open tag menu for {tag}"
msgstr "Alklaku por malfermi etikedan menuon por {tag}"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Alklaku por reprovi sendi mesaĝon"
@@ -1546,24 +1750,34 @@ msgstr "Klimato"
msgid "Clip 🐴 clop 🐴"
msgstr "🐮 Dek bovinoj 🐮"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Fermi"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Fermi la aktivan dialogujon"
@@ -1573,18 +1787,20 @@ msgstr "Fermi averton"
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
-msgstr ""
+msgstr "Fermi la suban flankmenuon"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Fermi la dialogujon"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
-msgstr ""
+msgstr "Fermi la flankmenuon"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "Fermi emoĝi-elektilon"
@@ -1600,30 +1816,40 @@ msgstr "Fermi bildon"
msgid "Close image viewer"
msgstr "Fermi bildmontrilon"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr "Fermi menuon"
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
-msgstr ""
+msgstr "Fermi ĉi tiun dialogujon"
#: src/screens/Login/PasswordUpdatedForm.tsx:32
msgid "Closes password update alert"
-msgstr ""
+msgstr "Fermas la averton pri pasvorta ĝisdatigo"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr "Fermas afiŝan redaktilon kaj forĵetas afiŝan malneton"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr "Fermas la emoĝi-elektilon"
#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:32
msgid "Closes viewer for header image"
-msgstr ""
+msgstr "Fermas la montrilon de la kapa bildo"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Maletendi liston de uzantoj"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
-msgstr ""
+msgstr "Maletendas liston de uzantoj por donita sciigo"
#: src/components/dialogs/Embed.tsx:154
#: src/screens/Settings/AppearanceSettings.tsx:93
@@ -1632,7 +1858,7 @@ msgstr "Kolora reĝimo"
#: src/components/dialogs/Embed.tsx:151
msgid "Color theme"
-msgstr ""
+msgstr "Kolora etoso"
#: src/screens/Onboarding/index.tsx:38
#: src/screens/Onboarding/state.ts:97
@@ -1644,32 +1870,32 @@ msgstr "Komedio"
msgid "Comics"
msgstr "Komiksoj"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Komunumaj gvidnormoj"
#: src/screens/Onboarding/StepFinished.tsx:311
msgid "Complete onboarding and start using your account"
-msgstr ""
+msgstr "Finu la lernilon kaj komencu uzi vian konton"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
-msgstr "Fini la defion"
+msgstr "Plenumi la defion"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Krei novan afiŝon"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "Krei afiŝojn havantajn maksimume {MAX_GRAPHEME_LENGTH} signojn"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr "Krei afiŝojn maksimume {0, plural, one {# signon}other {# signojn}} longajn"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Krei respondon"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Densigado de videaĵo..."
@@ -1681,51 +1907,46 @@ msgstr "Konfiguru enhavan filtradon por kategorio: {name}"
msgid "Configured in <0>moderation settings0>."
msgstr "Agordita en <0>agordoj de kontrolado0>."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Konfirmi"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Konfirmi ŝanĝon"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
-msgstr ""
+msgstr "Konfirmi lingvajn agordojn de enhavo"
#: src/view/com/modals/DeleteAccount.tsx:264
msgid "Confirm delete account"
msgstr "Konfirmu kontan forigon"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Konfirmu vian aĝon:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Konfirmu vian naskiĝdaton"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Konfirmkodo"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Konfirmkodo"
@@ -1733,22 +1954,22 @@ msgstr "Konfirmkodo"
msgid "Connecting..."
msgstr "Konektado..."
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Kontakti subtenejon"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "Enhavo kaj aŭdvidaĵoj"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Enhavo kaj aŭdvidaĵoj"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Enhavo kaj aŭdvidaĵoj"
@@ -1756,18 +1977,18 @@ msgstr "Enhavo kaj aŭdvidaĵoj"
msgid "Content Blocked"
msgstr "Enhavo blokita"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
-msgstr ""
+msgstr "Filtriloj por la enhavo"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
-msgstr ""
+msgstr "Enhavo el la tuta reto, kiu eble plaĉos al vi."
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
-msgstr ""
+msgstr "Lingvoj de la enhavo"
#: src/components/moderation/ModerationDetailsDialog.tsx:82
#: src/lib/moderation/useModerationCauseDescription.ts:82
@@ -1785,16 +2006,16 @@ msgstr "Averto de enhavo"
msgid "Content warnings"
msgstr "Avertoj de enhavo"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
-msgstr ""
+msgstr "Fono de kuntekstmenuo, alklaku por fermi la menuon."
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Daŭrigi"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Daŭrigi kiel {0} (nune ensalutinta)"
@@ -1803,10 +2024,10 @@ msgid "Continue thread..."
msgstr "Daŭrigi fadenon..."
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
-msgstr ""
+msgstr "Pluiri al la sekva paŝo"
#: src/components/dms/ReportDialog.tsx:318
#: src/components/dms/ReportDialog.tsx:321
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Konversacio forigita"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Konversacio forigita"
@@ -1826,16 +2047,17 @@ msgstr "Kuirado"
msgid "Copied"
msgstr "Kopiita"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Versio kopiita al tondujo"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Kopiita al tondujo"
@@ -1844,25 +2066,29 @@ msgstr "Kopiita al tondujo"
msgid "Copied!"
msgstr "Kopiita!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
-msgstr ""
+msgstr "Kopias version al tondujo"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Kopii"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr "Kopii ĉiuokaze"
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Kopii apan pasvorton"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
-msgstr ""
+msgstr "Kopii URI-on at://"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr "Kopii la DID-on de la aŭtoro"
@@ -1871,57 +2097,69 @@ msgstr "Kopii la DID-on de la aŭtoro"
msgid "Copy code"
msgstr "Kopii kodon"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Kopii DID-on"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Kopii gastiganton"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Kopii ligilon"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Kopii ligilon"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Kopii ligilon al listo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Kopii ligilon al afiŝo"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr "Kopii ligilon al profilo"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr "Kopii ligilon al startpako"
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Kopii mesaĝan tekston"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr "Kopii URI-on at:// de afiŝo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
-msgstr "Kopii afiŝan tekson"
+msgstr "Kopii afiŝan tekston"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Kopii QR-kodon"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
-msgstr ""
+msgstr "Kopii la valoron de la TXT-rikordo"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Regularo pri kopirajto"
@@ -1931,11 +2169,11 @@ msgstr "Regularo pri kopirajto"
msgid "Could not leave chat"
msgstr "Ne eblis foriri el babilejo"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "Ne eblis ŝargi fluon"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "Ne eblis ŝargi liston"
@@ -1947,28 +2185,28 @@ msgstr "Ne eblis silentigi babilejon"
msgid "Could not process your video"
msgstr "Ne eblis trakti vian videaĵon"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Krei"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "Krei QR-kodon por startpako"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Krei startpakon"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Krei startpakon por mi"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Krei startpakon por mi"
msgid "Create account"
msgstr "Krei konton"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Krei konton"
@@ -1985,11 +2223,16 @@ msgstr "Krei konton"
msgid "Create an account"
msgstr "Krei konton"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
-msgid "Create an avatar instead"
-msgstr ""
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr "Krei konton neuzante ĉi tiun startpakon"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/screens/Onboarding/StepProfile/index.tsx:290
+msgid "Create an avatar instead"
+msgstr "Krei profilbildon anstataŭe"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Krei plian"
@@ -1998,7 +2241,7 @@ msgstr "Krei plian"
msgid "Create new account"
msgstr "Krei novan konton"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Krei raporton pri {0}"
@@ -2023,15 +2266,15 @@ msgstr "Propra"
#: src/components/dialogs/Embed.tsx:144
msgid "Customization options"
-msgstr ""
+msgstr "Tajloradaj opcioj"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103
msgid "Customize who can interact with this post."
-msgstr ""
+msgstr "Agordu, kiu povas interagi kun ĉi tiu afiŝo."
#: src/screens/Onboarding/Layout.tsx:56
msgid "Customizes your Bluesky experience"
-msgstr ""
+msgstr "Tajloras vian ĝuon ĉe Bluesky"
#: src/components/dialogs/Embed.tsx:167
#: src/components/dialogs/Embed.tsx:169
@@ -2053,19 +2296,19 @@ msgstr "Malhela reĝimo"
msgid "Dark theme"
msgstr "Malhela etoso"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Naskiĝdato"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Malaktivigi konton"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
-msgstr ""
+msgstr "Sencimiga kontrolo"
#: src/view/screens/Debug.tsx:89
msgid "Debug panel"
@@ -2079,19 +2322,19 @@ msgstr "Defaŭlta"
msgid "Default icons"
msgstr "Defaŭltaj piktogramoj"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Forigi"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Forigi konton"
@@ -2107,19 +2350,19 @@ msgstr "Forigi apan pasvorton"
msgid "Delete app password?"
msgstr "Ĉu forigi apan pasvorton?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
-msgstr ""
+msgstr "Forigi babilejon"
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
-msgstr ""
+msgstr "Forigi babilan deklaro-rikordon"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "Forigi konversacion"
@@ -2127,19 +2370,19 @@ msgstr "Forigi konversacion"
msgid "Delete Conversation"
msgstr "Forigi konversacion"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Forigi por mi"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
msgstr "Forigi liston"
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Forigi mesaĝon"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Forigi mesaĝon por mi"
@@ -2147,26 +2390,26 @@ msgstr "Forigi mesaĝon por mi"
msgid "Delete my account"
msgstr "Forigi mian konton"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Forigi afiŝon"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Forigi startpakon"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "Ĉu forigi startpakon?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "Ĉu forigi ĉi tiun liston?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "Ĉu forigi ĉi tiun afiŝon?"
@@ -2174,8 +2417,8 @@ msgstr "Ĉu forigi ĉi tiun afiŝon?"
msgid "Deleted"
msgstr "Forigita"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Forigita konto"
@@ -2183,67 +2426,76 @@ msgstr "Forigita konto"
msgid "Deleted post."
msgstr "Forigita afiŝo."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Priskribo"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "Priskribo tro longas"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "Priskribo tro longas. La maksimuma nombro de signoj estas {DESCRIPTION_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Priskribo estas tro longa. La maksimuma nombro da signoj estas {DESCRIPTION_MAX_GRAPHEMES, plural, one {#}other {#}}."
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Priskriba alternativa teksto"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Malligi citaĵon"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "Ĉu malligi citatan afiŝon?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
-msgstr ""
+msgstr "Programista reĝimo malŝaltita"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
-msgstr ""
+msgstr "Programista reĝimo ŝaltita"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Programistaj opcioj"
#: src/components/WhoCanReply.tsx:179
msgid "Dialog: adjust who can interact with this post"
-msgstr ""
+msgstr "Dialogujo: kiu povas interagi kun ĉi tiu afiŝo"
#: src/screens/Settings/AppearanceSettings.tsx:122
msgid "Dim"
-msgstr "Malheligi"
+msgstr "Malheleta"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr "Malŝalti 2FA-on"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr "Malŝalti retpoŝtan 2FA-on"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
-msgstr ""
+msgstr "Malŝalti retpoŝtan 2FA-on"
#: src/screens/Settings/AccessibilitySettings.tsx:91
#: src/screens/Settings/AccessibilitySettings.tsx:96
msgid "Disable haptic feedback"
-msgstr ""
+msgstr "Malŝalti tuŝ-retrokuplada prikomentado"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Disable subtitles"
@@ -2254,25 +2506,25 @@ msgstr "Malŝalti subtekstojn"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Malŝaltita"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Forĵeti"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "Ĉu forĵeti ŝanĝojn?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "Ĉu forĵeti malneton?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "Ĉu forĵeti afiŝon?"
@@ -2281,30 +2533,34 @@ msgstr "Ĉu forĵeti afiŝon?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Malinstigi apojn por ke ili ne montru mian konton al elsalutintaj uzantoj"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr "Malkovri fluojn"
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
-msgstr ""
+msgstr "Malkovri novajn proprajn fluojn"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Malkovri novajn fluojn"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Malkovri novajn fluojn"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Ignori"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Ignori eraron"
#: src/components/ProgressGuide/List.tsx:42
msgid "Dismiss getting started guide"
-msgstr ""
+msgstr "Ignori enkondukon"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr "Forĵeti interesojn"
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
@@ -2313,71 +2569,79 @@ msgstr "Ignori ĉi tiun sekcion"
#: src/screens/Settings/AccessibilitySettings.tsx:71
#: src/screens/Settings/AccessibilitySettings.tsx:76
msgid "Display larger alt text badges"
-msgstr ""
+msgstr "Montri pli grandajn ŝildojn de alternativa teksto"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Montrata nomo"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Montrata nomo"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "Montrata nomo tro longas"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "Montrata nomo tro longas. La maksimuma nombro de signoj estas {DISPLAY_NAME_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Montrata nomo estas tro longa. La maksimuma nombro da signoj estas {DISPLAY_NAME_MAX_GRAPHEMES, plural, one {#}other {#}}."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "DNS-panelo"
#: src/components/dialogs/MutedWords.tsx:302
msgid "Do not apply this mute word to users you follow"
-msgstr ""
+msgstr "Ne apliku ĉi tiun silentigitan vorton al uzantoj, kiujn vi sekvas"
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr "Ne inkluzivas nudecon."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "Ne komencas aŭ finas per dividstreko"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "Domajno konfirmita!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr "Ĉu vi ne havas kodon aŭ bezonas novan? <0>Alklaku ĉi tie.0>"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr "Ĉu vi ne vidas retmesaĝon? <0>Alklaku ĉi tie por resendi.0>"
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Farite"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2386,19 +2650,23 @@ msgstr "Farite"
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:42
msgid "Done{extraText}"
-msgstr ""
+msgstr "Farite{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr "Duoble tuŝetu aŭ longe premu la mesaĝon por aldoni reagon"
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Duoble tuŝeti por fermi la dialogujon"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr "Duoble tuŝeti por ŝati"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321
msgid "Download Bluesky"
-msgstr ""
+msgstr "Elŝuti Bluesky-apon"
#: src/screens/Settings/components/ExportCarDialog.tsx:79
#: src/screens/Settings/components/ExportCarDialog.tsx:84
@@ -2407,29 +2675,29 @@ msgstr "Elŝuti CAR-dosieron"
#: src/view/com/composer/text-input/TextInput.web.tsx:342
msgid "Drop to add images"
-msgstr ""
+msgstr "Demetu bildojn por aldoni"
#: src/components/dialogs/MutedWords.tsx:153
msgid "Duration:"
msgstr "Daŭro:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "ekz. ludoviko"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "ekz. Ludoviko Familinomo"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "ekz. Ludoviko Zamenhof"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "ekz. ludoviko.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "ekz. Artisto, hundo-amanto kaj legemulo."
@@ -2437,19 +2705,19 @@ msgstr "ekz. Artisto, hundo-amanto kaj legemulo."
msgid "E.g. artistic nudes."
msgstr "Ekz. artista nudeco."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "ekz. Plej bonaj kontoj"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "ekz. Spamistoj"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
-msgstr ""
+msgstr "ekz. Neerarantaj afiŝantoj."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "ekz. Uzantoj kiuj ripete respondas per reklamoj."
@@ -2457,20 +2725,21 @@ msgstr "ekz. Uzantoj kiuj ripete respondas per reklamoj."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Ĉiu kodo funkcias unufoje. Vi ricevos pli da invitaj kodoj periode."
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Redakti"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Redakti"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Redakti profilbildon"
@@ -2478,31 +2747,41 @@ msgstr "Redakti profilbildon"
msgid "Edit Feeds"
msgstr "Redakti fluojn"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Redakti bildon"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
-msgstr "Redakti agordojn pri interagado"
+msgstr "Redakti interagajn agordojn"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr "Redakti interesojn"
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Redakti detalojn de listo"
-#: src/view/com/modals/CreateOrEditList.tsx:230
-msgid "Edit Moderation List"
-msgstr ""
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr "Redakti elsendfluan statuson"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/view/com/modals/CreateOrEditList.tsx:228
+msgid "Edit Moderation List"
+msgstr "Redakti la kontrol-liston"
+
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Redakti miajn fluojn"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Redakti mian profilon"
@@ -2513,41 +2792,41 @@ msgstr "Redakti homojn"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239
msgid "Edit post interaction settings"
-msgstr ""
+msgstr "Redakti interagajn agordojn de afiŝo"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Redakti profilon"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Redakti profilon"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Redakti startpakon"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
-msgstr ""
+msgstr "Redakti liston de uzantoj"
#: src/components/WhoCanReply.tsx:91
msgid "Edit who can reply"
-msgstr ""
+msgstr "Elekti kiu povas respondi"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Redakti vian montratan nomon"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Redakti priskribon de via profilo"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Redakti vian startpakon"
@@ -2558,22 +2837,21 @@ msgstr "Eduko"
#: src/screens/List/ListHiddenScreen.tsx:141
msgid "Either the creator of this list has blocked you or you have blocked the creator."
-msgstr ""
+msgstr "Aŭ la kreinto de ĉi tiu listo blokis vin aŭ vi blokis la kreinton."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "Retpoŝtadreso"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "Retpoŝta 2FA malŝaltita"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
-msgstr ""
+msgstr "Retpoŝta 2FA ŝaltita"
#: src/screens/Login/ForgotPasswordForm.tsx:93
msgid "Email address"
@@ -2581,22 +2859,19 @@ msgstr "Retpoŝtadreso"
#: src/components/intents/VerifyEmailIntentDialog.tsx:104
msgid "Email Resent"
-msgstr ""
+msgstr "Retmesaĝo resendita"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
-msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
+msgstr "Retmesaĝo sendita!"
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "Retpoŝtadreso ĝisdatigita"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr "Retpoŝtadreso ĝisdatigita!"
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
-msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
+msgstr "Retpoŝtadresa konfirmado finita!"
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
msgid "Email Verified"
@@ -2608,21 +2883,22 @@ msgstr "Enkorpigi HTML-kodon"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Enkorpigi afiŝon"
#: src/components/dialogs/Embed.tsx:112
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
-msgstr ""
+msgstr "Enkorpigi ĉi tiun afiŝon en vian retejon. Simple kopiu la jenan kodaĵon kaj algluu ĝin en la HTML-kodo de via retejo."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
-msgstr ""
+msgstr "Enkorpigita videoludilo"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Ŝalti"
@@ -2630,13 +2906,13 @@ msgstr "Ŝalti"
msgid "Enable {0} only"
msgstr "Ŝalti nur {0}"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
-msgstr ""
+msgstr "Videbligi poradoltan enhavon"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr "Ŝalti retpoŝtan 2FA-on"
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2645,12 +2921,12 @@ msgstr "Ŝalti eksterajn aŭdvidaĵojn"
#: src/screens/Settings/ExternalMediaPreferences.tsx:49
msgid "Enable media players for"
-msgstr ""
+msgstr "Ŝalti la aŭdvidaĵajn ludliojn por"
#: src/screens/Settings/NotificationSettings.tsx:74
#: src/screens/Settings/NotificationSettings.tsx:77
msgid "Enable priority notifications"
-msgstr ""
+msgstr "Ŝalti prioritatajn sciigojn"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387
msgid "Enable subtitles"
@@ -2658,34 +2934,34 @@ msgstr "Ŝalti subtekstojn"
#: src/components/dialogs/EmbedConsent.tsx:93
msgid "Enable this source only"
-msgstr ""
+msgstr "Ŝalti nur ĉi tiun fonton"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
-msgstr ""
+msgstr "Videbligi popularajn temojn"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
-msgstr ""
+msgstr "Videbligi popularajn videaĵojn en via fluo Discover"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
-msgstr ""
+msgstr "Videbligi popularajn videaĵojn en via fluo Discover."
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Ŝaltita"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Fino de la fluo"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
-msgstr ""
+msgstr "Certiĝu, ke vi elektis lingvon por ĉiu subtekst-dosiero."
#: src/screens/Login/SetNewPasswordForm.tsx:143
msgid "Enter a password"
@@ -2696,44 +2972,45 @@ msgstr "Entajpu pasvorton"
msgid "Enter a word or tag"
msgstr "Entajpu vorton aŭ kradvorton"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr "Entajpu kodon"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
msgid "Enter Code"
msgstr "Entajpu kodon"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Entajpu konfirmkodon"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
-msgstr ""
+msgstr "Ŝalti plenekranon"
#: src/view/com/modals/ChangePassword.tsx:165
msgid "Enter the code you received to change your password."
msgstr "Entajpu la ricevitan kodon por ŝanĝi vian pasvorton."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Entajpu la domajnon, kiun vi volas uzi"
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
-msgstr ""
+msgstr "Entajpu la retpoŝtadreson, kiun vi uzis por krei vian konton. Ni sendos al vi \"restarigan kodon\" por ke vi agordu novan pasvorton."
+
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr "Entajpu la uzantnomon aŭ retpoŝtadreson, kiun vi uzis kreante vian konton"
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Entajpu vian naskiĝdaton"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Entajpu vian retpoŝtadreson"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Entajpu vian novan retpoŝtadreson supre"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Entajpu vian novan retpoŝtadreson malsupre."
@@ -2747,9 +3024,13 @@ msgstr "Entajpu vian uzantnomon kaj pasvorton"
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135
msgid "Enters full screen"
-msgstr ""
+msgstr "Ŝaltas plenekranon"
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr "Amuzo"
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Eraro"
@@ -2758,15 +3039,18 @@ msgstr "Eraro"
msgid "Error occurred while saving file"
msgstr "Eraro okazis dum konservado de dosiero"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "Eraro okazis ricevante la captcha-respondon."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Eraro:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr "Eraro: {error}"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Ĉiuj"
@@ -2777,7 +3061,7 @@ msgstr "Ĉiuj povas respondi"
#: src/components/WhoCanReply.tsx:222
msgid "Everybody can reply to this post."
-msgstr ""
+msgstr "Ĉiuj povas respondi al ĉi tiu afiŝo."
#: src/screens/Messages/Settings.tsx:83
#: src/screens/Messages/Settings.tsx:86
@@ -2796,64 +3080,56 @@ msgstr "Troaj aŭ nedezirataj mesaĝoj"
#: src/components/dialogs/MutedWords.tsx:311
msgid "Exclude users you follow"
-msgstr ""
+msgstr "Ekskluzivi uzantojn, kiujn vi sekvas"
#: src/components/dialogs/MutedWords.tsx:514
msgid "Excludes users you follow"
-msgstr ""
+msgstr "Ekskluzivas uzantojn, kiujn vi sekvas"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Exit fullscreen"
-msgstr ""
+msgstr "Malŝalti plenekranon"
#: src/view/com/modals/DeleteAccount.tsx:275
msgid "Exits account deletion process"
-msgstr ""
+msgstr "Eliri el la procezo de kontoforigo"
#: src/view/com/modals/CropImage.web.tsx:95
msgid "Exits image cropping process"
-msgstr ""
+msgstr "Eliri el la procezo de bildstucado"
#: src/view/com/lightbox/Lightbox.web.tsx:110
msgid "Exits image view"
-msgstr ""
-
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr ""
+msgstr "Eliri el la bildmontro"
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Etendi alternativan tekston"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Etendi liston de uzantoj"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
-msgstr ""
+msgstr "Etendi aŭ maletendi la tutan afiŝon, al kiu vi respondas"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
-msgstr ""
-
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr ""
+msgstr "Etendas aŭ maletendas la tekston de la afiŝo"
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
-msgstr ""
+msgstr "Espektas uri-on gvidantan al rikordo"
#: src/screens/Settings/FollowingFeedPreferences.tsx:123
#: src/screens/Settings/ThreadPreferences.tsx:137
msgid "Experimental"
-msgstr "Eksperimenta"
+msgstr "Eksperimentaj"
#: src/components/dialogs/MutedWords.tsx:500
msgid "Expired"
-msgstr ""
+msgstr "Eksvalidiĝita"
#: src/components/dialogs/MutedWords.tsx:502
msgid "Expires {0}"
@@ -2864,6 +3140,10 @@ msgstr "Eksvalidiĝas {0}"
msgid "Expires in {0}"
msgstr "Eksvalidiĝas je {0}"
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr "Eksvalidiĝos post {0} je {1}"
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2871,10 +3151,17 @@ msgstr "Poradolta aŭ maltrankviliga aŭdvidaĵo."
#: src/lib/moderation/useGlobalLabelStrings.ts:35
msgid "Explicit sexual images."
-msgstr ""
+msgstr "Detalaj seksumaj bildoj."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr "Esplori"
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Eksporti miajn datumojn"
@@ -2882,40 +3169,45 @@ msgstr "Eksporti miajn datumojn"
msgid "Export My Data"
msgstr "Eksporti miajn datumojn"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
-msgstr "Ekstera aŭdvidaĵo"
+msgstr "Eksteraj aŭdvidaĵoj"
#: src/components/dialogs/EmbedConsent.tsx:54
#: src/components/dialogs/EmbedConsent.tsx:58
msgid "External Media"
-msgstr "Ekstera aŭdvidaĵo"
+msgstr "Eksteraj aŭdvidaĵoj"
#: src/components/dialogs/EmbedConsent.tsx:70
#: src/screens/Settings/ExternalMediaPreferences.tsx:40
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 ""
+msgstr "Eksteraj aŭdvidaĵoj eblas permesi al retejoj kolekti informojn pri vi kaj via aparato. Neniu informo estos sendota aŭ postulota antaŭ vi premos la butonon \"ludi\"."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Preferoj pri eksteraj aŭdvidaĵoj"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
-msgstr ""
+msgstr "Malsukcesis akcepti babilejon"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr "Malsukcesis aldoni emoĝian reagon"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
-msgstr "Malsukcesis ŝanĝi nomon. Bonvolu reprovi."
+msgstr "Malsukcesis ŝanĝi identigilon. Bonvolu reprovi."
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173
msgid "Failed to create app password. Please try again."
msgstr "Malsukcesis krei apan pasvorton. Bonvolu reprovi."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr "Malsukcesis krei konversacion"
@@ -2924,35 +3216,37 @@ msgstr "Malsukcesis krei konversacion"
msgid "Failed to create starter pack"
msgstr "Malsukcesis krei startpakon"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "Malsukcesis krei la liston. Kontrolu vian retkonekton kaj reprovu."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
-msgstr ""
+msgstr "Malsukcesis forigi babilejon"
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Malsukcesis forigi mesaĝon"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "Malsukcesis forigi afiŝon, bonvolu reprovi"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "Malsukcesis forigi startpakon"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
-msgstr ""
+msgstr "Malsukcesis ŝargi konversaciojn"
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "Malsukcesis ŝargi preferojn de fluoj"
@@ -2964,25 +3258,36 @@ msgstr "Malsukcesis ŝargi GIF-ojn"
msgid "Failed to load past messages"
msgstr "Malsukcesis ŝargi antaŭajn mesaĝojn"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "Malsukcesis ŝargi propontiajn fluojn"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
-msgstr ""
+msgstr "Malsukcesis ŝargi proponitajn kontojn"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
-msgstr ""
+msgstr "Malsukcesis marki ĉiujn petojn kiel legitaj"
#: src/state/queries/pinned-post.ts:75
msgid "Failed to pin post"
msgstr "Malsukcesis alpingli afiŝon"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr "Malsukcesis forigi emoĝian reagon"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr "Malsukcesis forigi konfirmon"
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Malsukcesis konservi bildon: {0}"
@@ -2994,20 +3299,39 @@ msgstr "Malsukcesis konservi preferojn de sciigoj, bonvolu reprovi"
msgid "Failed to save settings. Please try again."
msgstr "Malsukcesis konservi agordojn. Bonvolu reprovi."
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr "Malsukcesis konservi viajn interesojn."
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "Malsukcesis sendi"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr "Malsukcesis sendi retmesaĝon, bonvolu reprovi."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Malsukcesis sendi apelacion, bonvole reprovu."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
-msgstr ""
+msgstr "Malsukcesis baskuligi la silentigon de fadeno, bonvolu reprovi"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr "La ĝisdatigo de retpoŝtaj 2FA-agordoj malsukcesis"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr "Malsukcesis ĝisdatigi retpoŝtadreson, bonvolu reprovi."
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "Malsukcesis ĝisdatigi fluojn"
@@ -3022,67 +3346,71 @@ msgstr "Malsukcesis ĝisdatigi agordojn"
msgid "Failed to upload video"
msgstr "Malsukcesis alŝuti videaĵon"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
-msgid "Failed to verify handle. Please try again."
-msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr "Malsukcesis konfirmi retpoŝtadreson, bonvolu reprovi."
-#: src/Navigation.tsx:251
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
+msgid "Failed to verify handle. Please try again."
+msgstr "La aŭtentikigo de via identigilo malsukcesis. Bonvolu reprovi."
+
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Fluo"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
-msgstr "Fluo de"
+msgstr "Fluo de {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "Menuo de la fluo"
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Feed toggle"
-msgstr ""
+msgstr "Baskuligi fluon"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Prikomentado"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "Prikomento sendita!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Fluoj"
#: src/view/screens/SavedFeeds.tsx:198
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
-msgstr ""
+msgstr "Fluoj estas propraj algoritmoj, kiujn uzantoj konstruas kun malmulto da programada scipovo. <0/> por pli da informo."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "Fluoj ĝisdatigitaj!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
-msgstr ""
+msgstr "Fluoj, kiuj eble plaĉos al vi."
#: src/screens/Settings/components/OTAInfo.tsx:58
msgid "Fetch update"
-msgstr ""
+msgstr "Elŝuti ĝisdatigon"
#: src/screens/Settings/components/ExportCarDialog.tsx:43
msgid "File saved successfully!"
@@ -3090,15 +3418,15 @@ msgstr "Dosiero konservita sukcese!"
#: src/lib/moderation/useLabelBehaviorDescription.ts:66
msgid "Filter from feeds"
-msgstr ""
+msgstr "Filtri el fluoj"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
-msgstr ""
+msgstr "Filtri serĉon laŭ lingvo"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
-msgstr ""
+msgstr "Filtri serĉon laŭ lingvo (nune: {currentLanguageLabel})"
#: src/screens/Onboarding/StepFinished.tsx:314
msgid "Finalizing"
@@ -3108,17 +3436,17 @@ msgstr "Finante"
#: src/view/com/posts/FollowingEmptyState.tsx:53
#: src/view/com/posts/FollowingEndOfFeed.tsx:54
msgid "Find accounts to follow"
-msgstr ""
+msgstr "Trovi kontojn por sekvi"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
-msgstr ""
+msgstr "Trovi homojn por sekvi"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
-msgstr ""
+msgstr "Trovi afiŝojn, uzantojn kaj fluojn ĉe Bluesky"
#: src/screens/StarterPack/Wizard/index.tsx:195
msgid "Finish"
@@ -3126,33 +3454,33 @@ msgstr "Fini"
#: src/screens/Onboarding/index.tsx:35
msgid "Fitness"
-msgstr ""
+msgstr "Fizika bontenado"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117
msgctxt "Name of app icon variant"
msgid "Flat Black"
-msgstr ""
+msgstr "Plata nigra"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93
msgctxt "Name of app icon variant"
msgid "Flat Blue"
-msgstr ""
+msgstr "Plata blua"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105
msgctxt "Name of app icon variant"
msgid "Flat White"
-msgstr ""
+msgstr "Plata blanka"
#: src/screens/Onboarding/StepFinished.tsx:294
msgid "Flexible"
msgstr "Fleksebla"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Sekvi"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Sekvi"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Sekvi {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr "Sekvi {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Sekvi {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "Eksekvu 10 kontojn"
msgid "Follow 7 accounts"
msgstr "Eksekvu 7 kontojn"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "Sekvi konton"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Sekvi ĉiujn"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Sekvi reciproke"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Sekvi reciproke"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr ""
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "Sekvata de <0>{0}0>"
@@ -3224,7 +3544,7 @@ msgstr "Sekvata de <0>{0}0> kaj <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Sekvata de <0>{0}0>, <1>{1}1>, kaj {2, plural, one {# alia} other {# aliaj}}"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Sekvantoj de @{0}, kiujn vi konas"
@@ -3234,47 +3554,43 @@ msgid "Followers you know"
msgstr "Sekvantoj, kiujn vi konas"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Sekvas"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "Sekvas {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr "Sekvas {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Sekvas {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
-msgstr ""
+msgstr "Preferoj de la fluo pri sekvatoj"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
-msgstr ""
+msgstr "Preferoj de la fluo pri sekvatoj"
#: src/screens/Profile/Header/Handle.tsx:32
msgid "Follows you"
-msgstr ""
+msgstr "Sekvas vin"
#: src/components/Pills.tsx:175
msgid "Follows You"
-msgstr ""
+msgstr "Sekvas vin"
#: src/screens/Settings/AppearanceSettings.tsx:140
msgid "Font"
@@ -3291,15 +3607,19 @@ msgstr "Manĝaĵo"
#: src/view/com/modals/DeleteAccount.tsx:125
msgid "For security reasons, we'll need to send a confirmation code to your email address."
-msgstr ""
+msgstr "Pro sekurecaj kialoj, ni sendos konfirmkodon al via retpoŝtadreso."
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:209
msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one."
-msgstr ""
+msgstr "Por sekurecaj kialoj, vi ne povos vidi ĉi tion denove. Se vi perdas ĉi tiun apan pasvorton, vi devos generi novan."
#: src/screens/Settings/AppearanceSettings.tsx:142
msgid "For the best experience, we recommend using the theme font."
-msgstr ""
+msgstr "Por la plej bona ĝuo, ni rekomendas uzi la tiparon de la etoso."
+
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr "Por vi"
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
@@ -3327,56 +3647,58 @@ msgstr "Ofte afiŝas nedeziratan enhavon"
msgid "From @{sanitizedAuthor}"
msgstr "De @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "De <0/>"
#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50
msgid "Gallery"
-msgstr "Galerio"
+msgstr "Bildgalerio"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Generi startpakon"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Akiri helpon"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "Komenci"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr "Enkonduko"
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Enkonduko"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
-msgstr ""
+msgstr "Donu vizaĝon al via profilo"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39
#: src/lib/moderation/useReportOptions.ts:39
msgid "Glaring violations of law or terms of service"
-msgstr ""
+msgstr "Evidentaj malobservoj de la leĝo aŭ uzokondiĉoj"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Reen"
@@ -3384,10 +3706,10 @@ msgstr "Reen"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Iri reen"
@@ -3398,7 +3720,7 @@ msgstr "Iri reen"
#: src/screens/Onboarding/Layout.tsx:188
#: src/screens/Signup/BackNextButtons.tsx:35
msgid "Go back to previous step"
-msgstr ""
+msgstr "Reveni al la antaŭa paŝo"
#: src/view/screens/NotFound.tsx:57
msgid "Go home"
@@ -3408,14 +3730,34 @@ msgstr "Hejmen"
msgid "Go Home"
msgstr "Hejmen"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr "Elsendflui"
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr "Elsendflui"
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr "Elsendflui dum"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr "Iri al la profilo de {firstAuthorName}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Iri al konversacio kun {0}"
#: src/screens/Login/ForgotPasswordForm.tsx:165
#: src/view/com/modals/ChangePassword.tsx:179
msgid "Go to next"
-msgstr ""
+msgstr "Iri al la sekva"
#: src/components/dms/ConvoMenu.tsx:227
msgid "Go to profile"
@@ -3427,33 +3769,33 @@ msgstr "Iri al uzanta profilo"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
-msgstr ""
+msgstr "Maldeca aŭdvidaĵo"
#: src/state/shell/progress-guide.tsx:218
#: src/state/shell/progress-guide.tsx:228
msgid "Half way there!"
msgstr "Duonvoje!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
-msgstr "Nomo"
+msgstr "Identigilo"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
-msgstr "Tiu nomo jam estas uzata. Bonvolu uzi iun alian."
+msgstr "Tiu identigilo jam estas uzata. Bonvolu uzi iun alian."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
-msgstr "Nomo ŝanĝita!"
+msgstr "Identigilo ŝanĝita!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
-msgstr "Tiu nomo tro longas. Bonvolu provi malpli longan."
+msgstr "Tiu identigilo tro longas. Bonvolu provi malpli longan."
#: src/screens/Settings/AccessibilitySettings.tsx:87
msgid "Haptics"
@@ -3464,7 +3806,7 @@ msgstr "Tuŝ-retrokuplado"
msgid "Harassment, trolling, or intolerance"
msgstr "Molestado, trolado aŭ netoleremo"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Kradvorto"
@@ -3472,21 +3814,26 @@ msgstr "Kradvorto"
msgid "Hashtag {tag}"
msgstr "Kradvorto {tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr "Ĉu vi havas kodon? <0>Alklaku ĉi tie.0>"
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "Ĉu vi havas problemon?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Helpo"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
-msgstr ""
+msgstr "Afiŝu foton aŭ kreu profilbildon por ke homoj sciu, ke vi ne estas roboto."
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187
msgid "Here is your app password!"
@@ -3497,7 +3844,7 @@ msgstr "Jen via apa pasvorto!"
msgid "Hidden"
msgstr "Kaŝita"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr "Kaŝita laŭ viaj agordoj pri kontrolado."
@@ -3509,154 +3856,159 @@ msgstr "Kaŝita listo"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Kaŝi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Kaŝi"
#: src/components/dialogs/Embed.tsx:128
msgid "Hide customization options"
-msgstr ""
+msgstr "Kaŝi tajloradajn opciojn"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Kaŝi afiŝon por mi"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Kaŝi respondon por ĉiuj"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Kaŝi respondon por mi"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-msgid "Hide this post?"
-msgstr "Ĉu kaŝi tiun afiŝon?"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr "Kaŝi ĉi tiun karton"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+msgid "Hide this post?"
+msgstr "Ĉu kaŝi ĉi tiun afiŝon?"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
-msgstr "Ĉu kaŝi tiun respondon?"
+msgstr "Ĉu kaŝi ĉi tiun respondon?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
-msgstr "Kaŝi furorajn temojn"
+msgstr "Kaŝi popularajn temojn"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
-msgstr "Ĉu kaŝi furorajn temojn?"
+msgstr "Ĉu kaŝi popularajn temojn?"
#: src/components/interstitials/TrendingVideos.tsx:138
msgid "Hide trending videos?"
-msgstr "Ĉu kaŝi furorajn videaĵojn?"
+msgstr "Ĉu kaŝi popularajn videaĵojn?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
-msgstr ""
+msgstr "Kaŝi la liston de uzantoj"
+
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr "Kaŝi konfirmajn ŝildojn"
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
-msgstr ""
+msgstr "Kaŝas la enhavon"
#: src/view/com/posts/PostFeedErrorMessage.tsx:117
msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue."
-msgstr ""
+msgstr "Hmm, ia problemo okazis dum kontakto kun la servilo de la fluo. Bonvolu sciigi posedanton de la fluo pri tiu problemo."
#: src/view/com/posts/PostFeedErrorMessage.tsx:105
msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue."
-msgstr ""
+msgstr "Hmm, la servilo de fluoj ŝajne estis misagordita. Bonvolu sciigi la posedanton de la fluo pri tiu problemo."
#: src/view/com/posts/PostFeedErrorMessage.tsx:111
msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue."
-msgstr ""
+msgstr "Hmm, la servilo de la fluo ŝajnas esti eksterreta. Bonvolu sciigi posedanton de la fluo pri ĉi tiu problemo."
#: src/view/com/posts/PostFeedErrorMessage.tsx:108
msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue."
-msgstr ""
+msgstr "Hmm, la servilo de la fluo misrespondis. Bonvolu sciigi posedanton de la fluo pri ĉi tiu problemo."
#: src/view/com/posts/PostFeedErrorMessage.tsx:102
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
-msgstr ""
+msgstr "Hmm, ni ne sukcesas trovi ĉi tiun fluon. Eble ĝi estis forigita."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
-msgstr ""
+msgstr "Hmmmm, ŝajne ni havas problemon ŝargi ĉi tiun datumon. Rigardu sube por pliaj detaloj. Se la problemo daŭras, bonvolu kontakti nin."
#: src/screens/Profile/ErrorState.tsx:31
msgid "Hmmmm, we couldn't load that moderation service."
-msgstr ""
+msgstr "Hmmmm, ni ne povis ŝargi tiun kontrol-servon."
#: src/view/com/composer/state/video.ts:413
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
-msgstr ""
+msgstr "Momenton! Ni iom post iom donas aliron al la videaĵo, kaj vi ankoraŭ atendas en vico. Rekontrolu baldaŭ!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
-msgstr ""
+msgstr "Hejmo"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
-msgstr ""
+msgstr "Gastiganto:"
#: src/screens/Login/ForgotPasswordForm.tsx:83
#: src/screens/Login/LoginForm.tsx:184
msgid "Hosting provider"
-msgstr ""
+msgstr "Provizanto de gastigo"
+
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr "Popularaj"
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
-msgstr ""
+msgstr "La plej popularaj respondoj unue"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
-msgstr ""
+msgstr "Kiel ni malfermu ĉi tiun ligilon?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Mi havas kodon"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Mi havas kodon"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Mi havas konfirman kodon"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
-msgstr ""
+msgstr "Mi havas mian propran domajnon"
#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:21
@@ -3665,68 +4017,89 @@ msgstr "Mi komprenas"
#: src/view/com/lightbox/Lightbox.web.tsx:186
msgid "If alt text is long, toggles alt text expanded state"
-msgstr ""
+msgstr "Se alternativa teksto estas longa, baskulas ĝian malvolvon"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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 ""
+msgstr "Se vi ankoraŭ ne estas adolto laŭ la leĝaro de via lando, via patr(in)o aŭ kuratoro devas legi ĉi tiujn kondiĉojn en via nomo."
-#: src/view/screens/ProfileList.tsx:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
-msgstr ""
+msgstr "Se vi forigos ĉi tiun liston, vi ne povos restaŭri ĝin."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
-msgstr ""
+msgstr "Se vi havas vian propran domajnon, vi povas uzi ĝin kiel vian identigilon. Ĉi tio permesas al vi aŭtentikigi vin mem. <0>Eksciu pli.0>"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr "Se vi bezonas ĝisdatigi vian retpoŝtadreson, <0>alklaku ĉi tie0>."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
-msgstr ""
+msgstr "Se vi forigos ĉi tiun afiŝon, vi ne povos restaŭri ĝin."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr "Se vi ĝisdatigos vian retpoŝtadreson, retpoŝta 2FA estos malŝaltota."
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
-msgstr ""
+msgstr "Se vi volas ŝanĝi vian pasvorton, ni sendos al vi kodon por konfirmi, ke ĉi tiu estas via konto."
#: src/view/com/auth/server-input/index.tsx:208
msgid "If you're a developer, you can host your own server."
-msgstr ""
+msgstr "Se vi estas programisto, vi povas gastigi vian propran servilon."
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
msgid "If you're trying to change your handle or email, do so before you deactivate."
-msgstr ""
+msgstr "Se vi provas ŝanĝi vian identigilon aŭ retpoŝtadreson, faru tion antaŭ ol malaktivigi vian konton."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:38
#: src/lib/moderation/useReportOptions.ts:38
msgid "Illegal and Urgent"
-msgstr ""
+msgstr "Kontraŭleĝa kaj urĝa"
#: src/view/com/util/images/Gallery.tsx:71
msgid "Image"
msgstr "Bildo"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr ""
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr "Bilda kaŝmemoro viŝita"
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr "Bilda kaŝmemoro viŝita, {0} liberita(j)"
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr "Bildo konservita"
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr "Bildoj ne povas esti konservitaj sen permeso por aliro al via bildbiblioteko."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
msgid "Impersonation or false claims about identity or affiliation"
-msgstr ""
+msgstr "Identoprunto aŭ malveraj asertoj pri identeco aŭ aneco"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68
#: src/lib/moderation/useReportOptions.ts:68
msgid "Impersonation, misinformation, or false claims"
-msgstr ""
+msgstr "Identoprunto, misinformado aŭ malveraj asertoj"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91
#: src/lib/moderation/useReportOptions.ts:91
msgid "Inappropriate messages or explicit links"
-msgstr ""
+msgstr "Malkonvenaj mesaĝoj aŭ maldecaj ligiloj"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
-msgstr ""
+msgstr "Ricevujo malplenas!"
#: src/screens/Login/LoginForm.tsx:164
msgid "Incorrect username or password"
@@ -3734,11 +4107,11 @@ msgstr "Malĝusta uzantnomo aŭ pasvorto"
#: src/screens/Login/SetNewPasswordForm.tsx:131
msgid "Input code sent to your email for password reset"
-msgstr ""
+msgstr "Entajpu la kodon senditan al via retpoŝtadreso por restarigi vian pasvorton"
#: src/view/com/modals/DeleteAccount.tsx:228
msgid "Input confirmation code for account deletion"
-msgstr ""
+msgstr "Entajpu konfirmkodon por forigi vian konton"
#: src/screens/Login/SetNewPasswordForm.tsx:155
msgid "Input new password"
@@ -3752,48 +4125,44 @@ msgstr "Entajpu pasvorton por forigi vian konton"
msgid "Input the code which has been emailed to you"
msgstr "Entajpu la kodon senditan al via retpoŝtadreso"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr ""
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Interago limigita"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
-msgstr ""
+msgstr "Agordoj pri interagado"
#: src/screens/Login/LoginForm.tsx:156
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:70
msgid "Invalid 2FA confirmation code."
msgstr "Nevalida 2FA-konfirmkodo."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Nevalida nomo. Bonvolu uzi iun alian."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "Nevalida aŭ nesubtenita afiŝ-rikordo"
#: src/components/moderation/ReportDialog/index.tsx:73
msgid "Invalid report subject"
-msgstr ""
+msgstr "Nevalida temlinio de raporto"
#: src/components/intents/VerifyEmailIntentDialog.tsx:91
msgid "Invalid Verification Code"
-msgstr ""
+msgstr "Nevalida aŭtentikig-kodo"
#: src/view/com/modals/InviteCodes.tsx:94
msgid "Invite a Friend"
msgstr "Inviti amikon"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Invita kodo"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Invita kodo neakceptita. Kontrolu ĉu vi entajpis ĝin ĝuste kaj reprovu."
@@ -3805,39 +4174,39 @@ msgstr "Invitaj kodoj: {0} disponeblaj"
msgid "Invite codes: 1 available"
msgstr "Invitaj kodoj: 1 disponebla"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
-msgstr "Inviti homojn al ĉi tiu startpako!"
+msgstr "Invitu homojn al ĉi tiu startpako!"
#: src/screens/StarterPack/Wizard/StepDetails.tsx:34
msgid "Invite your friends to follow your favorite feeds and people"
-msgstr ""
+msgstr "Invitu viajn amikojn, por ke ili sekvu viajn plej ŝatatajn fluojn kaj homojn"
#: src/screens/StarterPack/Wizard/StepDetails.tsx:31
msgid "Invites, but personal"
-msgstr ""
+msgstr "Invitoj sed personaj"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "Ĝi ĝustas"
#: src/screens/StarterPack/Wizard/index.tsx:435
msgid "It's just you right now! Add more people to your starter pack by searching above."
-msgstr ""
+msgstr "Vi estas sola ĉi-momente! Aldoni pli da homoj al via startpako serĉante supre."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "ID de laboro: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Laboroj"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Aliĝi al Bluesky"
@@ -3857,10 +4226,10 @@ msgstr "Etikedita de {0}."
#: src/components/moderation/ContentHider.tsx:229
msgid "Labeled by the author."
-msgstr "Etikedita de la afiŝinto."
+msgstr "Etikedita de la aŭtoro."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Etikedoj"
@@ -3868,29 +4237,29 @@ msgstr "Etikedoj"
msgid "Labels added"
msgstr "Etikedoj aldonitaj"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "Etikedoj estas notoj pri uzantoj kaj enhavo. Ili povas esti uzataj por kaŝi, averti, kaj ordigi la reton laŭ kategorioj."
#: src/components/moderation/LabelsOnMeDialog.tsx:72
msgid "Labels on your account"
-msgstr ""
+msgstr "Etikedoj sur via konto"
#: src/components/moderation/LabelsOnMeDialog.tsx:74
msgid "Labels on your content"
-msgstr ""
+msgstr "Etikedoj sur via enhavo"
#: src/view/com/composer/select-language/SelectLangBtn.tsx:107
msgid "Language selection"
msgstr "Lingva elekto"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Lingvaj agordoj"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Lingvoj"
@@ -3899,44 +4268,58 @@ msgid "Larger"
msgstr "Pli granda"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
-msgstr ""
+msgstr "Plej freŝaj"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "ekscii pli"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr "Ekscii pli"
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Ekscii pli"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Ekscii pli pri Bluesky"
#: src/view/com/auth/server-input/index.tsx:218
msgid "Learn more about self hosting your PDS."
-msgstr ""
+msgstr "Ekscii pli pri gastigado de via PDS."
#: src/components/moderation/ContentHider.tsx:149
msgid "Learn more about the moderation applied to this content"
-msgstr ""
+msgstr "Eksciu pli pri la kontrolado farita al ĉi tiu enhavo"
#: src/components/moderation/ContentHider.tsx:215
msgid "Learn more about the moderation applied to this content."
-msgstr ""
+msgstr "Ekscii pli pri la kontrolado farita al ĉi tiu enhavo."
#: src/components/moderation/PostHider.tsx:100
#: src/components/moderation/ScreenHider.tsx:127
msgid "Learn more about this warning"
-msgstr "Ekscii pli pri tiu averto"
+msgstr "Ekscii pli pri ĉi tiu averto"
+
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr "Ekscii pli pri konfirmado ĉe Bluesky"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
-msgstr ""
+msgstr "Ekscii pli pri kio estas publika ĉe Bluesky."
#: src/components/moderation/ContentHider.tsx:239
#: src/view/com/auth/server-input/index.tsx:220
@@ -3950,7 +4333,7 @@ msgstr "Foriri"
#: src/components/dms/MessagesListBlockedFooter.tsx:74
#: src/components/dms/MessagesListBlockedFooter.tsx:81
msgid "Leave chat"
-msgstr ""
+msgstr "Foriri el babilejo"
#: src/components/dms/ConvoMenu.tsx:203
#: src/components/dms/ConvoMenu.tsx:206
@@ -3958,21 +4341,21 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:269
#: src/components/dms/LeaveConvoPrompt.tsx:42
msgid "Leave conversation"
-msgstr ""
+msgstr "Foriri el konversacio"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84
msgid "Leave them all unchecked to see any language."
-msgstr ""
+msgstr "Lasu ilin nemarkitaj por vidi ĉiujn lingvojn."
#: src/view/com/modals/LinkWarning.tsx:65
msgid "Leaving Bluesky"
-msgstr ""
+msgstr "Elirante el Bluesky"
#: src/screens/SignupQueued.tsx:155
msgid "left to go."
-msgstr ""
+msgstr "restas."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Lasu min elekti"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Hela"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "Ŝati"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Ŝati ({0, plural, one {# ŝato} other {# ŝatoj}})"
@@ -4011,19 +4395,18 @@ msgstr "Ŝatu 10 afiŝojn"
#: src/state/shell/progress-guide.tsx:214
#: src/state/shell/progress-guide.tsx:219
msgid "Like 10 posts to train the Discover feed"
-msgstr "Ŝatu 10 afiŝojn por trejni la fluon Malkovri"
+msgstr "Ŝatu 10 afiŝojn por trejni la fluon Discover"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Ŝati ĉi tiun fluon"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
-msgstr ""
+msgstr "Ŝati ĉi tiun etikedilon"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Ŝatata de"
@@ -4033,43 +4416,43 @@ msgstr "Ŝatata de"
msgid "Liked By"
msgstr "Ŝatata de"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Ŝatata de {0, plural, one {# uzanto} other {# uzantoj}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Ŝatata de {likeCount, plural, one {# uzanto} other {# uzantoj}}"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "Ŝatoj"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
-msgstr "Ŝatoj de tiu afiŝo"
+msgstr "Ŝatoj de ĉi tiu afiŝo"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
-msgstr ""
+msgstr "Linie"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Listo"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Profilbildo de la listo"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "Listo blokita"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4084,79 +4467,92 @@ msgstr "Listo de <0/>"
msgid "List by you"
msgstr "Listo de vi"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "Listo forigita"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
msgstr "Listo estis kaŝita"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "Listo kaŝita"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "Listo silentigita"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
-msgstr ""
+msgstr "Nomo de la listo"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "Listo malblokita"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "Listo malsilentigita"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Listoj"
#: src/components/dms/BlockedByListDialog.tsx:39
msgid "Lists blocking this user:"
-msgstr "Listoj blokintaj tiun uzanton:"
+msgstr "Listoj blokintaj ĉi tiun uzanton:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr "ELSENDFLUAS"
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr "Elsendfluada funkcio estas je beta-testado"
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr "Elsendflua ligilo"
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Ŝargi pli"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "Ŝargi pliajn proponitajn fluojn"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Ŝargi pliajn proponitajn kontojn"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Ŝargi novajn sciigojn"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Ŝargi novajn afiŝojn"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Ŝargado..."
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Protokolo"
@@ -4164,18 +4560,18 @@ msgstr "Protokolo"
msgid "Logged-out visibility"
msgstr "Videbleco de elsalutintaj uzantoj"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Emblemo farita de @sawaratsuki.bsky.social"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Emblemo farita de <0>@sawaratsuki.bsky.social0>"
#: src/components/RichTextTag.tsx:53
msgid "Long press to open tag menu for #{tag}"
-msgstr ""
+msgstr "Longe premu por malfermi la menuon por #{tag}"
#: src/screens/Login/SetNewPasswordForm.tsx:120
msgid "Looks like XXXXX-XXXXX"
@@ -4191,46 +4587,61 @@ msgstr "Ŝajne vi forigis ĉiujn viajn alpinglitajn fluojn. Sed ne maltrankvili
#: src/screens/Feeds/NoFollowingFeed.tsx:37
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
-msgstr ""
+msgstr "Fluo de sekvatoj ŝajne mankas al vi. <0>Alklaku por aldoni iun.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr "Faru ĝustigojn al retpoŝtaj agordoj por via konto"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
-msgstr ""
+msgstr "Faru ĝin por mi"
#: src/view/com/modals/LinkWarning.tsx:79
msgid "Make sure this is where you intend to go!"
-msgstr ""
+msgstr "Certiĝu, ke vi volas iri tien!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
-msgstr ""
+msgstr "Administri la konservitajn fluojn"
+
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr "Administri konfirmadajn agordojn"
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
-msgstr ""
+msgstr "Administri la silentigitajn vortojn k kradvortojn"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
-msgstr ""
+msgstr "Marki ĉiujn kiel legitaj"
#: src/components/dms/ConvoMenu.tsx:215
#: src/components/dms/ConvoMenu.tsx:218
msgid "Mark as read"
msgstr "Marki kiel legita"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
-msgstr ""
+msgstr "Markis ĉiujn kiel legitaj"
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr "Eble poste"
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Aŭdvidaĵoj"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Aŭdvidaĵoj, kiuj povas esti maltrankviligaj aŭ nekonvenaj por kelkaj spektantoj."
@@ -4246,44 +4657,52 @@ msgstr "Menciitaj uzantoj"
msgid "Mentions"
msgstr "Mencioj"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Menuo"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Mesaĝo {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Mesaĝo forigita"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Mesaĝo forigita"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr "Mesaĝo de @{0}: {1}"
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
-msgstr ""
+msgstr "Mesaĝo de la servilo: {0}"
#: src/screens/Messages/components/MessageInput.tsx:152
msgid "Message input field"
-msgstr ""
+msgstr "Enigujo de la mesaĝo"
#: src/screens/Messages/components/MessageInput.tsx:79
#: src/screens/Messages/components/MessageInput.web.tsx:60
msgid "Message is too long"
msgstr "Mesaĝo tro longas"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr "Opcioj de mesaĝo"
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Mesaĝoj"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81
msgctxt "Name of app icon variant"
msgid "Midnight"
-msgstr ""
+msgstr "Noktomezo"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47
#: src/lib/moderation/useReportOptions.ts:47
@@ -4295,59 +4714,59 @@ msgstr "Trompa konto"
msgid "Misleading Post"
msgstr "Trompa afiŝo"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Kontrolado"
#: src/components/moderation/ModerationDetailsDialog.tsx:138
msgid "Moderation details"
-msgstr ""
+msgstr "Detaloj pri la kontrolo"
#: src/components/ListCard.tsx:149
#: src/view/com/modals/UserAddRemoveLists.tsx:222
msgid "Moderation list by {0}"
-msgstr ""
+msgstr "Kontrol-listo de {0}"
#: src/view/com/profile/ProfileSubpageHeader.tsx:169
msgid "Moderation list by <0/>"
-msgstr ""
+msgstr "Kontrol-listo de <0/>"
#: src/view/com/modals/UserAddRemoveLists.tsx:220
#: src/view/com/profile/ProfileSubpageHeader.tsx:167
msgid "Moderation list by you"
-msgstr ""
+msgstr "Kontrol-listo farita de vi"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "Kontrol-listo kreita"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "Kontrol-listo ĝisdatigita"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
-msgstr ""
+msgstr "Kontrol-listoj"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
-msgstr ""
+msgstr "Kontrol-listoj"
#: src/components/moderation/LabelPreference.tsx:247
msgid "moderation settings"
msgstr "agordoj pri kontrolado"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "Statoj de kontrolado"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Kontroladaj iloj"
@@ -4356,7 +4775,7 @@ msgstr "Kontroladaj iloj"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Kontrolanto decidis starigi ĝeneralan averton pri la enhavo."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Pli"
@@ -4365,21 +4784,21 @@ msgstr "Pli"
msgid "More feeds"
msgstr "Pli da fluoj"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Pli da opcioj"
#: src/screens/Settings/ThreadPreferences.tsx:94
msgid "Most-liked first"
-msgstr ""
+msgstr "La plej ŝatataj unue"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
-msgstr ""
+msgstr "La plej ŝatataj respondoj unue"
#: src/screens/Onboarding/state.ts:105
msgid "Movies"
@@ -4398,16 +4817,16 @@ msgstr "Silentigi"
#: src/components/RichTextTag.tsx:140
#: src/components/RichTextTag.tsx:153
msgid "Mute {tag}"
-msgstr "Silentigi {tag}"
+msgstr "Silentigi kradvorton {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "Silentigi konton"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Silentigi kontojn"
@@ -4420,17 +4839,17 @@ msgstr "Silentigi konversacion"
msgid "Mute in:"
msgstr "Silentigi en:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Silentigi liston"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "Ĉu silentigi tiujn kontojn?"
#: src/components/dialogs/MutedWords.tsx:185
msgid "Mute this word for 24 hours"
-msgstr "Silentig ĉii tiun vorton dum 24 horoj"
+msgstr "Silentigi ĉi tiun vorton dum 24 horoj"
#: src/components/dialogs/MutedWords.tsx:224
msgid "Mute this word for 30 days"
@@ -4452,26 +4871,26 @@ msgstr "Silentigi ĉi tiun vorton nur en kradvortoj"
msgid "Mute this word until you unmute it"
msgstr "Silentigi ĉi tiun vorton ĝis kiam ĝi estos malsilentigita"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Silentigi fadenon"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
-msgstr "Silentigi vortojn kaj kradvortojn"
+msgstr "Silentigi vortojn k kradvortojn"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Silentigitaj kontoj"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Silentigitaj kontoj"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Kiam vi silentigas konton, ties afiŝoj estos forigitaj el viaj fluo kaj sciigoj. Silentigoj estas tute privataj."
@@ -4479,30 +4898,30 @@ msgstr "Kiam vi silentigas konton, ties afiŝoj estos forigitaj el viaj fluo kaj
msgid "Muted by \"{0}\""
msgstr "Silentigita de \"{0}\""
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
-msgstr "Silentigitaj vortoj kaj kradvortoj"
+msgstr "Silentigitaj vortoj k kradvortoj"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
-msgstr ""
+msgstr "Silentigo estas privata. Silentigitaj kontoj povas interagi kun vi, sed vi ne vidos iliajn afiŝojn nek ricevos sciigojn pri ili."
#: src/components/dialogs/BirthDateSettings.tsx:35
#: src/components/dialogs/BirthDateSettings.tsx:38
msgid "My Birthday"
-msgstr ""
+msgstr "Mia naskiĝtago"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
-msgstr ""
+msgstr "Miaj fluoj"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
-msgstr ""
+msgstr "Nomo"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
-msgstr ""
+msgstr "Nomo estas deviga"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:98
@@ -4513,64 +4932,82 @@ msgstr ""
#: src/lib/moderation/useReportOptions.ts:106
#: src/lib/moderation/useReportOptions.ts:114
msgid "Name or Description Violates Community Standards"
-msgstr ""
+msgstr "Nomo aŭ priskribo kontraŭas komunumajn normojn"
#: src/screens/Onboarding/index.tsx:22
#: src/screens/Onboarding/state.ts:107
msgid "Nature"
-msgstr ""
+msgstr "Naturo"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
-msgstr ""
+msgstr "Iri al {0}"
+
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr "Iri al startpako"
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
-msgstr ""
+msgstr "Iras al la sekva ekrano"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
-msgstr ""
+msgstr "Iras al via profilo"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
-msgstr ""
+msgstr "Ĉu vi bezonas ŝanĝi ĝin?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
-msgstr ""
+msgstr "Ĉu vi bezonas raporti kopirajtan malobservon?"
#: src/screens/Onboarding/StepFinished.tsx:282
msgid "Never lose access to your followers or data."
-msgstr ""
+msgstr "Neniam perdu atingon al viaj sekvantoj aŭ datumoj."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
-msgstr ""
+msgstr "Ne gravas, kreu identigilon por mi"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Nova"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Nova"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
-msgstr ""
+msgstr "Nova babilejo"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr "Nova retpoŝtadreso"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr "Nova funkcio"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
-msgstr "Nova nomo"
+msgstr "Nova identigilo"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "Nova listo"
@@ -4578,9 +5015,9 @@ msgstr "Nova listo"
msgid "New messages"
msgstr "Novaj mesaĝoj"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
-msgstr ""
+msgstr "Nova kontrol-listo"
#: src/view/com/modals/ChangePassword.tsx:224
msgid "New password"
@@ -4590,12 +5027,12 @@ msgstr "Nova pasvorto"
msgid "New Password"
msgstr "Nova pasvorto"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Nova afiŝo"
@@ -4604,28 +5041,29 @@ msgctxt "action"
msgid "New post"
msgstr "Nova afiŝo"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Nova afiŝo"
#: src/components/NewskieDialog.tsx:83
msgid "New user info dialog"
-msgstr ""
+msgstr "Informa dialogujo pri nova uzanto"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
-msgstr ""
+msgstr "Listo de novaj uzantoj"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
-msgstr ""
+msgstr "La plej novaj respondoj unue"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Novaĵoj"
@@ -4645,165 +5083,175 @@ msgstr "Novaĵoj"
#: src/view/com/modals/ChangePassword.tsx:265
#: src/view/com/modals/ChangePassword.tsx:267
msgid "Next"
-msgstr ""
+msgstr "Sekva"
#: src/view/com/lightbox/Lightbox.web.tsx:169
msgid "Next image"
-msgstr ""
+msgstr "Sekva bildo"
#: src/screens/Settings/AppPasswords.tsx:108
msgid "No app passwords yet"
-msgstr ""
+msgstr "Ankoraŭ ne estas apaj pasvortoj"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
-msgstr ""
+msgstr "Ne estas DNS-panelo"
+
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr "Neniu eksvalidiĝo agordita"
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
-msgstr ""
+msgstr "Neniuj elstarigitaj GIF-oj trovitaj. Eble estas problemo pri Tenor."
#: src/screens/StarterPack/Wizard/StepFeeds.tsx:119
msgid "No feeds found. Try searching for something else."
-msgstr ""
+msgstr "Neniu fluo trovita. Provu serĉi ion alian."
+
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr "Sen bildo"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
-msgstr ""
+msgstr "Ankoraŭ ne estas ŝatoj"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
-msgstr ""
+msgstr "Vi ne plu sekvas {0}"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr ""
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr "Ne pli longa ol {MAX_SERVICE_HANDLE_LENGTH, plural, one {# signo}other {# signoj}}."
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
-msgstr ""
+msgstr "Ankoraŭ ne estas mesaĝoj"
#: src/view/com/notifications/NotificationFeed.tsx:116
msgid "No notifications yet!"
-msgstr ""
+msgstr "Ankoraŭ ne estas sciigoj!"
#: src/screens/Messages/Settings.tsx:101
#: src/screens/Messages/Settings.tsx:104
msgid "No one"
-msgstr ""
+msgstr "Neniu"
#: src/components/WhoCanReply.tsx:246
msgid "No one but the author can quote this post."
-msgstr ""
+msgstr "Neniu krom la aŭtoro povas citi ĉi tiun afiŝon."
#: src/screens/Profile/Sections/Feed.tsx:66
msgid "No posts yet."
-msgstr ""
+msgstr "Ankoraŭ ne estas afiŝoj."
#: src/view/com/post-thread/PostQuotes.tsx:105
msgid "No quotes yet"
-msgstr ""
+msgstr "Ankoraŭ ne estas citaĵoj"
#: src/view/com/post-thread/PostRepostedBy.tsx:90
msgid "No reposts yet"
-msgstr ""
+msgstr "Ankoraŭ ne estas reafiŝoj"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
-msgstr ""
+msgstr "Sen rezulto"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
-msgstr ""
+msgstr "Sen rezultoj"
+
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr "Sen rezultoj por \"{0}\"."
#: src/components/Lists.tsx:189
msgid "No results found"
-msgstr ""
+msgstr "Neniu rezulto trovita"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
-msgstr ""
+msgstr "Neniu rezulto trovita por \"{query}\""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
-msgstr ""
+msgstr "Neniu rezulto trovita por {query}"
+
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr "Sen rezultoj."
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
-msgstr ""
+msgstr "Neniu serĉrezulto trovita por \"{search}\"."
#: src/components/dialogs/EmbedConsent.tsx:104
#: src/components/dialogs/EmbedConsent.tsx:111
msgid "No thanks"
-msgstr ""
+msgstr "Ne, dankon"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405
msgid "Nobody"
-msgstr ""
+msgstr "Neniu"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
-msgstr ""
+msgstr "Ankoraŭ neniu ŝatas ĉi tion. Eble vi estu la unua!"
#: src/view/com/post-thread/PostQuotes.tsx:107
msgid "Nobody has quoted this yet. Maybe you should be the first!"
-msgstr ""
+msgstr "Ankoraŭ neniu citis ĉi tion. Eble vi estu la unua!"
#: src/view/com/post-thread/PostRepostedBy.tsx:92
msgid "Nobody has reposted this yet. Maybe you should be the first!"
-msgstr ""
+msgstr "Ankoraŭ neniu reafiŝis ĉi tion. Eble vi estu la unua!"
#: src/screens/StarterPack/Wizard/StepProfiles.tsx:104
msgid "Nobody was found. Try searching for someone else."
-msgstr ""
+msgstr "Neniu estis trovita. Provu serĉi iun alian."
#: src/lib/moderation/useGlobalLabelStrings.ts:42
msgid "Non-sexual Nudity"
-msgstr ""
+msgstr "Ne-seksuma nudeco"
#: src/components/KnownFollowers.tsx:255
msgid "Not followed by anyone you're following"
-msgstr ""
+msgstr "Sekvata de neniu el viaj sekvatoj"
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
-msgstr ""
+msgstr "Netrovita"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr ""
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
-msgstr ""
+msgstr "Noto pri kundivido"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88
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 ""
+msgstr "Atentu: Bluesky estas malfermita kaj publika reto. Ĉi tiu agordo nur limigas la videblecon de via enhavo en la apo kaj retejo de Bluesky, eble aliaj apoj ne respektos ĉi tiun agordon. Aliaj apoj kaj retejoj povas daŭre montri vian enhavon al elsalutintaj uzantoj."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
-msgstr ""
+msgstr "Estas nenio ĉi tie"
#: src/screens/Settings/NotificationSettings.tsx:64
msgid "Notification filters"
-msgstr ""
+msgstr "Filtriloj por sciigoj"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Sciigaj agordoj"
@@ -4820,11 +5268,11 @@ msgstr "Sciigaj sonoj"
msgid "Notification Sounds"
msgstr "Sciigaj sonoj"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Sciigoj"
@@ -4832,314 +5280,333 @@ msgstr "Sciigoj"
msgid "now"
msgstr "nun"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Nun"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
-msgstr ""
+msgstr "Nudeco"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:78
#: src/lib/moderation/useReportOptions.ts:78
msgid "Nudity or adult content not labeled as such"
-msgstr ""
+msgstr "Nudeco aŭ poradolta enhavo ne etikedita tiel"
#: src/lib/moderation/useLabelBehaviorDescription.ts:11
msgid "Off"
-msgstr ""
+msgstr "Malŝaltita"
#: src/components/dialogs/GifSelect.tsx:268
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "Oh no!"
-msgstr ""
+msgstr "Ho ve!"
#: src/screens/Onboarding/StepInterests/index.tsx:124
msgid "Oh no! Something went wrong."
msgstr "Ho ve! Io misfunkciis."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
-msgstr ""
+msgstr "Bone"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
-msgstr ""
+msgstr "Bone"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
-msgstr ""
+msgstr "La plej malnovaj respondoj unue"
#: src/components/StarterPack/QrCode.tsx:82
msgid "on<0><1/><2><3/>2>0>"
-msgstr ""
+msgstr "ĉe<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
-msgstr ""
+msgstr "Restarigi la lernilon"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
-msgstr ""
+msgstr "Al unu aŭ pli da GIF-oj mankas alt-teksto."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
-msgstr ""
+msgstr "Al unu aŭ pli da bildoj mankas alternativa teksto."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
-msgstr ""
+msgstr "Al unu aŭ pli da videaĵoj mankas alternativa teksto."
#: src/screens/Onboarding/StepProfile/index.tsx:115
msgid "Only .jpg and .png files are supported"
-msgstr ""
+msgstr "Nur dosieroj .jpg kaj .png estas subtenataj"
#: src/components/WhoCanReply.tsx:226
msgid "Only {0} can reply."
-msgstr ""
+msgstr "Nur {0} povas respondi."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
-msgstr ""
+msgstr "Nur enhavas literojn, ciferojn kaj streketojn"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
-msgstr ""
+msgstr "Nur bildaj dosieroj estas subtenataj"
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40
msgid "Only WebVTT (.vtt) files are supported"
-msgstr ""
+msgstr "Nur WebVTT-dosieroj (.vtt) estas subtenataj"
#: src/components/Lists.tsx:94
msgid "Oops, something went wrong!"
msgstr "Ups, io misfunkciis!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
-msgstr ""
+msgstr "Ups!"
#: src/screens/Onboarding/StepFinished.tsx:278
msgid "Open"
-msgstr ""
+msgstr "Malfermi"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr ""
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
-msgstr ""
+msgstr "Malfermi la profilbildan kreilon"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
-msgstr ""
+msgstr "Malfermi la opciojn pri konversacio"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
-msgstr ""
+msgstr "Malfermi flankmenuon"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
-msgstr ""
+msgstr "Malfermi emoĝi-elektilon"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
-msgstr ""
+msgstr "Malfermi la informekranon de la fluo"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
-msgstr ""
+msgstr "Malfermi la opciomenuon de la fluo"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr "Malfermi la tutan emoĝi-liston"
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
-msgstr ""
+msgstr "Malfermi ligilon al {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
-msgstr ""
+msgstr "Malfermi opciojn de mesaĝoj"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
-msgstr ""
+msgstr "Malfermi la paĝon de kontrolada sencimigo"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
-msgstr ""
+msgstr "Malfermi agordojn de silentigitaj vortoj kaj kradvortoj"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr "Malfermi pakon"
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
-msgstr ""
+msgstr "Malfermi menuon de la afiŝo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr "Malfermi profilon"
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr "Malfermi konigadan menuon"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
-msgstr ""
+msgstr "Malfermi menuon de startpako"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
-msgstr ""
+msgstr "Malfermi la historiopaĝon"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
-msgstr ""
+msgstr "Malfermi sisteman protokolon"
#: src/view/com/util/forms/DropdownButton.tsx:162
msgid "Opens {numItems} options"
-msgstr ""
+msgstr "Malfermas {numItems} opciojn"
#: src/view/com/composer/labels/LabelsBtn.tsx:62
msgid "Opens a dialog to add a content warning to your post"
-msgstr ""
+msgstr "Malfermas dialogujon por aldoni averton pri enhavo al via afiŝo"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:61
msgid "Opens a dialog to choose who can reply to this thread"
-msgstr ""
+msgstr "Malfermas dialogujon por elekti, kiu povas respondi al ĉi tiu fadeno"
#: src/view/screens/Log.tsx:59
msgid "Opens additional details for a debug entry"
-msgstr ""
-
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
-msgid "Opens alt text dialog"
-msgstr ""
-
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
-msgid "Opens camera on device"
-msgstr ""
+msgstr "Malfermas pliajn detalojn por sencimigo"
#: src/view/com/composer/videos/SubtitleDialog.tsx:44
-msgid "Opens captions and alt text dialog"
-msgstr ""
+msgid "Opens alt text dialog"
+msgstr "Malfermas dialogujon de alternativa teksto"
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+msgid "Opens camera on device"
+msgstr "Malfermas fotilon de aparato"
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
+msgid "Opens captions and alt text dialog"
+msgstr "Malfermas dialogujon de subtekstoj k alternativa teksto"
+
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
-msgstr ""
+msgstr "Malfermas dialogujon por ŝanĝi la identigilon"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35
msgid "Opens composer"
-msgstr ""
+msgstr "Malfermas afiŝ-kreilon"
#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51
msgid "Opens device photo gallery"
-msgstr ""
+msgstr "Malfermas aparatan bildgalerion"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
-msgstr ""
+msgstr "Malfermas emoĝi-elektilon"
#: src/view/com/auth/SplashScreen.tsx:49
#: src/view/com/auth/SplashScreen.web.tsx:111
msgid "Opens flow to create a new Bluesky account"
-msgstr ""
+msgstr "Malfermas procezon de kreado de nova Bluesky-konto"
#: src/view/com/auth/SplashScreen.tsx:63
#: src/view/com/auth/SplashScreen.web.tsx:125
msgid "Opens flow to sign in to your existing Bluesky account"
-msgstr ""
+msgstr "Malfermas procezon de ensalutado al via ekzistanta Bluesky-konto"
#: src/view/com/composer/photos/SelectGifBtn.tsx:36
msgid "Opens GIF select dialog"
-msgstr ""
+msgstr "Malfermas GIF-elektilan dialogujon"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
-msgstr ""
+msgstr "Malfermas la helpocentron en retumilo"
#: src/view/com/modals/InviteCodes.tsx:173
msgid "Opens list of invite codes"
-msgstr ""
+msgstr "Malfermas liston de invitaj kodoj"
+
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr "Malfermi elsendfluada statusa dialogujo"
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
-msgstr ""
+msgstr "Malfermas formularon por restarigi la pasvorton"
#: src/view/com/modals/LinkWarning.tsx:93
msgid "Opens the linked website"
-msgstr ""
+msgstr "Malfermas la ligitan retejon"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
-msgstr ""
+msgstr "Malfermas ĉi tiun profilon"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
-msgstr ""
+msgstr "Malfermas la videaĵ-elektilon"
#: src/components/dms/ReportDialog.tsx:221
#: src/components/ReportDialog/SubmitView.tsx:168
msgid "Optionally provide additional information below:"
-msgstr ""
+msgstr "Laŭvole donu aldonajn informojn suben:"
#: src/components/dialogs/MutedWords.tsx:299
msgid "Options:"
-msgstr ""
+msgstr "Opcioj:"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Or combine these options:"
-msgstr ""
+msgstr "Aŭ elektu el ĉi tiuj opcioj:"
#: src/screens/Deactivated.tsx:200
msgid "Or, continue with another account."
-msgstr ""
+msgstr "Aŭ daŭrigu uzante alian konton."
#: src/screens/Deactivated.tsx:187
msgid "Or, sign in to one of your other accounts."
-msgstr ""
+msgstr "Aŭ ensalutu al unu el viaj aliaj kontoj."
#: src/screens/Settings/components/OTAInfo.tsx:52
msgid "OTA status: ..."
-msgstr ""
+msgstr "OTA stato: ..."
#: src/screens/Settings/components/OTAInfo.tsx:48
msgid "OTA status: Available!"
-msgstr ""
+msgstr "OTA stato: Disponebla!"
#: src/screens/Settings/components/OTAInfo.tsx:50
msgid "OTA status: Error fetching update"
-msgstr ""
+msgstr "OTA stato: Eraro elŝutante ĝisdatigon"
#: src/screens/Settings/components/OTAInfo.tsx:54
msgid "OTA status: None available"
-msgstr ""
+msgstr "OTA stato: Neniu disponebla"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
-msgstr ""
+msgstr "Alia"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
-msgstr ""
+msgstr "Alia konto"
#: src/view/com/composer/select-language/SelectLangBtn.tsx:93
msgid "Other..."
-msgstr ""
+msgstr "Alia..."
#: src/components/dms/ReportDialog.tsx:348
msgid "Our moderation team has received your report."
-msgstr ""
+msgstr "Nia kontrolad-teamo ricevis vian raporton."
#: src/screens/Messages/components/ChatDisabled.tsx:28
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
-msgstr ""
+msgstr "Niaj kontrolantoj ekzamenis raportojn kaj decidis malebligi vian aliron al babilejoj ĉe Bluesky."
#: src/components/Lists.tsx:190
#: src/view/screens/NotFound.tsx:47
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Paĝo netrovita"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5161,312 +5628,331 @@ msgstr "Pasvorto"
#: src/view/com/modals/ChangePassword.tsx:154
msgid "Password Changed"
-msgstr ""
+msgstr "Pasvorto ŝanĝita"
#: src/view/com/modals/ChangePassword.tsx:99
msgid "Password must be at least 8 characters long."
-msgstr ""
+msgstr "Pasvorto devas havi almenaŭ 8 signojn."
#: src/screens/Login/index.tsx:181
msgid "Password updated"
-msgstr ""
+msgstr "Pasvorto ĝisdatigita"
#: src/screens/Login/PasswordUpdatedForm.tsx:23
msgid "Password updated!"
-msgstr ""
+msgstr "Pasvorto ĝisdatigita!"
#: src/view/com/util/post-embeds/GifEmbed.tsx:43
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369
msgid "Pause"
-msgstr ""
+msgstr "Paŭzigi"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320
msgid "Pause video"
-msgstr ""
+msgstr "Paŭzigi videaĵon"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
-msgstr ""
+msgstr "Homoj"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
-msgstr ""
+msgstr "Homoj sekvataj de @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
-msgstr ""
+msgstr "Homoj sekvantaj @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr ""
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr ""
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr "Permeso por aliro al via bildbiblioteko estis neita. Bonvolu doni ĝin en viaj sistemagordoj."
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
-msgstr ""
+msgstr "Aldoni/Forigi personon"
#: src/screens/Onboarding/index.tsx:28
#: src/screens/Onboarding/state.ts:109
msgid "Pets"
-msgstr ""
+msgstr "Dorlotbestoj"
#: src/screens/Onboarding/state.ts:110
msgid "Photography"
-msgstr ""
+msgstr "Fotografio"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
-msgstr ""
+msgstr "Bildoj destinitaj por adoltoj."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
-msgstr ""
+msgstr "Alpingli fluon"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr ""
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr "Alpingli fluon"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
-msgstr ""
+msgstr "Alpingli al hejmo"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
-msgstr ""
+msgstr "Alpingli al hejmo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
-msgstr ""
+msgstr "Alpingli al via profilo"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
-msgstr ""
+msgstr "Alpinglita"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
-msgstr ""
+msgstr "{0} alpinglita al hejmo"
#: src/view/screens/SavedFeeds.tsx:123
msgid "Pinned Feeds"
-msgstr ""
+msgstr "Alpinglitaj fluoj"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
-msgstr ""
+msgstr "Alpinglita al viaj fluoj"
#: src/view/com/util/post-embeds/GifEmbed.tsx:43
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370
msgid "Play"
-msgstr ""
+msgstr "Ludi"
#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107
msgid "Play {0}"
-msgstr ""
+msgstr "Ludi {0}"
#: src/view/com/util/post-embeds/VideoEmbed.tsx:134
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321
msgid "Play video"
-msgstr ""
+msgstr "Ludi videaĵon"
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
-msgstr ""
+msgstr "Ludi videaĵon"
#: src/view/com/util/post-embeds/GifEmbed.tsx:42
msgid "Plays or pauses the GIF"
-msgstr ""
+msgstr "Ludas aŭ paŭzigas la GIF-on"
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141
msgid "Plays or pauses the video"
-msgstr ""
+msgstr "Ludas aŭ paŭzigas la videaĵon"
#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106
msgid "Plays the GIF"
-msgstr ""
+msgstr "Ludas la GIF-on"
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59
msgid "Plays the video"
-msgstr ""
+msgstr "Ludas la videaĵon"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr "Bonvolu aldoni ĉiujn avertajn etikedojn de la enhavo, kiuj aplikeblas al la aŭdvidaĵo, kiun vi afiŝas."
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
-msgstr ""
+msgstr "Bonvolu elekti vian nomon."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
-msgstr ""
+msgstr "Bonvolu elekti vian pasvorton."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr "Bonvolu alklaki la ligilon en la retmesaĝo, kiun ni ĵus sendis al vi, por konfirmi vian novan retpoŝtadreson. Ĉi tio estas grava paŝo por permesi al vi daŭre ĝui ĉiujn funkciojn de Bluesky."
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
-msgstr ""
+msgstr "Bonvolu plenumi la captcha-kontrolon."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr ""
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
-msgstr ""
+msgstr "Bonvolu rekontroli ĉu vi ĝuste entajpis vian retpoŝtadreson."
#: src/screens/Login/SetNewPasswordForm.tsx:58
msgid "Please enter a password."
-msgstr ""
+msgstr "Bonvolu entajpi pasvorton."
#: src/view/com/modals/ChangePassword.tsx:94
msgid "Please enter a password. It must be at least 8 characters long."
-msgstr ""
+msgstr "Bonvolu entajpi pasvorton. Ĝi devas havi almenaŭ 8 signojn."
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114
msgid "Please enter a unique name for this app password or use our randomly generated one."
-msgstr ""
+msgstr "Bonvolu entajpi unikan nomon por ĉi tiu apa pasvorto, aŭ uzu nian hazarde generitan."
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr "Bonvolu entajpi validan kodon."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr "Bonvolu entajpi validan retpoŝtadreson."
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
-msgstr ""
+msgstr "Bonvolu entajpi validan vorton, kradvorton, aŭ frazon por silentigi"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr "Bonvolu entajpi suben la kodon, kiun ni sendis al <0>{0}0>."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr "Bonvolu entajpi la sekurecan kodon, kiun ni sendis al via antaŭa retpoŝtadreso."
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
-msgstr ""
+msgstr "Bonvolu entajpi vian retpoŝtadreson."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
-msgstr ""
+msgstr "Bonvolu entajpi vian invitan kodon."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr "Bonvolu entajpi vian novan retpoŝtadreson."
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
-msgstr ""
+msgstr "Bonvolu entajpi vian pasvorton"
#: src/view/com/modals/DeleteAccount.tsx:235
msgid "Please enter your password as well:"
-msgstr ""
+msgstr "Bonvolu ankaŭ entajpi vian pasvorton:"
#: src/screens/Login/LoginForm.tsx:94
msgid "Please enter your username"
-msgstr ""
+msgstr "Bonvolu entajpi vian uzantnomon"
#: src/components/moderation/LabelsOnMeDialog.tsx:290
msgid "Please explain why you think this label was incorrectly applied by {0}"
-msgstr ""
+msgstr "Bonvolu klarigi kial vi kredas, ke ĉi tiu etikedo estis malĝuste surmetita de {0}"
#: src/screens/Messages/components/ChatDisabled.tsx:110
msgid "Please explain why you think your chats were incorrectly disabled"
-msgstr ""
+msgstr "Bonvolu klarigi kial vi pensas, ke viaj babilejoj estis malebligitaj mise"
#: src/components/moderation/ReportDialog/action.ts:31
msgid "Please select a moderation service"
-msgstr ""
+msgstr "Bonvolu elekti kontrol-servon"
#: src/components/moderation/ReportDialog/action.ts:28
msgid "Please select a reason for this report"
-msgstr ""
+msgstr "Bonvolu elekti kaŭzon de ĉi tiu raporto"
#: src/lib/hooks/useAccountSwitcher.ts:45
#: src/lib/hooks/useAccountSwitcher.ts:55
msgid "Please sign in as @{0}"
-msgstr ""
+msgstr "Bonvolu ensaluti kiel @{0}"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr "Bonvolu konfirmi vian retpoŝtadreson"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
-msgstr ""
+msgstr "Bonvolu konfirmi vian retpoŝtadreson"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
-msgstr ""
+msgstr "Politiko"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr ""
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
-msgstr ""
+msgstr "Pornografio"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
-msgstr ""
+msgstr "Afiŝi"
#: src/view/com/post-thread/PostThread.tsx:540
msgctxt "description"
msgid "Post"
-msgstr ""
+msgstr "Afiŝo"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
-msgstr ""
+msgstr "Afiŝi ĉiujn"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
-msgstr ""
+msgstr "Afiŝo de {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
-msgstr ""
+msgstr "Afiŝo de @{0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "Afiŝo forigita"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
-msgstr ""
+msgstr "Malsukcesis ŝargi afiŝon. Bonvolu kontroli vian retkonekton kaj reprovi."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
-msgstr ""
+msgstr "Afiŝo estis forigita"
#: src/view/com/post-thread/PostThread.tsx:269
msgid "Post hidden"
-msgstr ""
+msgstr "Afiŝo kaŝita"
#: src/components/moderation/ModerationDetailsDialog.tsx:107
#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "Post Hidden by Muted Word"
-msgstr ""
+msgstr "Afiŝo kaŝita de silentigita vorto"
#: src/components/moderation/ModerationDetailsDialog.tsx:110
#: src/lib/moderation/useModerationCauseDescription.ts:115
msgid "Post Hidden by You"
-msgstr ""
+msgstr "Afiŝo kaŝita de vi"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100
msgid "Post interaction settings"
-msgstr ""
+msgstr "Interagaj agordoj de afiŝo"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
-msgstr ""
+msgstr "Interagaj agordoj de afiŝo"
#: src/view/com/composer/select-language/SelectLangBtn.tsx:89
msgid "Post language"
-msgstr ""
+msgstr "Afiŝa lingvo"
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:77
msgid "Post Languages"
-msgstr ""
+msgstr "Afiŝaj lingvoj"
#: src/view/com/post-thread/PostThread.tsx:264
#: src/view/com/post-thread/PostThread.tsx:276
@@ -5476,681 +5962,739 @@ msgstr "Afiŝo netrovita"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "Afiŝo alpinglita"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "Afiŝo depinglita"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Afiŝoj"
#: 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 ""
+msgstr "Afiŝoj povas esti silentigitaj laŭ sia teksto, siaj etikedoj, aŭ ambaŭ. Ni rekomendas eviti oftajn vortojn, kiuj aperas en multaj afiŝoj, ĉar tio povas rezultigi, ke neniu afiŝo estos montrota."
#: src/view/com/posts/PostFeedErrorMessage.tsx:68
msgid "Posts hidden"
-msgstr ""
+msgstr "Afiŝoj kaŝitaj"
#: src/view/com/modals/LinkWarning.tsx:60
msgid "Potentially Misleading Link"
-msgstr ""
+msgstr "Eventuale misgvida ligilo"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "Prefero konservita"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
-msgstr ""
+msgstr "Premu por provi rekonekti"
#: src/components/Error.tsx:60
#: src/components/Lists.tsx:99
#: src/screens/Messages/components/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:47
msgid "Press to retry"
-msgstr ""
+msgstr "Premu por reprovi"
#: src/components/KnownFollowers.tsx:125
msgid "Press to view followers of this account that you also follow"
-msgstr ""
+msgstr "Premu por vidi sekvantojn de ĉi tiu konto kiun vi ankaŭ sekvas"
#: src/view/com/lightbox/Lightbox.web.tsx:150
msgid "Previous image"
-msgstr ""
+msgstr "Antaŭa bildo"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
-msgstr ""
+msgstr "Ĉefa lingvo"
#: src/screens/Settings/ThreadPreferences.tsx:112
#: src/screens/Settings/ThreadPreferences.tsx:117
msgid "Prioritize your Follows"
-msgstr ""
+msgstr "Prioritatigi viajn sekvatojn"
#: src/screens/Settings/NotificationSettings.tsx:67
msgid "Priority notifications"
-msgstr ""
+msgstr "Prioritataj sciigoj"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
-msgstr ""
+msgstr "Privateco"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
-msgstr ""
+msgstr "Privateco kaj sekureco"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
-msgstr ""
+msgstr "Privateco kaj sekureco"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
-msgstr ""
+msgstr "Regularo pri privateco"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
-msgstr ""
+msgstr "Pritraktado de videaĵo..."
#: src/lib/api/index.ts:60
#: src/screens/Login/ForgotPasswordForm.tsx:149
msgid "Processing..."
-msgstr ""
+msgstr "Pritraktado..."
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
-msgstr ""
+msgstr "profilo"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
-msgstr ""
+msgstr "Profilo"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "Profilo ĝisdatigita"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
-msgstr ""
+msgstr "Publika"
#: src/view/com/lists/MyLists.tsx:77
msgid "Public, sharable lists of users to mute or block in bulk."
-msgstr ""
+msgstr "Publikaj kaj kundivideblaj listoj por bloki aŭ silentigi uzantojn amase."
#: src/view/com/lists/MyLists.tsx:72
msgid "Public, sharable lists which can be used to drive feeds."
-msgstr ""
+msgstr "Publikaj k kundivideblaj listoj, kiuj povas esti uzitaj por funkciigi fluojn."
+
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr "Publikigi afiŝon"
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr "Publikigi afiŝojn"
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr "Publikigi respondojn"
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr "Publikigi respondon"
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
-msgstr ""
+msgstr "QR-kodo kopiita al via tondujo!"
#: src/components/StarterPack/QrCodeDialog.tsx:112
msgid "QR code has been downloaded!"
-msgstr ""
+msgstr "QR-kodo estis elŝutita!"
#: src/components/StarterPack/QrCodeDialog.tsx:113
msgid "QR code saved to your camera roll!"
-msgstr ""
+msgstr "QR-kodo konservita en via bildgalerio!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
-msgstr ""
+msgstr "Citi afiŝon"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
-msgstr ""
+msgstr "La citafiŝo estis religita"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
-msgstr ""
+msgstr "La citaĵo estis sukcese malligita"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
-msgstr ""
+msgstr "Citafiŝoj malebligitaj"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329
msgid "Quote settings"
-msgstr ""
+msgstr "Agordoj de citado"
#: src/screens/Post/PostQuotes.tsx:38
msgid "Quotes"
-msgstr ""
+msgstr "Citaĵoj"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
-msgstr ""
+msgstr "Citaĵoj de ĉi tiu afiŝo"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
-msgstr ""
+msgstr "Hazarda (alinome \"Afiŝinta ruleto\")"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
-msgstr ""
+msgstr "Limo de operacioj transpasita – vi provis ŝanĝi vian identigilon tro multajn fojojn dum mallonga tempo. Bonvolu atendi minuton antaŭ provi denove."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
-msgstr ""
+msgstr "Religi citaĵon"
+
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr "Reagi per {emoji}"
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
-msgstr ""
+msgstr "Reaktivigi vian konton"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr "Legi blogan afiŝon"
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
-msgstr ""
+msgstr "Legi malpli"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
-msgstr ""
+msgstr "Legi pli"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Legi la blogon de Bluesky"
#: src/screens/Signup/StepInfo/Policies.tsx:58
#: src/screens/Signup/StepInfo/Policies.tsx:84
msgid "Read the Bluesky Privacy Policy"
-msgstr ""
+msgstr "Legi la Regularon pri privateco de Bluesky"
#: src/screens/Signup/StepInfo/Policies.tsx:51
#: src/screens/Signup/StepInfo/Policies.tsx:71
msgid "Read the Bluesky Terms of Service"
-msgstr ""
+msgstr "Legi la uzokondiĉojn de Bluesky"
#: src/screens/Takendown.tsx:162
#: src/screens/Takendown.tsx:170
msgid "Reason for appeal"
-msgstr ""
+msgstr "Kialo de apelacio"
#: src/components/dms/ReportDialog.tsx:212
msgid "Reason:"
-msgstr ""
+msgstr "Kialo:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
-msgstr ""
+msgstr "Lastaj serĉoj"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
-msgstr ""
+msgstr "Rekomenditaj"
#: src/screens/Messages/components/MessageListError.tsx:20
msgid "Reconnect"
msgstr "Rekonekti"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
-msgstr ""
+msgstr "Malakcepti"
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
-msgstr ""
+msgstr "Malakcepti babilpeton"
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
-msgstr ""
+msgstr "Reŝargi konversaciojn"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
-msgstr ""
+msgstr "Forigi"
#: src/components/StarterPack/Wizard/WizardListCard.tsx:58
msgid "Remove {displayName} from starter pack"
-msgstr ""
+msgstr "Forigi {displayName} el la startpako"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
-msgstr ""
+msgstr "Forigi {historyItem}"
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
-msgstr ""
+msgstr "Forigi konton"
#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15
msgid "Remove attachment"
-msgstr ""
+msgstr "Forigi aldonaĵon"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
-msgstr ""
+msgstr "Forigi profilbildon"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
-msgstr ""
+msgstr "Forigi rubandon"
#: src/screens/Messages/components/MessageInputEmbed.tsx:209
msgid "Remove embed"
-msgstr ""
+msgstr "Forigi enkorpigaĵon"
#: src/view/com/posts/FeedShutdownMsg.tsx:116
#: src/view/com/posts/FeedShutdownMsg.tsx:120
#: src/view/com/posts/PostFeedErrorMessage.tsx:169
msgid "Remove feed"
-msgstr ""
+msgstr "Forigi fluon"
#: src/view/com/posts/PostFeedErrorMessage.tsx:210
msgid "Remove feed?"
-msgstr ""
+msgstr "Ĉu forigi fluon?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
-msgstr ""
+msgstr "Forigi el miaj fluoj"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
-msgstr ""
+msgstr "Ĉu forigi el la rapitatingo?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
-msgstr ""
+msgstr "Forigi el konservitaj fluoj"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
-msgstr ""
+msgstr "Ĉu forigi el viaj fluoj?"
#: src/view/com/composer/photos/Gallery.tsx:203
msgid "Remove image"
-msgstr ""
+msgstr "Forigi bildon"
+
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr "Forigi elsendfluadan statuson"
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
-msgstr ""
+msgstr "Forigi silentigitan vorton el via listo"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Forigi profilon"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290
msgid "Remove quote"
-msgstr ""
+msgstr "Forigi citaĵon"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Forigi reafiŝon"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
-msgstr ""
+msgstr "Forigi subtekstan dosieron"
#: src/view/com/posts/PostFeedErrorMessage.tsx:211
msgid "Remove this feed from your saved feeds"
-msgstr ""
+msgstr "Forigi ĉi tiun fluon el viaj konservitaj fluoj"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr "Forigi uzanton el la listo"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr "Forigi konfirmon"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr "Ĉu forigi vian konfirmon por ĉi tiu konto?"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
-msgstr ""
+msgstr "Forigita de la aŭtoro"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108
msgid "Removed by you"
msgstr "Forigita de vi"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
-msgstr ""
+msgstr "Forigis el listo"
#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
-msgstr ""
+msgstr "Forigis el miaj fluoj"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
-msgstr ""
+msgstr "Forigis el konservitaj fluoj"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
-msgstr ""
+msgstr "Forigita el viaj fluoj"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr ""
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr "Konfirmo forigita"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
-msgstr ""
+msgstr "Forigas citatan afiŝon"
#: src/view/com/posts/FeedShutdownMsg.tsx:129
#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
-msgstr ""
+msgstr "Anstataŭigi per Discover"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
-msgstr ""
+msgstr "Respondoj"
#: src/components/WhoCanReply.tsx:73
msgid "Replies disabled"
-msgstr ""
+msgstr "Respondoj malebligitaj"
#: src/components/WhoCanReply.tsx:224
msgid "Replies to this post are disabled."
-msgstr ""
+msgstr "Respondoj por ĉi tiu afiŝo estis malebligitaj."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Respondi"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
-msgstr ""
+msgstr "Respondi ({0, plural, one {# respondo} other {# respondoj}})"
#: src/components/moderation/ModerationDetailsDialog.tsx:116
#: src/lib/moderation/useModerationCauseDescription.ts:125
msgid "Reply Hidden by Thread Author"
-msgstr ""
+msgstr "Respondo kaŝita de la faden-aŭtoro"
#: src/components/moderation/ModerationDetailsDialog.tsx:115
#: src/lib/moderation/useModerationCauseDescription.ts:124
msgid "Reply Hidden by You"
-msgstr ""
+msgstr "Respondo kaŝita de vi"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385
msgid "Reply settings"
-msgstr ""
+msgstr "Agordoj pri respondado"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370
msgid "Reply settings are chosen by the author of the thread"
-msgstr ""
+msgstr "Agordoj pri respondado estas elektitaj de la aŭtoro de la fadeno"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
-msgstr ""
+msgstr "Ordigado de respondoj"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
-msgstr ""
+msgstr "Respondi al <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
-msgstr ""
+msgstr "Respondi al blokita afiŝo"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
-msgstr ""
+msgstr "Respondi al afiŝo"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
-msgstr ""
+msgstr "Respondi al vi"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "Videbleco de respondoj ĝisdatiĝis"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
-msgstr ""
+msgstr "Respondo estis sukcese kaŝita"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
-msgstr ""
+msgstr "Raporti"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
-msgstr ""
+msgstr "Raporti konton"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
-msgstr ""
+msgstr "Raporti konversacion"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
-msgstr ""
+msgstr "Raporta dialogujo"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
-msgstr ""
+msgstr "Raporti fluon"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
-msgstr ""
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
+msgstr "Raporti liston"
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
-msgstr ""
+msgstr "Raporti mesaĝon"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
-msgstr ""
+msgstr "Raporti afiŝon"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
-msgstr ""
+msgstr "Raporti startpakon"
#: src/components/dms/ReportDialog.tsx:345
msgid "Report submitted"
-msgstr ""
+msgstr "Raporto sendita"
#: src/components/ReportDialog/SelectReportOptionView.tsx:41
msgid "Report this content"
-msgstr ""
+msgstr "Raporti ĉi tiun enhavon"
#: src/components/moderation/ReportDialog/copy.ts:31
#: src/components/ReportDialog/SelectReportOptionView.tsx:54
msgid "Report this feed"
-msgstr ""
+msgstr "Raporti ĉi tiun fluon"
#: src/components/moderation/ReportDialog/copy.ts:25
#: src/components/ReportDialog/SelectReportOptionView.tsx:51
msgid "Report this list"
-msgstr ""
+msgstr "Raporti ĉi tiun liston"
#: src/components/dms/ReportDialog.tsx:59
#: src/components/dms/ReportDialog.tsx:180
#: src/components/moderation/ReportDialog/copy.ts:43
#: src/components/ReportDialog/SelectReportOptionView.tsx:60
msgid "Report this message"
-msgstr ""
+msgstr "Raporti ĉi tiun mesaĝon"
#: src/components/moderation/ReportDialog/copy.ts:19
#: src/components/ReportDialog/SelectReportOptionView.tsx:48
msgid "Report this post"
-msgstr ""
+msgstr "Raporti ĉi tiun afiŝon"
#: src/components/moderation/ReportDialog/copy.ts:37
#: src/components/ReportDialog/SelectReportOptionView.tsx:57
msgid "Report this starter pack"
-msgstr ""
+msgstr "Raporti ĉi tiun startpakon"
#: src/components/moderation/ReportDialog/copy.ts:13
#: src/components/ReportDialog/SelectReportOptionView.tsx:45
msgid "Report this user"
-msgstr ""
+msgstr "Raporti ĉi tiun uzanton"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
-msgstr ""
+msgstr "Reafiŝi"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
-msgstr ""
+msgstr "Reafiŝi"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
-msgstr ""
+msgstr "Reafiŝi ({0, plural, one {# reafiŝo} other {# reafiŝoj}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
-msgstr ""
+msgstr "Reafiŝi aŭ citafiŝi"
#: src/screens/Post/PostRepostedBy.tsx:38
msgid "Reposted By"
-msgstr ""
+msgstr "Reafiŝita de"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
-msgstr ""
+msgstr "Reafiŝita de {0}"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
-msgstr ""
+msgstr "Reafiŝita de <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
-msgstr ""
+msgstr "Reafiŝita de vi"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
-msgstr ""
+msgstr "Reafiŝoj de ĉi tiu afiŝo"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr ""
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr "Peti ŝanĝon"
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
msgid "Request Code"
-msgstr ""
+msgstr "Peti kodon"
#: src/screens/Settings/AccessibilitySettings.tsx:60
#: src/screens/Settings/AccessibilitySettings.tsx:65
msgid "Require alt text before posting"
-msgstr ""
+msgstr "Devigi alternativan tekston antaŭ ol afiŝi"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
-msgstr ""
+msgstr "Devigi retmesaĝan kodon por ensaluti al via konto."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
-msgstr ""
+msgstr "Necesa por ĉi tiu provizanto"
#: src/components/LabelingServiceCard/index.tsx:80
msgid "Required in your region"
-msgstr ""
+msgstr "Devigita en via regiono"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr "Resendi"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
-msgstr ""
+msgstr "Resendi retmesaĝon"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
-msgstr ""
+msgstr "Resendi retmesaĝon"
#: src/components/intents/VerifyEmailIntentDialog.tsx:122
msgid "Resend Verification Email"
-msgstr ""
+msgstr "Resendi konfirman retmesaĝon"
#: src/view/com/modals/ChangePassword.tsx:197
msgid "Reset code"
-msgstr ""
+msgstr "Restariga kodo"
#: src/view/com/modals/ChangePassword.tsx:204
msgid "Reset Code"
-msgstr ""
+msgstr "Restariga kodo"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
-msgstr ""
+msgstr "Restarigi staton de la lernilo"
#: src/screens/Login/ForgotPasswordForm.tsx:80
msgid "Reset password"
-msgstr ""
+msgstr "Restarigi pasvorton"
#: src/screens/Login/LoginForm.tsx:324
msgid "Retries signing in"
-msgstr ""
+msgstr "Provoj ensaluti"
#: src/view/com/util/error/ErrorMessage.tsx:62
#: src/view/com/util/error/ErrorScreen.tsx:99
msgid "Retries the last action, which errored out"
-msgstr ""
+msgstr "Reprovas la lastan agon, kiu eraris"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6159,646 +6703,687 @@ msgstr ""
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
-msgstr ""
+msgstr "Reprovi"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
-msgstr ""
+msgstr "Reprovi ŝargi raportajn opciojn"
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
-msgstr ""
+msgstr "Reveni al la antaŭa paĝo"
#: src/view/screens/NotFound.tsx:61
msgid "Returns to home page"
-msgstr ""
+msgstr "Revenas al hejmpaĝo"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
-msgstr ""
+msgstr "Revenas al antaŭa paĝo"
#: src/screens/StarterPack/Wizard/index.tsx:287
msgid "Returns to the previous step"
-msgstr ""
+msgstr "Revenas al la antaŭa paŝo"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Konservi"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Konservi"
#: src/components/dialogs/BirthDateSettings.tsx:115
msgid "Save birthday"
-msgstr ""
+msgstr "Konservi naskiĝtagon"
#: src/view/screens/SavedFeeds.tsx:105
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save changes"
-msgstr ""
+msgstr "Konservi ŝanĝojn"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
-msgstr ""
+msgstr "Konservi ŝanĝojn"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
-msgstr ""
+msgstr "Konservi bildon"
#: src/view/com/modals/CropImage.web.tsx:104
msgid "Save image crop"
-msgstr ""
+msgstr "Konservi stucon de bildo"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
-msgstr ""
+msgstr "Konservi novan identigilon"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
-msgstr ""
+msgstr "Konservi QR-kodon"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
-msgstr ""
+msgstr "Konservi al miaj fluoj"
#: src/view/screens/SavedFeeds.tsx:164
msgid "Saved Feeds"
-msgstr ""
+msgstr "Konservitaj fluoj"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
-msgstr ""
+msgstr "Konservita al viaj fluoj"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
-msgstr ""
+msgstr "Konservas ĉiujn ŝanĝojn de via profilo"
#: src/view/com/modals/CropImage.web.tsx:105
msgid "Saves image crop settings"
-msgstr ""
+msgstr "Konservi agordojn de bildstucado"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
-msgstr ""
+msgstr "Diru saluton!"
#: src/screens/Onboarding/index.tsx:33
#: src/screens/Onboarding/state.ts:112
msgid "Science"
-msgstr ""
+msgstr "Scienco"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
-msgstr ""
+msgstr "Rulumi al la supro"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
-msgstr ""
+msgstr "Serĉi"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
-msgstr ""
+msgstr "Serĉi afiŝojn de @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
-msgstr ""
+msgstr "Serĉi per nomo aŭ intereso"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
-msgstr ""
+msgstr "Serĉi fluojn"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
-msgstr ""
+msgstr "Serĉi \"{interestsDisplayName}\"{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
-msgstr ""
+msgstr "Serĉi \"{query}\""
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
-msgstr ""
+msgstr "Serĉi \"{searchText}\""
#: src/screens/StarterPack/Wizard/index.tsx:474
msgid "Search for feeds that you want to suggest to others."
-msgstr ""
+msgstr "Serĉu fluojn, kiujn vi volas proponi al aliuloj."
-#: src/view/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr "Serĉi pliajn kontojn"
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr "Serĉi pliajn fluojn"
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
-msgstr ""
-
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr ""
+msgstr "Serĉi afiŝojn, uzantojn aŭ fluojn"
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
-msgstr ""
+msgstr "Serĉi GIF-ojn"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
-msgstr ""
+msgstr "Serĉi miajn afiŝojn"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
-msgstr ""
+msgstr "Serĉi afiŝojn"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
-msgstr ""
+msgstr "Serĉi profilojn"
#: src/components/dialogs/GifSelect.tsx:178
msgid "Search Tenor"
-msgstr ""
+msgstr "Traserĉi Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
-msgstr ""
+msgstr "Serĉi..."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
-msgstr ""
+msgstr "Serĉas profilojn"
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr "Sekureca etapo devigita"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
-msgstr ""
+msgstr "Sekureca etapo devigita"
#: src/components/RichTextTag.tsx:111
msgid "See {tag} posts"
-msgstr ""
+msgstr "Vidi afiŝojn pri {tag}"
#: src/components/RichTextTag.tsx:124
msgid "See {tag} posts by user"
-msgstr ""
+msgstr "Vidi afiŝojn pri {tag} de uzanto"
#: src/components/RichTextTag.tsx:118
msgid "See #{tag} posts"
-msgstr ""
+msgstr "Vidi afiŝojn pri #{tag}"
#: src/components/RichTextTag.tsx:132
msgid "See #{tag} posts by user"
-msgstr ""
+msgstr "Vidi afiŝojn pri #{tag} de uzanto"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
-msgstr ""
+msgstr "Vidu laborpostenojn ĉe Bluesky"
#: src/view/screens/SavedFeeds.tsx:205
msgid "See this guide"
-msgstr ""
+msgstr "Vidi ĉi tiun gvidilon"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194
msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause"
-msgstr ""
+msgstr "Serĉ-ŝovilo. Uzu la sagoklavojn por serĉi antaŭen kaj malantaŭen kaj spacoklavon por ludi/paŭzi"
#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67
msgid "Select a color"
-msgstr ""
+msgstr "Elekti koloron"
#: src/screens/Login/ChooseAccountForm.tsx:77
msgid "Select account"
-msgstr ""
+msgstr "Elekti konton"
+
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr "Elektu lingvon de la apo"
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
-msgstr ""
+msgstr "Elekti profilbildon"
#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65
msgid "Select an emoji"
-msgstr ""
+msgstr "Elekti emoĝion"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr "Elektu opcion"
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr "Elektu apan lingvon"
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
-msgstr ""
+msgstr "Elekti lingvojn de enhavo"
+
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr "Agordi daŭrecon"
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
-msgstr ""
+msgstr "Elektu el ekzistanta konto"
#: src/view/com/composer/photos/SelectGifBtn.tsx:35
msgid "Select GIF"
-msgstr ""
+msgstr "Elektu GIF-on"
#: src/components/dialogs/GifSelect.tsx:306
msgid "Select GIF \"{0}\""
-msgstr ""
+msgstr "Elektu GIF-on \"{0}\""
#: src/components/dialogs/MutedWords.tsx:142
msgid "Select how long to mute this word for."
-msgstr ""
+msgstr "Elektu por kiom longe silentigi ĉi tiun vorton."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
-msgstr ""
+msgstr "Elekti lingvon..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
-msgstr ""
+msgstr "Elekti lingvojn"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
-msgstr ""
+msgstr "Elektu kontrol-servon"
#: src/components/ReportDialog/SelectLabelerView.tsx:28
msgid "Select moderator"
-msgstr ""
+msgstr "Elekti kontrolanton"
+
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr "Elektu ĉefan lingvon"
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
-msgstr ""
+msgstr "Elektu subtekst-dosieron (.vtt)"
#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83
msgid "Select the {emojiName} emoji as your avatar"
-msgstr ""
+msgstr "Elekti emoĝion {emojiName} kiel profilbildon"
#: src/components/ReportDialog/SubmitView.tsx:141
msgid "Select the moderation service(s) to report to"
-msgstr ""
+msgstr "Elektu kontrol-servo(j)n, al kiu vi volas raporti"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
-msgstr ""
+msgstr "Elekti videaĵon"
#: src/components/dialogs/MutedWords.tsx:242
msgid "Select what content this mute word should apply to."
-msgstr ""
+msgstr "Elektu, al kia enhavo apliku silentigon de ĉi tiu vorto."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
-msgstr ""
+msgstr "Elektu kiun lingvon uzi por la apa uzantinterfaco."
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
-msgstr ""
+msgstr "Elektu kiujn lingvojn vi volas en viaj abonitaj fluoj. Se neniu elektita, ĉiuj lingvoj estos montrotaj."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
-msgstr ""
+msgstr "Elektu la daton de via naskiĝo"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
-msgstr ""
+msgstr "Elektu viajn interesojn el la opcioj sube"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
-msgstr ""
+msgstr "Elektu viajn preferatajn lingvojn por tradukoj en viaj fluoj."
#: src/view/com/util/forms/DropdownButton.tsx:297
msgid "Selects option {0} of {numItems}"
-msgstr ""
+msgstr "Elektas opcion {0} el {numItems}"
#: src/components/dms/ChatEmptyPill.tsx:38
msgid "Send a neat website!"
-msgstr ""
+msgstr "Sendu mojosan retejon!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr ""
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
+msgstr "Sendi konfirmon"
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
-msgstr ""
-
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr ""
+msgstr "Sendi konfirman retmesaĝon"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
-msgstr ""
+msgstr "Sendi retmesaĝon"
#: src/view/com/modals/DeleteAccount.tsx:158
msgctxt "action"
msgid "Send Email"
-msgstr ""
+msgstr "Sendi retmesaĝon"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
-msgstr ""
+msgstr "Sendi prikomentadon"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
-msgstr ""
+msgstr "Sendi mesaĝon"
+
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr "Sendi afiŝon al {name}"
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
-msgstr ""
+msgstr "Sendi afiŝon al..."
#: src/components/dms/ReportDialog.tsx:271
#: src/components/dms/ReportDialog.tsx:274
#: src/components/ReportDialog/SubmitView.tsx:221
#: src/components/ReportDialog/SubmitView.tsx:225
msgid "Send report"
-msgstr ""
+msgstr "Sendi raporton"
#: src/components/ReportDialog/SelectLabelerView.tsx:42
msgid "Send report to {0}"
-msgstr ""
+msgstr "Sendi raporton al {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
-msgstr ""
+msgstr "Sendi raporton al {title}"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
-msgstr ""
+msgstr "Sendi konfirman retmesaĝon"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
-msgstr ""
+msgstr "Sendi per rekta mesaĝo"
#: src/view/com/modals/DeleteAccount.tsx:147
msgid "Sends email with confirmation code for account deletion"
-msgstr ""
+msgstr "Sendas retmesaĝon kun konfirmkodo por forigi konton"
#: src/view/com/auth/server-input/index.tsx:167
msgid "Server address"
-msgstr ""
+msgstr "Servila adreso"
#: src/screens/Settings/AppIconSettings/index.tsx:178
msgid "Set app icon to {0}"
-msgstr ""
+msgstr "Agordi apan piktogramon al {0}"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
-msgstr ""
+msgstr "Agordi naskiĝdaton"
#: src/screens/Login/SetNewPasswordForm.tsx:106
msgid "Set new password"
-msgstr ""
+msgstr "Agordi novan pasvorton"
#: src/screens/Onboarding/Layout.tsx:47
msgid "Set up your account"
-msgstr ""
+msgstr "Agordu vian konton"
#: src/screens/Login/ForgotPasswordForm.tsx:107
msgid "Sets email for password reset"
-msgstr ""
+msgstr "Agordas retpoŝtadreson por restarigi pasvorton"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
-msgstr ""
+msgstr "Agordoj"
#: src/screens/ModerationInteractionSettings/index.tsx:102
msgctxt "toast"
msgid "Settings saved"
-msgstr ""
+msgstr "Agordoj konservitaj"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
-msgstr ""
+msgstr "Seksuma ago aŭ erotika nudeco."
#: src/lib/moderation/useGlobalLabelStrings.ts:38
msgid "Sexually Suggestive"
-msgstr ""
+msgstr "Seksume sugesta"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
-msgstr ""
+msgstr "Konigi"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
-msgstr ""
+msgstr "Konigi"
#: src/components/dms/ChatEmptyPill.tsx:37
msgid "Share a cool story!"
-msgstr ""
+msgstr "Konigu mojosan rakonton!"
#: src/components/dms/ChatEmptyPill.tsx:36
msgid "Share a fun fact!"
-msgstr ""
+msgstr "Konigu anekdoton!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
-msgstr ""
+msgstr "Diskonigi malgraŭ tio"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr "Konigi DID-on de aŭtoro"
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
-msgstr ""
+msgstr "Konigi ligilon"
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Share Link"
-msgstr ""
+msgstr "Konigi ligilon"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
-msgstr ""
+msgstr "Dialogujo pri ligila konigado"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr "Konigi URI-on at:// de afiŝo"
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
-msgstr ""
+msgstr "Konigi QR-kodon"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
-msgstr ""
+msgstr "Konigi ĉi tiun fluon"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
-msgstr ""
+msgstr "Konigi ĉi tiun startpakon"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
-msgstr ""
+msgstr "Konigu ĉi tiun startpakon kaj helpu homojn aliĝi vian komunumon ĉe Bluesky."
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr "Konigi per..."
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
-msgstr ""
+msgstr "Konigu vian plej ŝatatan fluon!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
-msgstr ""
+msgstr "Testanto de komunaj preferoj"
#: src/view/com/modals/LinkWarning.tsx:92
msgid "Shares the linked website"
-msgstr ""
+msgstr "Konigas la ligitan retejon"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
-msgstr ""
+msgstr "Montri"
#: src/view/com/util/post-embeds/GifEmbed.tsx:178
msgid "Show alt text"
-msgstr ""
+msgstr "Montri alternativan tekston"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
-msgstr ""
+msgstr "Montri ĉiuokaze"
#: src/lib/moderation/useLabelBehaviorDescription.ts:27
#: src/lib/moderation/useLabelBehaviorDescription.ts:63
msgid "Show badge"
-msgstr ""
+msgstr "Montri ŝildon"
#: src/lib/moderation/useLabelBehaviorDescription.ts:61
msgid "Show badge and filter from feeds"
-msgstr ""
+msgstr "Montri ŝildon kaj elfiltri el fluoj"
#: src/components/dialogs/Embed.tsx:129
msgid "Show customization options"
-msgstr ""
+msgstr "Montru tajloradajn opciojn"
#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22
msgid "Show hidden replies"
-msgstr ""
+msgstr "Montri kaŝitajn respondojn"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
-msgstr ""
+msgstr "Montri malpli da similaj afiŝoj"
#: src/screens/List/ListHiddenScreen.tsx:186
msgid "Show list anyway"
-msgstr ""
+msgstr "Montri liston ĉiuokaze"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
-msgstr ""
+msgstr "Montri pli"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
-msgstr ""
+msgstr "Montri pli da similaj afiŝoj"
#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22
msgid "Show muted replies"
-msgstr ""
+msgstr "Montri silentigitajn respondojn"
#: src/screens/Settings/FollowingFeedPreferences.tsx:104
#: src/screens/Settings/FollowingFeedPreferences.tsx:114
msgid "Show quote posts"
-msgstr ""
+msgstr "Montri citafiŝojn"
#: src/screens/Settings/FollowingFeedPreferences.tsx:68
#: src/screens/Settings/FollowingFeedPreferences.tsx:78
msgid "Show replies"
-msgstr ""
+msgstr "Montri respondojn"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
-msgstr ""
+msgstr "Montri respondojn"
#: src/screens/Settings/ThreadPreferences.tsx:151
msgid "Show replies as threaded"
-msgstr ""
+msgstr "Montri respondojn fadene"
#: src/screens/Settings/ThreadPreferences.tsx:126
msgid "Show replies by people you follow before all other replies"
-msgstr ""
+msgstr "Montri respondojn de miaj sekvatoj antaŭ ĉiuj aliaj respondoj"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
-msgstr ""
+msgstr "Montri respondojn por ĉiuj"
#: src/screens/Settings/FollowingFeedPreferences.tsx:86
#: src/screens/Settings/FollowingFeedPreferences.tsx:96
msgid "Show reposts"
-msgstr ""
+msgstr "Montri reafiŝojn"
#: src/screens/Settings/FollowingFeedPreferences.tsx:129
#: src/screens/Settings/FollowingFeedPreferences.tsx:139
msgid "Show samples of your saved feeds in your Following feed"
-msgstr ""
+msgstr "Montri ekzemplojn de viaj konservitaj fluoj en via fluo de Sekvatoj"
#: src/lib/moderation/useLabelBehaviorDescription.ts:58
msgid "Show warning"
-msgstr ""
+msgstr "Montri averton"
#: src/lib/moderation/useLabelBehaviorDescription.ts:56
msgid "Show warning and filter from feeds"
-msgstr ""
+msgstr "Montri averton kaj elfiltri el fluoj"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
-msgstr ""
+msgstr "Montri informojn pri kiam ĉi tiu afiŝo estis kreita"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
-msgstr ""
+msgstr "Montras aliajn kontojn al kiuj vi povas ŝanĝi"
#: src/components/moderation/ContentHider.tsx:152
#: src/components/moderation/PostHider.tsx:79
msgid "Shows the content"
-msgstr ""
+msgstr "Montras la enhavon"
#: src/components/dialogs/Signin.tsx:97
#: src/components/dialogs/Signin.tsx:99
@@ -6809,123 +7394,135 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
-msgstr ""
+msgstr "Ensaluti"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
-msgstr ""
+msgstr "Ensaluti kiel {0}"
#: src/screens/Login/ChooseAccountForm.tsx:80
msgid "Sign in as..."
-msgstr ""
-
-#: src/components/dialogs/Signin.tsx:75
-msgid "Sign in or create your account to join the conversation!"
-msgstr ""
+msgstr "Ensaluti kiel..."
#: src/screens/Deactivated.tsx:203
#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr ""
+msgid "Sign in or create an account"
+msgstr "Ensalutu aŭ kreu konton"
-#: src/components/AccountList.tsx:65
+#: src/components/dialogs/Signin.tsx:75
+msgid "Sign in or create your account to join the conversation!"
+msgstr "Ensalutu aŭ kreu vian konton por aliĝi al la konversacio!"
+
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
-msgstr ""
+msgstr "Ensaluti al nelistigitan konton"
#: src/components/dialogs/Signin.tsx:46
msgid "Sign in to Bluesky or create a new account"
-msgstr ""
+msgstr "Ensalutu al Bluesky aŭ kreu novan konton"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
-msgstr ""
+msgstr "Elsaluti"
#: src/screens/Takendown.tsx:88
msgid "Sign Out"
-msgstr ""
+msgstr "Elsaluti"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
-msgstr ""
+msgstr "Ĉu elsaluti?"
#: src/components/moderation/ScreenHider.tsx:91
#: src/lib/moderation/useGlobalLabelStrings.ts:28
msgid "Sign-in Required"
-msgstr ""
+msgstr "Ensaluto devigita"
#: src/lib/hooks/useAccountSwitcher.ts:41
#: src/screens/Login/ChooseAccountForm.tsx:53
msgid "Signed in as @{0}"
-msgstr ""
-
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr ""
+msgstr "Ensalutinta kiel @{0}"
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
-msgstr ""
+msgstr "Similaj kontoj"
#: src/screens/Onboarding/StepInterests/index.tsx:231
#: src/screens/StarterPack/Wizard/index.tsx:195
msgid "Skip"
-msgstr ""
+msgstr "Preterpasi"
#: src/screens/Onboarding/StepInterests/index.tsx:228
msgid "Skip this flow"
-msgstr ""
+msgstr "Preterpasi ĉi tiun fluon"
#: src/screens/Settings/AppearanceSettings.tsx:164
msgid "Smaller"
-msgstr ""
+msgstr "Malpli granda"
+
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr "Dormetas la sciigon"
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
-msgstr ""
+msgstr "Programado"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr "Iuj de viaj konfirmoj estas nevalidaj."
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
-msgstr ""
+msgstr "Kelkaj aliaj fluoj, kiuj eble plaĉos al vi"
#: src/components/WhoCanReply.tsx:74
msgid "Some people can reply"
-msgstr ""
+msgstr "Kelkaj homoj povas respondi"
+
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr "Iu reagis per {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr "Iu reagis per {0} al {1}"
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
-msgstr ""
+msgstr "Io ne estis tute ĝusta pri la datumoj, kiujn vi provas raporti. Bonvolu kontaki subtenejon."
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Io misfunkciis"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Io misokazis, bonvolu reprovi"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Io misfunkciis, bonvolu reprovi."
@@ -6934,30 +7531,30 @@ msgstr "Io misfunkciis, bonvolu reprovi."
msgid "Something went wrong!"
msgstr "Io misfunkciis!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
-msgstr ""
+msgstr "Io misfunkciis. Bonvolu reprovi."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
-msgstr ""
+msgstr "Ĉu io misfunkciis? Sciigu nin."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
-msgstr ""
+msgstr "Pardonu! Via seanco eksvalidiĝis. Bonvolu ensaluti denove."
#: src/screens/Settings/ThreadPreferences.tsx:55
msgid "Sort replies"
-msgstr ""
+msgstr "Ordigi respondojn"
#: src/screens/Settings/ThreadPreferences.tsx:62
msgid "Sort replies by"
-msgstr ""
+msgstr "Ordigi respondojn laŭ"
#: src/screens/Settings/ThreadPreferences.tsx:59
msgid "Sort replies to the same post by:"
-msgstr ""
+msgstr "Ordigi respondojn al la sama afiŝo laŭ:"
#: src/components/moderation/LabelsOnMeDialog.tsx:178
#: src/components/moderation/ModerationDetailsDialog.tsx:186
@@ -6969,242 +7566,259 @@ msgstr "Fonto: <0>{sourceName}0>"
#: src/lib/moderation/useReportOptions.ts:72
#: src/lib/moderation/useReportOptions.ts:85
msgid "Spam"
-msgstr ""
+msgstr "Trudaĵo"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55
#: src/lib/moderation/useReportOptions.ts:55
msgid "Spam; excessive mentions or replies"
-msgstr ""
+msgstr "Trudaĵo; troaj mencioj aŭ respondoj"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
-msgstr ""
+msgstr "Sporto"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr "Komencu konversacion, kaj ĝi aperos ĉi tie."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
-msgstr ""
-
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
-msgid "Start adding people"
-msgstr ""
+msgstr "Komenci novan babilejon"
#: src/view/screens/ProfileList.tsx:846
#: src/view/screens/ProfileList.tsx:967
+msgid "Start adding people"
+msgstr "Komenci aldoni homojn"
+
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
-msgstr ""
+msgstr "Komencu aldoni homojn!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
-msgstr ""
+msgstr "Komenci babili kun {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
-msgstr ""
+msgstr "Startpako"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
-msgstr ""
+msgstr "Startpako de {0}"
#: src/view/com/profile/ProfileSubpageHeader.tsx:182
msgid "Starter pack by <0/>"
-msgstr ""
+msgstr "Startpako de <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
-msgstr ""
+msgstr "Startpako de vi"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
-msgstr ""
+msgstr "Startpako nevalidas"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
-msgstr ""
+msgstr "Startpakoj"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
-msgstr ""
+msgstr "Starterpako ebligas al vi konigi viajn plej ŝatatajn fluojn kaj homojn kun viaj amikoj."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
-msgstr ""
+msgstr "Paĝo pri stato"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
-msgstr ""
+msgstr "Paŝo {0} el {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
-msgstr ""
+msgstr "Konservejo vakigita, nun relanĉu la apon."
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
-msgstr ""
+msgstr "Historio de agoj"
#: src/components/moderation/LabelsOnMeDialog.tsx:324
#: src/components/moderation/LabelsOnMeDialog.tsx:325
#: src/screens/Messages/components/ChatDisabled.tsx:142
#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Submit"
-msgstr ""
+msgstr "Sendi"
#: src/screens/Takendown.tsx:70
msgid "Submit appeal"
-msgstr ""
+msgstr "Sendi apelacion"
#: src/screens/Takendown.tsx:76
msgid "Submit Appeal"
-msgstr ""
+msgstr "Sendi apelacion"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
-msgstr ""
+msgstr "Sendi raporton"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
-msgstr ""
+msgstr "Aboni"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
-msgstr ""
+msgstr "Aboni al @{0} por uzi tiujn etikedojn:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
-msgstr ""
+msgstr "Aboni al etikedilo"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
-msgstr ""
+msgstr "Aboni al ĉi tiu etikedilo"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
-msgstr ""
+msgstr "Aboni al ĉi tiu listo"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
-msgstr ""
+msgstr "Sukceso!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
-msgstr ""
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr "Sukcese konfirmita"
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
+msgstr "Proponitaj kontoj"
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
-msgstr ""
+msgstr "Proponitaj por vi"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
-msgstr ""
+msgstr "Maldeca"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60
msgctxt "Name of app icon variant"
msgid "Sunrise"
-msgstr ""
+msgstr "Sunleviĝo"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70
msgctxt "Name of app icon variant"
msgid "Sunset"
-msgstr ""
+msgstr "Sunsubiro"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
-msgstr ""
+msgstr "Subteno"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
-msgstr ""
+msgstr "Ŝanĝi konton"
#: src/components/dialogs/SwitchAccount.tsx:46
#: src/components/dialogs/SwitchAccount.tsx:49
msgid "Switch Account"
-msgstr ""
+msgstr "Ŝanĝi konton"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
-msgstr ""
+msgstr "Ŝanĝi konton"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
-msgstr ""
+msgstr "Ŝanĝi al {0}"
#: src/components/dialogs/Embed.tsx:157
#: src/components/dialogs/Embed.tsx:159
#: src/screens/Settings/AppearanceSettings.tsx:97
#: src/screens/Settings/AppearanceSettings.tsx:147
msgid "System"
-msgstr ""
+msgstr "Sistema"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
-msgstr ""
+msgstr "Sistema protokolo"
#: src/components/dialogs/MutedWords.tsx:282
msgid "Tags only"
-msgstr ""
+msgstr "Nur kradvortoj"
+
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr "Tuŝetu por fermi kuntekstmenuon"
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
-msgstr ""
+msgstr "Tuŝetu por ignori"
#: src/state/shell/progress-guide.tsx:233
msgid "Task complete - 10 follows!"
-msgstr ""
+msgstr "Tasko farita - 10 kontoj sekvataj!"
#: src/state/shell/progress-guide.tsx:223
msgid "Task complete - 10 likes!"
-msgstr ""
+msgstr "Tasko farita - 10 ŝatoj!"
#: src/components/ProgressGuide/List.tsx:64
msgid "Teach our algorithm what you like"
-msgstr ""
+msgstr "Sciigu la algoritmon pri tio, kion vi ŝatas"
#: src/screens/Onboarding/index.tsx:36
#: src/screens/Onboarding/state.ts:114
msgid "Tech"
-msgstr ""
+msgstr "Teknologio"
#: src/components/dms/ChatEmptyPill.tsx:35
msgid "Tell a joke!"
-msgstr ""
+msgstr "Diru ŝercon!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
-msgstr ""
+msgstr "Diru nin iom pri vi"
#: src/screens/StarterPack/Wizard/StepDetails.tsx:69
msgid "Tell us a little more"
-msgstr ""
+msgstr "Diru nin pli"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
-msgstr ""
+msgstr "Kondiĉoj"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
-msgstr ""
+msgstr "Uzokondiĉoj"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:60
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99
@@ -7215,589 +7829,625 @@ msgstr ""
#: src/lib/moderation/useReportOptions.ts:107
#: src/lib/moderation/useReportOptions.ts:115
msgid "Terms used violate community standards"
-msgstr ""
+msgstr "Uzitaj terminoj kontraŭas komunumajn normojn"
#: src/components/dialogs/MutedWords.tsx:266
msgid "Text & tags"
-msgstr ""
+msgstr "Teksto k kradvortoj"
#: src/components/dms/ReportDialog.tsx:229
msgid "Text field"
-msgstr ""
+msgstr "Tekstokampo"
#: src/components/moderation/LabelsOnMeDialog.tsx:288
#: src/screens/Messages/components/ChatDisabled.tsx:108
msgid "Text input field"
-msgstr ""
+msgstr "Kampo de teksta enigo"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr "Dankon pro via prikomentado! Ĝi estis sendita al la operatoro de la fluo."
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
-msgstr ""
+msgstr "Dankon! Via retpoŝtadreso estis sukcese konfirmita."
#: src/components/ReportDialog/SubmitView.tsx:83
msgid "Thank you. Your report has been sent."
-msgstr ""
+msgstr "Dankon. Via raporto estis sendita."
#: src/components/intents/VerifyEmailIntentDialog.tsx:82
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
-msgstr ""
+msgstr "Dankon, vi sukcese konfirmis vian retpoŝtadreson. Vi povas fermi ĉi tiun dialogujon."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
-msgstr ""
+msgstr "Tio enhavas la jenan:"
#: src/screens/Signup/StepHandle.tsx:55
msgid "That handle is already taken."
-msgstr ""
+msgstr "Tiu identigilo estas jam estas uzata."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
-msgstr ""
+msgstr "Tiu startpako ne troveblas."
#: src/view/com/post-thread/PostQuotes.tsx:132
msgid "That's all, folks!"
-msgstr ""
+msgstr "Jen ĉio, uloj!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
-msgstr ""
+msgstr "Tio estas ĉio!"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
-msgstr ""
+msgstr "Post malbloki, la konto povos interagi kun vi."
#: src/screens/Settings/AppIconSettings/index.tsx:41
#: src/screens/Settings/AppIconSettings/index.tsx:222
msgid "The app will be restarted"
-msgstr ""
+msgstr "La apo estos restartita"
#: src/components/moderation/ModerationDetailsDialog.tsx:119
#: src/lib/moderation/useModerationCauseDescription.ts:128
msgid "The author of this thread has hidden this reply."
-msgstr ""
+msgstr "La aŭtoro de ĉi tiu fadeno kaŝis tiun respondon."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
-msgstr ""
+msgstr "La reta aplikaĵo de Bluesky"
#: src/view/screens/CommunityGuidelines.tsx:38
msgid "The Community Guidelines have been moved to <0/>"
-msgstr ""
+msgstr "La komunumaj gvidnormoj estis movitaj al <0/>"
#: src/view/screens/CopyrightPolicy.tsx:35
msgid "The Copyright Policy has been moved to <0/>"
-msgstr ""
+msgstr "La regularo pri kopirajtoj translokiĝis al <0/>"
#: src/view/com/posts/FeedShutdownMsg.tsx:102
msgid "The Discover feed"
-msgstr ""
+msgstr "La fluo Discover"
#: src/state/shell/progress-guide.tsx:224
msgid "The Discover feed now knows what you like"
-msgstr ""
+msgstr "La fluo Discover scias, kion plaĉas al vi"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr "La retpoŝtadreso kiun vi entajpis, estas la sama kiel via nuna retpoŝtadreso."
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
-msgstr ""
+msgstr "Estas pli bone uzi la aplikaĵon. Elŝutu Bluesky nun kaj ni revenos tien, kie vi haltis."
#: src/view/com/posts/FeedShutdownMsg.tsx:67
msgid "The feed has been replaced with Discover."
-msgstr ""
+msgstr "La fluo estis anstataŭigita per Discover."
#: src/components/moderation/LabelsOnMeDialog.tsx:59
msgid "The following labels were applied to your account."
-msgstr ""
+msgstr "La jenaj etikedoj estis aplikitaj al via konto."
#: src/components/moderation/LabelsOnMeDialog.tsx:60
msgid "The following labels were applied to your content."
-msgstr ""
+msgstr "La jenaj etikedoj estis aplikitaj al via enhavo."
#: src/screens/ModerationInteractionSettings/index.tsx:42
msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer."
-msgstr ""
+msgstr "La sekvaj agordoj estos uzataj defaŭlte por ĉiuj kreataj de vi afiŝoj. Vi povas ŝanĝi ilin por unuopa afiŝo per la redaktilo."
#: src/view/com/post-thread/PostThread.tsx:265
#: src/view/com/post-thread/PostThread.tsx:277
msgid "The post may have been deleted."
-msgstr ""
+msgstr "La afiŝo eble estis forigita."
#: src/view/screens/PrivacyPolicy.tsx:35
msgid "The Privacy Policy has been moved to <0/>"
-msgstr ""
+msgstr "La regularo pri privateco translokiĝis al <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr ""
+msgid "The selected video is larger than 100 MB."
+msgstr "La elektita videaĵo estas pli granda ol 100 MB."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
-msgstr ""
+msgstr "La servilo ŝajnas havi problemon. Bonvolu reprovi post kelkaj momentoj."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
-msgstr ""
+msgstr "La startpako, kiun vi provas vidi, estas nevalida. Vi povas forigi ĝin."
+
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr "La temo de la kuntekstmenuo"
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
-msgstr ""
+msgstr "La formularo de subteno estis movita. Se vi bezonas helpon, bonvolu <0/> aŭ vizitu {HELP_DESK_URL} por kontakti nin."
#: src/view/screens/TermsOfService.tsx:35
msgid "The Terms of Service have been moved to"
-msgstr ""
+msgstr "La Uzkondiĉoj translokiĝis al"
#: src/components/intents/VerifyEmailIntentDialog.tsx:94
msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one."
-msgstr ""
+msgstr "La konfirmkodo kiun vi entajpis estas nevalida. Bonvolu certiĝi, ke vi uzis la ĝustan konfirman ligilon aŭ petu la novan."
#: src/screens/Settings/AppearanceSettings.tsx:151
msgid "Theme"
-msgstr ""
+msgstr "Etosa"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
msgid "There is no time limit for account deactivation, come back any time."
-msgstr ""
+msgstr "Ne estas templimo por konta malaktivigo, revenu iam ajn."
#: src/components/dialogs/GifSelect.tsx:226
msgid "There was an issue connecting to Tenor."
-msgstr ""
+msgstr "Estis problemo konektante al Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
-msgstr ""
+msgstr "Estis problemo konektante servilon"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
-msgstr ""
+msgstr "Estis problemo konektante servilon, bonvolu kontroli vian interretan konekton kaj reprovu."
#: src/view/com/feeds/FeedSourceCard.tsx:127
#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
-msgstr ""
+msgstr "Estis problemo konektante al via servilo"
#: src/view/com/notifications/NotificationFeed.tsx:124
msgid "There was an issue fetching notifications. Tap here to try again."
-msgstr ""
+msgstr "Estis problemo ŝargante sciigojn. Tuŝetu ĉi tie por reprovi."
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
-msgstr ""
+msgstr "Estis problemo ŝargante afiŝojn. Tuŝeti ĉi tie por reprovi."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
-msgstr ""
+msgstr "Estis problemo ŝargante la liston. Tuŝetu ĉi tie por reprovi."
#: src/screens/Settings/AppPasswords.tsx:60
msgid "There was an issue fetching your app passwords"
-msgstr ""
+msgstr "Estis problemo ŝargante viajn apajn pasvortojn"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
-msgstr ""
+msgstr "Estis problemo ŝargante viajn listojn. Tuŝetu ĉi tie por reprovi."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
-msgstr ""
+msgstr "Problemo okazis dum ŝarĝi infomojn de via servo"
#: src/view/com/posts/PostFeedErrorMessage.tsx:145
msgid "There was an issue removing this feed. Please check your internet connection and try again."
-msgstr ""
+msgstr "Estis problemo forigante ĉi tiun fluon. Bonvolu kontroli vian interretan konekton kaj reprovu."
#: src/components/dms/ReportDialog.tsx:259
#: src/components/ReportDialog/SubmitView.tsx:88
msgid "There was an issue sending your report. Please check your internet connection."
-msgstr ""
+msgstr "Estis problemo sendante vian raporton. Bonvolu kontroli vian interretan konekton."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
-msgstr ""
+msgstr "Estis problemo ĝisdatigante viajn fluojn, bonvolu kontroli vian interretan konekton kaj reprovu."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
-msgstr ""
+msgstr "Estis problemo! {0}"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
-msgstr ""
+msgstr "Okazis problemo. Bonvolu kontroli vian interretan konekton kaj reprovi."
#: src/components/dialogs/GifSelect.tsx:270
#: src/view/com/util/ErrorBoundary.tsx:59
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
-msgstr ""
+msgstr "Okazis neatendita problemo en la aplikaĵo. Bonvolu sciigi nin se tio okazis al vi!"
#: src/screens/SignupQueued.tsx:130
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
-msgstr ""
+msgstr "Estas impeto de novaj uzantoj ĉe Bluesky! Ni aktivigos vian konton kiel eble plej rapide."
#: src/screens/Settings/FollowingFeedPreferences.tsx:62
msgid "These settings only apply to the Following feed."
-msgstr ""
+msgstr "Ĉi tiuj agordoj nur aplikas al la fluo de sekvatoj."
#: src/components/moderation/ScreenHider.tsx:111
msgid "This {screenDescription} has been flagged:"
-msgstr ""
+msgstr "Ĉi tiu {screenDescription} estas markita per flago:"
+
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr "Ĉi tiu konto havas kontrolmarkon, ĉar ĝi estis konfirmita de fidataj fontoj."
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr "Ĉi tiu konto havas unu aŭ pli provitajn konfirmojn, sed ĝi ne estas nune konfirmita."
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
-msgstr ""
+msgstr "Ĉi tiu konto petis, ke uzantoj ensalutu por vidi ties profilo."
#: src/components/dms/BlockedByListDialog.tsx:34
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 ""
+msgstr "Ĉi tiu konto estas blokita de unu aŭ pli de viaj kontroladaj listoj. Por malbloki, bonvolu rekte viziti la listojn kaj forigu ĉi tiun uzanton."
+
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr "Tiu ago povas esti malfarota iam ajn."
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
-msgstr ""
+msgstr "Ĉi tiu apelacio estos sendota al <0>{sourceName}0>."
#: src/screens/Messages/components/ChatDisabled.tsx:104
msgid "This appeal will be sent to Bluesky's moderation service."
-msgstr ""
+msgstr "Ĉi tiu apelacio estos sendota al la kontrolservo de Bluesky."
#: src/screens/Messages/components/MessageListError.tsx:18
msgid "This chat was disconnected"
-msgstr ""
+msgstr "Ĉi tiu babilo malkonektiĝis"
#: src/lib/moderation/useGlobalLabelStrings.ts:19
msgid "This content has been hidden by the moderators."
-msgstr ""
+msgstr "Ĉi tiu enhavo estas kaŝita laŭ kontrolantoj."
#: src/lib/moderation/useGlobalLabelStrings.ts:24
msgid "This content has received a general warning from moderators."
-msgstr ""
+msgstr "Ĉi tiu enhavo ricevis ĝeneralan averton de kontrolantoj."
#: src/components/dialogs/EmbedConsent.tsx:63
msgid "This content is hosted by {0}. Do you want to enable external media?"
-msgstr ""
+msgstr "Ĉi tiu enhavo estas gastigata de {0}. Ĉu vi volas ebligi eksterajn aŭdvidaĵojn?"
#: src/components/moderation/ModerationDetailsDialog.tsx:84
#: src/lib/moderation/useModerationCauseDescription.ts:84
msgid "This content is not available because one of the users involved has blocked the other."
-msgstr ""
+msgstr "Ĉi tiu enhavo ne disponeblas pro ke unu el la koncernataj uzantoj blokis la alian."
#: src/view/com/posts/PostFeedErrorMessage.tsx:114
msgid "This content is not viewable without a Bluesky account."
-msgstr ""
+msgstr "Ĉi tiu enhavo ne estas videbla sen Bluesky-konto."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
-msgstr ""
+msgstr "Ĉi tiu konversacio estas kun forigita aŭ malaktivigita konto. Premu por opcioj"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr "Ĉi tiu retpoŝtadreso jam estas ligita al via konto."
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
-msgstr ""
+msgstr "Ĉi tiu funkcio estas en beta. Vi povas legi pli pri deponejaj eksportoj en <0>ĉi tiu blogafiŝo0>."
+
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr "Ĉi tiu funkcio ne disponeblas dum uzado de apa pasvorto. Bonvolu ensaluti per via ĉefa pasvorto."
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
-msgstr ""
+msgstr "Ĉi tiu funkcio ne disponeblas dum uzado de apa pasvorto. Bonvolu ensaluti per via ĉefa pasvorto."
#: src/view/com/posts/PostFeedErrorMessage.tsx:120
msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later."
-msgstr ""
+msgstr "Ĉi tiu fluo nune havas grandan datumtrafikon kaj dumtempe nedisponeblas. Bonvolu provi denove poste."
#: src/view/com/posts/CustomFeedEmptyState.tsx:38
msgid "This feed is empty! You may need to follow more users or tune your language settings."
-msgstr ""
+msgstr "Ĉi tiu fluo malplenas! Eble vi devas sekvi pli da uzantoj aŭ ŝanĝi viajn lingvajn agordojn."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
-msgstr ""
+msgstr "Ĉi tiu fluo malplenas."
#: src/view/com/posts/FeedShutdownMsg.tsx:99
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
-msgstr ""
+msgstr "Ĉi tiu fluo ne plu estas enreta. Anstataŭe ni montras <0>Discover0>."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
-msgstr ""
+msgstr "Ĉi tiu identigilo estas rezervita. Bonvolu provi alian."
#: src/components/dialogs/BirthDateSettings.tsx:41
msgid "This information is not shared with other users."
-msgstr ""
+msgstr "Ĉi tiuj informoj ne estas montrataj al aliaj uzantoj."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr ""
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr "Ĉi tio ne estas valida ligilo"
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
-msgstr ""
+msgstr "Ĉi tiu etiketo estis aplikita de la aŭtoro."
#: src/components/moderation/LabelsOnMeDialog.tsx:165
msgid "This label was applied by you."
-msgstr ""
+msgstr "Ĉi tiu etikedo estis aplikita de vi."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
-msgstr ""
+msgstr "Ĉi tiu etikedilo ne deklaris, kiajn etikedojn ĝi publikigas kaj ĝi povas esti neaktiva."
#: src/view/com/modals/LinkWarning.tsx:72
msgid "This link is taking you to the following website:"
-msgstr ""
+msgstr "Ĉi tiu ligilo kondukas vin al la jena retejo:"
#: src/screens/List/ListHiddenScreen.tsx:151
msgid "This list – created by <0>{0}0> – contains possible violations of Bluesky's community guidelines in its name or description."
-msgstr ""
+msgstr "Nomo aŭ priskribo de ĉi tiu listo – kreita de <0>{0}0> – enhavas eble malobservojn de komunumaj gvidnormoj de Bluesky."
#: src/screens/List/ListHiddenScreen.tsx:146
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
-msgstr ""
+msgstr "Nomo aŭ priskribo de ĉi tiu listo – kreita de vi – enhavas eble malobservojn de komunumaj gvidnormoj de Bluesky."
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
-msgstr ""
+msgstr "Ĉi tiu listo malplenas."
#: src/screens/Profile/ErrorState.tsx:40
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
-msgstr ""
+msgstr "Ĉi tiu kontrolservo neatingeblas. Vidu pli da detaloj sube. Se ĉi tiu problemo daŭras, kontaktu nin."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
-msgstr ""
+msgstr "Ĉi tiu afiŝo asertas, ke ĝi estis kreita je <0>{0}0>, sed ĝi estis unue vidita ĉe Bluesky je <1>{1}1>."
#: src/components/WhoCanReply.tsx:217
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
-msgstr ""
+msgstr "Ĉi tiu afiŝo havas nekonatan tipon de fadenado. Via apo eble estas malaktuala."
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
-msgstr ""
+msgstr "Ĉi tiu afiŝo estis forigita."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
-msgstr ""
+msgstr "Ĉi tiu afiŝo estas nur videbla al ensalutintaj uzantoj. Ĝi ne estos videbla al ne ensalutintaj homoj."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
-msgstr ""
+msgstr "Ĉi tiu afiŝo estos kaŝita el fluoj kaj fadenoj. Tio ne povas esti malfarita."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
-msgstr ""
+msgstr "La aŭtoro de ĉi tiu afiŝo malŝaltis citafiŝojn."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
-msgstr ""
+msgstr "Ĉi tiu profilo estas nur videbla al ensalutintaj uzantoj. Ĝi ne estos videbla al ne ensalutintaj homoj."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
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 ""
+msgstr "Ĉi tiu respondo estos ordigota en kaŝitan sekcion ĉe la subo de via fadeno kaj silentigos sciigojn pri sekvontaj respondoj - ambaŭ por vi kaj aliuloj."
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
-msgstr ""
+msgstr "Ĉi tiu servo ne havigis uzokondiĉojn aŭ regularon pri privateco."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
-msgstr ""
+msgstr "Ĉi tio kreu domajnan rikordon ĉe:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr "Ĉi tiu uzanto ne havas montratan nomon, kaj tial ne povas esti konfirmita."
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
-msgstr ""
+msgstr "Ĉi tiu uzanto havas neniun sekvanton."
#: src/components/dms/MessagesListBlockedFooter.tsx:68
msgid "This user has blocked you"
-msgstr ""
+msgstr "Ĉi tiu uzanto blokis vin"
#: src/components/moderation/ModerationDetailsDialog.tsx:79
#: src/lib/moderation/useModerationCauseDescription.ts:75
msgid "This user has blocked you. You cannot view their content."
-msgstr ""
+msgstr "Ĉi tiu uzanto blokis vin. Vi ne povas vidi ties enhavon."
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
-msgstr ""
+msgstr "Ĉi tiu uzanto petis, ke ties enhavo nur estu montrita al ensalutintaj uzantoj."
#: src/components/moderation/ModerationDetailsDialog.tsx:59
msgid "This user is included in the <0>{0}0> list which you have blocked."
-msgstr ""
+msgstr "Ĉ tiu uzanto estas en la listo <0>{0}0> kiun vi blokis."
#: src/components/moderation/ModerationDetailsDialog.tsx:91
msgid "This user is included in the <0>{0}0> list which you have muted."
-msgstr ""
+msgstr "Ĉi tiu uzanto estas inkluzivita en la listo <0>{0}0>, kiun vi silentigis."
#: src/components/NewskieDialog.tsx:65
msgid "This user is new here. Press for more info about when they joined."
-msgstr ""
+msgstr "Ĉi tiu uzanto novas ĉi tie. Premu por pliaj informoj pri kiam ties aliĝis."
#: src/view/com/profile/ProfileFollows.tsx:95
msgid "This user isn't following anyone."
-msgstr ""
+msgstr "Ĉi tiu uzanto sekvas neniun."
#: src/components/dialogs/MutedWords.tsx:435
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
-msgstr ""
+msgstr "Ĉi tio forigos \"{0}\" de viaj silentigitaj vortoj. Vi ĉiam povos realdoni ĝin poste."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
-msgstr ""
+msgstr "Ĉi tio forigos @{0} el la listo de rapidatingo."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
-msgstr ""
+msgstr "Ĉi tio forigos vian afiŝon el ĉi tiu citafiŝo por ĉiuj uzantoj kaj anstataŭigos ĝin per lokokupilo."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
-msgstr ""
+msgstr "Fadenaj agordoj"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
-msgstr ""
+msgstr "Fadenaj preferoj"
#: src/screens/Settings/ThreadPreferences.tsx:45
msgid "Thread Preferences"
-msgstr ""
+msgstr "Fadenaj preferoj"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
-msgstr ""
+msgstr "Fadene"
#: src/screens/Settings/ThreadPreferences.tsx:142
msgid "Threaded mode"
-msgstr ""
+msgstr "Fadena reĝimo"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
-msgstr ""
+msgstr "Agordoj pri fadenoj"
#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34
msgid "Time remaining: {0, plural, one {# second} other {# seconds}}"
-msgstr ""
+msgstr "Tempo restanta: {0, plural, one {# sekundo} other {# sekundoj}}"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:99
msgid "To disable the email 2FA method, please verify your access to the email address."
-msgstr ""
+msgstr "Por malŝalti la retpoŝtan 2FA-metodon, bonvolu konfirmi vian atingon al la retpoŝtadreso."
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr "Por malŝalti vian retpoŝtan 2FA-metodon, bonvolu konfirmi vian atingon al <0>{0}0>"
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
-msgstr ""
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr ""
+msgstr "Por raporti konversacion, bonvolu raporti unu el ĝiaj mesaĝoj per la konversacia ekrano. Ĉi tio ebligas al niaj kontrolantoj kompreni la kuntekston de via problemo."
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
-msgstr ""
+msgstr "Al kiu vi volus sendi ĉi tiun raporton?"
#: src/components/dms/DateDivider.tsx:44
msgid "Today"
-msgstr ""
+msgstr "Hodiaŭ"
#: src/view/com/util/forms/DropdownButton.tsx:258
msgid "Toggle dropdown"
-msgstr ""
+msgstr "Baskuli malvolvon"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
-msgstr ""
+msgstr "Baskuligi por ebligi aŭ malebligi poradoltan enhavon"
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158
msgid "Toggles the sound"
-msgstr ""
+msgstr "Baskulas la sonon"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
-msgstr ""
+msgstr "Plej popularaj"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
-msgstr ""
+msgstr "Temo"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
-msgstr ""
+msgstr "Traduki"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
-msgstr ""
+msgstr "Popularaj"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
-msgstr ""
+msgstr "Popularaj videaĵoj"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr "Fido aperas per interrilatoj, komunumoj kaj komunaj kuntekstoj, do ni ankaŭ estigis <0>fidataj konfirmantoj0>: organizoj kiuj povas rekte fari konfirmadon."
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
-msgstr ""
+msgstr "Reprovi"
#: src/screens/Onboarding/state.ts:115
msgid "TV"
-msgstr ""
+msgstr "TV"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56
msgid "Two-factor authentication (2FA)"
-msgstr ""
+msgstr "Du-faza aŭtentikigo (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
-msgstr ""
+msgstr "Entajpu vian deziratan uzantnomon"
#: src/screens/Messages/components/MessageInput.tsx:153
msgid "Type your message here"
-msgstr ""
+msgstr "Tajpu vian mesaĝon ĉi tie"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
-msgstr ""
-
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr ""
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr ""
+msgstr "Tipo:"
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
-msgstr ""
+msgstr "Ne eblas konektiĝi. Bonvolu kontroli vian retkonekton kaj reprovi."
#: src/screens/Login/ForgotPasswordForm.tsx:68
#: src/screens/Login/index.tsx:79
@@ -7807,1231 +8457,1420 @@ msgstr ""
#: src/view/com/modals/ChangePassword.tsx:71
#: src/view/com/modals/ChangePassword.tsx:117
msgid "Unable to contact your service. Please check your Internet connection."
-msgstr ""
+msgstr "Ne eblas kontakti vian servon. Bonvolu kontroli vian interretan konekton."
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
-msgstr ""
+msgstr "Ne eblas forigi"
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
-msgstr ""
+msgstr "Malbloki"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
-msgstr ""
+msgstr "Malbloki"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
-msgstr ""
+msgstr "Malbloki konton"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
-msgstr ""
+msgstr "Ĉu malbloki konton?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr "Malbloki liston"
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
-msgstr ""
+msgstr "Malfari reafiŝon"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
-msgstr ""
+msgstr "Malfari reafiŝon ({0, plural, one {# reafiŝo} other {# reafiŝoj}})"
#: src/view/com/profile/FollowButton.tsx:63
msgctxt "action"
msgid "Unfollow"
-msgstr ""
+msgstr "Ne sekvi"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
-msgstr ""
+msgstr "Ne sekvi {0}"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
-msgstr ""
+msgstr "Ne sekvi konton"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
-msgstr ""
+msgstr "Ĉesas sekvi la uzanton"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
-msgstr ""
+msgstr "Bedaŭrinde, neniu el viaj abonitaj etikediloj subtenas ĉi tiun tipon de raporto."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr "Nekonata konfirmanto"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
-msgstr ""
+msgstr "Ne plu ŝati"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
-msgstr ""
+msgstr "Ne plu ŝati ({0, plural, one {# ŝato} other {# ŝatoj}})"
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94
msgctxt "video"
msgid "Unmute"
-msgstr ""
+msgstr "Malsilentigi"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
-msgstr ""
+msgstr "Malsilentigi"
#: src/components/RichTextTag.tsx:140
#: src/components/RichTextTag.tsx:153
msgid "Unmute {tag}"
-msgstr ""
+msgstr "Malsilentigi {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
-msgstr ""
+msgstr "Malsilentigi konton"
#: src/components/dms/ConvoMenu.tsx:236
msgid "Unmute conversation"
-msgstr ""
+msgstr "Malsilentigi konversacion"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr "Malsilentigi liston"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
-msgstr ""
+msgstr "Malsilentigi fadenon"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318
msgid "Unmute video"
-msgstr ""
+msgstr "Malsilentigi videaĵon"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
-msgstr ""
+msgstr "Depingli"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
-msgstr ""
+msgstr "Depingli fluon"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr "Depingli fluon"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
-msgstr ""
+msgstr "Depingli de la hejmpaĝo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
-msgstr ""
+msgstr "Depingli de la profilo"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
-msgstr ""
+msgstr "Depingli kontrol-liston"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
-msgstr ""
+msgstr "{0} depinglita de hejmo"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
-msgstr ""
+msgstr "Depinglita de viaj fadenoj"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr "Maldormeti retmesaĝan sciigon"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
-msgstr ""
+msgstr "Malaboni"
#: src/screens/List/ListHiddenScreen.tsx:198
#: src/screens/List/ListHiddenScreen.tsx:208
msgid "Unsubscribe from list"
-msgstr ""
+msgstr "Malaboni de listo"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
-msgstr ""
+msgstr "Malaboni de ĉi tiu etikedilo"
#: src/screens/List/ListHiddenScreen.tsx:86
msgid "Unsubscribed from list"
-msgstr ""
+msgstr "Malabonita de listo"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
-msgstr ""
+msgstr "Nesubtenata videaĵa tipo"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
-msgstr ""
+msgstr "Nesubtenata videaĵa tipo: {0}"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:77
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:90
#: src/lib/moderation/useReportOptions.ts:77
#: src/lib/moderation/useReportOptions.ts:90
msgid "Unwanted Sexual Content"
-msgstr ""
+msgstr "Nedezirata seksuma enhavo"
#: src/screens/Settings/components/OTAInfo.tsx:58
#: src/screens/Settings/components/OTAInfo.tsx:74
msgid "Update"
-msgstr ""
+msgstr "Ĝisdatigi"
#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update <0>{displayName}0> in Lists"
-msgstr ""
+msgstr "Ĝisdatigi <0>{displayName}0> en listoj"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr "Ĝisdatigi retpoŝtadreson"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
-msgstr ""
+msgstr "Ŝanĝi al {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
+msgstr "Ĝisdatigi vian retpoŝtadreson"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
msgctxt "toast"
msgid "Updating quote attachment failed"
-msgstr ""
+msgstr "Ĝisdatigo de citaĵa aldonaĵo malsukcesis"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "Ĝisdatigado de responda videbleco malsukcesis"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
-msgstr ""
+msgstr "Ĝisdatigado..."
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
-msgstr ""
+msgstr "Alŝuti foton anstataŭe"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
-msgstr ""
+msgstr "Alŝuti tekstodosieron al:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
-msgstr ""
+msgstr "Alŝuti el la fotilo"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
-msgstr ""
+msgstr "Alŝuti el la dosieroj"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
-msgstr ""
+msgstr "Alŝuti el la biblioteko"
#: src/lib/api/index.ts:302
msgid "Uploading images..."
-msgstr ""
+msgstr "Alŝutado de bildoj..."
#: src/lib/api/index.ts:356
#: src/lib/api/index.ts:380
msgid "Uploading link thumbnail..."
-msgstr ""
+msgstr "Alŝutado de ligila miniaturo..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
-msgstr ""
+msgstr "Alŝutado de videaĵo..."
#: src/screens/Settings/AppPasswords.tsx:67
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
-msgstr ""
+msgstr "Uzi apan pasvorton por ensaluti al aliaj Bluesky-klientoj ne donante plenan aliron al via konto aŭ pasvorto."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
-msgstr ""
+msgstr "Uzi defaŭltan provizanton"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
-msgstr ""
+msgstr "Uzi en-apan retumilon"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
-msgstr ""
+msgstr "Uzi en-apan retumilon por malfermi ligilojn"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
-msgstr ""
+msgstr "Uzi mian defaŭltan retumilon"
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53
msgid "Use recommended"
-msgstr ""
+msgstr "Uzi rekomendatajn agordojn"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190
msgid "Use this to sign in to the other app along with your handle."
-msgstr ""
+msgstr "Uzi ĉi tion por registriĝi en la alia aplikaĵo per via identigilo."
#: src/view/com/modals/InviteCodes.tsx:201
msgid "Used by:"
-msgstr ""
+msgstr "Uzita de:"
#: src/components/dms/ReportDialog.tsx:324
msgctxt "toast"
msgid "User blocked"
-msgstr ""
+msgstr "Uzanto blokita"
#: src/components/moderation/ModerationDetailsDialog.tsx:71
#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "User Blocked"
-msgstr ""
+msgstr "Uzanto blokita"
#: src/lib/moderation/useModerationCauseDescription.ts:55
msgid "User Blocked by \"{0}\""
-msgstr ""
+msgstr "Uzanto blokita de \"{0}\""
#: src/components/dms/BlockedByListDialog.tsx:27
msgid "User blocked by list"
-msgstr ""
+msgstr "Uzanto blokita de listo"
#: src/components/moderation/ModerationDetailsDialog.tsx:57
msgid "User Blocked by List"
-msgstr ""
+msgstr "Uzanto blokita de listo"
#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "User Blocking You"
-msgstr ""
+msgstr "Uzanto blokas vin"
#: src/components/moderation/ModerationDetailsDialog.tsx:77
msgid "User Blocks You"
-msgstr ""
+msgstr "Uzanto blokas vin"
#: src/view/com/modals/UserAddRemoveLists.tsx:214
msgid "User list by {0}"
-msgstr ""
+msgstr "Uzanta listo de {0}"
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
-msgstr ""
+msgstr "Listo de uzantoj de vi"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "Listo de uzantoj kreita"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "Listo de uzantoj ĝisdatigita"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
-msgstr ""
+msgstr "Uzantnomo aŭ retpoŝtadreso"
#: src/components/WhoCanReply.tsx:280
msgid "users followed by <0>@{0}0>"
-msgstr ""
+msgstr "uzantoj sekvataj de <0>@{0}0>"
#: src/components/WhoCanReply.tsx:267
msgid "users following <0>@{0}0>"
-msgstr ""
+msgstr "uzantoj sekvantaj <0>@{0}0>"
#: src/screens/Messages/Settings.tsx:92
#: src/screens/Messages/Settings.tsx:95
msgid "Users I follow"
-msgstr ""
+msgstr "Uzantoj, kiujn mi sekvas"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456
msgid "Users in \"{0}\""
-msgstr ""
-
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr ""
+msgstr "Uzantoj en \"{0}\""
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
-msgstr ""
+msgstr "Uzantoj, kiujn vi sekvas"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
-msgstr ""
+msgstr "Valoro:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr ""
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr "Konfirmado malsukcesis, bonvolu reprovi."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr "Konfirmadaj agordoj"
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr "Konfirmadaj agordoj"
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr "Konfirmado ĉe Bluesky funkcias alie ol ĉe aliaj platformoj. <0>Eksciu pli ĉi tie.0>"
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr "Konfirmita de:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr "Konfirmi konton"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr "Konfirmi kodon"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
-msgstr ""
+msgstr "Kontrolu DNS-rikordon"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr "Konfirmi retpoŝtadreson"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr "Konfirmi retmesaĝan kodon"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
-msgstr ""
+msgstr "Dialogujo pri retpoŝtadresa konfirmo"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr ""
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr ""
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
-msgstr ""
+msgstr "Kontroli tekstodosieron"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr "Ĉu konfirmi ĉi tiun konton?"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
-msgstr ""
+msgstr "Konfirmi vian retpoŝtadreson"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
-msgstr ""
+msgstr "Konfirmi vian retpoŝtadreson"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
-msgstr ""
+msgstr "Versio {appVersion}"
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134
msgid "Video"
-msgstr ""
+msgstr "Videaĵo"
#: src/view/com/composer/state/video.ts:358
msgid "Video failed to process"
-msgstr ""
+msgstr "Pritraktado de videaĵo fiaskis"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
-msgstr ""
+msgstr "Videaĵo-fluo"
#: src/components/VideoPostCard.tsx:122
msgid "Video from {0}: {text}"
-msgstr ""
+msgstr "Videaĵo de {0}: {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
-msgstr ""
+msgstr "Videoludoj"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
-msgstr ""
+msgstr "Videaĵo estas paŭzigita"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
-msgstr ""
+msgstr "Videaĵo estas ludata"
#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191
msgid "Video not found."
-msgstr ""
+msgstr "Videaĵo netrovita."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
-msgstr ""
+msgstr "Agordoj pri videaĵoj"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
-msgstr ""
+msgstr "Videaĵo alŝutita"
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83
msgid "Video: {0}"
-msgstr ""
+msgstr "Videaĵo: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
-msgstr ""
+msgstr "Videaĵoj"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
-msgstr ""
+msgstr "Videaĵoj devas esti malpli ol 3 minutojn longaj"
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
-msgstr ""
+msgstr "Vidi la profilbildon de {0}"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
-msgstr ""
+msgstr "Vidi la profilon de {0}"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
-msgstr ""
+msgstr "Vidi la profilon de {displayName}"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
-msgstr ""
+msgstr "Vidi la profilon de blokita uzanto"
#: src/screens/Settings/components/ExportCarDialog.tsx:100
msgid "View blogpost for more details"
-msgstr ""
+msgstr "Vidi blogafiŝon por pli da detaloj"
#: src/view/screens/Log.tsx:57
msgid "View debug entry"
-msgstr ""
+msgstr "Vidi protokolan eron"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
-msgstr ""
+msgstr "Vidi detalojn"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
-msgstr ""
+msgstr "Vidi detalojn por raporti kopirajtan malobservon"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
-msgstr ""
+msgstr "Vidi tutan fadenon"
#: src/components/moderation/LabelsOnMe.tsx:46
msgid "View information about these labels"
-msgstr ""
+msgstr "Vidu informojn pri ĉi tiuj etikedoj"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
-msgstr ""
+msgstr "Vidi pli"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
-msgstr ""
+msgstr "Vidi profilon"
#: src/view/com/profile/ProfileSubpageHeader.tsx:119
msgid "View the avatar"
-msgstr ""
+msgstr "Vidi la profilbildon"
#: src/components/LabelingServiceCard/index.tsx:164
msgid "View the labeling service provided by @{0}"
-msgstr ""
+msgstr "Vidi la etikedadan servon provizitan de @{0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr "Vidi konfirmojn de ĉi tiu uzanto"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
-msgstr ""
+msgstr "Vidi uzantojn, kiuj ŝatis ĉi tiun fluon"
#: src/components/VideoPostCard.tsx:398
msgid "View video"
-msgstr ""
+msgstr "Vidi videaĵon"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
-msgstr ""
+msgstr "Vidi viajn blokitajn kontojn"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
-msgstr ""
+msgstr "Vidi viajn defaŭltajn interagajn agordojn de afiŝoj"
#: src/view/com/home/HomeHeaderLayout.web.tsx:56
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77
msgid "View your feeds and explore more"
-msgstr ""
+msgstr "Vidi viajn fluojn kaj esplori pli"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
-msgstr ""
+msgstr "Montru viajn kontrol-listojn"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
-msgstr ""
+msgstr "Vidi viajn silentigitajn kontojn"
+
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr "Vidi viajn konfirmojn"
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
-msgstr ""
+msgstr "Montras la tutan bildon"
#: src/components/VideoPostCard.tsx:121
msgid "Views video in immersive mode"
-msgstr ""
+msgstr "Montras videaĵon plenekrane"
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
-msgstr ""
+msgstr "Viziti retejon"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80
msgid "Volume"
-msgstr ""
+msgstr "Laŭteco"
#: src/components/moderation/LabelPreference.tsx:136
#: src/lib/moderation/useLabelBehaviorDescription.ts:17
#: src/lib/moderation/useLabelBehaviorDescription.ts:22
msgid "Warn"
-msgstr ""
+msgstr "Averti"
#: src/lib/moderation/useLabelBehaviorDescription.ts:48
msgid "Warn content"
-msgstr ""
+msgstr "Averti pri enhavo"
#: src/lib/moderation/useLabelBehaviorDescription.ts:46
msgid "Warn content and filter from feeds"
-msgstr ""
+msgstr "Averti pri enhavo kaj elfiltri el fluoj"
+
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr "Spekti nun"
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
-msgstr ""
+msgstr "Ni ne povis trovi rezultojn por tiu kradvorto."
#: src/screens/Topic.tsx:178
msgid "We couldn't find any results for that topic."
-msgstr ""
+msgstr "Ni ne povis trovi rezultojn por tiu temo."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
-msgstr ""
+msgstr "Ni ne povis ŝargi ĉi tiun konversacion"
#: src/screens/SignupQueued.tsx:160
msgid "We estimate {estimatedTime} until your account is ready."
-msgstr ""
+msgstr "Ni taksas, ke via konto pretos post {estimatedTime}."
#: src/components/intents/VerifyEmailIntentDialog.tsx:107
msgid "We have sent another verification email to <0>{0}0>."
-msgstr ""
+msgstr "Ni sendis plian konfirman retmesaĝon al <0>{0}0>."
#: src/screens/Onboarding/StepFinished.tsx:256
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
-msgstr ""
+msgstr "Ni esperas, ke vi havas mirindan tempon. Memoru, Bluesky estas:"
#: src/view/com/posts/DiscoverFallbackHeader.tsx:29
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
-msgstr ""
+msgstr "Ne plu da afiŝoj de viaj sekvantoj. Jen la plej lastaj de <0/>."
+
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr "Ni rekomendas al vi elekti almenaŭ du interesojn."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Ni sendis retmesaĝon al <0>{0}0> enhavatan ligilon. Bonvolu alklaki ĝin por plenumi la procezon de retpoŝtadresa konfirmado."
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
-msgstr ""
+msgstr "Ni ne povis determini ĉu vi rajtas alŝuti videaĵojn. Bonvolu provi denove."
#: src/components/dialogs/BirthDateSettings.tsx:52
msgid "We were unable to load your birth date preferences. Please try again."
-msgstr ""
+msgstr "Ni ne povis ŝargi viajn preferojn pri naskiĝdato. Bonvolu provi denove."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:428
msgid "We were unable to load your configured labelers at this time."
-msgstr ""
+msgstr "Ni ne eblis ŝargi viajn konfiguritajn etikedilojn nuntempe."
#: src/screens/Onboarding/StepInterests/index.tsx:129
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 ""
+msgstr "Ne eblis konetktiĝi. Bonvolu reprovi por kontinui agordadon de via konto. Se tio daŭre fiaskos, vi povos preterlasi ĉi tiun procezon."
#: src/screens/SignupQueued.tsx:164
msgid "We will let you know when your account is ready."
-msgstr ""
+msgstr "Ni informos vin kiam via konto estos preta."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Ni sendos retmesaĝon al <0>{0}0> enhavatan ligilon. Bonvolu alklaki ĝin por plenumi la procezon de retpoŝtadresa konfirmado."
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
-msgstr ""
+msgstr "Ni uzos ĉi tion por tajlori vian ĝuon."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
-msgstr ""
+msgstr "Ni havas retajn problemojn, provu denove"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr "Ni prezentas novan tavolon de konfirmado ĉe Bluesky — facile videbla kontrolmarko."
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
-msgstr ""
+msgstr "Ni ege feliĉas ke vi aliĝas nin!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
-msgstr ""
+msgstr "Ni bedaŭras, sed ni ne povis adrestrovi ĉi tiun liston. Se tio daŭras, bonvolu kontakti la listo-kreinton, @{handleOrDid}."
#: 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 ""
+msgstr "Ni bedaŭras, sed ni ne povis ŝargi viajn silentigitajn vortojn nuntempe. Bonvolu provi denove."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
-msgstr ""
+msgstr "Bedaŭrinde, via serĉo malsukcesis. Bonvolu reprovi post kelkaj minutoj."
-#: src/view/com/composer/Composer.tsx:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
-msgstr ""
+msgstr "Ni bedaŭras! La afiŝo al kiu vi respondas estis forigita."
#: src/components/Lists.tsx:194
#: src/view/screens/NotFound.tsx:50
msgid "We're sorry! We can't find the page you were looking for."
-msgstr ""
+msgstr "Ni bedaŭras! Ni ne povas trovi la paĝon, kiun vi serĉis."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
-msgstr ""
+msgstr "Ni bedaŭras! Vi povas aboni nur dudek etikedilojn kaj vi atingis vian limon de dudek."
#: src/screens/Deactivated.tsx:125
msgid "Welcome back!"
-msgstr ""
+msgstr "Rebonvenon!"
#: src/components/NewskieDialog.tsx:103
msgid "Welcome, friend!"
-msgstr ""
+msgstr "Bonvenon, amiko!"
#: src/screens/Onboarding/StepInterests/index.tsx:126
msgid "What are your interests?"
-msgstr ""
+msgstr "Kiuj estas viaj interesoj?"
#: src/screens/StarterPack/Wizard/StepDetails.tsx:41
msgid "What do you want to call your starter pack?"
-msgstr ""
-
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr ""
+msgstr "Kiel vi volas nomi vian startpakon?"
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "Kio okazas?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr "Kiam vi tuŝetos markon, vi vidos kiuj organizoj donis konfirmon."
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
-msgstr ""
+msgstr "Kiuj lingvoj estis uzitaj en ĉi tiu afiŝo?"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:79
msgid "Which languages would you like to see in your algorithmic feeds?"
-msgstr ""
+msgstr "Kiujn lingvojn vi ŝatus vidi en viaj algoritmaj fadenoj?"
#: src/components/WhoCanReply.tsx:183
msgid "Who can interact with this post?"
-msgstr ""
+msgstr "Kiu povas interagi kun ĉi tiu afiŝo?"
#: src/components/WhoCanReply.tsx:91
msgid "Who can reply"
-msgstr ""
+msgstr "Kiu povas respondi"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr "Kiu povas konfirmi?"
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
-msgstr ""
+msgstr "Ups!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
-msgstr ""
+msgstr "Ups! Malsukcesis ŝargi popularajn videaĵojn."
#: src/screens/Takendown.tsx:173
msgid "Why are you appealing?"
-msgstr ""
+msgstr "Kial vi apelacias?"
#: src/components/ReportDialog/SelectReportOptionView.tsx:42
msgid "Why should this content be reviewed?"
-msgstr ""
+msgstr "Kial ĉi tiu enhavo estu reviziita?"
#: src/components/moderation/ReportDialog/copy.ts:32
#: src/components/ReportDialog/SelectReportOptionView.tsx:55
msgid "Why should this feed be reviewed?"
-msgstr ""
+msgstr "Kial ĉi tiu fadeno estu reviziita?"
#: src/components/moderation/ReportDialog/copy.ts:26
#: src/components/ReportDialog/SelectReportOptionView.tsx:52
msgid "Why should this list be reviewed?"
-msgstr ""
+msgstr "Kial ĉi tiu listo estu reviziita?"
#: src/components/moderation/ReportDialog/copy.ts:44
#: src/components/ReportDialog/SelectReportOptionView.tsx:61
msgid "Why should this message be reviewed?"
-msgstr ""
+msgstr "Kial ĉi tiu mesaĝo estu reviziita?"
#: src/components/moderation/ReportDialog/copy.ts:20
#: src/components/ReportDialog/SelectReportOptionView.tsx:49
msgid "Why should this post be reviewed?"
-msgstr ""
+msgstr "Kial ĉi tiu afiŝo estu reviziita?"
#: src/components/moderation/ReportDialog/copy.ts:38
#: src/components/ReportDialog/SelectReportOptionView.tsx:58
msgid "Why should this starter pack be reviewed?"
-msgstr ""
+msgstr "Kial ĉi tiu startpako estu reviziita?"
#: src/components/moderation/ReportDialog/copy.ts:14
#: src/components/ReportDialog/SelectReportOptionView.tsx:46
msgid "Why should this user be reviewed?"
-msgstr ""
+msgstr "Kial ĉi tiu uzanto estu reviziita?"
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
-msgstr ""
+msgstr "Tajpu mesaĝon"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
-msgstr ""
+msgstr "Tajpu afiŝon"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
-msgstr ""
+msgstr "Tajpu vian respondon"
#: src/screens/Onboarding/index.tsx:25
#: src/screens/Onboarding/state.ts:116
msgid "Writers"
-msgstr ""
+msgstr "Verkistoj"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
-msgstr ""
+msgstr "Malĝusta DID sendita de servilo. Ricevita: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr "www.miaelsendfluo.tv"
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
-msgstr ""
+msgstr "Jes"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
-msgstr ""
+msgstr "Jes, malaktivigi"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
-msgstr ""
+msgstr "Jes, forigu ĉi tiun startpakon"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
-msgstr ""
+msgstr "Jes, malligi"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
-msgstr ""
+msgstr "Jes, kaŝi"
#: src/screens/Deactivated.tsx:147
msgid "Yes, reactivate my account"
-msgstr ""
+msgstr "Jes, reaktivigu mian konton"
#: src/components/dms/DateDivider.tsx:46
msgid "Yesterday"
-msgstr ""
+msgstr "Hieraŭ"
#: src/components/NewskieDialog.tsx:43
msgid "You"
-msgstr ""
+msgstr "Vi"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr "Vi estas fidata konfirmanto"
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
-msgstr ""
+msgstr "Vi kreas konton ĉe"
#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
-msgstr ""
+msgstr "Vi estas en vico."
+
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr "Vi elsendfluas"
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr "Vi ne plu elsendfluas"
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr "Vi ne havas permeson elsendflui"
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
-msgstr ""
+msgstr "Vi ne rajtas alŝuti videaĵojn."
#: src/view/com/profile/ProfileFollows.tsx:94
msgid "You are not following anyone."
-msgstr ""
+msgstr "Vi sekvas neniun."
+
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr "Vi nun elsendfluas!"
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr "Vi estas konfirmita"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr "Vi estas konfirmita. Vi perdos vian konfirman staton, se vi ŝanĝos vian montratan nomon. <0>Eksciu pli.0>"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr "Vi estas konfirmita. Vi perdos vian konfirman staton, se vi ŝanĝos vian identigilon. <0>Eksciu pli.0>"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr "Vi povas tajlori viajn interesojn iam ajn de agordoj pri \"Enhavo kaj aŭdvidaĵoj\"."
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
-msgstr ""
+msgstr "Vi ankaŭ povas malkovri novajn proprajn fluojn por sekvi."
#: src/view/com/modals/DeleteAccount.tsx:198
msgid "You can also temporarily deactivate your account instead, and reactivate it at any time."
-msgstr ""
+msgstr "Vi ankaŭ povas dumtempe malaktivigi vian konton anstataŭe kaj reaktivigi ĝin iam ajn."
#: src/screens/Messages/Settings.tsx:111
msgid "You can continue ongoing conversations regardless of which setting you choose."
-msgstr ""
+msgstr "Vi povas daŭrigi daŭrantajn konversaciojn sendepende de la agordo kiun vi elektos."
#: src/screens/Login/index.tsx:182
#: src/screens/Login/PasswordUpdatedForm.tsx:26
msgid "You can now sign in with your new password."
-msgstr ""
+msgstr "Vi nun povas ensaluti per via nova pasvorto."
#: src/screens/Deactivated.tsx:133
msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
-msgstr ""
+msgstr "Vi povas reaktivigi vian konton por daŭrigi ensaluton. Via profilo kaj afiŝoj estos videblaj al aliaj uzantoj."
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81
msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings0>."
-msgstr ""
+msgstr "Vi povas agordi defaŭltajn interagajn agordojn en <0>Agordoj → Kontrolado → Interagaj agordoj0>."
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
-msgstr ""
+msgstr "Vi povas ĝisdatigi ĉi tion poste en viaj agordoj."
#: src/view/com/profile/ProfileFollowers.tsx:94
msgid "You do not have any followers."
-msgstr ""
+msgstr "Vi ne havas sekvantojn."
#: src/screens/Profile/KnownFollowers.tsx:109
msgid "You don't follow any users who follow @{name}."
-msgstr ""
+msgstr "Vi sekvas neniun uzanton kiu sekvas @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
-msgstr ""
+msgstr "Vi ne havas babilpetojn ĉi-momente."
#: src/view/com/modals/InviteCodes.tsx:67
msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer."
-msgstr ""
+msgstr "Vi ankoraŭ ne havas invitkodojn! Ni sendos al vi kelkajn, kiam vi estos sur Bluesky iom pli longe."
#: src/view/screens/SavedFeeds.tsx:137
msgid "You don't have any pinned feeds."
-msgstr ""
+msgstr "Vi havas neniujn alpinglitajn fadenojn."
#: src/view/screens/SavedFeeds.tsx:177
msgid "You don't have any saved feeds."
-msgstr ""
+msgstr "Vi havas neniun konservitan fluon."
#: src/view/com/post-thread/PostThread.tsx:271
msgid "You have blocked the author or you have been blocked by the author."
-msgstr ""
+msgstr "Vi blokis la aŭtoron aŭ vi estas blokita de la aŭtoro."
#: src/components/dms/MessagesListBlockedFooter.tsx:66
msgid "You have blocked this user"
-msgstr ""
+msgstr "Vi blokis ĉi tiun uzanton"
#: src/components/moderation/ModerationDetailsDialog.tsx:73
#: src/lib/moderation/useModerationCauseDescription.ts:57
#: src/lib/moderation/useModerationCauseDescription.ts:65
msgid "You have blocked this user. You cannot view their content."
-msgstr ""
+msgstr "Vi blokis ĉi tiun uzanton. Vi ne povas vidi ties enhavon."
#: src/screens/Login/SetNewPasswordForm.tsx:49
#: src/screens/Login/SetNewPasswordForm.tsx:95
#: src/view/com/modals/ChangePassword.tsx:87
#: src/view/com/modals/ChangePassword.tsx:133
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
-msgstr ""
+msgstr "Vi entajpis nevalidan kodon. Ĝi aspektu tiel: XXXXX-XXXXX."
#: src/lib/moderation/useModerationCauseDescription.ts:116
msgid "You have hidden this post"
-msgstr ""
+msgstr "Vi kaŝis ĉi tiun afiŝon"
#: src/components/moderation/ModerationDetailsDialog.tsx:111
msgid "You have hidden this post."
-msgstr ""
+msgstr "Vi kaŝis ĉi tiun afiŝon."
#: src/components/moderation/ModerationDetailsDialog.tsx:104
#: src/lib/moderation/useModerationCauseDescription.ts:99
msgid "You have muted this account."
-msgstr ""
+msgstr "Vi silentigis ĉi tiun konton."
#: src/lib/moderation/useModerationCauseDescription.ts:93
msgid "You have muted this user"
-msgstr ""
+msgstr "Vi silentigis ĉi tiun uzanton"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
-msgstr ""
+msgstr "Vi ankoraŭ havas neniun konversacion. Komencu iun!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
-msgstr ""
+msgstr "Vi ne havas fluojn."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
-msgstr ""
+msgstr "Vi ne havas listojn."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
-msgstr ""
+msgstr "Vi ankoraŭ ne blokis iun ajn kontojn. Por bloki konton, rigardu ĝian profilon kaj elektu \"Bloki konton\" de la menuo ĉe ties konton."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
-msgstr ""
+msgstr "Vi ankoraŭ ne silentigis iun ajn konton. Por silentigi konton, iru al ties profilo kaj elektu \"Silentigi konton\" en la menuo de ties konto."
#: src/components/Lists.tsx:57
msgid "You have reached the end"
-msgstr ""
+msgstr "Vi atingis la finon"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr "Vi sukcese konfirmis vian retpoŝtadreson. Vi povas fermi ĉi tiun dialogujon."
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
-msgstr ""
+msgstr "Vi dumtempe atingis la limon por videaĵaj alŝutoj. Bonvolu reprovi poste."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
-msgstr ""
+msgstr "Vi ankoraŭ kreis neniun startpakon!"
#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
-msgstr ""
+msgstr "Vi ankoraŭ silentigis neniujn vortojn aŭ kradvortojn"
#: src/components/moderation/ModerationDetailsDialog.tsx:118
#: src/lib/moderation/useModerationCauseDescription.ts:127
msgid "You hid this reply."
-msgstr ""
+msgstr "Vi kaŝis ĉi tiun respondon."
#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "You may appeal non-self labels if you feel they were placed in error."
-msgstr ""
+msgstr "Vi rajtas apelacii pri etikedoj surmetite de aliuloj, se vi kredas ke ili estis erare surmetitaj."
#: src/components/moderation/LabelsOnMeDialog.tsx:84
msgid "You may appeal these labels if you feel they were placed in error."
-msgstr ""
+msgstr "Vi povas apelacii pri ĉi tiuj etikedoj, se vi kredas ke ili estis surmetitaj erare."
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr ""
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr "Vi eblas aldoni maksimume {STARTER_PACK_MAX_SIZE, plural, one {{STARTER_PACK_MAX_SIZE} profilon}other {{STARTER_PACK_MAX_SIZE} profilojn}}"
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
-msgstr ""
+msgstr "Vi povas aldoni maksimume 3 fluojn"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
-msgstr ""
+msgstr "Vi povas elekti maksimume 4 bildojn"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr ""
+msgid "You must be 13 years of age or older to create an account."
+msgstr "Vi devas esti almenaŭ 13-jaraĝa por krei konton."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
-msgstr ""
+msgstr "Vi devas sekvi almenaŭ sep aliajn homojn por generi startpakon."
#: src/components/StarterPack/QrCodeDialog.tsx:61
msgid "You must grant access to your photo library to save a QR code"
-msgstr ""
-
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr ""
+msgstr "Vi devas permesi aliron al via bildbiblioteko por konservi QR-kodon"
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
-msgstr ""
+msgstr "Vi devas elekti almenaŭ unu etikedilon por raporti"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr "Vi konfirmu vian retpoŝtadreson, antaŭ ol vi povos ŝalti retpoŝtan 2FA-on."
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
-msgstr ""
+msgstr "Vi antaŭe malaktivigis @{0}."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr "Vi volu nun relanĉi la apon."
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr "Vi reagis per {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr "Vi reagis per {0} al {1}"
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
-msgstr ""
+msgstr "Vi elsalutos el ĉiuj viaj kontoj."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
-msgstr ""
+msgstr "Vi ne plu ricevos sciigojn pri ĉi tiu fadeno"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
-msgstr ""
+msgstr "Vi nun ricevos sciigojn pri ĉi tiu fadeno"
#: src/screens/Login/SetNewPasswordForm.tsx:108
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
-msgstr ""
+msgstr "Retmesaĝe vi ricevos \"restarigan kodon. Enigu tiun kodon ĉi tien, poste enigu vian novan pasvorton."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
-msgstr ""
+msgstr "Vi: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
-msgstr ""
+msgstr "Vi: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
-msgstr ""
+msgstr "Vi: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
-msgstr ""
+msgstr "Vi sekvos la sugestitajn uzantojn kaj fluojn post kiam vi finos krei vian konton!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
-msgstr ""
+msgstr "Vi sekvos la proponitajn uzantojn post kiam vi finos krei vian konton!"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:236
msgid "You'll follow these people and {0} others"
-msgstr ""
+msgstr "Vi eksekvos ĉi tiujn homojn kaj {0} aliajn"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
msgid "You'll follow these people right away"
-msgstr ""
+msgstr "Vi sekvos ĉi tiujn homojn tuj"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
-msgstr ""
+msgstr "Vi ricevos retmesaĝon ĉe <0>{0}0> por konfirmi, ke tiu estas vi."
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:274
msgid "You'll stay updated with these feeds"
-msgstr ""
+msgstr "Vi estos ĝisdata kun ĉi tiuj fluoj"
#: src/screens/SignupQueued.tsx:127
msgid "You're in line"
-msgstr ""
+msgstr "Vi estas en vico"
#: src/screens/Onboarding/StepFinished.tsx:253
msgid "You're ready to go!"
-msgstr ""
+msgstr "Vi pretas iri!"
#: src/screens/Deactivated.tsx:89
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
-msgstr ""
+msgstr "Vi estas ensalutinta per apa pasvorto. Bonvolu ensaluti per via ĉefa pasvorto por daŭrigi malaktivigi vian konton."
#: src/components/moderation/ModerationDetailsDialog.tsx:108
#: src/lib/moderation/useModerationCauseDescription.ts:108
msgid "You've chosen to hide a word or tag within this post."
-msgstr ""
+msgstr "Vi elektis kaŝi vorton aŭ kradvorton en ĉi tiu afiŝo."
#: src/state/shell/progress-guide.tsx:234
msgid "You've found some people to follow"
-msgstr ""
+msgstr "Vi trovis kelkajn personojn por sekvi"
#: src/view/com/posts/FollowingEndOfFeed.tsx:44
msgid "You've reached the end of your feed! Find some more accounts to follow."
-msgstr ""
+msgstr "Vi atingis la finon de via fluo! Trovu pliajn kontojn por sekvi."
+
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr "Vi atingis la maksimuman nombron da permesitaj petoj. Bonvolu reprovi poste."
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
-msgstr ""
+msgstr "Vi atingis vian tagan limon por videaĵ-alŝutoj (tro da bajtoj)"
#: src/view/com/composer/state/video.ts:425
msgid "You've reached your daily limit for video uploads (too many videos)"
-msgstr ""
+msgstr "Vi atingis vian tagan limon por videaĵ-alŝutoj (tro da videaĵoj)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
-msgstr ""
+msgstr "Vi elĉerpis videaĵojn por spekti. Ĉu eble estas bona tempo fari paŭzon?"
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
-msgstr ""
+msgstr "Via konto"
#: src/view/com/modals/DeleteAccount.tsx:84
msgid "Your account has been deleted"
-msgstr ""
+msgstr "Via konto estis forigita"
#: src/screens/Takendown.tsx:146
msgid "Your account has been suspended"
-msgstr ""
+msgstr "Via konto estis suspendita"
#: src/view/com/composer/state/video.ts:429
msgid "Your account is not yet old enough to upload videos. Please try again later."
-msgstr ""
+msgstr "Via konto ne estas sufiĉe malnova por alŝuti videaĵojn. Bonvolu reprovi poste."
#: src/screens/Settings/components/ExportCarDialog.tsx:67
msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately."
-msgstr ""
+msgstr "Via konta deponejo enhavanta ĉiujn publikajn datum-rikordojn estas elŝutebla kiel \"CAR\"-dosiero. Tiu dosiero ne enhavas aŭdvidaĵajn enkorpigaĵojn kiel bildoj aŭ viaj privataj datumoj kiuj devas esti elŝutitaj aparte."
#: src/screens/Takendown.tsx:214
msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service0>. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error."
-msgstr ""
+msgstr "Via konto evidentiĝis esti kontraŭ la <0>Uzokondiĉoj de Bluesky Social0>. Ni sendis vin retmesaĝon skizantan la specifan malobservon kaj suspendan periodon, se aplikebla. Vi povas apelacii ĉi tiun decidon se vi kredas, ke ĝi estis farita erare."
#: src/screens/Takendown.tsx:154
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
-msgstr ""
+msgstr "Via apelacio estas sendita. Se via apelacio sukcesos, vi ricevos retmesaĝon."
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
-msgstr ""
+msgstr "Via naskiĝdato"
#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195
msgid "Your browser does not support the video format. Please try a different browser."
-msgstr ""
+msgstr "Via retumilo ne subtenas la videaĵ-formon. Bonvolu provi uzante alian retumilon."
#: src/screens/Messages/components/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
-msgstr ""
+msgstr "Viaj babilejoj estis malŝaltitaj"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr ""
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr "Via elekto estos memorota por estontecaj ligiloj. Vi povas ŝanĝi ĝin iam ajn en agordoj."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
-msgstr ""
+msgstr "Via nuna identigilo, <0>{0}0>, estos aŭtomate rezervita por vi. Vi povos denove ekuzi ĝin iam ajn de ĉi tiu konto."
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr "Via retpoŝtadreso estis ĝisdatigita, sed ĝi ankoraŭ ne estas konfirmita. Sekve bonvolu konfirmi vian novan retpoŝtadreson."
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
-msgstr ""
+msgstr "Via retpoŝtadreso ŝajnas esti nevalida."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr ""
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr "Via retpoŝtadreso ankoraŭ ne estas konfirmita. Bonvolu konfirmi vian retpoŝtadreson por ĝui ĉiujn funkciojn de Bluesky."
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
-msgstr ""
+msgstr "Via retpoŝtadreso ankoraŭ ne estas konfirmita. Tio estas grava elemento de sekureco, kiun ni rekomendas."
#: src/state/shell/progress-guide.tsx:213
msgid "Your first like!"
-msgstr ""
+msgstr "Via unua ŝato!"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443
msgid "Your followers"
-msgstr ""
+msgstr "Viaj sekvantoj"
#: src/view/com/posts/FollowingEmptyState.tsx:43
msgid "Your following feed is empty! Follow more users to see what's happening."
-msgstr ""
+msgstr "Via fluo de sekvatoj estas malplena! Eksekvu pli da homoj por ekscii, kio okazas."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
-msgstr ""
+msgstr "Via tuta identigilo estos <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
-msgstr ""
+msgstr "Via tuta uzantnomo estos <0>@{0}0>"
+
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr "Viaj interesoj"
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr "Viaj interesoj estis ĝisdatigitaj!"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr "Viaj interesoj helpas nin ekscii, kion vi ŝatas!"
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
-msgstr ""
+msgstr "Viaj silentigitaj vortoj"
#: src/view/com/modals/ChangePassword.tsx:169
msgid "Your password has been changed successfully!"
-msgstr ""
+msgstr "Via pasvorto estis ŝanĝita sukcese!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
-msgstr ""
+msgstr "Via pasvorto bezonas almenaŭ 8 signojn."
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
-msgstr ""
+msgstr "Via afiŝo estis publikigita"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
-msgstr ""
+msgstr "Viaj afiŝoj estis publikigitaj"
#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Your posts, likes, and blocks are public. Mutes are private."
-msgstr ""
+msgstr "Viaj afiŝoj, ŝatoj, kaj blokigoj estas publikaj. Silentigoj estas privataj."
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
-msgstr ""
+msgstr "Via profilo, afiŝoj, fluoj kaj listoj ne plu estos videblaj por aliaj uzantoj de Bluesky. Vi povas reaktivigi vian konton iam ajn per ensaluto."
-#: src/view/com/composer/Composer.tsx:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
-msgstr ""
+msgstr "Via respondo estis publikigita"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
-msgstr ""
+msgstr "Via raporto estos sendota al <0>{0}0>."
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
-msgstr ""
+msgstr "Via raporto estos sendota al la kontrolservo de Bluesky"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr "Viaj elektitaj interesoj helpas nin havigi al vi enhavon, kiu gravas al vi."
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr "Viaj konfirmoj"
diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po
index c769394280..7c68f034dc 100644
--- a/src/locale/locales/es/messages.po
+++ b/src/locale/locales/es/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: es\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 16:40\n"
+"PO-Revision-Date: 2025-05-30 23:41\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(activo)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(contiene contenido incrustado)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(sin correo electrónico)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {# republicación} other {# republicaciones}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# segundo} other {# segundos}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# elemento sin leer} other {# elementos sin leer}}"
@@ -90,17 +90,17 @@ msgstr "{0, plural, one {# elemento sin leer} other {# elementos sin leer}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# mes} other {# meses}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {seguidor} other {seguidores}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {siguiendo} other {siguiendo}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {me gusta} other {me gusta}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {me gusta} other {me gusta}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {publicación} other {publicaciones}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {cita} other {citas}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {republicación} other {republicaciones}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, one {}other {{1} publicaciones}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "{0, plural, one {}other {# personas han}} usado este paquete de inicio."
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0>en <1>etiquetas1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>en <1>texto y etiquetas1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr ""
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} se han unido esta semana"
@@ -137,13 +154,18 @@ msgstr "{0} de {1}"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
-msgstr ""
+msgstr "{0} de 50"
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "¡{0} personas han usado este paquete de inicio!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "{0} reaccionó con {1}"
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "{0} reaccionó con {1} a {2}"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "Avatar de {0}"
@@ -175,7 +197,7 @@ msgstr "{0} min."
msgid "{0}s"
msgstr "{0} s"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# elemento sin leer} other {# elementos sin leer}}"
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {horas}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {minuto} other {minutos}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}}0> te siguieron"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "A {firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}}0> les gusta tu feed"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "A {firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}}0> les gusta tu publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}}0> eliminaron sus verificaciones de tu cuenta"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}}0> han republicado tu publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}}0> se han inscrito a tu paquete de inicio"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}}0> te han verificado"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} te siguió"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} también te siguió"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "A {firstAuthorLink} le gusta tu feed personalizado"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "A {firstAuthorLink} le gusta tu publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr "{firstAuthorLink} eliminó su verificación de tu cuenta"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} republicó tu publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} se inscribió con tu paquete de inicio"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr "{firstAuthorLink} te verificó"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} te siguieron"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "A {firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} les gustó tu feed personalizado"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "A {firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} les gustó tu publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} eliminaron sus verificaciones de tu cuenta"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} republicaron tu publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} se han inscrito con tu paquete de inicio"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} te verificaron"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} te siguió"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} también te siguió"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "A {firstAuthorName} le gusta tu feed personalizado"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "A {firstAuthorName} le gusta tu publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr "{firstAuthorName} eliminó su verificación de tu cuenta"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} republicó tu publicación"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} se inscribió con tu paquete de inicio"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr "{firstAuthorName} te verificó"
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} siguiendo"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "No se puede enviar un mensaje a {handle}"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr ""
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "Se han unido {joinedAllTimeCount, plural, other {# usuarios}}."
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# notificacion no leída} other {# notificaciones no leídas}}"
@@ -301,6 +404,34 @@ msgstr "{profileName} se unió a Bluesky hace {0}"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} se unió a Bluesky usando un paquete de inicio hace {0}"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "Desde hace {type} h"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr "{userName} es un verificador de confianza"
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr "{userName} está verificado"
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr "Verificaciones de {userName}"
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "+{computedTotal}"
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "Se ha incluido a <0>{0}, 0><1>{1}, 1>y {2, plural, one {# más} other {# más}} a tu paquete de inicio"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
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:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {siguiendo} other {siguiendo}}"
@@ -343,7 +474,7 @@ msgstr "<0>En pruebas:0> si activas esta opción, solo te notificaremos de las
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>Tú0> y<1> 1><2>{0} 2>estáis incluidos en tu paquete de inicio"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Nombre de usuario inválido"
@@ -363,62 +494,71 @@ msgstr "30 días"
msgid "7 days"
msgstr "7 días"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "un mensaje"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr "Una nueva forma de verificar"
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Acerca de"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
-msgstr ""
+msgstr "Aceptar"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
-msgstr ""
+msgstr "Aceptar la solicitud de chat"
#. Accept a chat request
#: src/screens/Messages/components/RequestListItem.tsx:42
msgid "Accept Request"
-msgstr ""
+msgstr "Aceptar la solicitud"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Accesibilidad"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Ajustes de accesibilidad"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Cuenta"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "Cuenta bloqueada"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "Cuenta seguida"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "Cuenta silenciada"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
@@ -429,33 +569,37 @@ msgstr "Cuenta silenciada"
msgid "Account Muted by List"
msgstr "Cuenta silenciada por una lista"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Opciones de la cuenta"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Cuenta eliminada del acceso rápido"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "Cuenta desbloqueada"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "Has dejado de seguir a esta cuenta"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
-msgstr ""
+msgstr "Cuenta no silenciada"
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+msgstr "Las cuentas con una marca de verificación ondeada <0><1/>0> pueden verificar a otras. Bluesky se encarga de seleccionar a estas cuentas de confianza."
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Añadir"
@@ -473,8 +617,12 @@ msgstr "Añadir {displayName} al paquete de inicio"
msgid "Add a content warning"
msgstr "Añadir una advertencia de contenido"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "Añadir una cuenta a esta lista"
@@ -485,7 +633,7 @@ msgstr "Añadir una cuenta"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Añadir una cuenta"
msgid "Add alt text"
msgstr "Añadir un texto alternativo"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Añadir un texto alternativo (opcional)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Añadir otra cuenta"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Añadir otra publicación"
@@ -518,8 +666,12 @@ msgstr "Añadir contraseña de app"
msgid "Add App Password"
msgstr "Añadir contraseña de app"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr "Añadir reacción con emoji"
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr "Añadir más detalles (opcional)"
@@ -531,15 +683,23 @@ msgstr "Añadir palabra silenciada con los ajustes seleccionados"
msgid "Add muted words and tags"
msgstr "Añadir palabras silenciadas y etiquetas"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Añadir nueva publicación"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Añadir personas"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr "Añadir personas a la lista"
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr "Añadir reacción"
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Añadir feeds recomendados"
@@ -552,27 +712,28 @@ msgstr "¡Añade algunos feeds a tu paquete de inicio!"
msgid "Add the default feed of only people you follow"
msgstr "Añade el feed predeterminado de solo personas que sigues"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Añade el siguiente registro DNS a tu dominio:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Añade este feed a tus feeds"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "Añadir a las listas"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Añadir a las listas"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Añadir a mis feeds"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr "Añadir usuario a la lista"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Añadido a la lista"
@@ -581,22 +742,22 @@ msgstr "Añadido a la lista"
msgid "Added to my feeds"
msgstr "Añadido a mis feeds"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr "Detalles adicionales (máximo 300 caracteres)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Solo para adultos"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Contenido para adultos"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "El contenido para adultos solo se puede activar a través de la web en <0>bsky.app0>."
@@ -604,30 +765,35 @@ msgstr "El contenido para adultos solo se puede activar a través de la web en <
msgid "Adult content is disabled."
msgstr "El contenido para adultos está desactivado."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Etiquetas de contenido para adultos"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Avanzado"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr "alice@ejemplo.com"
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Todas"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "¡Se han seguido todas las cuentas!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "Todos los idiomas"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "Todos los feeds que has guardado, en un mismo sitio."
@@ -671,10 +837,10 @@ msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Texto alternativo"
@@ -688,19 +854,18 @@ msgstr "El texto alternativo permite describir las imágenes para los usuarios c
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "El texto alternativo se cortará. Límite: {0} caracteres."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr "El texto alternativo aparecerá cortado. {MAX_ALT_TEXT, plural, other {Límite: {0} caracteres.}}"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "Te hemos enviado un correo electrónico a {0} con un código de confirmación. Introdúcelo a continuación."
-#: src/view/com/modals/ChangeEmail.tsx:114
-msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
-msgstr "Te hemos enviado un código de confirmación a tu dirección de correo electrónico anterior, {0}. Introdúcelo a continuación."
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr "Te hemos enviado un código de confirmación a tu dirección de correo electrónico anterior, {currentEmail}. Introdúcelo a continuación."
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "Te hemos enviado un correo electrónico con un código de confirmación. Introdúcelo a continuación."
@@ -716,7 +881,11 @@ msgstr "Se produjo un error"
msgid "An error occurred while compressing the video."
msgstr "Se produjo un error al comprimir el video."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr "Error al recuperar el feed."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Se produjo un error al generar tu paquete de inicio. ¿Quieres intentarlo de nuevo?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "Se produjo un error mientras cargaba el video. Vuelve a intentarlo."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "Error al guardar el código QR."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "Se produjo un error mientras seleccionabas el video"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "Se produjo un error mientras intentabas seguir a todos"
@@ -746,12 +914,17 @@ msgstr "Se produjo un error mientras intentabas seguir a todos"
msgid "An error occurred while uploading the video."
msgstr "Se produjo un error mientras se cargaba el video."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr "Una ilustración que muestra que Bluesky selecciona a verificadores de confianza, los cuales verifican las cuentas de usuarios individuales."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Un problema no presente en estas opciones"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "Se produjo un problema iniciando el chat"
@@ -761,13 +934,17 @@ msgstr "Se produjo un problema mientras intentaba abrir el chat"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Ocurrió un problema. Inténtalo de nuevo."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr "Una simulación de un iPhone mostrando la aplicación de Bluesky abierta con el perfil de un usuario verificado con una marca de verificación junto a su nombre para mostrar."
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "se produjo un error desconocido"
@@ -790,6 +967,10 @@ msgstr "Animales"
msgid "Animated GIF"
msgstr "GIF animado"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr "La verificación llega a Bluesky"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Comportamiento antisocial"
msgid "Anybody can interact"
msgstr "Cualquiera puede interactuar"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "Icono de la app"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "Idioma de la aplicación"
@@ -817,7 +998,7 @@ msgstr "Contraseña de app"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "Contraseña de app eliminada"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
@@ -836,7 +1017,7 @@ msgstr "El nombre de la contraseña de app debe tener al menos cuatro caracteres
msgid "App passwords"
msgstr "Contraseñas de app"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Contraseñas de app"
@@ -854,7 +1035,7 @@ msgstr "Apelar la etiqueta de \"{0}\""
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "Apelación enviada"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -872,10 +1053,10 @@ msgstr "Apelar la suspensión"
msgid "Appeal this decision"
msgstr "Apelar esta decisión"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Aparencia"
@@ -884,12 +1065,12 @@ msgstr "Aparencia"
msgid "Apply default recommended feeds"
msgstr "Aplicar feeds recomendados predeterminados"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Archivado desde {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Publicación archivada"
@@ -897,21 +1078,21 @@ msgstr "Publicación archivada"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "¿Seguro que quieres eliminar la contraseña de app \"{0}\"?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "¿Quieres eliminar este mensaje? Se eliminará para ti, pero no para la otra persona."
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "¿Quieres eliminar este paquete de inicio?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "¿Quieres descartar tus cambios?"
#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation?"
-msgstr ""
+msgstr "¿Quieres salir de esta conversación?"
#: src/components/dms/LeaveConvoPrompt.tsx:45
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
@@ -921,15 +1102,15 @@ msgstr "¿Quieres salir de esta conversación? Los mensajes se eliminarán para
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "¿Quieres eliminar {0} de tus feeds?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "¿Quieres eliminar esto de tus feeds?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "¿Quieres descartar este borrador?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "¿Quieres descartar esta publicación?"
@@ -937,7 +1118,7 @@ msgstr "¿Quieres descartar esta publicación?"
msgid "Are you sure?"
msgstr "¿Seguro?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "¿Estás escribiendo en <0>{suggestedLanguageName}0>?"
@@ -946,29 +1127,34 @@ msgstr "¿Estás escribiendo en <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Arte"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Desnudez artística o no erótica."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "Al menos 3 caracteres"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40
msgctxt "Name of app icon variant"
msgid "Aurora"
-msgstr ""
+msgstr "Aurora"
#: src/screens/Settings/AccessibilitySettings.tsx:105
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Las opciones de reproducción automática están ahora en <0>los ajustes de Contenido y medios0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Reproducir videos y GIFs automáticamente"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Reproducir videos y GIFs automáticamente"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Atrás"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
-msgstr ""
+msgstr "Volver a los chats"
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Antes de crear una lista, debes verificar tu correo electrónico."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Antes de crear una publicación, debes verificar tu correo electrónico."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Antes de crear un paquete de inicio, debes verificar tu correo electrónico."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "Antes de contactar a otro usuario, debes verificar tu correo electrónico."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
+msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Cumpleaños"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Bloquear"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Bloquear cuenta"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "¿Bloquear cuenta?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Bloquear cuentas"
@@ -1054,15 +1241,15 @@ msgstr "Bloquear y eliminar"
msgid "Block and/or delete this conversation"
msgstr "Bloquear o eliminar esta conversación"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Bloquear lista"
#: src/screens/Messages/components/ChatStatusInfo.tsx:46
msgid "Block or report"
-msgstr ""
+msgstr "Bloquear o denunciar"
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "¿Bloquear estas cuentas?"
@@ -1079,21 +1266,21 @@ msgstr "Bloquear usuario"
msgid "Blocked"
msgstr "Bloqueado"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Cuentas bloqueadas"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Cuentas bloqueadas"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Si bloqueas a una cuenta no podrán responder en tus hilos, mencionarte ni interactuar contigo de ninguna manera."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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."
@@ -1101,19 +1288,19 @@ msgstr "Si bloqueas a una cuenta no podrán responder en tus hilos, mencionarte
msgid "Blocked post."
msgstr "Publicación bloqueada."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
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:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "El bloqueo es público. Las cuentas bloqueadas no podrán responder en tus hilos, mencionarte ni interactuar contigo."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
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."
-#: src/view/com/auth/SplashScreen.web.tsx:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blog"
@@ -1122,14 +1309,14 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky no puede confirmar la autenticidad de la fecha declarada."
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129
msgctxt "Name of app icon variant"
msgid "Bluesky Classic™"
-msgstr ""
+msgstr "Bluesky Clásico™"
#: src/view/com/auth/server-input/index.tsx:212
msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server."
@@ -1148,7 +1335,7 @@ msgstr "¡Bluesky es mejor con amigos!"
msgid "Bluesky Social Terms of Service"
msgstr "Términos de servicio de Bluesky Social"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky elegirá un conjunto de cuentas recomendadas de personas en su red."
@@ -1156,6 +1343,10 @@ msgstr "Bluesky elegirá un conjunto de cuentas recomendadas de personas en su r
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky no mostrará tu perfil o posts a usuarios que no hayan iniciado sesión. Es posible que otras apps no respeten esta solicitud. Esto no hace que tu cuenta sea privada."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr "Bluesky verificará proactivamente cuentas destacadas y auténticas."
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "Desenfocar imágenes y filtrar desde los feeds"
msgid "Books"
msgstr "Libros"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "Explorar más cuentas en la página Explorar"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "Ver más feeds en la página Explorar"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Explorar más sugerencias"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "Busca más sugerencias en la página Explorar"
@@ -1214,20 +1405,26 @@ msgstr "Explorar publicaciones etiquetadas con {displayName}"
msgid "Browse starter pack {displayName}"
msgstr "Explorar el paquete de inicio {displayName}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr "Explorar el tema {0}"
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "Explorar el tema {displayName}"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Negocios"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "Por {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Por <0>{0}0>"
@@ -1243,44 +1440,51 @@ msgstr "Al crear una cuenta, aceptas los <0>Términos de servicio0> y la <1>Po
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Al crear una cuenta, aceptas los <0>Términos de servicio0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr "Tuyos"
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Cámara"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Cancelar"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "Cancelar la eliminación de la cuenta"
msgid "Cancel image crop"
msgstr "Cancelar recorte de imagen"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Cancelar edición de perfil"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Cancelar cita"
@@ -1308,8 +1512,7 @@ msgstr "Cancelar cita"
msgid "Cancel reactivation and sign out"
msgstr "Cancelar la reactivación y cerrar la sesión"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Cancelar búsqueda"
@@ -1317,24 +1520,23 @@ msgstr "Cancelar búsqueda"
msgid "Cancels opening the linked website"
msgstr "Cancela apertura del sitio web vinculado"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "No se puede interactuar con un usuario bloqueado"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Subtítulos (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Subtítulos y texto alternativo"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Cambiar"
@@ -1347,46 +1549,41 @@ msgstr "Cambiar icono de la app"
msgid "Change app icon to \"{0}\""
msgstr "Cambiar icono de la app a \"{0}\""
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Cambiar correo electrónico"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Cambiar la dirección de correo electrónico"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Cambiar nombre de usuario"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr "Cambiar el servicio de moderación"
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Cambiar mi correo electrónico"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Cambiar contraseña"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "Cambiar el idioma de la publicación a {suggestedLanguageName}"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr "Cambiar la razón de la denuncia"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Cambiar correo electrónico"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Cambiar correo electrónico"
@@ -1394,43 +1591,42 @@ msgstr "Cambiar correo electrónico"
msgid "Changes app icon"
msgstr "Cambia el icono de la app"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr "Cambia el proveedor de alojamiento"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Chat"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
-msgstr ""
+msgstr "Chat eliminado"
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "Chat silenciado"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
-msgstr ""
+msgstr "Bandeja de solicitudes de chat"
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
-msgstr ""
+msgstr "Solicitudes de chat"
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Ajustes de chat"
@@ -1441,12 +1637,12 @@ msgstr "Configuración de chat"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "Chat no silenciado"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
-msgstr ""
+msgstr "Chats"
#: src/screens/SignupQueued.tsx:78
#: src/screens/SignupQueued.tsx:82
@@ -1461,7 +1657,7 @@ msgstr "Te hemos enviado un código de inicio de sesión a tu correo. Introdúce
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Te enviamos un código de verificación a tu correo. Introdúcelo aquí:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Elige el método de verificación del dominio"
@@ -1469,7 +1665,7 @@ msgstr "Elige el método de verificación del dominio"
msgid "Choose Feeds"
msgstr "Elija Feeds"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Elige para mi"
@@ -1477,10 +1673,6 @@ msgstr "Elige para mi"
msgid "Choose People"
msgstr "Elige a la gente"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Etiqueta el contenido según corresponda. Si no seleccionas ninguna etiqueta, se entenderá que la publicación es apta para todos los públicos."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Tú eliges los algoritmos que usar en tus feed."
@@ -1493,27 +1685,31 @@ msgstr "Elige este color como tu avatar"
msgid "Choose your account provider"
msgstr "Selecciona tu proveedor de cuenta"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Elige tu propia cronología: encuentra el contenido que más te gusta gracias a los feeds de la comunidad."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Elige tu contraseña"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "Tu nombre de usuario"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Borrar todos los datos de almacenamiento"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Borrar todos los datos de almacenamiento (reiniciar después de esto)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr "Limpiar caché de imágenes"
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Borrar consulta de búsqueda"
@@ -1522,6 +1718,14 @@ msgstr "Borrar consulta de búsqueda"
msgid "click here"
msgstr "clic aquí"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Clic para deshabilitar las citas para esta publicación."
@@ -1534,7 +1738,7 @@ msgstr "Clic para habilitar las citas para esta publicación."
msgid "Click to open tag menu for {tag}"
msgstr "Haz clic para abrir el menú de etiquetas de {tag}"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Clic para reintentar mensaje fallido"
@@ -1546,24 +1750,34 @@ msgstr "Clima"
msgid "Clip 🐴 clop 🐴"
msgstr "Tacatá 🐴 tacatá 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Cerrar"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Cerrar diálogo activo"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Cerrar el cajón inferior"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Cerrar ventana"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr "Cerrar el menú lateral"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "Cerrar el selector de emojis"
@@ -1600,7 +1816,13 @@ msgstr "Cerrar la imagen"
msgid "Close image viewer"
msgstr "Cerrar el visor de imagen"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr "Cerrar el menú"
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Cierra este diálogo"
@@ -1608,8 +1830,12 @@ msgstr "Cierra este diálogo"
msgid "Closes password update alert"
msgstr "Cierra la alerta de actualización de contraseña"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr "Cierra la ventana de redacción y descarta el borrador"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr "Cierra el selector de emojis"
@@ -1617,11 +1843,11 @@ msgstr "Cierra el selector de emojis"
msgid "Closes viewer for header image"
msgstr "Cierra el espectador para la imagen del encabezado"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Colapsa la lista de usuarios"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Colapsa la lista de usuarios para una notificación en particular"
@@ -1632,7 +1858,7 @@ msgstr "Modo de color"
#: src/components/dialogs/Embed.tsx:151
msgid "Color theme"
-msgstr ""
+msgstr "Color del tema"
#: src/screens/Onboarding/index.tsx:38
#: src/screens/Onboarding/state.ts:97
@@ -1644,7 +1870,7 @@ msgstr "Comedia"
msgid "Comics"
msgstr "Cómics"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Directrices de la comunidad"
@@ -1653,23 +1879,23 @@ msgstr "Directrices de la comunidad"
msgid "Complete onboarding and start using your account"
msgstr "Completa la incorporación y comienza a usar tu cuenta"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Completa el desafío"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Escribir nueva publicación"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "Componer publicaciones hasta {MAX_GRAPHEME_LENGTH} caracteres de longitud"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr "Escribir publicaciones de hasta {0, plural, other {# caracteres}}"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Escribir la respuesta"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Comprimiendo video..."
@@ -1681,23 +1907,17 @@ msgstr "Configuración de filtrado de contenido para la categoría: {name}"
msgid "Configured in <0>moderation settings0>."
msgstr "Configurado en <0>ajustes de moderación0>."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Confirmar"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Confirmar el cambio"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Confirmar el idioma del contenido"
@@ -1706,26 +1926,27 @@ msgstr "Confirmar el idioma del contenido"
msgid "Confirm delete account"
msgstr "Confirmar eliminación de cuenta"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Confirma tu edad:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Confirma tu fecha de nacimiento"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Código de confirmación"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Código de confirmación"
@@ -1733,22 +1954,22 @@ msgstr "Código de confirmación"
msgid "Connecting..."
msgstr "Conectando..."
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Contactar con el soporte"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "Contenido y medios"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Contenido y medios"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Contenido y medios"
@@ -1756,15 +1977,15 @@ msgstr "Contenido y medios"
msgid "Content Blocked"
msgstr "Contenido bloqueado"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Filtros de contenido"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr "Contenido de toda la red que podría gustarte."
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Idiomas del contenido"
@@ -1785,16 +2006,16 @@ msgstr "Advertencia de Contenido"
msgid "Content warnings"
msgstr "Advertencias de contenido"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "Fondo del menú contextual, haga clic para cerrar el menú."
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Continuar"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Continuar como {0} (actualmente ha iniciado sesión)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Continuar hilo..."
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Continuar al siguiente paso"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversación eliminada"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Conversación eliminada"
@@ -1826,16 +2047,17 @@ msgstr "Cocinando"
msgid "Copied"
msgstr "Copiado"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Versión de compilación copiada al portapapeles"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Copiado al portapapeles"
@@ -1844,25 +2066,29 @@ msgstr "Copiado al portapapeles"
msgid "Copied!"
msgstr "¡Copiado!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr "Copia la versión de la compilación al portapapeles"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Copiar"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr ""
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Copiar Contraseña de App"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr "Copiar URI at://"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr "Copiar el DID del autor"
@@ -1871,57 +2097,69 @@ msgstr "Copiar el DID del autor"
msgid "Copy code"
msgstr "Copiar código"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Copiar DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Copiar host"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Copiar link"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Copiar Link"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Copia el enlace a la lista"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Copiar el enlace a la publicación"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Copiar el texto del mensaje"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr "Copiar URI at:// de la publicación"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Copiar el texto del post"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Copiar código QR"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "Copiar valor del registro TXT"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Política de derechos de autor"
@@ -1931,11 +2169,11 @@ msgstr "Política de derechos de autor"
msgid "Could not leave chat"
msgstr "No se pudo salir de este chat"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "No se pudo cargar este feed"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "No se pudo cargar esta lista"
@@ -1947,28 +2185,28 @@ msgstr "No se pudo silenciar el chat"
msgid "Could not process your video"
msgstr "No se pudo procesar tu video"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Crear"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "Crear un código QR para paquete de inicio"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Crea un paquete de inicio"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Crea un paquete de inicio para mí"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Crea un paquete de inicio para mí"
msgid "Create account"
msgstr "Crear una cuenta"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Crear una cuenta"
@@ -1985,11 +2223,16 @@ msgstr "Crear una cuenta"
msgid "Create an account"
msgstr "Crea una cuenta"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr "Crear una cuenta sin usar este paquete de inicio"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Crea un avatar"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Crea otro"
@@ -1998,7 +2241,7 @@ msgstr "Crea otro"
msgid "Create new account"
msgstr "Crear una cuenta nueva"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Crea un reporte de {0}"
@@ -2023,7 +2266,7 @@ msgstr "Personalizado"
#: src/components/dialogs/Embed.tsx:144
msgid "Customization options"
-msgstr ""
+msgstr "Opciones de personalización"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103
msgid "Customize who can interact with this post."
@@ -2053,17 +2296,17 @@ msgstr "Modo oscuro"
msgid "Dark theme"
msgstr "Tema oscuro"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Fecha de nacimiento"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Desactivar cuenta"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Moderación de depuración"
@@ -2079,19 +2322,19 @@ msgstr "Por Defecto"
msgid "Default icons"
msgstr "Iconos por defecto"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Borrar"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Eliminar la cuenta"
@@ -2107,19 +2350,19 @@ msgstr "Borrar la contraseña de app"
msgid "Delete app password?"
msgstr "¿Borrar la contraseña de app?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
-msgstr ""
+msgstr "Eliminar el chat"
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Borrar registro de declaración de chat"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "Eliminar la conversación"
@@ -2127,19 +2370,19 @@ msgstr "Eliminar la conversación"
msgid "Delete Conversation"
msgstr "Eliminar la conversación"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Borrar para mi"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
msgstr "Borrar la lista"
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Borrar mensaje"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Borrar mensaje para mi"
@@ -2147,26 +2390,26 @@ msgstr "Borrar mensaje para mi"
msgid "Delete my account"
msgstr "Eliminar mi cuenta"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Borrar la publicación"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Borrar paquete de inicio"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "¿Borrar paquete de inicio?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "¿Borrar esta lista?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "¿Borrar esta publicación?"
@@ -2174,8 +2417,8 @@ msgstr "¿Borrar esta publicación?"
msgid "Deleted"
msgstr "Eliminado"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Cuenta eliminada"
@@ -2183,48 +2426,48 @@ msgstr "Cuenta eliminada"
msgid "Deleted post."
msgstr "Se borró la publicación."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Descripción"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "La descripción es demasiado larga"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "La descripción es demasiado larga. El número máximo de caracteres es {DESCRIPTION_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "La descripción es demasiado larga. {DESCRIPTION_MAX_GRAPHEMES, plural, other {Máximo # caracteres.}}"
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Texto descriptivo alternativo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Desvincular cita"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "¿Desvincular cita?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
-msgstr ""
+msgstr "Modo de desarrollador desactivado"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
-msgstr ""
+msgstr "Modo de desarrollador activado"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Opciones para desarrolladores"
@@ -2236,6 +2479,15 @@ msgstr "Ajustar quién puede interactuar con esta publicación"
msgid "Dim"
msgstr "Tenue"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr ""
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "Desactivar la autenticación de doble factor por correo electrónico"
@@ -2254,25 +2506,25 @@ msgstr "Desactivar subtítulos"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Deshabilitado"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Descartar"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "¿Descartar cambios?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "¿Descartar borrador?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "¿Descartar publicación?"
@@ -2281,24 +2533,24 @@ msgstr "¿Descartar publicación?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Evitar que las aplicaciones muestren mi cuenta a los usuarios desconectados"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr "Descubrir feeds"
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Descubre nuevos feeds personalizados"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
+#: src/view/screens/Feeds.tsx:728
+msgid "Discover New Feeds"
msgstr "Descubrir nuevos feeds"
-#: src/view/screens/Feeds.tsx:725
-msgid "Discover New Feeds"
-msgstr "Descubrir Nuevos Feeds"
-
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Descartar"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Descartar error"
@@ -2306,6 +2558,10 @@ msgstr "Descartar error"
msgid "Dismiss getting started guide"
msgstr "Descartar la guía de introducción"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr "Descartar intereses"
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr "Ocultar esta sección"
@@ -2315,27 +2571,27 @@ msgstr "Ocultar esta sección"
msgid "Display larger alt text badges"
msgstr "Mostrar insignias de texto alternativo más grandes"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Nombre para mostrar"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Nombre para Mostrar"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "El nombre para mostrar es demasiado largo"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "El nombre para mostrar es demasiado largo. El número máximo de caracteres es {DISPLAY_NAME_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "El nombre para mostrar es demasiado largo. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Longitud máxima: # caracteres.}}"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "Con panel de DNS"
@@ -2347,37 +2603,45 @@ msgstr "No aplicar esta palabra silenciada a los usuarios que sigues"
msgid "Does not include nudity."
msgstr "No incluye desnudez."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "No comienza ni termina con un guion"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "¡Dominio verificado!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Listo"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Listo"
msgid "Done{extraText}"
msgstr "Listo{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr "Toca dos veces o presiona durante un instante el mensaje para añadir una reacción"
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Doble toque para cerrar el diálogo"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr "Pulsa dos veces para indicar que te gusta"
@@ -2413,23 +2681,23 @@ msgstr "Arrastra para agregar imágenes"
msgid "Duration:"
msgstr "Duración:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "p. ej. alice"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "p. ej. Alicia Apellido"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "p. ej. Alice Roberts"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "p. ej. alice.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "p. ej. Artista, amante de los perros, y lector ávido."
@@ -2437,19 +2705,19 @@ msgstr "p. ej. Artista, amante de los perros, y lector ávido."
msgid "E.g. artistic nudes."
msgstr "P. ej. desnudez artística."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "p. ej. Grandes usuarios"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "p. ej. Spammers"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "p. ej. Usuarios que siempre aciertan."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "p. ej. Usuarios que constantemente responden con publicidad."
@@ -2457,20 +2725,21 @@ 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/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Editar"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Editar"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Editar avatar"
@@ -2478,31 +2747,41 @@ msgstr "Editar avatar"
msgid "Edit Feeds"
msgstr "Editar Feeds"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Editar la imagen"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Editar ajustes de interacción"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr "Modificar los intereses"
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Editar los detalles de la lista"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Editar lista de moderación"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Editar mis feeds"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Editar mi perfil"
@@ -2515,23 +2794,23 @@ msgstr "Editar Personas"
msgid "Edit post interaction settings"
msgstr "Editar ajustes de interacción de la publicación"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Editar el perfil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Editar Perfil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Editar paquete de inicio"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Editar lista de usuarios"
@@ -2539,15 +2818,15 @@ msgstr "Editar lista de usuarios"
msgid "Edit who can reply"
msgstr "Editar quién puede responder"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Editar tu nombre para mostrar"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Edita tu descripción de perfil"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Edita tu paquete de inicio"
@@ -2560,16 +2839,15 @@ msgstr "Educación"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "La persona que creó esta lista te ha bloqueado, o tú la has bloqueado a ella."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "Correo electrónico"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "Autenticación de doble factor por correo electrónico desactivada"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
@@ -2583,19 +2861,16 @@ msgstr "Dirección de correo electrónico"
msgid "Email Resent"
msgstr "Correo electrónico reenviado"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
msgstr "Correo electrónico actualizado"
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
msgstr ""
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
@@ -2608,8 +2883,8 @@ msgstr "Insertar código HTML"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Incrustar la publicación"
@@ -2617,12 +2892,13 @@ msgstr "Incrustar la publicación"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Incrusta esta publicación en tu sitio web. Simplemente copia el siguiente fragmento y pégalo en el código HTML de tu sitio web."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "Reproductor de video incrustado"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Activar"
@@ -2630,13 +2906,13 @@ msgstr "Activar"
msgid "Enable {0} only"
msgstr "Activar {0} solamente"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Mostrar contenido para adultos"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr "Activar la autenticación de doble factor por correo electrónico"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2660,30 +2936,30 @@ msgstr "Activar los subtítulos"
msgid "Enable this source only"
msgstr "Habilitar solo esta fuente"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "Activar las tendencias"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr "Activar los videos populares en el feed Discover"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr "Activar los videos populares en el feed Discover."
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Activado"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Fin del feed"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Asegúrate de haber seleccionado un idioma para cada archivo de subtítulos."
@@ -2696,14 +2972,15 @@ msgstr "Ingresa una contraseña"
msgid "Enter a word or tag"
msgstr "Ingresa una palabra o etiqueta"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
msgid "Enter Code"
msgstr "Ingresa Código"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Ingresa Código de Confirmación"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
msgstr "Entrar en la pantalla completa"
@@ -2712,7 +2989,7 @@ msgstr "Entrar en la pantalla completa"
msgid "Enter the code you received to change your password."
msgstr "Ingresa el código que recibiste para cambiar tu contraseña."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Ingresa el dominio que quieres utilizar"
@@ -2720,20 +2997,20 @@ msgstr "Ingresa el dominio que quieres utilizar"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Ingresa el correo electrónico que utilizaste para crear tu cuenta. Te enviaremos un \"código de restablecimiento\" para que puedas establecer una nueva contraseña."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr "Introduce el nombre de usuario o dirección de correo electrónico que usaste para crear tu cuenta"
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Ingresa tu fecha de nacimiento"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Ingresa tu dirección de correo electrónico"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Ingresa tu nuevo correo electrónico arriba"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Ingresa tu nueva dirección de correo electrónico a continuación."
@@ -2749,7 +3026,11 @@ msgstr "Ingresa tu nombre de usuario y contraseña"
msgid "Enters full screen"
msgstr "Entra en pantalla completa"
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr "Ocio"
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Error"
@@ -2758,15 +3039,18 @@ msgstr "Error"
msgid "Error occurred while saving file"
msgstr "Se produjo un error al guardar el archivo"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "Error al recibir la respuesta del captcha."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Error:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr "Error: {error}"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Todos"
@@ -2818,30 +3102,22 @@ msgstr "Salir del proceso de recorte de imagen"
msgid "Exits image view"
msgstr "Salir de la vista de imagen"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Salir de la entrada de la consulta de búsqueda"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Expandir el texto alternativo"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Expandir lista de usuarios"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "Expandir o colapsar la publicación completa a la que estás respondiendo"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr "Amplía o reduce el texto de la publicación"
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr "Amplía o reduce la publicación completa a la que estás respondiendo"
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "Se esperaba que el uri resolviera a un registro"
@@ -2864,6 +3140,10 @@ msgstr "Expira {0}"
msgid "Expires in {0}"
msgstr "Caduca dentro de {0}"
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "Medios explícitos o potencialmente perturbadores."
msgid "Explicit sexual images."
msgstr "Imágenes sexuales explícitas."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr "Explorar"
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Exportar mis datos"
@@ -2882,8 +3169,8 @@ msgstr "Exportar mis datos"
msgid "Export My Data"
msgstr "Exportar Mis Datos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "Medios externos"
@@ -2897,17 +3184,22 @@ msgstr "Medios externos"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Es posible que medios externos permitan que otros sitios recopilen datos sobre ti y tu dispositivo. No se envía o solicita información hasta que presionas el botón de reproducir."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Preferencias sobre Medios Externos"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
-msgstr ""
+msgstr "Error al aceptar el chat"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr "Error al añadir una reacción de emoji"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "Error al cambiar nombre de usuario. Por favor vuelve a intentarlo."
@@ -2915,44 +3207,46 @@ msgstr "Error al cambiar nombre de usuario. Por favor vuelve a intentarlo."
msgid "Failed to create app password. Please try again."
msgstr "Error al crear contraseña de app. Vuelve a intentarlo."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
-msgstr ""
+msgstr "Error al crear la conversación"
#: src/screens/StarterPack/Wizard/index.tsx:233
#: src/screens/StarterPack/Wizard/index.tsx:241
msgid "Failed to create starter pack"
msgstr "Error al crear el paquete de inicio"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "Error al crear la lista. Verifica tu conexión a Internet y vuelve a intentarlo."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
-msgstr ""
+msgstr "Error al eliminar el chat"
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Error al eliminar el mensaje"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "Error al eliminar la publicación, vuelve a intentarlo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "Error al eliminar el paquete de inicio"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
-msgstr ""
+msgstr "Error al cargar las conversaciones"
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "Error al cargar las preferencias de feeds"
@@ -2964,25 +3258,36 @@ msgstr "Error al cargar los GIF"
msgid "Failed to load past messages"
msgstr "Error al cargar los mensajes anteriores"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "Error al cargar los feeds sugeridos"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "Error al cargar las sugerencias de seguimiento"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
-msgstr ""
+msgstr "Error al marcar todas las solicitudes como leídas"
#: src/state/queries/pinned-post.ts:75
msgid "Failed to pin post"
msgstr "Error al fijar la publicación"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr "Error al eliminar una reacción de emoji"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr "Error al eliminar la verificación"
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Error al guardar la imagen: {0}"
@@ -2994,20 +3299,39 @@ msgstr "Error al guardar las preferencias de notificación, vuelve a intentarlo"
msgid "Failed to save settings. Please try again."
msgstr "Error al guardar los ajustes, inténtalo de nuevo."
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr "Error al guardar tus intereses."
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "Error al enviar"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Error al enviar la apelación. Por favor, inténtalo de nuevo."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "Error al cambiar el estado de silencio del hilo, vuelve a intentarlo"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr ""
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "Error al actualizar los feeds"
@@ -3022,20 +3346,24 @@ msgstr "Error al actualizar los ajustes"
msgid "Failed to upload video"
msgstr "Error al subir video"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "Error al verificar el nombre de usuario. Intenta nuevamente."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Feed"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Feed por {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "Menú de feed"
@@ -3043,26 +3371,26 @@ msgstr "Menú de feed"
msgid "Feed toggle"
msgstr "Alternar Feed"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Comentarios"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "¡Comentarios enviados!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Feeds"
@@ -3070,19 +3398,19 @@ msgstr "Feeds"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Los Feeds son algoritmos personalizados que los usuarios construyen con un poco de experiencia en codificación. <0/> para más información."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "¡Feeds actualizados!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "Creemos que estos feeds te gustarán."
#: src/screens/Settings/components/OTAInfo.tsx:58
msgid "Fetch update"
-msgstr ""
+msgstr "Buscar actualizaciones"
#: src/screens/Settings/components/ExportCarDialog.tsx:43
msgid "File saved successfully!"
@@ -3092,11 +3420,11 @@ msgstr "¡Archivo guardado exitosamente!"
msgid "Filter from feeds"
msgstr "Filtrar de los feeds"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr "Filtrar la búsqueda por idioma"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr "Filtrar la búsqueda por idioma (actualmente: {currentLanguageLabel})"
@@ -3110,15 +3438,15 @@ msgstr "Finalizando"
msgid "Find accounts to follow"
msgstr "Buscar cuentas para seguir"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "Buscar a gente para seguir"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
-msgstr ""
+msgstr "Buscar publicaciones, usuarios y feeds en Bluesky"
#: src/screens/StarterPack/Wizard/index.tsx:195
msgid "Finish"
@@ -3131,28 +3459,28 @@ msgstr "Fitness"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117
msgctxt "Name of app icon variant"
msgid "Flat Black"
-msgstr ""
+msgstr "Negro plano"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93
msgctxt "Name of app icon variant"
msgid "Flat Blue"
-msgstr ""
+msgstr "Azul plano"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105
msgctxt "Name of app icon variant"
msgid "Flat White"
-msgstr ""
+msgstr "Blanco"
#: src/screens/Onboarding/StepFinished.tsx:294
msgid "Flexible"
msgstr "Flexible"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Seguir"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Seguir"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Seguir {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr "Seguir {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Seguir {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "Sigue 10 cuentas"
msgid "Follow 7 accounts"
msgstr "Sigue 7 cuentas"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "Seguir esta cuenta"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Seguir a todos"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Seguir de vuelta"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Seguir de vuelta"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "Sigue más cuentas para conectar con tus intereses y ampliar tu red."
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "Seguido por <0>{0}0>"
@@ -3224,7 +3544,7 @@ msgstr "Seguido por <0>{0}0> y <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Seguido por <0>{0}0>, <1>{1}1>, y {2, plural, one {# más} other {# más}}"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Seguidores de @{0} que conoces"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Seguidores que conoces"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Siguiendo"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "Siguiendo {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr "Siguiendo {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Siguiendo {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Preferencias del feed de cuentas que sigues"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Preferencias del feed de cuentas que sigues"
@@ -3301,6 +3617,10 @@ msgstr "Por razones de seguridad, no podrás volver a verla. Si pierdes esta con
msgid "For the best experience, we recommend using the theme font."
msgstr "Para una mejor experiencia, recomendamos que uses la fuente del tema."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr "Para ti"
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Para siempre"
@@ -3327,7 +3647,7 @@ msgstr "Frecuentemente Publica Contenido Indeseable"
msgid "From @{sanitizedAuthor}"
msgstr "De @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "De <0/>"
@@ -3336,28 +3656,30 @@ msgstr "De <0/>"
msgid "Gallery"
msgstr "Galería"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Genera un paquete de inicio"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Obtiene ayuda"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
msgstr "Comenzar"
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Comenzando"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Ponle cara a tu perfil"
@@ -3366,17 +3688,17 @@ msgstr "Ponle cara a tu perfil"
msgid "Glaring violations of law or terms of service"
msgstr "Violaciones flagrantes de la Ley o de los Términos de servicio"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Volver"
@@ -3384,10 +3706,10 @@ msgstr "Volver"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Volver"
@@ -3408,7 +3730,27 @@ msgstr "Ir al inicio"
msgid "Go Home"
msgstr "Ir al inicio"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr "Ir al perfil de {firstAuthorName}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Ir a la conversación con {0}"
@@ -3427,8 +3769,8 @@ msgstr "Ir al perfil del usuario"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Contenido explícito"
@@ -3437,21 +3779,21 @@ msgstr "Contenido explícito"
msgid "Half way there!"
msgstr "¡Ya estas a mitad de camino!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Nombre de usuario"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "Nombre de usuario en uso. Por favor intente uno distinto."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "¡Nombre de usuario cambiado!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "Nombre de usuario demasiado largo. Intente con uno más corto."
@@ -3464,7 +3806,7 @@ msgstr "Vibración"
msgid "Harassment, trolling, or intolerance"
msgstr "Acoso, troleo o intolerancia"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Etiqueta"
@@ -3472,19 +3814,24 @@ msgstr "Etiqueta"
msgid "Hashtag {tag}"
msgstr "Etiqueta {tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "¿Tienes problemas?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Ayuda"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Sube una foto o crea un avatar para que la gente sepa que no eres un bot."
@@ -3497,7 +3844,7 @@ msgstr "¡Aquí tienes tu contraseña de app!"
msgid "Hidden"
msgstr "Oculto"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr "Oculto por tus ajustes de moderación."
@@ -3509,58 +3856,59 @@ msgstr "Lista oculta"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Ocultar"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Ocultar"
#: src/components/dialogs/Embed.tsx:128
msgid "Hide customization options"
-msgstr ""
+msgstr "Ocultar las opciones de personalización"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Ocultar el post para mí"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Ocultar respuesta para todos"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Ocultar la respuesta para mí"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr "Ocultar esta tarjeta"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "¿Ocultar esta publicación?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "¿Ocultar esta respuesta?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Ocultar las tendencias"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "¿Quieres ocultar las tendencias?"
@@ -3569,10 +3917,15 @@ msgstr "¿Quieres ocultar las tendencias?"
msgid "Hide trending videos?"
msgstr "¿Quieres ocultar los videos populares?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Ocultar lista de usuarios"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr "Ocultar las marcas de verificación"
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "El servidor del feed ha respondido de forma incorrecta. Por favor, infor
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Tenemos problemas para encontrar este feed. Puede que lo hayan borrado."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Hmmmm, parece que estamos teniendo problemas para cargar estos datos. Consulta a continuación para más detalles. Si este problema persiste, por favor, contáctanos."
@@ -3610,15 +3963,15 @@ msgstr "Hmmmm, no conseguimos cargar ese servicio de moderación."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "¡Espera! Estamos dando acceso a videos gradualmente, y aún estás en la lista de espera. ¡Vuelve a consultar pronto!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Inicio"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "Alojamiento:"
@@ -3627,34 +3980,33 @@ msgstr "Alojamiento:"
msgid "Hosting provider"
msgstr "Proveedor de alojamiento"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr "Destacando"
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "Respuestas destacadas primero"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "¿Cómo deberíamos abrir este enlace?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Tengo un código"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Tengo un código"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Tengo un código de confirmación"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Tengo mi propio dominio"
@@ -3667,22 +4019,30 @@ msgstr "Lo entiendo"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Si el texto alternativo es largo, alterna el estado expandido del texto alternativo."
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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 aún no eres un adulto según las leyes de tu país, tu padre, madre o tutor legal debe leer estos Términos en tu nombre."
-#: src/view/screens/ProfileList.tsx:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "Si eliminas esta lista, no podrás recuperarla."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Si tienes tu propio dominio, puedes usarlo como tu nombre de usuario. Este permite auto-verificar tu identidad. <0>obtén más información0>."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Si eliminas esta publicación, no podrás recuperarla."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr ""
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Si deseas cambiar tu contraseña, te enviaremos un código para verificar que esta es tu cuenta."
@@ -3704,9 +4064,22 @@ msgstr "Ilegal y Urgente"
msgid "Image"
msgstr "Imagen"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "¡Imagen guardada en tu carrete de fotos!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr "Caché de imágenes limpiado"
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr "Caché de imágenes limpiado, {0} liberado"
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr ""
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,9 +4097,9 @@ msgid "Inappropriate messages or explicit links"
msgstr "Mensajes inapropiados o enlaces explícitos"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
-msgstr ""
+msgstr "La bandeja de entrada está vacía"
#: src/screens/Login/LoginForm.tsx:164
msgid "Incorrect username or password"
@@ -3752,15 +4125,11 @@ msgstr "Introduce la contraseña para la eliminación de la cuenta"
msgid "Input the code which has been emailed to you"
msgstr "Introduce el código que se te ha enviado por correo electrónico."
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "Introduce el nombre de usuario o la dirección de correo electrónico que usaste al registrarte"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Interacción limitada"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr "Ajustes de interacción"
@@ -3769,17 +4138,17 @@ msgstr "Ajustes de interacción"
msgid "Invalid 2FA confirmation code."
msgstr "Código de confirmación de autenticación de doble factor no válido."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Nombre de usuario inválido. Por favor intenta uno diferente."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "Registro de publicación inválido o no compatible"
#: src/components/moderation/ReportDialog/index.tsx:73
msgid "Invalid report subject"
-msgstr ""
+msgstr "El tema de la denuncia no es válido"
#: src/components/intents/VerifyEmailIntentDialog.tsx:91
msgid "Invalid Verification Code"
@@ -3789,11 +4158,11 @@ msgstr "Código de Verificación no válido"
msgid "Invite a Friend"
msgstr "Invita a un amigo"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Código de invitación"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
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."
@@ -3805,7 +4174,7 @@ msgstr "Códigos de invitación: {0} disponibles"
msgid "Invite codes: 1 available"
msgstr "Códigos de invitación: 1 disponible"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "¡Invita a personas a este paquete de inicio!"
@@ -3817,7 +4186,7 @@ msgstr "Invita a tus amigos a seguir tus feeds y personas favoritas"
msgid "Invites, but personal"
msgstr "Invitaciones más personales"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "Es correcto"
@@ -3825,19 +4194,19 @@ msgstr "Es correcto"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "¡Solo estás tú por ahora! Agrega más personas a tu paquete de inicio buscando arriba."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "Tarea ID: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Tareas"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Únete a Bluesky"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "Etiquetado por el autor."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Etiquetas"
@@ -3868,7 +4237,7 @@ msgstr "Etiquetas"
msgid "Labels added"
msgstr "Etiquetas añadidas"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "Las etiquetas son anotaciones sobre usuarios y contenido. Pueden usarse para ocultar, advertir y categorizar la red."
@@ -3884,13 +4253,13 @@ msgstr "Etiquetas en tu contenido"
msgid "Language selection"
msgstr "Escoger el idioma"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Ajustes de Idiomas"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Idiomas"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Más grande"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "Último"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "Aprender más"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr "Más información"
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Aprender más"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Más información sobre Bluesky"
@@ -3933,6 +4311,11 @@ msgstr "Más información sobre la moderación aplicada a este contenido."
msgid "Learn more about this warning"
msgstr "Más información sobre esta advertencia"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr "Más información sobre la verificación en Bluesky (en inglés)"
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "Salir de Bluesky"
msgid "left to go."
msgstr "quedan."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Déjame escoger"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Claro"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "Me gusta"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Like ({0, plural, one {# me gusta} other {# me gusta}})"
@@ -4013,17 +4397,16 @@ msgstr "Dale \"me gusta\" a 10 publicaciones"
msgid "Like 10 posts to train the Discover feed"
msgstr "Dale \"me gusta\" a 10 publicaciones para entrenar el feed de Descubrimiento."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Dar \"me gusta\" a este feed"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
-msgstr ""
+msgstr "Dar \"me gusta\" a este etiquetador"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Le gusta a"
@@ -4033,43 +4416,43 @@ msgstr "Le gusta a"
msgid "Liked By"
msgstr "Le gusta a"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Le gusta a {0, plural, one {# usuario} other {# usuarios}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Le gusta a {likeCount, plural, one {# usuario} other {# usuarios}}"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "Me gusta"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "\"Me gusta\" en esta publicación"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "Lineal"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Lista"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Avatar de la lista"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "Lista bloqueada"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4084,44 +4467,44 @@ msgstr "Lista de {0}"
msgid "List by you"
msgstr "Lista tuya"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "Lista eliminada"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
msgstr "Se ha ocultado la lista"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "Lista oculta"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "Lista silenciada"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Nombre de la lista"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "Lista desbloqueada"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "La lista ya no está silenciada"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Listas"
@@ -4129,34 +4512,47 @@ msgstr "Listas"
msgid "Lists blocking this user:"
msgstr "Listas bloqueando este usuario:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr ""
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr ""
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Cargar más"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "Cargar más feeds sugeridos"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Cargar más sugerencias"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Cargar notificaciones nuevas"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Cargar publicaciones nuevas"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Cargando..."
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Registro"
@@ -4164,12 +4560,12 @@ msgstr "Registro"
msgid "Logged-out visibility"
msgstr "Visibilidad de desconexión"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo de @sawaratsuki.bsky.social0>"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo de <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "Parece que has desanclado todos tus feeds. Pero no te preocupes, ¡puede
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Parece que te falta un feed de cuentas que sigues. <0>Haz clic aquí para añadirlo.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "Haz uno para mi"
@@ -4201,36 +4601,47 @@ msgstr "Haz uno para mi"
msgid "Make sure this is where you intend to go!"
msgstr "¡Asegúrate de que es aquí a donde pretendes ir!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "Gestiona los feeds guardados"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr "Gestionar los ajustes de verificación"
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Gestiona tus palabras y etiquetas silenciadas"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
-msgstr ""
+msgstr "Marcar todo como leído"
#: src/components/dms/ConvoMenu.tsx:215
#: src/components/dms/ConvoMenu.tsx:218
msgid "Mark as read"
msgstr "Marcar como leído"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
-msgstr ""
+msgstr "Se ha marcado todo como leído"
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr "En otro momento"
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Multimedia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Medios que pueden ser perturbadores o inapropiados para algunos públicos."
@@ -4246,23 +4657,27 @@ msgstr "Usuarios mencionados"
msgid "Mentions"
msgstr "Menciones"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Menú"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Mensaje {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Mensaje eliminado"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Mensaje eliminado"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr "Mensaje de @{0}: {1}"
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Mensaje del servidor: {0}"
@@ -4276,14 +4691,18 @@ msgstr "Campo de entrada de mensaje"
msgid "Message is too long"
msgstr "El mensaje es muy largo"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr "Opciones del mensaje"
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Mensajes"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81
msgctxt "Name of app icon variant"
msgid "Midnight"
-msgstr ""
+msgstr "Medianoche"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47
#: src/lib/moderation/useReportOptions.ts:47
@@ -4295,10 +4714,10 @@ msgstr "Cuenta engañosa"
msgid "Misleading Post"
msgstr "Publicación engañosa"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Moderación"
@@ -4320,22 +4739,22 @@ msgstr "Lista de moderación por {0}"
msgid "Moderation list by you"
msgstr "Lista de moderación por ti"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "Lista de moderación creada"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "Lista de moderación actualizada"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Listas de moderación"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Listas de moderación"
@@ -4343,11 +4762,11 @@ msgstr "Listas de moderación"
msgid "moderation settings"
msgstr "ajustes de moderación"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "Estados de moderación"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Herramientas de moderación"
@@ -4356,7 +4775,7 @@ msgstr "Herramientas de moderación"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "El moderador ha decidido establecer una advertencia general sobre el contenido."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Más"
@@ -4365,9 +4784,9 @@ msgstr "Más"
msgid "More feeds"
msgstr "Más feeds"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Más opciones"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "Número de \"me gusta\""
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Respuestas con más \"me gusta\" primero"
@@ -4400,14 +4819,14 @@ msgstr "Silenciar"
msgid "Mute {tag}"
msgstr "Silenciar {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "Silenciar esta cuenta"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Silenciar cuentas"
@@ -4420,11 +4839,11 @@ msgstr "Silenciar la conversación"
msgid "Mute in:"
msgstr "Silenciar en:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Silenciar la lista"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "¿Silenciar estas cuentas?"
@@ -4452,26 +4871,26 @@ msgstr "Silenciar esta palabra solo en etiquetas"
msgid "Mute this word until you unmute it"
msgstr "Silenciar esta palabra hasta que la vuelvas a habilitar."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Silenciar el hilo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Silenciar palabras y etiquetas"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Cuentas silenciadas"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Cuentas silenciadas"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Al silenciar a una cuenta no verás sus publicaciones en tu feed o notificaciones. Nadie puede ver a quién silencias."
@@ -4479,11 +4898,11 @@ msgstr "Al silenciar a una cuenta no verás sus publicaciones en tu feed o notif
msgid "Muted by \"{0}\""
msgstr "Silenciado por \"{0}\""
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Palabras y etiquetas silenciadas"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Nadie puede ver a quién silencias. Las cuentas silenciadas pueden interactuar contigo, pero no verás sus publicaciones en tu feed o notificaciones."
@@ -4492,15 +4911,15 @@ msgstr "Nadie puede ver a quién silencias. Las cuentas silenciadas pueden inter
msgid "My Birthday"
msgstr "Mi cumpleaños"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "Mis feeds"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Nombre"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "Nombre requerido"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Naturaleza"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "Navegar a {0}"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr "Ir al paquete de inicio"
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "Navega a la siguiente pantalla"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Navega a tu perfil"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "¿Necesitas cambiarlo?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "¿Necesitas reportar una violación de copyright?"
@@ -4547,30 +4971,43 @@ msgstr "¿Necesitas reportar una violación de copyright?"
msgid "Never lose access to your followers or data."
msgstr "No pierdas el acceso a tus seguidores o tus datos"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "Da igual, crea un nombre de usuario por mí"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Nuevo"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Nuevo"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "Nuevo chat"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr "Nueva dirección de correo electrónico"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr "Nueva característica"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "Nuevo nombre de usuario"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "Nueva lista"
@@ -4578,7 +5015,7 @@ msgstr "Nueva lista"
msgid "New messages"
msgstr "Nuevos mensajes"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Nueva lista de moderación"
@@ -4590,12 +5027,12 @@ msgstr "Nueva contraseña"
msgid "New Password"
msgstr "Nueva contraseña"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Nueva publicación"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "Nueva publicación"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Nueva publicación"
@@ -4613,19 +5050,20 @@ msgstr "Nueva publicación"
msgid "New user info dialog"
msgstr "Ventana de información para nuevo usuario"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Nueva lista de usuarios"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "Respuestas nuevas primero"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Noticias"
@@ -4655,11 +5093,15 @@ msgstr "Imagen nueva"
msgid "No app passwords yet"
msgstr "Aún no hay contraseñas de app"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "Sin panel de DNS"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "No se encontraron GIF destacados. Es posible que haya un problema con Tenor."
@@ -4668,21 +5110,25 @@ msgstr "No se encontraron GIF destacados. Es posible que haya un problema con Te
msgid "No feeds found. Try searching for something else."
msgstr "No se encontraron feeds. Intenta buscar algo más."
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr ""
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "Todavía no tiene \"me gusta\""
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "Ya no sigues a {0}"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr "Número máximo de caracteres: {MAX_SERVICE_HANDLE_LENGTH}"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr "Longitud máxima: {MAX_SERVICE_HANDLE_LENGTH, plural, other {# caracteres}}"
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "No hay mensajes aún"
@@ -4711,31 +5157,38 @@ msgstr "No hay citas aún"
msgid "No reposts yet"
msgstr "Aún no hay republicaciones"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Sin resultado"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "Sin resultados"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr "No hay resultados para \"{0}\"."
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "No se encontraron resultados"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "No se han encontrado resultados para \"{query}\""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "No se han encontrado resultados para {query}"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr "No hay resultados."
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "No se encontraron resultados para \"{search}\"."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Nadie"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "Nadie ha dado \"me gusta\" a esto todavía. ¡Quizás deberías ser el primero!"
@@ -4773,21 +5225,17 @@ msgstr "Desnudez no sexual"
#: src/components/KnownFollowers.tsx:255
msgid "Not followed by anyone you're following"
-msgstr ""
+msgstr "No lo sigue nadie a quien estés siguiendo"
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "No encontrado"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "No en este momento"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Nota sobre compartir"
@@ -4795,7 +5243,7 @@ msgstr "Nota sobre compartir"
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 solo limita la visibilidad de tu contenido en la aplicación y el sitio web de Bluesky. Es posible que otras aplicaciones y sitios web no la respeten y muestren tu contenido a los usuarios que hayan cerrado sesión."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Nada aquí"
@@ -4803,7 +5251,7 @@ msgstr "Nada aquí"
msgid "Notification filters"
msgstr "Filtros de notificación"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Ajustes de notificaciones"
@@ -4820,11 +5268,11 @@ msgstr "Sonidos de notificación"
msgid "Notification Sounds"
msgstr "Sonidos de notificación"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Notificaciones"
@@ -4832,12 +5280,12 @@ msgstr "Notificaciones"
msgid "now"
msgstr "ahora"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Ahora"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Desnudez"
@@ -4859,21 +5307,23 @@ msgstr "¡Qué problema!"
msgid "Oh no! Something went wrong."
msgstr "¡Oh no! Algo va mal."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "Aceptar"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "Está bien"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "Respuestas antiguas primero"
@@ -4881,19 +5331,19 @@ msgstr "Respuestas antiguas primero"
msgid "on<0><1/><2><3/>2>0>"
msgstr "en<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Reiniciar introducción"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "Falta el texto alternativo en uno o más GIF."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "Falta el texto alternativo en una o varias imágenes."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "Falta el texto alternativo en uno o más videos."
@@ -4905,11 +5355,11 @@ msgstr "Solo se admiten archivos .jpg y .png"
msgid "Only {0} can reply."
msgstr "Solo {0} puede responder."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Solo contiene letras, números y guiones"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "Solo se admiten archivos de imagen"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "¡Uy, algo ha salido mal!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "¡Uy!"
@@ -4935,67 +5385,80 @@ msgstr "¡Uy!"
msgid "Open"
msgstr "Abierto"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "Abrir el menú de accesos directos del perfil de {name}"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Abrir el creador de avatares"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "Abrir las opciones de conversación"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "Abrir el menú lateral"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Abrir el selector de emojis"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "Abrir la pantalla de información del feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "Abrir el menú de opciones del feed"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr "Abrir la lista completa de emoji"
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "Abrir enlace a {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "Abrir opciones de mensaje"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "Abrir página de depuración de moderación"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Abrir ajustes de palabras y etiquetas silenciadas"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr "Abrir"
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "Abrir menú de opciones de la publicación"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "Abrir menú del paquete de inicio"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Abrir pagina de histórico"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Abrir el registro del sistema"
@@ -5015,19 +5478,19 @@ msgstr "Abre un diálogo para elegir quién puede responder a este hilo."
msgid "Opens additional details for a debug entry"
msgstr "Abre detalles adicionales para una entrada de depuración."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
-msgstr ""
+msgstr "Abre el diálogo de texto alternativo"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Abrir cámara del dispositivo"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
-msgstr ""
+msgstr "Abre diálogo de subtítulos y texto alternativo"
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr "Abre el diálogo de cambio del nombre de usuario"
@@ -5039,7 +5502,7 @@ msgstr "Abrir la ventana de redacción"
msgid "Opens device photo gallery"
msgstr "Abrir galería de fotos del dispositivo"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr "Abre el selector de emojis"
@@ -5057,7 +5520,7 @@ msgstr "Abre el flujo para iniciar sesión en tu cuenta existente de Bluesky"
msgid "Opens GIF select dialog"
msgstr "Abre el diálogo de selección de GIF."
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr "Abre el centro de ayuda en el navegador"
@@ -5065,6 +5528,10 @@ msgstr "Abre el centro de ayuda en el navegador"
msgid "Opens list of invite codes"
msgstr "Abre la lista de códigos de invitación"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Abre el formulario de restablecimiento de contraseña"
@@ -5073,12 +5540,12 @@ msgstr "Abre el formulario de restablecimiento de contraseña"
msgid "Opens the linked website"
msgstr "Abre el sitio web vinculado"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Abre este perfil"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Abre el selector de video"
@@ -5105,27 +5572,27 @@ msgstr "O inicia sesión con una de tus otras cuentas."
#: src/screens/Settings/components/OTAInfo.tsx:52
msgid "OTA status: ..."
-msgstr ""
+msgstr "Estado de las actualizaciones: ..."
#: src/screens/Settings/components/OTAInfo.tsx:48
msgid "OTA status: Available!"
-msgstr ""
+msgstr "Estado de las actualizaciones: Disponible"
#: src/screens/Settings/components/OTAInfo.tsx:50
msgid "OTA status: Error fetching update"
-msgstr ""
+msgstr "Estado de las actualizaciones: Error obteniendo la actualización"
#: src/screens/Settings/components/OTAInfo.tsx:54
msgid "OTA status: None available"
-msgstr ""
+msgstr "Estado de las actualizaciones: Ninguna disponible"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Otro"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Otra cuenta"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Página no encontrada"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "Pausar"
msgid "Pause video"
msgstr "Pausar video"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "Personas"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "Personas seguidas por @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "Personas siguiendo a @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "Se requiere permiso para acceder al carrete de la cámara."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "El permiso para acceder al carrete de la cámara fue denegado. Por favor, actívalo en la configuración de tu sistema."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr ""
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "Mascotas"
msgid "Photography"
msgstr "Fotografía"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Imágenes destinadas a adultos."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr "Fijar"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "Anclar el feed"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr "Fija el feed de videos populares a tu pantalla de inicio para facilitar el acceso"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr "Anclar el feed"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Anclar en inicio"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Anclar en inicio"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Anclar en tu perfil"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Anclado"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "{0} anclados en inicio"
@@ -5263,7 +5722,7 @@ msgstr "{0} anclados en inicio"
msgid "Pinned Feeds"
msgstr "Feeds anclados"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "Tus feeds anclados"
@@ -5302,24 +5761,28 @@ msgstr "Reproducir GIF"
msgid "Plays the video"
msgstr "Reproduce el video"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr "Añade las etiquetas de advertencia sobre el contenido multimedia que vas a publicar."
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Por favor, elige tu identificador."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Por favor, elige tu contraseña."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr ""
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Por favor, completa la verificación CAPTCHA."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Por favor, confirma tu correo electrónico antes de cambiarlo. Se trata de un requisito temporal mientras se añaden herramientas de actualización de correo electrónico, y pronto se eliminará."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr "Comprueba que has ingresado tu correo electrónico correctamente."
@@ -5335,19 +5798,41 @@ msgstr "Escribe una contraseña. Debe tener al menos 8 caracteres."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Introduce un nombre único para esta contraseña de app o utiliza el que generamos aleatoriamente."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Por favor, introduce una palabra, etiqueta, o frase válida para silenciar"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr ""
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Introduce tu correo electrónico."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Introduce tu código de invitación."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr "Escribe tu contraseña"
@@ -5370,35 +5855,36 @@ msgstr "Por favor, explica por qué crees que tus chats fueron deshabilitados in
#: src/components/moderation/ReportDialog/action.ts:31
msgid "Please select a moderation service"
-msgstr ""
+msgstr "Selecciona un servicio de moderación"
#: src/components/moderation/ReportDialog/action.ts:28
msgid "Please select a reason for this report"
-msgstr ""
+msgstr "Selecciona un motivo para esta denuncia"
#: src/lib/hooks/useAccountSwitcher.ts:45
#: src/lib/hooks/useAccountSwitcher.ts:55
msgid "Please sign in as @{0}"
msgstr "Por favor, ingresa como @{0}"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Verifica tu correo electrónico"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Política"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr "Videos populares en tu red."
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Pornografía"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Publicar"
@@ -5408,32 +5894,32 @@ msgctxt "description"
msgid "Post"
msgstr "Publicar"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Publicar Todo"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "Publicación por {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "Publicación por {0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "Publicación eliminada"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Error al subir la publicación. Por favor, verifica tu conexión a internet y vuelve a intentarlo."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr "Publicación eliminada"
@@ -5455,7 +5941,7 @@ msgstr "Publicación ocultada por ti"
msgid "Post interaction settings"
msgstr "Ajustes de interacción de la publicación"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr "Ajustes de interacción de la publicación"
@@ -5476,15 +5962,16 @@ msgstr "Publicación no encontrada"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "Publicación fijado"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "Publicación desfijado"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Publicaciones"
@@ -5503,7 +5990,7 @@ msgstr "Enlace potencialmente engañoso"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "Preferencias guardadas"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -5524,7 +6011,7 @@ msgstr "Presiona para ver los seguidores de esta cuenta que también sigues."
msgid "Previous image"
msgstr "Imagen previa"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Idioma principal"
@@ -5537,31 +6024,31 @@ msgstr "Priorizar los usuarios a los que sigues"
msgid "Priority notifications"
msgstr "Notificaciones prioritarias"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Privacidad"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "Privacidad y seguridad"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Privacidad y Seguridad"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Política de privacidad"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Procesando video..."
@@ -5570,23 +6057,23 @@ msgstr "Procesando video..."
msgid "Processing..."
msgstr "Procesando..."
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Perfil"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "Perfil actualizado"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
@@ -5600,6 +6087,26 @@ msgstr "Listas públicas y compartibles para bloquear o silenciar a usuarios en
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "Listas públicas y compartibles que se pueden usar para impulsar feeds."
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr "Publicar la publicación"
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr "Publicar las publicaciones"
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr "Publicar las respuestas"
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr "Publicar la respuesta"
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "¡Código QR copiado a tu portapapeles!"
@@ -5612,25 +6119,25 @@ msgstr "¡El código QR ha sido descargado!"
msgid "QR code saved to your camera roll!"
msgstr "¡Código QR guardado en tu galería!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Citar la publicación"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "La cita se vinculado de nuevo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "La cita se ha desvinculado correctamente"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "Citas deshabilitadas"
@@ -5642,39 +6149,48 @@ msgstr "Configuración de citas"
msgid "Quotes"
msgstr "Citas"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "Citas de esta publicación"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Orden aleatorio"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "Límite de velocidad excedido - has intentado cambiar tu nombre de usuario demasiadas veces en un periodo breve. Espera un minuto antes de intentarlo nuevamente."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "Vincular cita de nuevo"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr "React con {emoji}"
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Reactivar tu cuenta"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr "Leer la publicación del blog (en inglés)"
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr "Ver menos"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr "Ver más"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Leer el blog de Bluesky"
@@ -5697,11 +6213,11 @@ msgstr "Motivo del recurso"
msgid "Reason:"
msgstr "Razón:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Búsquedas Recientes"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "Recomendaciones"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "Reconectar"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
-msgstr ""
+msgstr "Rechazar"
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
-msgstr ""
+msgstr "Rechazar la solicitud de chat"
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Recargar conversaciones"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Eliminar"
msgid "Remove {displayName} from starter pack"
msgstr "Eliminar a {displayName} del paquete de inicio"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
-msgstr ""
+msgstr "Eliminar {historyItem}"
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Eliminar la cuenta"
@@ -5752,13 +6268,13 @@ msgstr "Eliminar la cuenta"
msgid "Remove attachment"
msgstr "Eliminar adjunto"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Eliminar Avatar"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "Eliminar Banner"
@@ -5776,24 +6292,25 @@ msgstr "Eliminar feed"
msgid "Remove feed?"
msgstr "¿Eliminar feed?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Eliminar de mis feeds"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "¿Eliminar del acceso rápido?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "Eliminar de los feeds guardados"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr "¿Eliminar de tus feeds?"
@@ -5802,11 +6319,16 @@ msgstr "¿Eliminar de tus feeds?"
msgid "Remove image"
msgstr "Eliminar la imagen"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Eliminar palabra silenciada de tu lista"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Eliminar perfil"
@@ -5814,12 +6336,12 @@ msgstr "Eliminar perfil"
msgid "Remove quote"
msgstr "Eliminar cita"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Eliminar republicación"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Eliminar archivo de subtítulo"
@@ -5827,6 +6349,21 @@ msgstr "Eliminar archivo de subtítulo"
msgid "Remove this feed from your saved feeds"
msgstr "Eliminar este feed de tus feeds guardados"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr "Eliminar al usuario de la lista"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr "Eliminar la verificación"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr "¿Eliminar tu verificación para esta cuenta?"
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "Eliminado por el autor"
@@ -5835,7 +6372,7 @@ msgstr "Eliminado por el autor"
msgid "Removed by you"
msgstr "Eliminado por ti"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Eliminado de la lista"
@@ -5845,19 +6382,18 @@ msgid "Removed from my feeds"
msgstr "Eliminado de mis feeds"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Eliminado de mis feeds guardados"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Eliminado de tus feeds"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr "Borra el perfil del historial de búsqueda"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr "Verificación eliminada"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
@@ -5868,7 +6404,7 @@ msgstr "Elimina la cita"
msgid "Replace with Discover"
msgstr "Reemplaza con Descubrir"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Respuestas"
@@ -5880,12 +6416,13 @@ msgstr "Respuestas deshabilitadas"
msgid "Replies to this post are disabled."
msgstr "Las respuestas en esta publicación estan deshabilitadas."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Responder"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Responder ({0, plural, one {# respuesta} other {# respuestas}})"
@@ -5907,86 +6444,86 @@ msgstr "Ajustes de respuesta"
msgid "Reply settings are chosen by the author of the thread"
msgstr "La configuración de respuestas es elegida por el autor del hilo"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "Orden de las respuestas"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Responder a <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Responder a una publicación bloqueada"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "Responder a una publicación"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Responder a ti"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "Visibilidad de la respuesta actualizada"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "La respuesta se ha ocultado correctamente"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Denunciar"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "Denunciar la cuenta"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Denunciar conversación"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "Ventana de denuncia"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Denunciar feed"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
-msgstr "Denunciar lista"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
+msgstr "Denunciar la lista"
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Denunciar mensaje"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Denunciar la publicación"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "Denunciar paquete de inicio"
@@ -6030,25 +6567,26 @@ msgstr "Denunciar este paquete de inicio"
msgid "Report this user"
msgstr "Denunciar este usuario"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Republicar"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Republicar"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Republicar ({0, plural, one {# republicación} other {# republicaciones}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Republicar o citar publicación"
@@ -6056,26 +6594,26 @@ msgstr "Republicar o citar publicación"
msgid "Reposted By"
msgstr "Republicado por"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "Republicado por {0}"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "Republicado por <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "Republicado por ti"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "Republicaciones de esta publicación"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
msgstr "Solicitar cambio"
#: src/view/com/modals/ChangePassword.tsx:253
@@ -6088,11 +6626,11 @@ msgstr "Solicitar código"
msgid "Require alt text before posting"
msgstr "Requerir texto alternativo antes de publicar"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr "Requerir un código por correo electrónico antes de iniciar sesión con tu cuenta."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Requerido para este proveedor"
@@ -6100,13 +6638,19 @@ msgstr "Requerido para este proveedor"
msgid "Required in your region"
msgstr "Requerido en tu región"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "Reenviar correo"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "Reenviar correo"
@@ -6123,8 +6667,8 @@ msgstr "Código de restablecimiento"
msgid "Reset Code"
msgstr "Código de restablecimiento"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "Restablecer el estado de incorporación"
@@ -6141,16 +6685,16 @@ msgstr "Vuelve a intentar el inicio de sesión"
msgid "Retries the last action, which errored out"
msgstr "Reintenta la última acción, que presentó un error"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "Reintenta la última acción, que presentó un error"
msgid "Retry"
msgstr "Reintentar"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
-msgstr ""
+msgstr "Reintentar cargar opciones de denuncia"
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Volver a la página anterior"
@@ -6175,11 +6719,11 @@ msgstr "Volver a la página anterior"
msgid "Returns to home page"
msgstr "Volver a la página de inicio"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "Volver a la página anterior"
@@ -6190,24 +6734,26 @@ msgstr "Vuelve al paso anterior"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Guardar"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Guardar"
@@ -6221,12 +6767,12 @@ msgstr "Guardar cumpleaños"
msgid "Save changes"
msgstr "Guardar cambios"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Guardar cambios"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Guardar imagen"
@@ -6234,16 +6780,16 @@ msgstr "Guardar imagen"
msgid "Save image crop"
msgstr "Guardar recorte de imagen"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Guardar nuevo nombre de usuario"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "Guardar código QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Guardar en mis feeds"
@@ -6251,16 +6797,12 @@ msgstr "Guardar en mis feeds"
msgid "Saved Feeds"
msgstr "Feeds guardados"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "Guardado en tu galería"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "Guardado en tus feeds"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "Guarda los cambios en tu perfil"
@@ -6270,8 +6812,8 @@ msgstr "Guarda los ajustes de recorte de la imagen"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "¡Di hola!"
@@ -6280,45 +6822,42 @@ msgstr "¡Di hola!"
msgid "Science"
msgstr "Ciencia"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "Desplazar hacia arriba"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Buscar"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Buscar en las publicaciones de @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "Buscar por nombre o interés"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "Buscar feeds"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "Buscar \"{interestsDisplayName}\"{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Buscar \"{query}\""
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "Buscar \"{searchText}\""
@@ -6326,29 +6865,33 @@ msgstr "Buscar \"{searchText}\""
msgid "Search for feeds that you want to suggest to others."
msgstr "Buscar feeds que quieras sugerir a otros."
-#: src/view/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr "Buscar más cuentas"
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr "Buscar más feeds"
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
msgstr "Buscar publicaciones, usuarios o feeds"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Buscar usuarios"
-
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "Buscar GIFs"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr "Buscar en mis publicaciones"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr "Buscar en sus publicaciones"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Buscar perfiles"
@@ -6356,16 +6899,20 @@ msgstr "Buscar perfiles"
msgid "Search Tenor"
msgstr "Buscar en Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr "Buscar..."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr "Busca perfiles"
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Se requiere un paso de seguridad"
@@ -6385,7 +6932,7 @@ msgstr "Ver las publicaciones sobre #{tag}"
msgid "See #{tag} posts by user"
msgstr "Ver las publicaciones sobre #{tag} de esta cuenta"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Ver empleos en Bluesky"
@@ -6405,6 +6952,10 @@ msgstr "Selecciona un color"
msgid "Select account"
msgstr "Seleccionar cuenta"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Selecciona un avatar"
@@ -6413,10 +6964,22 @@ msgstr "Selecciona un avatar"
msgid "Select an emoji"
msgstr "Selecciona un emoji"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Seleccionar los idiomas del contenido"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr ""
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Selecciona de una cuenta existente"
@@ -6433,22 +6996,26 @@ msgstr "Seleccionar GIF \"{0}\""
msgid "Select how long to mute this word for."
msgstr "Selecciona por cuánto tiempo se debería silenciar esta palabra."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Seleccionar idioma..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Seleccionar idiomas"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
-msgstr ""
+msgstr "Seleccionar servicio de moderación"
#: src/components/ReportDialog/SelectLabelerView.tsx:28
msgid "Select moderator"
msgstr "Seleccionar moderador"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "Seleccionar el emoji {emojiName} como tu avatar"
msgid "Select the moderation service(s) to report to"
msgstr "Seleccionar los servicios de moderación a los que reportar"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Seleccionar video"
@@ -6470,23 +7037,24 @@ msgstr "Seleccionar video"
msgid "Select what content this mute word should apply to."
msgstr "Seleccionar a qué contenido se debe aplicar esta palabra silenciada."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr "Selecciona el idioma de la interfaz de usuario de la aplicación."
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Elige en qué idiomas deseas que estén los posts de tus feeds. Si ninguno es seleccionado, se mostrarán en todos los idiomas."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Elige tu fecha de nacimiento"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "Selecciona tus intereses entre las siguientes opciones"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "Elige a qué idioma deseas traducir las publicaciones de tu feed."
@@ -6498,19 +7066,17 @@ msgstr "Selecciona la opción {0} de {numItems}"
msgid "Send a neat website!"
msgstr "¡Envía un sitio web interesante!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr "Enviar confirmación"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
+msgstr "Enviar la confirmación"
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Enviar correo de confirmación"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Enviar correo de confirmación"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Enviar correo"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Enviar correo"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Enviar comentarios"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Enviar mensaje"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr ""
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Enviar publicación a..."
@@ -6544,17 +7114,20 @@ msgstr "Enviar reporte"
msgid "Send report to {0}"
msgstr "Enviar reporte a {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr "Enviar denuncia a {title}"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Enviar correo de verificación"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Enviar por mensaje directo"
@@ -6570,7 +7143,7 @@ msgstr "Dirección del servidor"
msgid "Set app icon to {0}"
msgstr "Cambiar el icono de la app a {0}"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "Establecer cumpleaños"
@@ -6586,19 +7159,19 @@ msgstr "Configura tu cuenta"
msgid "Sets email for password reset"
msgstr "Establece el correo electrónico para restablecer la contraseña"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Ajustes"
#: src/screens/ModerationInteractionSettings/index.tsx:102
msgctxt "toast"
msgid "Settings saved"
-msgstr ""
+msgstr "Ajustes guardados"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Actividad sexual o desnudez erótica."
@@ -6606,21 +7179,15 @@ msgstr "Actividad sexual o desnudez erótica."
msgid "Sexually Suggestive"
msgstr "Sexualmente sugestivo"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Compartir"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Compartir"
@@ -6633,15 +7200,19 @@ msgstr "¡Comparte una historia genial!"
msgid "Share a fun fact!"
msgstr "¡Comparte un dato curioso!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Compartir de todas maneras"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "Compartir enlace"
@@ -6650,32 +7221,46 @@ msgstr "Compartir enlace"
msgid "Share Link"
msgstr "Compartir enlace"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "Ventana para compartir enlace"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Compartir código QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "Compartir este feed"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "Compartir este paquete de inicio"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "Comparte este paquete de inicio y ayuda a las personas a unirse a tu comunidad en Bluesky."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr ""
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "¡Comparte tu feed favorito!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "Probador de Preferencias Compartidas"
@@ -6685,7 +7270,7 @@ msgstr "Comparte el sitio web enlazado"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Ver"
@@ -6696,8 +7281,8 @@ msgstr "Ver texto alternativo"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Ver de todas maneras"
@@ -6712,14 +7297,14 @@ msgstr "Mostrar insignia y filtrar de los feeds"
#: src/components/dialogs/Embed.tsx:129
msgid "Show customization options"
-msgstr ""
+msgstr "Mostrar opciones de personalización"
#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22
msgid "Show hidden replies"
msgstr "Mostrar respuestas ocultas"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "Mostrar menos como esto"
@@ -6727,14 +7312,14 @@ msgstr "Mostrar menos como esto"
msgid "Show list anyway"
msgstr "Mostrar lista de todas maneras"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Ver más"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Mostrar más como esto"
@@ -6752,7 +7337,7 @@ msgstr "Mostrar citas"
msgid "Show replies"
msgstr "Mostrar respuestas"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "Mostrar las respuestas como"
@@ -6764,8 +7349,8 @@ msgstr "Mostrar las respuestas como hilos"
msgid "Show replies by people you follow before all other replies"
msgstr "Mostrar las respuestas de las personas a quienes sigues antes que el resto de respuestas"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "Mostrar respuesta para todos"
@@ -6787,11 +7372,11 @@ msgstr "Mostrar advertencia"
msgid "Show warning and filter from feeds"
msgstr "Mostrar advertencia y filtrar de los feeds"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr "Muestra información sobre la fecha de creación de esta publicación"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr "Muestra otras cuentas a las que puedes cambiar"
@@ -6809,8 +7394,8 @@ msgstr "Muestra el contenido"
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr "Muestra el contenido"
msgid "Sign in"
msgstr "Iniciar sesión"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Iniciar sesión como {0}"
@@ -6826,16 +7411,16 @@ msgstr "Iniciar sesión como {0}"
msgid "Sign in as..."
msgstr "Iniciar sesión como ..."
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr "Iniciar sesión o crear una cuenta"
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "¡Inicia sesión o crea una cuenta para unirte a la conversación!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "Iniciar sesión o registrarse"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "Iniciar sesión en una cuenta que no está en la lista"
@@ -6843,15 +7428,15 @@ msgstr "Iniciar sesión en una cuenta que no está en la lista"
msgid "Sign in to Bluesky or create a new account"
msgstr "Inicia sesión en Bluesky o crea una nueva cuenta"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Cerrar sesión"
@@ -6859,8 +7444,8 @@ msgstr "Cerrar sesión"
msgid "Sign Out"
msgstr "Cerrar sesión"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "¿Cerrar sesión?"
@@ -6874,11 +7459,6 @@ msgstr "Se requiere iniciar sesión"
msgid "Signed in as @{0}"
msgstr "Sesión iniciada como @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "Registrarse sin un paquete de inicio"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Cuentas similares"
@@ -6896,12 +7476,21 @@ msgstr "Saltar este flujo"
msgid "Smaller"
msgstr "Más pequeño"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr "Posponer el recordatorio"
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Programación"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr "Algunas de tus verificaciones no son válidas."
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "Otros feeds que podrían gustarte"
@@ -6909,23 +7498,31 @@ msgstr "Otros feeds que podrían gustarte"
msgid "Some people can reply"
msgstr "Algunas personas pueden responder"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr "Alguien reaccionó con {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr "Alguien reaccionó con {0} a {1}"
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
-msgstr ""
+msgstr "Hubo un problema con los datos que intentaste denunciar. Por favor, contacta con el soporte."
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Se produjo un error"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Se produjo un error. Por favor, inténtalo de nuevo"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Se produjo un error. Por favor, inténtalo de nuevo"
@@ -6934,16 +7531,16 @@ msgstr "Se produjo un error. Por favor, inténtalo de nuevo"
msgid "Something went wrong!"
msgstr "¡Se produjo un error!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr "Se produjo un error. Inténtalo de nuevo."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "¿Algo va mal? Avísanos."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "Lo sentimos, tu sesión ha expirado. Inicia sesión de nuevo."
@@ -6978,34 +7575,39 @@ msgstr "Spam; menciones o respuestas excesivas"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Deportes"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Iniciar un nuevo chat"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "Empieza a añadir personas"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "¡Empieza a añadir personas!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Iniciar chat con {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Paquete de inicio"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "Paquete de inicio de {0}"
@@ -7013,38 +7615,39 @@ msgstr "Paquete de inicio de {0}"
msgid "Starter pack by <0/>"
msgstr "Paquete de inicio de <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "Paquete de inicio creado por ti"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "El paquete de inicio es inválido"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "Paquete de Inicio"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Los paquetes de inicio te permiten compartir fácilmente tus feeds y personas favoritas con tus amigos."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Página de estado"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "Paso {0} de {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "Almacenamiento limpio, necesitas reiniciar la aplicación ahora."
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "Libro de cuentos"
@@ -7063,69 +7666,74 @@ msgstr "Enviar apelación"
msgid "Submit Appeal"
msgstr "Enviar apelación"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr "Enviar denuncia"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Suscribirse"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "Suscríbete a @{0} para usar estas etiquetas:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "Suscribirse al etiquetador"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "Suscribirse a este etiquetador"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "Suscribirse a esta lista"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "¡Éxito!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr "Verificado correctamente"
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
msgstr "Cuentas sugeridas"
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Sugerido para ti"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Sugestivo"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60
msgctxt "Name of app icon variant"
msgid "Sunrise"
-msgstr ""
+msgstr "Amanecer"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70
msgctxt "Name of app icon variant"
msgid "Sunset"
-msgstr ""
+msgstr "Atardecer"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Soporte"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Cambiar a otra cuenta"
@@ -7134,11 +7742,11 @@ msgstr "Cambiar a otra cuenta"
msgid "Switch Account"
msgstr "Cambiar a otra cuenta"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "Cambiar cuentas"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr "Cambiar a {0}"
@@ -7149,9 +7757,9 @@ msgstr "Cambiar a {0}"
msgid "System"
msgstr "Sistema"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Registro del sistema"
@@ -7159,6 +7767,12 @@ msgstr "Registro del sistema"
msgid "Tags only"
msgstr "Solo etiquetas"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr "Toca para cerrar el menú contextual"
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Toca para descartar"
@@ -7184,7 +7798,7 @@ msgstr "Tecnología"
msgid "Tell a joke!"
msgstr "¡Cuenta un chiste!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "Háblanos de ti"
@@ -7192,17 +7806,17 @@ msgstr "Háblanos de ti"
msgid "Tell us a little more"
msgstr "Cuéntanos un poco más"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Condiciones"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Términos de servicio"
@@ -7230,7 +7844,11 @@ msgstr "Campo de texto"
msgid "Text input field"
msgstr "Campo de introducción de texto"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "¡Gracias! Tu correo electrónico ha sido verificado exitosamente."
@@ -7242,7 +7860,7 @@ msgstr "Gracias. Tu denuncia ha sido enviada."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Gracias, has verificado tu dirección de correo electrónico exitosamente. Puedes cerrar esta ventana."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "Eso contiene lo siguiente:"
@@ -7250,10 +7868,10 @@ msgstr "Eso contiene lo siguiente:"
msgid "That handle is already taken."
msgstr "Este nombre de usuario ya está en uso."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "No se pudo encontrar ese paquete de inicio."
msgid "That's all, folks!"
msgstr "¡Eso es todo, amigos!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr "¡Se acabó!"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "La cuenta podrá interactuar contigo tras desbloquearla."
@@ -7282,7 +7900,7 @@ msgstr "Se reiniciará la app"
msgid "The author of this thread has hidden this reply."
msgstr "El autor de este hilo ha ocultado esta respuesta."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "La aplicación web de Bluesky"
@@ -7302,6 +7920,10 @@ msgstr "El feed de Descubrir"
msgid "The Discover feed now knows what you like"
msgstr "El feed de Descubrir ahora sabe lo que te gusta"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr "La dirección de correo electrónico que has introducido es la misma que tu dirección de correo electrónico actual."
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "La experiencia es mejor en la aplicación. Descarga Bluesky ahora y continuaremos donde lo dejaste."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "La Política de Privacidad se ha trasladado a <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "El video seleccionado es mayor de 50MB."
+msgid "The selected video is larger than 100 MB."
+msgstr "El video seleccionado es mayor de 100 MB."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "El servidor parece tener problemas. Por favor intenta nuevamente después de unos momentos."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "El paquete de inicio que intentas ver es inválido. Puedes eliminar este paquete de inicio en su lugar."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr "Asunto del menú contextual"
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "Se ha movido el formulario de soporte. Si necesitas ayuda, por favor, <0/> o visita {HELP_DESK_URL} para ponerte en contacto con nosotros."
@@ -7367,15 +7994,15 @@ msgstr "No hay límite de tiempo para la desactivación de la cuenta, vuelve cua
msgid "There was an issue connecting to Tenor."
msgstr "Hubo un problema al conectarse a Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "Hubo un problema al contactar con el servidor"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Hubo un problema al contactar con el servidor. Por favor, verifica tu conexión a internet e inténtalo de nuevo."
@@ -7388,11 +8015,12 @@ msgstr "Hubo un problema al contactar con tu servidor"
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Hubo un problema al obtener las notificaciones. Toca aquí para intentar de nuevo."
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Hubo un problema al obtener las publicaciones. Toca aquí para intentar de nuevo."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Hubo un problema al obtener la lista. Toca aquí para intentar de nuevo."
@@ -7400,12 +8028,12 @@ msgstr "Hubo un problema al obtener la lista. Toca aquí para intentar de nuevo.
msgid "There was an issue fetching your app passwords"
msgstr "Hubo un problema al obtener tus contraseñas de app"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Hubo un problema al obtener tus listas. Toca aquí para intentar de nuevo."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "Hubo un problema al obtener tu información de servicio"
@@ -7418,26 +8046,26 @@ msgstr "Hubo un problema al eliminar este feed. Por favor, verifica tu conexión
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Hubo un problema al enviar tu reporte. Por favor, verifica tu conexión a internet."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "Hubo un problema al actualizar tus feeds, por favor verifica tu conexión a internet e inténtalo de nuevo."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "Ocurrió un problema {0}"
@@ -7445,10 +8073,10 @@ msgstr "Ocurrió un problema {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Hubo un problema. Por favor, verifica tu conexión a internet y vuelve a intentarlo."
@@ -7469,6 +8097,14 @@ msgstr "Estos ajustes solo aplican para el feed Following."
msgid "This {screenDescription} has been flagged:"
msgstr "Esta {screenDescription} ha sido marcada:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr "Esta cuenta tiene una marca de verificación porque ha sido verificada por fuentes de confianza."
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr "Esta cuenta tiene uno o más intentos de verificación, pero no actualmente no está verificada."
+
#: src/components/moderation/ScreenHider.tsx:106
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."
@@ -7477,6 +8113,10 @@ msgstr "Esta cuenta ha solicitado que los usuarios inicien sesión para ver su p
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 "Esta cuenta está bloqueada por una o más de tus listas de moderación. Para desbloquearla, por favor, visita las listas directamente y elimina a este usuario."
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr "Esta acción se puede deshacer en cualquier momento."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Esta apelación será enviada a <0>{sourceName}0>."
@@ -7510,14 +8150,22 @@ msgstr "Este contenido no está disponible porque uno de los usuarios involucrad
msgid "This content is not viewable without a Bluesky account."
msgstr "Este contenido no se puede ver sin una cuenta de Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Esta conversación es con una cuenta eliminada o desactivada. Presiona para ver opciones"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "Esta función está en beta. Puedes leer más sobre la exportación de repositorios en <0>esta publicación del blog0>."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr ""
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "Esta función no está disponible cuando se usa una contraseña de app. Inicia sesión con tu contraseña principal."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "¡Este feed está vacío! Es posible que necesites seguir a más usuarios o ajustar la configuración de idioma."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Este feed está vacío."
@@ -7540,7 +8188,7 @@ msgstr "Este feed está vacío."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Este feed ya no está en línea. Estamos mostrando <0>Descubrir0> en su lugar."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "Este nombre de usuario está reservado. Por favor intenta con uno diferente."
@@ -7548,9 +8196,10 @@ msgstr "Este nombre de usuario está reservado. Por favor intenta con uno difere
msgid "This information is not shared with other users."
msgstr "Esta información no es compartida con otros usuarios."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "Esto es importante por si alguna vez necesitas cambiar tu correo electrónico o restablecer tu contraseña."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr ""
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "Esta etiqueta fue aplicada por el autor."
msgid "This label was applied by you."
msgstr "Esta etiqueta fue aplicada por ti."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "Este etiquetador no ha declarado qué etiquetas publica y puede que no esté activo."
@@ -7576,7 +8225,7 @@ msgstr "Es posible que el nombre o la descripción de esta lista (creada por <0>
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr "Es posible que el nombre o la descripción de esta lista (creada por ti) infrinjan las Directrices de la comunidad de Bluesky."
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "Esta lista está vacía"
@@ -7584,7 +8233,7 @@ msgstr "Esta lista está vacía"
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Este servicio de moderación no está disponible. Consulta más detalles a continuación. Si el problema persiste, contáctanos."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Esta publicación declara haber sido creada en <0>{0}0>, pero fue vista por primera vez por Bluesky en <1>{1}1>."
@@ -7592,28 +8241,29 @@ msgstr "Esta publicación declara haber sido creada en <0>{0}0>, pero fue vist
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr "Esta publicación tiene un tipo de ajustes de respuesta desconocido. Es posible que tu app no esté actualizada."
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "Esta publicación ha sido eliminada."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Esta publicación solo es visible para las personas que han iniciado sesión. No podrán verla quienes no hayan iniciado sesión."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Esta publicación será ocultada de los feeds y hilos. Esto no se puede deshacer."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "El autor de esta publicación ha deshabilitado las citas."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Este perfil solo es visible para las personas que han iniciado sesión. No podrán verlo quienes no hayan iniciado sesión."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr "Esta respuesta se colocará en una sección oculta al final de tu hilo. Las notificaciones de respuestas posteriores se silenciarán, tanto para ti como para los demás."
@@ -7621,10 +8271,14 @@ msgstr "Esta respuesta se colocará en una sección oculta al final de tu hilo.
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Este servicio no ha proporcionado términos de servicio ni una política de privacidad."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "Esto debería crear un registro de dominio en:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr "Este usuario no tiene un nombre para mostrar, por lo tanto no puede ser verificado."
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "Este usuario no tiene seguidores."
@@ -7662,21 +8316,21 @@ msgstr "Este usuario no sigue a nadie."
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "Esto eliminará \"{0}\" de tus palabras silenciadas. Siempre puedes añadirla de nuevo más tarde."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "Esto eliminará @{0} de la lista de acceso rápido."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "Esto eliminará tu publicación de esta cita para todos los usuarios y la reemplazará con un marcador de posición."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "Opciones de hilos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Preferencias de hilos"
@@ -7684,8 +8338,8 @@ msgstr "Preferencias de hilos"
msgid "Thread Preferences"
msgstr "Preferencias de hilos"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "En hilos"
@@ -7693,7 +8347,7 @@ msgstr "En hilos"
msgid "Threaded mode"
msgstr "Modo con hilos"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Preferencias de hilos"
@@ -7705,14 +8359,15 @@ msgstr "Tiempo restante: {0, plural, one {# segundo} other {# segundos}}"
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "Para desactivar el método de autenticación de doble factor por correo electrónico, por favor, asegúrate de que puedes acceder a la dirección de correo."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr ""
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "Para denunciar una conversación. Por favor, denuncia uno de sus mensajes a través de la pantalla de la conversación. Esto permite a nuestros moderadores entender el contexto de tu problema."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Para subir videos a Bluesky, primero debes verificar tu correo electrónico."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "¿A quién te gustaría enviar este reporte?"
@@ -7725,7 +8380,7 @@ msgstr "Hoy"
msgid "Toggle dropdown"
msgstr "Conmutar el menú desplegable"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "Alternar para habilitar o deshabilitar contenido para adultos"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr "Activa/desactiva el sonido"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Destacados"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "Tema"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Traducir"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "Tendencias"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "Videos populares"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr "La confianza se construye a partir de las relaciones, las comunidades y los contextos compartidos. Por ello, también nombramos a <0>verificadores de confianza0>: organizaciones que pueden verificar cuentas directamente."
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "Televisión"
msgid "Two-factor authentication (2FA)"
msgstr "Autenticación de doble factor (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Introduce tu nombre de usuario"
@@ -7783,18 +8440,11 @@ msgstr "Introduce tu nombre de usuario"
msgid "Type your message here"
msgstr "Escribe tu mensaje aquí"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Tipo:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Desbloquear lista"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Dejar de silenciar la lista"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "No es posible conectarse. Comprueba tu conexión a Internet e inténtalo de nuevo."
@@ -7809,7 +8459,7 @@ msgstr "No es posible conectarse. Comprueba tu conexión a Internet e inténtalo
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:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "No se puede eliminar"
@@ -7817,36 +8467,41 @@ msgstr "No se puede eliminar"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Desbloquear"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Desbloquear"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Desbloquear la cuenta"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "¿Desbloquear la cuenta?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr "Desbloquear la lista"
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Deshacer la republicación"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Deshacer la republicación ({0, plural, one {# republicación} other {# republicaciones}})"
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Dejar de seguir"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "Dejar de seguir a {0}"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "Dejar de seguir esta cuenta"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr "Deja de seguir al usuario"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
-msgstr ""
+msgstr "Desafortunadamente, los etiquetadores a los que te suscribiste no soportan este tipo de denuncia."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr "Verificador desconocido"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "No me gusta"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "No me gusta ({0, plural, one {# me gusta} other {# me gusta}})"
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr "Dejar de silenciar"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Dejar de silenciar"
@@ -7895,10 +8555,10 @@ msgstr "Dejar de silenciar"
msgid "Unmute {tag}"
msgstr "Dejar de silenciar {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "Dejar de silenciar la cuenta"
@@ -7906,8 +8566,12 @@ msgstr "Dejar de silenciar la cuenta"
msgid "Unmute conversation"
msgstr "Dejar de silenciar la conversación"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr "Dejar de silenciar la lista"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Dejar de silenciar el hilo"
@@ -7915,38 +8579,47 @@ msgstr "Dejar de silenciar el hilo"
msgid "Unmute video"
msgstr "Activar el sonido del video"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Desfijar"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "Desfijar feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr "Desfijar el feed"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Desfijar de inicio"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "Desfijar del perfil"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Desfijar lista de moderación"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "{0} desfijado de inicio"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Desfijado de tus feeds"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr "Dejar de posponer el recordatorio de correo electrónico"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Darse de baja"
@@ -7955,7 +8628,7 @@ msgstr "Darse de baja"
msgid "Unsubscribe from list"
msgstr "Darse de baja de la lista"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Darse de baja de este etiquetador"
@@ -7963,11 +8636,11 @@ msgstr "Darse de baja de este etiquetador"
msgid "Unsubscribed from list"
msgstr "Dado de baja de la lista"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "Tipo de video no aceptado"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "Tipo de video no aceptado: {0}"
@@ -7981,55 +8654,66 @@ msgstr "Contenido sexual no deseado"
#: src/screens/Settings/components/OTAInfo.tsx:58
#: src/screens/Settings/components/OTAInfo.tsx:74
msgid "Update"
-msgstr ""
+msgstr "Actualizar"
#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update <0>{displayName}0> in Lists"
msgstr "Actualizar <0>{displayName}0> en listas"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Actualizar a {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
-msgctxt "toast"
-msgid "Updating quote attachment failed"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
+msgctxt "toast"
+msgid "Updating quote attachment failed"
+msgstr "Error al actualizar el adjunto de la cita"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "Actualizar la visibilidad de la respuesta falló"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "Actualizando..."
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Sube una foto en su lugar"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Carga un archivo de texto en:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Subir desde la cámara"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Subir desde tus archivos"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Subir desde la biblioteca"
@@ -8042,7 +8726,7 @@ msgstr "Subiendo imágenes..."
msgid "Uploading link thumbnail..."
msgstr "Subiendo miniatura del enlace..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "Subiendo video..."
@@ -8050,22 +8734,22 @@ msgstr "Subiendo video..."
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Usa las contraseñas de app para iniciar sesión en otros clientes Bluesky sin darles acceso total a tu cuenta o revelar tu contraseña."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Utilizar el proveedor predeterminado"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Usar el navegador integrado"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Usar el navegador integrado para abrir los enlaces"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Usar mi navegador predeterminado"
@@ -8084,7 +8768,7 @@ msgstr "Usado por:"
#: src/components/dms/ReportDialog.tsx:324
msgctxt "toast"
msgid "User blocked"
-msgstr ""
+msgstr "Usuario bloqueado"
#: src/components/moderation/ModerationDetailsDialog.tsx:71
#: src/lib/moderation/useModerationCauseDescription.ts:63
@@ -8119,15 +8803,15 @@ msgstr "Lista de usuarios por {0}"
msgid "User list by you"
msgstr "Lista de usuarios por ti"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "Lista de usuarios creada"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "Lista de usuarios actualizada"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8150,58 +8834,88 @@ msgstr "Usuarios que sigo"
msgid "Users in \"{0}\""
msgstr "Usuarios en \"{0}\""
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "Usuarios que les ha gustado este contenido o perfil"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr "Usuarios que sigues"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Valor:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "Se requiere un correo electrónico verificado"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr "Error al verificar, inténtalo de nuevo."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr "Ajustes de verificación"
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr "Ajustes de verificación"
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr "En Bluesky, las verificaciones no funcionan como en otras plataformas. <0>Más información (en inglés).0>"
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr "Verificado por:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr "Verificar la cuenta"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Verificar registro DNS"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr "Verificar el correo electrónico"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Ventana de verificación de correo electrónico"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Verificar el correo electrónico nuevo"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Verificar ahora"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Verificar archivo de texto"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr "¿Verificar esta cuenta?"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Verifica tu correo electrónico"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Verifica tu correo electrónico"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Versión {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "Video"
msgid "Video failed to process"
msgstr "El video no se pudo procesar"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr "Feed de videos"
@@ -8224,14 +8938,15 @@ msgstr "Video de {0}: {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Videojuegos"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr "Video en pausa"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr "Reproduciendo video"
@@ -8239,11 +8954,11 @@ msgstr "Reproduciendo video"
msgid "Video not found."
msgstr "Video no encontrado."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Configuración del video"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Video subido"
@@ -8251,31 +8966,32 @@ msgstr "Video subido"
msgid "Video: {0}"
msgstr "Video: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "Videos"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
-msgstr ""
+msgstr "Los videos deben durar menos de 3 minutos"
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "Ver el avatar de {0}"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "Ver el perfil de {0}"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "Ver el perfil de {displayName}"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "Ver el perfil del usuario bloqueado"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "Ver entrada de depuración"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Ver detalles"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
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/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Ver hilo completo"
@@ -8308,18 +9024,17 @@ msgstr "Ver información sobre estas etiquetas"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "Ver más"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Ver perfil"
@@ -8331,7 +9046,11 @@ msgstr "Ver el avatar"
msgid "View the labeling service provided by @{0}"
msgstr "Ver el servicio de etiquetado proporcionado por @{0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr "Ver las verificaciones de este usuario"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "Ver usuarios a los que les gusta este feed"
@@ -8339,11 +9058,11 @@ msgstr "Ver usuarios a los que les gusta este feed"
msgid "View video"
msgstr "Ver el video"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Ver tus cuentas bloqueadas"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr "Consulta tus ajustes de interacción con las publicaciones"
@@ -8352,14 +9071,18 @@ msgstr "Consulta tus ajustes de interacción con las publicaciones"
msgid "View your feeds and explore more"
msgstr "Ver tus feeds y explorar más"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Ver tus listas de moderación"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "Ver tus cuentas silenciadas"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr "Ver tus verificaciones"
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "Advertir contenido"
msgid "Warn content and filter from feeds"
msgstr "Advertir contenido y filtrar de los feeds"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr ""
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "No pudimos encontrar resultados para ese hashtag."
@@ -8400,7 +9128,7 @@ msgstr "No pudimos encontrar resultados para ese hashtag."
msgid "We couldn't find any results for that topic."
msgstr "No hemos encontrado resultados para ese tema."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "No pudimos cargar esta conversación"
@@ -8420,6 +9148,14 @@ msgstr "Esperamos que lo pases bien. Recuerda, Bluesky es:"
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Ya no quedan publicaciones de las cuentas que sigues. Aquí está lo último de <0/>."
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr "Te recomendamos que elijas al menos dos intereses."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "No pudimos determinar si tienes permiso para cargar videos. Inténtalo de nuevo."
@@ -8428,7 +9164,7 @@ msgstr "No pudimos determinar si tienes permiso para cargar videos. Inténtalo d
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "No pudimos cargar tus preferencias de fecha de nacimiento. Por favor, inténtalo de nuevo."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:428
msgid "We were unable to load your configured labelers at this time."
msgstr "No pudimos cargar tus etiquetadores configurados en este momento."
@@ -8440,20 +9176,28 @@ msgstr "No pudimos conectarnos. Inténtalo de nuevo para continuar configurando
msgid "We will let you know when your account is ready."
msgstr "Te informaremos cuando tu cuenta esté lista."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "Usaremos esta información para personalizar tu experiencia."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "Estamos teniendo problemas de red, inténtalo de nuevo"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr "Hemos incluido una nueva capa de verificación en Bluesky: una marca fácil de ver."
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "¡Es nuestro placer tenerte aquí!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Lo sentimos, pero no pudimos resolver esta lista. Si esto persiste, por favor, contacta al creador de la lista, @{handleOrDid}."
@@ -8461,11 +9205,11 @@ msgstr "Lo sentimos, pero no pudimos resolver esta lista. Si esto persiste, por
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Lo sentimos, pero no pudimos cargar tus palabras silenciadas en este momento. Por favor, inténtalo de nuevo."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
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. Inténtalo de nuevo en unos minutos."
-#: src/view/com/composer/Composer.tsx:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "¡Lo sentimos! Se ha eliminado la publicación a la que estás respondiendo."
@@ -8474,7 +9218,7 @@ msgstr "¡Lo sentimos! Se ha eliminado la publicación a la que estás respondie
msgid "We're sorry! We can't find the page you were looking for."
msgstr "¡Lo sentimos! No encontramos la página que buscabas."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "¡Lo sentimos! Solo puedes suscribirte a veinte etiquetadores, y has alcanzado tu límite de veinte."
@@ -8494,16 +9238,16 @@ msgstr "¿Qué te interesa?"
msgid "What do you want to call your starter pack?"
msgstr "¿Cómo quieres llamar a tu paquete de inicio?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "Los temas del momento."
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "¿Qué hay de nuevo?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr "Si tocas en una verificación, verás qué organizaciones la han concedido."
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "¿En qué idioma está esta publicación?"
@@ -8520,14 +9264,18 @@ msgstr "¿Quién puede interactuar con esta publicación?"
msgid "Who can reply"
msgstr "Quién puede responder"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr "¿Quién puede verificar?"
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "¡Vaya!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr "¡Vaya! No se han podido cargar los videos populares."
@@ -8574,11 +9322,11 @@ msgstr "¿Por qué crees que este usuario debe ser revisado?"
msgid "Write a message"
msgstr "Escribe un mensaje"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Escribe una publicación"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Escribe una respuesta"
@@ -8588,11 +9336,16 @@ msgstr "Escribe una respuesta"
msgid "Writers"
msgstr "Escritores y escritoras"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "DID equivocado devuelto por el servidor. Se recibió: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Sí"
@@ -8601,15 +9354,15 @@ msgstr "Sí"
msgid "Yes, deactivate"
msgstr "Sí, desactivar"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Sí, eliminar este paquete de inicio"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Sí, separar"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Sí, ocultar"
@@ -8625,14 +9378,31 @@ msgstr "Ayer"
msgid "You"
msgstr "Tú"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr "Tú eres un verificador de confianza"
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
-msgstr ""
+msgstr "Estás creando una cuenta en"
#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
msgstr "Estás en cola."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr ""
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr ""
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr ""
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "No tienes permiso para subir videos."
@@ -8641,6 +9411,27 @@ msgstr "No tienes permiso para subir videos."
msgid "You are not following anyone."
msgstr "No estás siguiendo a nadie."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr "Estás verificado"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr "Estás verificado. Perderás tu estado de verificación si cambias tu nombre para mostrar. <0>Más información (en inglés).0>"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr "Estás verificado. Perderás tu estado de verificación si cambias tu nombre de usuario. <0>Más información (en inglés).0>"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr "Puedes modificar tus intereses desde los ajustes de \"Contenido y medios\"."
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr "Puedes definir los ajustes de interacción por defecto en <0>Ajustes →
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "Puedes cambiar esta opción en Ajustes."
@@ -8682,9 +9472,9 @@ msgstr "No tienes ningún seguidor."
msgid "You don't follow any users who follow @{name}."
msgstr "No sigues a ningún usuario que siga a @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
-msgstr ""
+msgstr "Por el momento, no tienes solicitudes de chat."
#: src/view/com/modals/InviteCodes.tsx:67
msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer."
@@ -8736,24 +9526,24 @@ msgstr "Has silenciado esta cuenta."
msgid "You have muted this user"
msgstr "Has silenciado a este usuario"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "No tienes conversaciones. ¡Comienza una!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "No tienes feeds."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "No tienes listas."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Aún no has bloqueado ninguna cuenta. Para bloquear una cuenta, ve a su perfil y selecciona \"Bloquear cuenta\" en el menú de su cuenta."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Aún no has silenciado ninguna cuenta. Para silenciar una cuenta, ve a su perfil y selecciona \"Silenciar cuenta\" en el menú de su cuenta."
@@ -8761,11 +9551,15 @@ msgstr "Aún no has silenciado ninguna cuenta. Para silenciar una cuenta, ve a s
msgid "You have reached the end"
msgstr "Has llegado al final"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr ""
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Has alcanzado temporalmente el límite de carga de videos. Inténtalo de nuevo más tarde."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "¡Aún no has creado un paquete de inicio!"
@@ -8787,22 +9581,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Puedes apelar estas etiquetas si sientes que fueron colocadas por error."
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "Solo puedes añadir hasta {STARTER_PACK_MAX_SIZE} perfiles"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr "No puedes añadir más de {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} perfiles}}"
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Solo puedes añadir hasta 3 feeds"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "Solo puedes seleccionar hasta 4 imágenes"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-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."
+msgid "You must be 13 years of age or older to create an account."
+msgstr "La edad mínima para crear una cuenta es de 13 años."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Debes seguir al menos a siete personas más para generar un paquete de inicio."
@@ -8810,28 +9604,40 @@ msgstr "Debes seguir al menos a siete personas más para generar un paquete de i
msgid "You must grant access to your photo library to save a QR code"
msgstr "Debes otorgar acceso a tu biblioteca de fotos para guardar un código QR"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "Debes otorgar acceso a tu biblioteca de fotos para guardar la imagen."
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "Debes seleccionar al menos un etiquetador para una denuncia"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr "Necesitas verificar tu dirección de correo electrónico antes de activar la autenticación de doble factor por correo electrónico."
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "Anteriormente desactivaste a @{0}."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr "Probablemente quieras reiniciar la aplicación ahora."
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr "Reaccionaste con {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr "Reaccionaste con {0} a {1}"
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "Se cerrará la sesión de todas tus cuentas."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "Ya no recibirás notificaciones de este hilo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Ahora recibirás notificaciones de este hilo"
@@ -8839,23 +9645,23 @@ msgstr "Ahora recibirás notificaciones de este hilo"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Hemos enviado un código de restablecimiento a tu correo. Introdúcelo aquí y, después, introduce tu nueva contraseña."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "Tú: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Tú: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "Tú: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "¡Comenzarás a seguir a los usuarios y feeds sugeridos una vez que termines de crear tu cuenta!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "¡Comenzarás a seguir a los usuarios sugeridos cuando hayas terminado de crear tu cuenta!"
@@ -8867,7 +9673,7 @@ msgstr "Comenzarás a seguir a estas personas y a {0} más"
msgid "You'll follow these people right away"
msgstr "Comenzarás a seguir a estas personas de inmediato"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "Recibirás un correo electrónico en <0>{0}0> para verificar que eres tú."
@@ -8901,6 +9707,10 @@ msgstr "Has encontrado algunas personas a las que seguir"
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "¡Has llegado al fin de tu feed! Encuentra más cuentas para seguir."
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Has alcanzado tu límite diario de carga de videos (demasiados bytes)"
@@ -8909,11 +9719,11 @@ msgstr "Has alcanzado tu límite diario de carga de videos (demasiados bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Has alcanzado tu límite diario de carga de videos (demasiados videos)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Has visto todos los videos que había. ¿Qué te parece si hacemos una pausa?"
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "Tu cuenta"
@@ -8941,7 +9751,7 @@ msgstr "Se ha constatado que tu cuenta infringió <0>los Términos de servicio d
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr "Hemos recibido tu apelación. Si se acepta, te avisaremos por correo electrónico."
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "Tu fecha de nacimiento"
@@ -8953,26 +9763,30 @@ msgstr "Tu navegador no soporta este formato de video. Por favor, inténtalo con
msgid "Your chats have been disabled"
msgstr "Tus chats han sido deshabilitados"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "Tu elección será guardada. Puedes cambiar esto en los ajustes luego."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr "Recordaremos tu preferencia para enlaces futuros. Puedes cambiarla cuando quieras en Ajustes."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "Tu nombre de usuario actual, <0>{0}0>, quedará automáticamente reservado para ti. Puedes volver a él cuando quieras desde esta cuenta."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr "Se ha actualizado tu correo electrónico, pero todavía no se ha verificado. La siguiente etapa consiste en verificarlo."
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Tu correo electrónico parece no ser válido."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "Tu correo electrónico ha sido actualizado pero no verificado. Verifica tu nuevo correo electrónico."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
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."
@@ -8988,14 +9802,31 @@ msgstr "Tus seguidores"
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 publicaciones aquí."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "Tu nombre de usuario completo será <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr "Tu nombre de usuario completo será <0>@{0}0>"
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr "Tus intereses"
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr "Se han actualizado tus intereses."
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr "Tus intereses nos ayudan a encontrar aquello que te gusta."
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Tus palabras silenciadas"
@@ -9004,15 +9835,15 @@ msgstr "Tus palabras silenciadas"
msgid "Your password has been changed successfully!"
msgstr "¡Tu contraseña ha sido cambiada exitosamente!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr "La contraseña debe tener al menos 8 caracteres."
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "Publicado"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "Publicados"
@@ -9024,14 +9855,22 @@ msgstr "Tus publicaciones, a qué le das \"me gusta\" y a quién bloqueas son p
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Tu perfil, publicaciones, feeds y listas dejarán de ser visibles para otros usuarios de Bluesky. Puedes reactivar tu cuenta en cualquier momento iniciando sesión."
-#: src/view/com/composer/Composer.tsx:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Respuesta publicada"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr "Se enviará tu denuncia a <0>{0}0>."
#: src/components/dms/ReportDialog.tsx:200
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/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr "Los intereses que selecciones nos ayudarán a ofrecerte contenido interesante para ti."
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr "Tus verificaciones"
diff --git a/src/locale/locales/eu/messages.po b/src/locale/locales/eu/messages.po
index 0847fba3d7..d575ac73f8 100644
--- a/src/locale/locales/eu/messages.po
+++ b/src/locale/locales/eu/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: eu\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 16:40\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Basque\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(aktiboa)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(kapsulatutako edukia dauka)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(e-postarik ez)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {berpost #} other {# berpost}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {segundu #} other {# segundu}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {Elementu bat} other {# elementu}} irakurri gabe"
@@ -90,17 +90,17 @@ msgstr "{0, plural, one {Elementu bat} other {# elementu}} irakurri gabe"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, other {# hilabete}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {jarraitzaile} other {jarraitzaile}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {jarraitzen} other {jarraitzen}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {gogoko} other {gogoko}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {gogoko} other {gogoko}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {post} other {post}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {aipamen} other {aipamen}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {berpost} other {berpost}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, other {{1} postak}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "{0, plural, other {# pertsonek}} erabili dute abio multzo hau!"
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0> <1>etiketetan1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0> <1>testu eta etiketetan1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr "{0} zuzenean dago"
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr "{0} ez da URL baliozkoa"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} aste honetan elkartua"
@@ -137,13 +154,18 @@ msgstr "{0} {1}-etik"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
-msgstr ""
+msgstr "50etik {0}"
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0} pertsonek abio multzo hau erabili dute!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "{0} erreakzioantu du {1}"
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "{0} erreakzioantu du {1} {2}-i"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "{0}-ren abatarra"
@@ -175,7 +197,7 @@ msgstr "{0}min"
msgid "{0}s"
msgstr "{0}seg"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {Elementu bat} other {# elementu}} irakurri gabe"
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, one {ordu} other {ordu}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {minutu} other {minutu}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}}0> jarraitzen dizute"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}}0> zure neurrira egindako feeda gogoko dute"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}}0> zure posta gogoko dute"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}}0> zure berposta gogoko dute"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}}0> zure kontuaren egiaztapenak kendu dituzte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}}0> zure postari berpost egin diote"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}}0> zure berpostari berpost egin diote"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}}0> zure abio multzoan izena eman dute"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}}0> egiaztatu zaituzte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} jarraitzen dizu"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} bueltan jarraitzen dizu"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "{firstAuthorLink} zure neurrira egindako feeda gustoko du"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "{firstAuthorLink} zure posta gogoko du"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr "{firstAuthorLink}-k zure berposta gogoko du"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr "{firstAuthorLink} zure kontuaren egiaztapenak kendu dituzte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} zure postari berpost egin dio"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr "{firstAuthorLink}-k zure berpostari berpost egin dio"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} zure abio multzoan izena eman du"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr "{firstAuthorLink}-k egiaztatu zaitu"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} jarraitzen dizute"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure neurrira egindako feeda gogoko dute"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure posta gogoko dute"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} zure berposta gogoko dute"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} zure kontuaren egiaztapenak kendu dituzte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure postari berpost egin diote"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} zure berpostari berpost egin diote"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure abio multzoan izena eman dute"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} egiaztatu zaituzte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} jarraitzen dizu"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} bueltan jarraitzen dizu"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "{firstAuthorName} zure neurrira egindako feeda gustoko du"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "{firstAuthorName} zure posta gogoko du"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr "{firstAuthorName}-k zure berposta gogoko du"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr "{firstAuthorName} zure kontuaren egiaztapenak kendu dituzte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} zure postari berpost egin dio"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr "{firstAuthorName}-k zure berpostari berpost egin dio"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} zure abio multzoan izena eman du"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr "{firstAuthorName}-k egiaztatu zaitu"
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} jarraitzen"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "{handle} ezin zaio mezua bidali"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr "{hours, plural, one {ordu {minutesString} #} other {# ordu {minutesString}}}"
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr "{hours, plural, one {ordu #} other {# ordu}}"
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "{joinedAllTimeCount, plural, other {# erabiltzaile}} elkartu dira!"
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr "{minutes, plural, one {minutu #} other {# minutu}}"
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {Elementu bat} other {# elementu}} irakurri gabe"
@@ -301,6 +404,34 @@ msgstr "{profileName} Bluesky-n sartu zen orain dela {0}"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} Bluesky-n sartu zen abio multzo bat erabiliz orain dela {0}"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "Duela {type} ordu"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr "{userName} egiaztatzaile fidagarria da"
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr "{userName} egiaztatuta dago"
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr "{userName}-ren egiaztapenak"
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "+{computedTotal}"
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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>eta {2, plural, one {beste #} other {beste #}} zure abio multzoan daude"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {jarraitzaile} other {jarraitzaile}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {jarraitzen} other {jarraitzen}}"
@@ -343,7 +474,7 @@ msgstr "<0>Esperimentala:0> Hobespen hau gaituta dagoenean, bakarrik jarraitze
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>Zu0>eta<1> 1><2>{0} 2>zure abio multzoan zaudete"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Erabiltzaile Baliogabea"
@@ -363,19 +494,28 @@ msgstr "30 egun"
msgid "7 days"
msgstr "7 egun"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "mezu bat"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr "Egiaztatzeko modu berri bat"
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Honi buruz"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr "Onartu"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr "Onartu txateatzeko eskaera"
@@ -385,40 +525,40 @@ msgid "Accept Request"
msgstr "Onartu Eskaera"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Erabilerraztasun"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Erabilerraztasun Doikuntzak"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Kontua"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "Kontua blokeatuta"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "Kontua jarraituta"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "Kontua mutututa"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
@@ -429,33 +569,37 @@ msgstr "Kontua Mututua"
msgid "Account Muted by List"
msgstr "Kontua Mututua Zerrendagatik"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Kontuaren aukerak"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Kontua ezabatua sarrera azkarretik"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "Kontua desblokeatuta"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "Kontua jarraitzeari utzita"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
-msgstr ""
+msgstr "Kontua desmutututa"
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+msgstr "Egiaztapen-marka urdin ondulatua <0><1/>0> duten kontuek beste batzuk egiazta ditzakete. Egiaztatzaile fidagarri hauek Blueskyk hautatzen ditu."
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Gehitu"
@@ -473,8 +617,12 @@ msgstr "Gehitu {displayName} abio multzora"
msgid "Add a content warning"
msgstr "Gehitu eduki abisu bat"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr "Gehitu aldi baterako zuzeneko egoera bat zure profilera. Norbaitek zure abatarrean klik egiten duenean, zure zuzeneko gertaerari buruzko informazioa ikusiko du."
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "Gehitu erabiltzaile bat zerrenda honi"
@@ -485,7 +633,7 @@ msgstr "Gehitu kontua"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Gehitu kontua"
msgid "Add alt text"
msgstr "Gehitu aukerazko testua"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Gehitu aukerazko testua (hautazkoa)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Gehitu beste kontu bat"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Gehitu beste post bat"
@@ -518,8 +666,12 @@ msgstr "Gehitu aplikazio pasahitza"
msgid "Add App Password"
msgstr "Gehitu Aplikazio Pasahitza"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr "Gehitu emoji erreakzioa"
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr "Gehitu xehetasun gehiago (hautazkoa)"
@@ -531,15 +683,23 @@ msgstr "Gehitu mutututako hitza aukeratutako ezarpenekin"
msgid "Add muted words and tags"
msgstr "Gehitu hitz mutuak eta etiketak"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Gehitu post berria"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Gehitu jendea"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr "Gehitu jendea zerrendara"
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr "Gehitu Erreakzioa"
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Gehitu gomendatutako feddak"
@@ -552,27 +712,28 @@ msgstr "Gehitu feed batzuk zure abio multzoari!"
msgid "Add the default feed of only people you follow"
msgstr "Gehitu zuk bakarrik jarraitzen duzun jendearen lehenetsitako feeda"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Gehitu honako DNS agiria zure domeinuan:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Gehitu feed hau zure feedetara"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "Gehitu zerrendetara"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Gehitu Zerrendetara"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Gehitu nire feedetara"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr "Gehitu erabiltzailea zerrendara"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Zerrendara gehitua"
@@ -581,22 +742,22 @@ msgstr "Zerrendara gehitua"
msgid "Added to my feeds"
msgstr "Nire feedetara gehitua"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr "Xehetasun gehiago (300 karaktere gehienez)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Heldua"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Eduki heldua"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "Eduki heldua <0>bsky.app0> Web bidez bakarrik gaitu daiteke."
@@ -604,30 +765,35 @@ msgstr "Eduki heldua <0>bsky.app0> Web bidez bakarrik gaitu daiteke."
msgid "Adult content is disabled."
msgstr "Eduki heldua desgaitua dago."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Eduki Heldu etiketak"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Aurreratua"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr "ane@adibidea.com"
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Guztiak"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "Kontu guztiak jarraituak izan dira!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "Hizkuntza guztiak"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "Gorde dituzun feed guztiak, leku bakar batean."
@@ -671,10 +837,10 @@ msgstr "AUKERAZKO TESTUA"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Aukerazko testua"
@@ -688,19 +854,18 @@ msgstr "Aukerazko testuak itsu eta ikusmen urriko erabiltzaileentzako irudiak de
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "Aukerazko testua moztu egingo da. Muga: {0} karaktere."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr "Aukerazko testua moztuko da. {MAX_ALT_TEXT, plural, other {Muga: {0} karaktere.}}"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "Mezu elektroniko bat bidali da {0} helbidera. Behean sar dezakezun berrespen-kode bat dakar."
-#: src/view/com/modals/ChangeEmail.tsx:114
-msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
-msgstr "Mezu elektroniko bat bidali da zure aurreko helbidera, {0}. Behean sar dezakezun berrespen-kode bat dakar."
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr "Mezu elektroniko bat bidali da zure aurreko helbidera, {currentEmail}. Behean sar dezakezun berrespen-kode bat dakar."
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "Mezu elektroniko bat bidali da! Mesedez, sartu behean mezu elektronikoak dakarren berrespen-kodea."
@@ -716,7 +881,11 @@ msgstr "Errore bat gertatu da"
msgid "An error occurred while compressing the video."
msgstr "Errore bat gertatu da bideoa konprimitzean."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr "Errore bat gertatu da feeda eskuratzerakoan."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Errore bat gertatu da zure abio multzoa sortzean. Berriro saiatu nahi duzu?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "Errore bat gertatu da bideoa kargatzean. Mesedez, saiatu berriro."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "Errore bat gertatu da QR kodea gordetzean!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "Errore bat gertatu da bideoa aukeratzean"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "Errore bat gertatu da guztiak jarraitzen saiatzean"
@@ -746,12 +914,17 @@ msgstr "Errore bat gertatu da guztiak jarraitzen saiatzean"
msgid "An error occurred while uploading the video."
msgstr "Errore bat gertatu da bideoa igotzean."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr "Bluesky-k egiaztatzaile fidagarriak hautatzen dituela erakusten duen ilustrazio bat, eta egiaztatzaile fidagarriek, berriz, erabiltzaile-kontuak egiaztatzen dituztela."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Aukera hauetan sartzen ez den arazo bat"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "Arazo bat gertatu da txata hastean"
@@ -761,13 +934,17 @@ msgstr "Arazo bat gertatu da txata irekitzen saiatzean"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Arazo bat gertatu da. Mesedez, saiatu berriro."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr "Bluesky aplikazioa irekita erakusten duen iPhone baten maketa egiaztatutako erabiltzaile baten profilean kontrol-marka urdin batekin bistaratzeko izenaren ondoan."
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "errore ezezagun bat gertatu da"
@@ -790,6 +967,10 @@ msgstr "Animaliak"
msgid "Animated GIF"
msgstr "GIF animatuak"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr "Bluesky-n egiaztapena iragartzen"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Gizartearen Aurkako Portaera"
msgid "Anybody can interact"
msgstr "Edozeinek elkarreragin dezake"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "Aplikazio Ikonoa"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "Aplikazio Hizkuntza"
@@ -817,7 +998,7 @@ msgstr "Aplikazio Pasahitza"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "Aplikazioko pasahitza ezabatuta"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
@@ -836,7 +1017,7 @@ msgstr "Aplikazioaren pasahitzaren izenek 4 karaktere izan behar dituzte gutxien
msgid "App passwords"
msgstr "Aplikazio pasahitzak"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Aplikazio Pasahitzak"
@@ -854,7 +1035,7 @@ msgstr "Apelatu \"{0}\" etiketa"
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "Apelazioa bidalita"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -872,10 +1053,10 @@ msgstr "Apelazioa Geldiarazi"
msgid "Appeal this decision"
msgstr "Apelatu erabaki hau"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Itxura"
@@ -884,12 +1065,12 @@ msgstr "Itxura"
msgid "Apply default recommended feeds"
msgstr "Aplikatu gomendatutako feed lehenetsiak"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "{0}-tik artxibatuta"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Gordetako posta"
@@ -897,15 +1078,15 @@ msgstr "Gordetako posta"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Ziur zaude \"{0}\" aplikazioaren pasahitza ezabatu nahi duzula?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Ziur zaude mezu hau ezabatu nahi duzula? Mezua zuretzako ezabatuko da, baina ez beste parte-hartzaileentzat."
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "Ziur zaude abio multzo hau ezabatu nahi duzula?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "Ziur zaude zure aldaketak baztertu nahi dituzula?"
@@ -921,15 +1102,15 @@ msgstr "Ziur zaude elkarrizketa hau utzi nahi duzula? Zure mezuak ezabatuko dira
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Ziur zaude {0} zure feedetatik ezabatu nahi duzula?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Ziur zaude hau zure feedetatik ezabatu nahi duzula?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "Ziur zaude zirriborro hau baztertu nahi duzula?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "Ziur zaude post hau baztertu nahi duzula?"
@@ -937,7 +1118,7 @@ msgstr "Ziur zaude post hau baztertu nahi duzula?"
msgid "Are you sure?"
msgstr "Ziur zaude?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "<0>{suggestedLanguageName}0>-z idazten ari zara?"
@@ -946,29 +1127,34 @@ msgstr "<0>{suggestedLanguageName}0>-z idazten ari zara?"
msgid "Art"
msgstr "Artea"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Biluztasun artistikoa edo ez erotikoa"
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr "Algoritmoari gaia esleitu"
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "Gutxienez 3 karaktere"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40
msgctxt "Name of app icon variant"
msgid "Aurora"
-msgstr ""
+msgstr "Aurora"
#: src/screens/Settings/AccessibilitySettings.tsx:105
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Erreprodukzio automatikoko aukerak <0>Edukia eta Multimedia ezarpenetara0> mugitu dira."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Bideo eta GIF erreprodukzio automatikoa"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Bideo eta GIF erreprodukzio automatikoa"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Atzera"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr "Itzuli Txatetara"
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Zerrenda bat sortu aurretik, zure posta elektronikoa egiaztatu behar duzu."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Post bat sortu aurretik, zure posta elektronikoa egiaztatu behar duzu."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr "Post bat sortu edo erantzun aurretik, zure posta elektronikoa egiaztatu behar duzu."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Abio multzo bat sortu aurretik, zure posta elektronikoa egiaztatu behar duzu."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr "Txateatzeko eskaera hau onartu aurretik, zure posta elektronikoa egiaztatu behar duzu."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
msgstr "Beste erabiltzaile bati mezua bidali aurretik, zure posta elektronikoa egiaztatu behar duzu."
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BETA"
-
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Urtebetetzea"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Blokeatu"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Kontua blokeatu"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "Kontua Blokeatu?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Kontuak blokeatu"
@@ -1054,7 +1241,7 @@ msgstr "Blokeatu eta Ezabatu"
msgid "Block and/or delete this conversation"
msgstr "Blokeatu eta/edo ezabatu elkarrizketa hau"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Blokeo zerrenda"
@@ -1062,7 +1249,7 @@ msgstr "Blokeo zerrenda"
msgid "Block or report"
msgstr "Blokeatu edo salatu"
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "Kontu hauek blokeatu?"
@@ -1079,21 +1266,21 @@ msgstr "Blokeatu Erabiltzailea"
msgid "Blocked"
msgstr "Blokeatua"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Blokeatutako kontuak"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Blokeatutako Kontuak"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zurekin elkarreragin."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 "Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zurekin elkarreragin. Ez duzu haien edukia ikusiko eta zurea ikustea galaraziko zaie."
@@ -1101,19 +1288,19 @@ msgstr "Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zur
msgid "Blocked post."
msgstr "Post blokeatua."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Blokeatzeak ez dio etiketatzaile honi eragotziko etiketak zure kontuan aplikatzea."
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Blokeatzea publikoa da. Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zurekin elkarreragin."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Blokeatzeak ez du eragotziko etiketak zure kontuan aplikatzea, baina kontu honek zure harietan erantzutea edo zurekin elkarreragitea eragotziko du."
-#: src/view/com/auth/SplashScreen.web.tsx:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blog-a"
@@ -1122,14 +1309,14 @@ msgstr "Blog-a"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky-k ezin du baieztatu erreklamatutako dataren benetakotasuna."
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129
msgctxt "Name of app icon variant"
msgid "Bluesky Classic™"
-msgstr ""
+msgstr "Bluesky Classic™"
#: src/view/com/auth/server-input/index.tsx:212
msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server."
@@ -1148,7 +1335,7 @@ msgstr "Bluesky hobea da lagunekin!"
msgid "Bluesky Social Terms of Service"
msgstr "Bluesky Sozial Zerbitzu Baldintzak"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky-k zure sareko pertsonen artean gomendatutako kontu multzo bat aukeratuko du."
@@ -1156,6 +1343,10 @@ msgstr "Bluesky-k zure sareko pertsonen artean gomendatutako kontu multzo bat au
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky-k ez die zure profila eta postak erakutsiko saioa hasita ez duten erabiltzaileei. Baliteke beste aplikazio batzuek eskaera hau ez onartzea. Horrek ez du zure kontua pribatu bihurtzen."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr "Bluesky-k modu proaktiboan egiaztatuko ditu kontu aipagarriak eta benetakoak."
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "Irudiak lausotu eta iragazi feedetatik"
msgid "Books"
msgstr "Liburuak"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "Nabigatu kontu gehiagotatik Arakatu orrian"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "Nabigatu feed gehiagotatik Arakatu orrian"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Nabigatu proposamen gehiagotatik"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "Nabigatu proposamen gehiagotatik Arakatu orrian"
@@ -1214,20 +1405,26 @@ msgstr "Nabigatu {displayName}-rekin etiketatutako postak"
msgid "Browse starter pack {displayName}"
msgstr "Nabigatu {displayName} abio multzoa"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr "Nabigatu {0} gaia"
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "Nabigatu {displayName} gaia"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Negozio"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "{0}-gatik"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "<0>{0}0>-gatik"
@@ -1243,44 +1440,51 @@ msgstr "Kontua sortzean <0>Zerbitzu Baldintzak0> eta <1>Pribatutasun Politika<
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Kontua sortzean <0>Zerbitzu Baldintzak0> onartzen dituzu."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr "Zugatik"
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Kamera"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Utzi"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "Utzi kontua ezabatzea"
msgid "Cancel image crop"
msgstr "Utzi irudiaren mozketa"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Utzi profilaren edizioa"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Utzi postaren aipamena"
@@ -1308,8 +1512,7 @@ msgstr "Utzi postaren aipamena"
msgid "Cancel reactivation and sign out"
msgstr "Utzi berriro aktibatzea eta amaitu saioa"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Utzi bilaketa"
@@ -1317,24 +1520,23 @@ msgstr "Utzi bilaketa"
msgid "Cancels opening the linked website"
msgstr "Estekatutako webgunea irekitzea bertan behera uzten du"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "Ezin da blokeatutako erabiltzaile batekin elkarreragin"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Epigrafeak (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Epigrafeak eta aukerazko testua"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Aldatu"
@@ -1347,46 +1549,41 @@ msgstr "Aldatu aplikazioaren ikonoa"
msgid "Change app icon to \"{0}\""
msgstr "Aldatu aplikazioaren ikonoa \"{0}\"-ra"
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Aldatu e-posta"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr "Aldatu aplikazioaren hizkuntza"
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Aldatu e-posta helbidea"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Aldatu Erabiltzailea"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr "Aldatu moderazio zerbitzua"
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Aldatu nire e-posta"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Aldatu pasahitza"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "Aldatu postaren hizkuntza {suggestedLanguageName}-ra"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr "Aldatu salaketa arrazoia"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Aldatu Zure E-posta"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Aldatu zure e-posta helbidea"
@@ -1394,43 +1591,42 @@ msgstr "Aldatu zure e-posta helbidea"
msgid "Changes app icon"
msgstr "Aplikazioaren ikonoa aldatzen du"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr "Hostatze-hornitzailea aldatzen du"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Txateatu"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
-msgstr ""
+msgstr "Txata ezabatuta"
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "Txata mutututa"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr "Txateatzeko eskaeren sarrera-ontzia"
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr "Txateatzeko eskaerak"
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Txataren ezarpenak"
@@ -1441,10 +1637,10 @@ msgstr "Txataren Ezarpenak"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "Txata desmutututa"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr "Txatak"
@@ -1461,7 +1657,7 @@ msgstr "Egiaztatu zure e-posta, saioa hasteko kodea hartu eta sartu hemen."
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Egiaztatu zure sarrera-ontzia, baieztapen kodea hartu eta sartu hemen:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Aukeratu domeinua egiaztatzeko metodoa"
@@ -1469,7 +1665,7 @@ msgstr "Aukeratu domeinua egiaztatzeko metodoa"
msgid "Choose Feeds"
msgstr "Aukeratu Feedak"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Aukeratu niretzat"
@@ -1477,10 +1673,6 @@ msgstr "Aukeratu niretzat"
msgid "Choose People"
msgstr "Aukeratu Jendea"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Aukeratu argitaratzen ari zaren edukiarentzat aplikagarriak diren auto-etiketak. Ezer hautatzen ez bada, mezu hau publiko guztientzako egokia da."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Aukeratu zure feed pertsonalizatuak bultzatzen dituzten algoritmoak."
@@ -1493,27 +1685,31 @@ msgstr "Aukeratu kolore hau zure abatar gisa"
msgid "Choose your account provider"
msgstr "Aukeratu zure kontu hornitzailea"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Aukeratu zure denbora-lerroa! Komunitateak sortutako feedek maite duzun edukia aurkitzen laguntzen dizu."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Aukeratu zure pasahitza"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "Aukeratu zure erabiltzaile-izena"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Garbitu biltegiratze-datu guztiak"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Garbitu biltegiratze-datu guztiak (berrabiarazi hau egin ondoren)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr "Garbitu irudien cachea"
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Garbitu bilaketa-kontsulta"
@@ -1522,6 +1718,14 @@ msgstr "Garbitu bilaketa-kontsulta"
msgid "click here"
msgstr "klik hemen"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr "Egin klik hemen egiaztapen-prozesua berrabiarazteko."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr "Egin klik hemen zure posta elektronikoa eguneratzeko"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Egin klik post honen aipamen postak desgaitzeko."
@@ -1534,7 +1738,7 @@ msgstr "Egin klik post honen aipamen postak gaitzeko."
msgid "Click to open tag menu for {tag}"
msgstr "Egin klik hemen {tag}-ren etiketa-menua irekitzeko"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Egin klik huts egindako mezua berriro bidaltzen saiatzeko"
@@ -1546,24 +1750,34 @@ msgstr "Giroa"
msgid "Clip 🐴 clop 🐴"
msgstr "Klip 🐴 klop 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Itxi"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Itxi elkarrizketa-koadro aktiboa"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Itxi beheko tiradera"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Itxi elkarrizketa-koadroa"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr "Itxi marrazki menua"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "Itxi emoji-hautatzailea"
@@ -1600,7 +1816,13 @@ msgstr "Itxi irudia"
msgid "Close image viewer"
msgstr "Itxi irudi ikuslea"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr "Itxi menua"
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Itxi elkarrizketa-koadro hau"
@@ -1608,8 +1830,12 @@ msgstr "Itxi elkarrizketa-koadro hau"
msgid "Closes password update alert"
msgstr "Pasahitzak eguneratzeko alerta ixten du"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr "Post-konpositorea ixten du eta post-zirriborroa baztertzen du"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr "Emoji-hautatzailea ixten du"
@@ -1617,11 +1843,11 @@ msgstr "Emoji-hautatzailea ixten du"
msgid "Closes viewer for header image"
msgstr "Goiburuko irudiaren ikuslea ixten du"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Tolestu erabiltzaileen zerrenda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Jakinarazpen jakin baterako erabiltzaileen zerrenda tolesten du"
@@ -1644,7 +1870,7 @@ msgstr "Komedia"
msgid "Comics"
msgstr "Komikiak"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Komunitate-gidalerroak"
@@ -1653,23 +1879,23 @@ msgstr "Komunitate-gidalerroak"
msgid "Complete onboarding and start using your account"
msgstr "Osatu sartzea eta hasi zure kontua erabiltzen"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Osatu erronka"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Idatzi post berria"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "Idatzi {MAX_GRAPHEME_LENGTH} karaktere gehienezko postak"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr "Idatzi {0, plural, other {# karaktere}} gehienezko postak"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Idatzi erantzuna"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Bideoa konprimitzen..."
@@ -1681,23 +1907,17 @@ msgstr "Konfiguratu edukia iragazteko ezarpena kategoriarako: {name}"
msgid "Configured in <0>moderation settings0>."
msgstr "<0>Moderazio-ezarpenetan0> konfiguratuta."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Berretsi"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Berretsi aldaketa"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Berretsi edukiaren hizkuntza-ezarpenak"
@@ -1706,26 +1926,27 @@ msgstr "Berretsi edukiaren hizkuntza-ezarpenak"
msgid "Confirm delete account"
msgstr "Berretsi kontua ezabatzea"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Egiaztatu zure adina:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Berretsi zure jaioteguna"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Baieztapen kodea"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Baieztapen Kodea"
@@ -1733,22 +1954,22 @@ msgstr "Baieztapen Kodea"
msgid "Connecting..."
msgstr "Konektatzen..."
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Jarri laguntzarekin harremanetan"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "Edukiak eta Media"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Edukiak eta media"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Edukiak eta Media"
@@ -1756,15 +1977,15 @@ msgstr "Edukiak eta Media"
msgid "Content Blocked"
msgstr "Edukia Blokeatuta"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Eduki-iragazkiak"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr "Gure ustez gogoko izan dezakezun sareko edukia."
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Edukien Hizkuntzak"
@@ -1785,16 +2006,16 @@ msgstr "Edukien Abisua"
msgid "Content warnings"
msgstr "Edukien abisuak"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "Testuinguru-menuaren atzeko planoa, egin klik menua ixteko."
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Jarraitu"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Jarraitu {0} gisa (une honetan saioa hasita)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Jarraitu haria..."
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Jarraitu hurrengo urratsera"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Elkarrizketa ezabatuta"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Elkarrizketa ezabatuta"
@@ -1826,16 +2047,17 @@ msgstr "Sukaldatzen"
msgid "Copied"
msgstr "Kopiatua"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Konpilazio bertsioa arbelean kopiatu da"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Arbelean kopiatua"
@@ -1844,25 +2066,29 @@ msgstr "Arbelean kopiatua"
msgid "Copied!"
msgstr "Kopiatuta!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr "Eraikitze-bertsioa arbelean kopiatzen du"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Kopiatu"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr "Kopiatu hala ere"
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Kopiatu Aplikazioaren Pasahitza"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr "Kopiatu at:// URI"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr "Kopiatu egilearen DID"
@@ -1871,57 +2097,69 @@ msgstr "Kopiatu egilearen DID"
msgid "Copy code"
msgstr "Kopiatu kodea"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Kopiatu DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Kopiatu ostalaria"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Kopiatu esteka"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Kopiatu Esteka"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Kopiatu esteka zerrendara"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Kopiatu esteka postera"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr "Kopiatu esteka profilera"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr "Kopiatu abio multzoaren esteka"
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Kopiatu mezuaren testua"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr "Kopiatu posta at:// URI"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Kopiatu postaren testua"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Kopiatu QR kodea"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "Kopiatu TXT erregistroaren balioa"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Copyright Politika"
@@ -1931,11 +2169,11 @@ msgstr "Copyright Politika"
msgid "Could not leave chat"
msgstr "Ezin izan da txata utzi"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "Ezin izan da feeda kargatu"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "Ezin izan da zerrenda kargatu"
@@ -1947,28 +2185,28 @@ msgstr "Ezin izan da txata mututu"
msgid "Could not process your video"
msgstr "Ezin izan da zure bideoa prozesatu"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Sortu"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "Sortu QR kodea abio multzo baterako"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Sortu abio multzo bat"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Sortu niretzat abio multzo bat"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Sortu niretzat abio multzo bat"
msgid "Create account"
msgstr "Sortu kontua"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Sortu Kontua"
@@ -1985,11 +2223,16 @@ msgstr "Sortu Kontua"
msgid "Create an account"
msgstr "Sortu kontu bat"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr "Sortu kontu bat abio multzo hau erabili gabe"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Sortu abatar bat horren ordez"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Sortu beste bat"
@@ -1998,7 +2241,7 @@ msgstr "Sortu beste bat"
msgid "Create new account"
msgstr "Sortu kontu berria"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Sortu salaketa {0}rentzat"
@@ -2053,17 +2296,17 @@ msgstr "Modu iluna"
msgid "Dark theme"
msgstr "Gai iluna"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Jaiotze data"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Desaktibatu kontua"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Arazketa Moderazioa"
@@ -2079,19 +2322,19 @@ msgstr "Lehenetsia"
msgid "Default icons"
msgstr "Ikono lehenetsiak"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Ezabatu"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Ezabatu kontua"
@@ -2107,19 +2350,19 @@ msgstr "Ezabatu aplikazioaren pasahitza"
msgid "Delete app password?"
msgstr "Aplikazioaren pasahitza ezabatu nahi duzu?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr "Ezabatu txata"
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Ezabatu txat-adierazpenaren erregistroa"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "Ezabatu elkarrizketa"
@@ -2127,19 +2370,19 @@ msgstr "Ezabatu elkarrizketa"
msgid "Delete Conversation"
msgstr "Ezabatu Elkarrizketa"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Ezabatu niretzat"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
-msgstr "Ezabatu Zerrenda"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
+msgstr "Ezabatu zerrenda"
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Ezabatu mezua"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Ezabatu mezua niretzat"
@@ -2147,26 +2390,26 @@ msgstr "Ezabatu mezua niretzat"
msgid "Delete my account"
msgstr "Ezabatu nire kontua"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Ezabatu posta"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Ezabatu abio multzoa"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "Abio multzoa ezabatu nahi duzu?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "Zerrenda hau ezabatu nahi duzu?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "Post hau ezabatu nahi duzu?"
@@ -2174,8 +2417,8 @@ msgstr "Post hau ezabatu nahi duzu?"
msgid "Deleted"
msgstr "Ezabatu da"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Ezabatutako Kontua"
@@ -2183,48 +2426,48 @@ msgstr "Ezabatutako Kontua"
msgid "Deleted post."
msgstr "Ezabatutako posta."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Deskribapena"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "Deskribapena luzeegia da"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "Deskribapena luzeegia da. Gehienezko karaktere kopurua {DESCRIPTION_MAX_GRAPHEMES} da."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Deskribapena luzeegia da. {DESCRIPTION_MAX_GRAPHEMES, plural, other {Gehienezko karaktere kopurua # da.}}"
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Aukerazko testu deskribatzailea"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Kendu aipamena"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "Postaren aipamena kendu?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
-msgstr ""
+msgstr "Garatzaile modua desgaituta"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
-msgstr ""
+msgstr "Garatzaile modua gaituta"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Garatzaile aukerak"
@@ -2236,6 +2479,15 @@ msgstr "Elkarrizketa: egokitu mezu honekin nork elkarreragin dezakeen"
msgid "Dim"
msgstr "Lausotu"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr "Desgaitu 2FA"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr "Desgaitu 2FA posta elektronikoa"
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "Desgaitu 2FA posta elektronikoa"
@@ -2254,25 +2506,25 @@ msgstr "Desgaitu azpitituluak"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Desgaituta"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Baztertu"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "Aldaketak baztertu?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "Zirriborroa baztertu?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "Posta baztertu?"
@@ -2281,24 +2533,24 @@ msgstr "Posta baztertu?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Utzi aplikazioei saioa amaitutako erabiltzaileei nire kontua erakusten"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr "Aurkitu Feedak"
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Aurkitu feed pertsonalizatu berriak"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Aurkitu feed berriak"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Aurkitu Feed Berriak"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Baztertu"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Baztertu errorea"
@@ -2306,6 +2558,10 @@ msgstr "Baztertu errorea"
msgid "Dismiss getting started guide"
msgstr "Baztertu hasteko gida"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr "Baztertu interesak"
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr "Baztertu atal hau"
@@ -2315,27 +2571,27 @@ msgstr "Baztertu atal hau"
msgid "Display larger alt text badges"
msgstr "Erakutsi aukerazko testu bereizgarri handiagoak"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Bistaratzeko izena"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Bistaratzeko Izena"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "Bistaratzeko izena luzeegia da"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "Bistaratzeko izena luzeegia da. Gehienezko karaktere kopurua {DISPLAY_NAME_MAX_GRAPHEMES} da."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Bistaratzeko izena luzeegia da. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Gehienezko karaktere kopurua # da.}}"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "DNS Panela"
@@ -2347,37 +2603,45 @@ msgstr "Ez aplikatu hitz mututu hau jarraitzen dituzun erabiltzaileei"
msgid "Does not include nudity."
msgstr "Ez du biluztasunik."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "Ez da marratxo batekin hasten edo amaitzen"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "Domeinua egiaztatu da!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr "Ez duzu koderik edo berri bat behar duzu? <0>Egin klik hemen.0>"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr "Ez duzu mezu elektronikorik ikusten? <0>Egin klik hemen berriro bidaltzeko.0>"
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Eginda"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Eginda"
msgid "Done{extraText}"
msgstr "Eginda{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr "Kolpetxo bikoitza edo luze sakatu erreakzio bat gehitzeko"
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Sakatu birritan elkarrizketa-koadroa ixteko"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr "Kolpetxo bikoitza gogoko emateko"
@@ -2413,23 +2681,23 @@ msgstr "Jausi irudiak gehitzeko"
msgid "Duration:"
msgstr "Iraupena:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "adib. alice"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "adib. Alice Abizena"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "adib. Alice Roberts"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "adib. alice.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "adib. Artista, txakur-zalea eta irakurle amorratua."
@@ -2437,19 +2705,19 @@ msgstr "adib. Artista, txakur-zalea eta irakurle amorratua."
msgid "E.g. artistic nudes."
msgstr "Adib. biluzi artistikoak."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "adib. Kartel Bikainak"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "adib. Spammer-ak"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "adib. Inoiz galdu behar ez diren kartelak."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "adib. Iragarkiekin behin eta berriz erantzuten duten erabiltzaileak."
@@ -2457,20 +2725,21 @@ msgstr "adib. Iragarkiekin behin eta berriz erantzuten duten erabiltzaileak."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Kode bakoitzak behin funtzionatzen du. Aldian-aldian gonbidapen-kode gehiago jasoko dituzu."
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Editatu"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Editatu"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Editatu abatarra"
@@ -2478,31 +2747,41 @@ msgstr "Editatu abatarra"
msgid "Edit Feeds"
msgstr "Editatu Feedak"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Editatu irudia"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Editatu interakzio-ezarpenak"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr "Editatu interesak"
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Editatu zerrendaren xehetasunak"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr "Zuzeneko egoera editatu"
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Editatu Moderazio-Zerrenda"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Editatu Nire Feedak"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Editatu nire profila"
@@ -2515,23 +2794,23 @@ msgstr "Editatu Jendea"
msgid "Edit post interaction settings"
msgstr "Editatu posten interakzio-ezarpenak"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Editatu profila"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Editatu Profila"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Editatu abio multzoa"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Editatu Erabiltzaileen Zerrenda"
@@ -2539,15 +2818,15 @@ msgstr "Editatu Erabiltzaileen Zerrenda"
msgid "Edit who can reply"
msgstr "Editatu nork erantzun dezakeen"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Editatu zure bistaratzeko izena"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Editatu zure profileko deskribapena"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Editatu zure abio multzoa"
@@ -2560,16 +2839,15 @@ msgstr "Hezkuntza"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "Edo zerrenda honen sortzaileak blokeatu zaitu edo zuk blokeatu duzu sortzailea."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "Posta elektronikoa"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "E-posta bidezko 2FA desgaituta"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
@@ -2583,20 +2861,17 @@ msgstr "Email helbidea"
msgid "Email Resent"
msgstr "Posta elektronikoa Birbidali"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
-msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
+msgstr "Posta elektronikoa bidalia!"
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "Posta elektronikoa Eguneratuta"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr "E-posta eguneratuta!"
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
-msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
+msgstr "Helbide elektronikoaren egiaztapena osatu da!"
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
msgid "Email Verified"
@@ -2608,8 +2883,8 @@ msgstr "Txertatu HTML kodea"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Txertatu posta"
@@ -2617,12 +2892,13 @@ msgstr "Txertatu posta"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Txertatu post hau zure webgunean. Kopiatu hurrengo kode zatia eta itsatsi zure webguneko HTML kodean."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "Bideo erreproduzitzailea txertatua"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Gaitu"
@@ -2630,12 +2906,12 @@ msgstr "Gaitu"
msgid "Enable {0} only"
msgstr "Gaitu {0} soilik"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Gaitu helduentzako edukia"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
msgstr "Gaitu 2FA posta elektronikoa"
#: src/components/dialogs/EmbedConsent.tsx:81
@@ -2660,30 +2936,30 @@ msgstr "Gaitu azpitituluak"
msgid "Enable this source only"
msgstr "Gaitu iturri hau soilik"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "Gaitu joera-gaiak"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr "Gaitu joera bideoak zure Aurkitu feedean"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr "Gaitu joera bideoak zure Aurkitu feedean."
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Gaituta"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Feedaren amaiera"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Ziurtatu azpititulu-fitxategi bakoitzeko hizkuntza bat hautatu duzula."
@@ -2696,14 +2972,15 @@ msgstr "Sartu pasahitz bat"
msgid "Enter a word or tag"
msgstr "Sartu hitz edo etiketa bat"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr "Sartu kodea"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
msgid "Enter Code"
msgstr "Sartu Kodea"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Sartu Baieztapen Kodea"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
msgstr "Sartu pantaila osoan"
@@ -2712,7 +2989,7 @@ msgstr "Sartu pantaila osoan"
msgid "Enter the code you received to change your password."
msgstr "Sartu jaso duzun kodea pasahitza aldatzeko."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Sartu erabili nahi duzun domeinua"
@@ -2720,20 +2997,20 @@ msgstr "Sartu erabili nahi duzun domeinua"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Sartu zure kontua sortzeko erabili duzun posta elektronikoa. \"Berrezarri kodea\" bidaliko dizugu pasahitz berri bat ezar dezazun."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr "Sartu kontua sortu zenuenean erabili zenuen erabiltzaile-izena edo helbide elektronikoa"
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Sartu zure jaiotze data"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Sartu zure posta elektroniko helbidea"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Sartu zure helbide elektroniko berria goian"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Sartu zure helbide elektroniko berria behean."
@@ -2749,7 +3026,11 @@ msgstr "Sartu zure erabiltzaile-izena eta pasahitza"
msgid "Enters full screen"
msgstr "Pantaila osora sartzen da"
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr "Entretenimendua"
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Errorea"
@@ -2758,15 +3039,18 @@ msgstr "Errorea"
msgid "Error occurred while saving file"
msgstr "Errore bat gertatu da fitxategia gordetzean"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "Errore bat gertatu da captcha erantzuna jasotzean."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Errorea:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr "Errorea: {error}"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Denek"
@@ -2818,30 +3102,22 @@ msgstr "Irudiak mozteko prozesutik irteten da"
msgid "Exits image view"
msgstr "Irudiaren ikuspegitik irteten da"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Bilaketa-kontsulta sartzetik irteten da"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Zabaldu aukerazko testua"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Zabaldu erabiltzaileen zerrenda"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "Zabaldu edo tolestu erantzuten ari zaren post osoa"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr "Postaren testua zabaldu edo tolesten du"
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr "Erantzuten ari zaren post osoa zabaldu edo tolesten du"
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "Erregistro batean ebaztea espero zen uri-a"
@@ -2864,6 +3140,10 @@ msgstr "Iraungitze-data {0}"
msgid "Expires in {0}"
msgstr "{0} barru iraungiko da"
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr "Iraungitze data: {0}, {1}"
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "Esplizituak edo kezkagarriak izan daitezkeen multimediak."
msgid "Explicit sexual images."
msgstr "Sexu-irudi esplizituak."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr "Arakatu"
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Esportatu nire datuak"
@@ -2882,8 +3169,8 @@ msgstr "Esportatu nire datuak"
msgid "Export My Data"
msgstr "Esportatu Nire Datuak"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "Kanpoko multimedia"
@@ -2897,17 +3184,22 @@ msgstr "Kanpoko Multimedia"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Kanpoko multimediak webguneek zuri eta zure gailuari buruzko informazioa biltzeko aukera izan dezake. Ez da informaziorik bidali edo eskatzen \"play\" botoia sakatu arte."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Kanpoko Multimedia Hobespenak"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
-msgstr ""
+msgstr "Ezin izan da txata onartu"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr "Errorea emoji erreakzioa gehitzean"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "Ezin izan da handle-a aldatu. Mesedez, saiatu berriro."
@@ -2915,7 +3207,7 @@ msgstr "Ezin izan da handle-a aldatu. Mesedez, saiatu berriro."
msgid "Failed to create app password. Please try again."
msgstr "Ezin izan da sortu aplikazioaren pasahitza. Mesedez, saiatu berriro."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr "Ezin izan da elkarrizketa sortu"
@@ -2924,35 +3216,37 @@ msgstr "Ezin izan da elkarrizketa sortu"
msgid "Failed to create starter pack"
msgstr "Ezin izan da sortu abio multzoa"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "Ezin izan da zerrenda sortu. Egiaztatu Interneteko konexioa eta saiatu berriro."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
-msgstr ""
+msgstr "Ezin izan da txata ezabatu"
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Ezin izan da mezua ezabatu"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "Ezin izan da posta ezabatu. Mesedez, saiatu berriro"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "Ezin izan da abio multzoa ezabatu"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr "Ezin izan dira elkarrizketak kargatu"
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "Ezin izan dira kargatu feeden hobespenak"
@@ -2964,17 +3258,19 @@ msgstr "Ezin izan dira GIF-ak kargatu"
msgid "Failed to load past messages"
msgstr "Ezin izan dira kargatu iraganeko mezuak"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "Ezin izan dira iradokitako feedak kargatu"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "Ezin izan dira kargatu iradokitako jarraipenak"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr "Ezin izan dira eskaera guztiak irakurri gisa markatu"
@@ -2982,7 +3278,16 @@ msgstr "Ezin izan dira eskaera guztiak irakurri gisa markatu"
msgid "Failed to pin post"
msgstr "Ezin izan da posta ainguratu"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr "Errorea emoji errakzioa kentzerakoan"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr "Ezin izan da egiaztapena kendu"
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Ezin izan da irudia gorde: {0}"
@@ -2994,20 +3299,39 @@ msgstr "Ezin izan dira gorde jakinarazpen-hobespenak. Mesedez, saiatu berriro"
msgid "Failed to save settings. Please try again."
msgstr "Ezin izan dira ezarpenak gorde. Mesedez, saiatu berriro."
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr "Ezin izan dira zure interesak gorde."
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "Ezin izan da bidali"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr "Ezin izan da posta elektronikoa bidali. Mesedez, saiatu berriro."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Ezin izan da apelazioa bidali. Mesedez, saiatu berriro."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "Ezin izan da mututu/ez mututu haria. Mesedez, saiatu berriro"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr "Ezin izan dira 2FA posta elektroniko ezarpenak eguneratu"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr "Ezin izan da posta elektronikoa eguneratu. Mesedez, saiatu berriro."
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "Ezin izan dira feedak eguneratu"
@@ -3022,20 +3346,24 @@ msgstr "Ezin izan dira ezarpenak eguneratu"
msgid "Failed to upload video"
msgstr "Ezin izan da bideoa kargatu"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr "Ezin izan da posta elektronikoa egiaztatu. Mesedez, saiatu berriro."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "Ezin izan da handle-a egiaztatu. Mesedez, saiatu berriro."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Feeda"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "{0}-ren feeda"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "Feed menua"
@@ -3043,26 +3371,26 @@ msgstr "Feed menua"
msgid "Feed toggle"
msgstr "Feeda aktibatu/desaktibatu"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Feedbacka"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "Feedbacka bidalita!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Feedak"
@@ -3070,13 +3398,13 @@ msgstr "Feedak"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Feedak erabiltzaileek kodetze esperientzia txiki batekin eraikitzen dituzten algoritmo pertsonalizatuak dira. <0/> informazio gehiago lortzeko."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "Feedak eguneratuta!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "Gogoko izan ditzakezun feedak"
@@ -3092,11 +3420,11 @@ msgstr "Fitxategia ongi gorde da!"
msgid "Filter from feeds"
msgstr "Feedetatik iragazi"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr "Iragazi bilaketa hizkuntzaren arabera"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr "Iragazi bilaketa hizkuntzaren arabera (oraingoa: {currentLanguageLabel})"
@@ -3110,13 +3438,13 @@ msgstr "Amaitzen"
msgid "Find accounts to follow"
msgstr "Aurkitu jarraitu beharreko kontuak"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "Aurkitu jarraitzeko jendea"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Aurkitu postak, erabiltzaileak eta feedak Bluesky-n"
@@ -3131,28 +3459,28 @@ msgstr "Sasoia"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117
msgctxt "Name of app icon variant"
msgid "Flat Black"
-msgstr ""
+msgstr "Beltz laua"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93
msgctxt "Name of app icon variant"
msgid "Flat Blue"
-msgstr ""
+msgstr "Urdin laua"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105
msgctxt "Name of app icon variant"
msgid "Flat White"
-msgstr ""
+msgstr "Zuri laua"
#: src/screens/Onboarding/StepFinished.tsx:294
msgid "Flexible"
msgstr "Malgua"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Jarraitu"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Jarraitu"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Jarraitu {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr "Jarraitu {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Jarraitu {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "Jarraitu 10 kontu"
msgid "Follow 7 accounts"
msgstr "Jarraitu 7 kontu"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "Jarraitu kontua"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Jarraitu denak"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Jarraitu Bueltan"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Jarraitu Bueltan"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "Jarraitu kontu gehiago zure interesetara konektatzeko eta zure sarea eraikitzeko."
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "Jarraitua <0>{0}0>-gatik"
@@ -3224,7 +3544,7 @@ msgstr "Jarraitua <0>{0}0>-gatik eta <1>{1}1>-gatik"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Jarraitua <0>{0}0>-gatik, <1>{1}1>-gatik eta {2, plural, one {#-gatik} other {#-gatik}}"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Ezagutzen dituzun @{0}-ren jarraitzaileak"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Ezagutzen dituzun jarraitzaileak"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Jarraitzen"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "Jarraitzen {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr "{handle}-ri jarraitzen"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Jarraitzen {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Jarraitzen dituzun feeden hobespenak"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Jarraitzen dituzun Feeden Hobespenak"
@@ -3301,6 +3617,10 @@ msgstr "Segurtasun arrazoiengatik, ezingo duzu hau berriro ikusi. Aplikazioaren
msgid "For the best experience, we recommend using the theme font."
msgstr "Esperientzia onena lortzeko, gaiaren letra-tipoa erabiltzea gomendatzen dizugu."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr "Zuretzat"
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Betirako"
@@ -3327,7 +3647,7 @@ msgstr "Nahi ez den edukia maiz argitaratzen du"
msgid "From @{sanitizedAuthor}"
msgstr "@{sanitizedAuthor}-tik"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "<0/>-tik"
@@ -3336,28 +3656,30 @@ msgstr "<0/>-tik"
msgid "Gallery"
msgstr "Galeria"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Abio multzo bat sortu"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Laguntza"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
msgstr "Hasi"
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Hasten"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Eman aurpegia zure profilari"
@@ -3366,17 +3688,17 @@ msgstr "Eman aurpegia zure profilari"
msgid "Glaring violations of law or terms of service"
msgstr "Legearen edo zerbitzu-baldintzen urraketa nabarmenak"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Itzuli"
@@ -3384,10 +3706,10 @@ msgstr "Itzuli"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Itzuli"
@@ -3408,7 +3730,27 @@ msgstr "Joan hasierara"
msgid "Go Home"
msgstr "Joan Hasierara"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr "Zuzenean jarri"
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr "Zuzenean Jarri"
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr "Zuzenera joan"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr "Joan {firstAuthorName}-ren profilera"
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Joan {0}rekin elkarrizketara"
@@ -3427,8 +3769,8 @@ msgstr "Joan erabiltzailearen profilera"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Multimedia Grafikoa"
@@ -3437,21 +3779,21 @@ msgstr "Multimedia Grafikoa"
msgid "Half way there!"
msgstr "Bide erdia!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Handle-a"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "Handle-a dagoeneko hartua. Mesedez, saiatu beste bat."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "Handle aldatua!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "Handle luzeegia. Mesedez, saiatu laburrago batekin."
@@ -3464,7 +3806,7 @@ msgstr "Haptikoak"
msgid "Harassment, trolling, or intolerance"
msgstr "Jazarpena, troleoa edo intolerantzia"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Traola"
@@ -3472,19 +3814,24 @@ msgstr "Traola"
msgid "Hashtag {tag}"
msgstr "{tag} traola"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr "Baduzu koderik? <0>Egin klik hemen.0>"
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "Arazoak dituzu?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Laguntza"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Lagundu jendeari jakiten ez zarela bot bat argazki bat kargatuz edo abatar bat sortuz."
@@ -3497,7 +3844,7 @@ msgstr "Hemen duzu zure aplikazioaren pasahitza!"
msgid "Hidden"
msgstr "Ezkutua"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr "Ezkutatuta zure moderazio doikuntzagatik."
@@ -3509,18 +3856,17 @@ msgstr "Ezkutuko zerrenda"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Ezkutatu"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Ezkutatu"
@@ -3529,38 +3875,40 @@ msgstr "Ezkutatu"
msgid "Hide customization options"
msgstr "Ezkutatu pertsonalizazio-aukerak"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Ezkutatu posta niretzat"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Ezkutatu erantzuna guztientzako"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Ezkutatu erantzuna niretzat"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr "Ezkutatu txartel hau"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "Ezkutatu post hau?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "Ezkutatu erantzun hau?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Ezkutatu joera-gaiak"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "Joera-gaiak ezkutatu?"
@@ -3569,10 +3917,15 @@ msgstr "Joera-gaiak ezkutatu?"
msgid "Hide trending videos?"
msgstr "Joera-bideoak ezkutatu?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Ezkutatu erabiltzaile zerrenda"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr "Ezkutatu egiaztapen-bereizgarriak"
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "Mmm, feed zerbitzariak erantzun txarra eman du. Mesedez, jakinarazi feed
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Mmm, arazoak ditugu feed hau aurkitzeko. Baliteke ezabatu izana."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Mmmmm, badirudi arazoak ditugula datu hauek kargatzeko. Ikus behean xehetasun gehiagorako. Arazo honek jarraitzen badu, jar zaitez gurekin harremanetan."
@@ -3610,15 +3963,15 @@ msgstr "Mmmmm, ezin izan dugu kargatu moderazio-zerbitzu hori."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Eutsi! Pixkanaka bideorako sarbidea ematen ari gara, eta ilaran zain zaude oraindik. Begiratu berriro laster!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Hasiera"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "Hostalaria:"
@@ -3627,34 +3980,33 @@ msgstr "Hostalaria:"
msgid "Hosting provider"
msgstr "Hostatze hornitzailea"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr "Pil-pilean"
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "Erantzun berrienak lehenik"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "Nola ireki behar dugu esteka hau?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Kode bat daukat"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Kode bat daukat"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Baieztapen kode bat daukat"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Nire domeinua daukat"
@@ -3667,22 +4019,30 @@ msgstr "Ulertzen dut"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Autazko testua luzea bada, autazko testuaren hedapen egoera aldatzen du"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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 "Zure herrialdeko legeen arabera oraindik heldua ez bazara, zure gurasoek edo legezko tutoreek Baldintza hauek irakurri beharko dituzte zure izenean."
-#: src/view/screens/ProfileList.tsx:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "Zerrenda hau ezabatzen baduzu, ezin izango duzu berreskuratu."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Zure domeinua baduzu, hori erabil dezakezu handle gisa. Honek zure nortasuna egiaztatzeko aukera ematen dizu. <0>Lortu informazio gehiago hemen.0>"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr "Zure posta elektronikoa eguneratu behar baduzu, <0>egin klik hemen0>."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Post hau kentzen baduzu, ezin izango duzu berreskuratu."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr "Zure helbide elektronikoa eguneratzen baduzu, posta elektronikoaren 2FA desgaitu egingo da."
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Pasahitza aldatu nahi baduzu, kode bat bidaliko dizugu zure kontua dela egiaztatzeko."
@@ -3704,9 +4064,22 @@ msgstr "Legez kanpokoa eta Premiazkoa"
msgid "Image"
msgstr "Irudia"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "Irudia zure kameraren rollean gorde da!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr "Irudien cachea garbituta"
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr "Irudien cachea garbituta, {0} askatuta"
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr "Irudia gordeta"
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr "Ezin dira irudiak gorde zure argazki liburutegian sartzeko baimena eman ezean."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "Mezu desegokiak edo esteka esplizituak"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr "Sarrera-ontzia hutsik!"
@@ -3752,15 +4125,11 @@ msgstr "Sartu pasahitza kontua ezabatzeko"
msgid "Input the code which has been emailed to you"
msgstr "Sartu posta elektronikoz bidali zaizun kodea"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "Sartu erregistratzean erabili zenuen erabiltzaile-izena edo helbide elektronikoa"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Elkarrekintza mugatua"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr "Interakzio ezarpenak"
@@ -3769,11 +4138,11 @@ msgstr "Interakzio ezarpenak"
msgid "Invalid 2FA confirmation code."
msgstr "2FA baieztapen kode baliogabea."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Handle baliogabea. Mesedez, saiatu beste bat."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "Post erregistro baliogabea edo onartzen ez duena"
@@ -3789,11 +4158,11 @@ msgstr "Egiaztapen-kode baliogabea"
msgid "Invite a Friend"
msgstr "Gonbidatu Lagun bat"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Gonbidapen kodea"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Ez da gonbidapen kodea onartu. Egiaztatu behar bezala idatzi duzula eta saiatu berriro."
@@ -3805,7 +4174,7 @@ msgstr "Gonbidapen kodeak: {0} eskuragarri"
msgid "Invite codes: 1 available"
msgstr "Gonbidapen kodeak: 1 eskuragarri"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "Gonbidatu jendea abio multzo honetara!"
@@ -3817,7 +4186,7 @@ msgstr "Gonbidatu lagunak zure gogoko feedak eta jendea jarraitzera"
msgid "Invites, but personal"
msgstr "Gonbidapenak, baina pertsonalak"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "Zuzena da"
@@ -3825,19 +4194,19 @@ msgstr "Zuzena da"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Oraintxe bakarrik zaude! Gehitu jende gehiago zure abio multzoari goiko bilaketan."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "Lan ID: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Lanak"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Sartu Bluesky"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "Egileak etiketatua."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Etiketak"
@@ -3868,7 +4237,7 @@ msgstr "Etiketak"
msgid "Labels added"
msgstr "Etiketak gehitu dira"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "Etiketak erabiltzaileei eta edukiei buruzko oharrak dira. Ezkutatzeko, abisatzeko eta sarea sailkatzeko erabil daitezke."
@@ -3884,13 +4253,13 @@ msgstr "Etiketak zure edukian"
msgid "Language selection"
msgstr "Hizkuntza hautatzea"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Hizkuntza Ezarpenak"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Hizkuntzak"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Handiagoa"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "Azkena"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "gehiago ikasi"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr "Ikasi gehiago"
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Gehiago Ikasi"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Gehiago ikasi Bluesky-ri buruz"
@@ -3933,6 +4311,11 @@ msgstr "Gehiago ikasi eduki honi aplikatutako moderazioari buruz."
msgid "Learn more about this warning"
msgstr "Gehiago ikasi abisu honi buruz"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr "Ikasi gehiago Bluesky-n egiaztapenari buruz"
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "Bluesky uzten"
msgid "left to go."
msgstr "joateko utzi."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Utzidazu aukeratzen"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Argia"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "Gogoko"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Gogoko ({0, plural, one {gogoko #} other {# gogoko}})"
@@ -4013,17 +4397,16 @@ msgstr "10 post gogoko egin"
msgid "Like 10 posts to train the Discover feed"
msgstr "Aurkitu feeda trebatzeko 10 post gogoko egin"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Feed hau gogoko dut"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr "Etiketatzaile hau gogoko dut"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Gogoko du"
@@ -4033,43 +4416,43 @@ msgstr "Gogoko du"
msgid "Liked By"
msgstr "Gogoko Du"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Gogoko du {0, plural, one {# erabiltzaileak} other {# erabiltzaileek}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Gogoko du {likeCount, plural, one {# erabiltzaileak} other {# erabiltzaileek}}"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "Gogoko"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "Gogoko post honetan"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "Lineala"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Zerrenda"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Zerrenda Abatarra"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "Zerrenda blokeatuta"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4084,44 +4467,44 @@ msgstr "<0/>-ren zerrenda"
msgid "List by you"
msgstr "Zure zerrenda"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "Zerrenda ezabatuta"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
msgstr "Zerrenda ezkutatu egin da"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "Zerrenda Ezkutua"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "Zerrenda mutututa"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Zerrenda Izena"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "Zerrenda desblokeatuta"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "Zerrenda desmutututa"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Zerrendak"
@@ -4129,34 +4512,47 @@ msgstr "Zerrendak"
msgid "Lists blocking this user:"
msgstr "Erabiltzaile hau blokeatzen duten zerrendak:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr "ZUZENEAN"
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr "Zuzeneko funtzioa beta proban dago"
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr "Zuzeneko esteka"
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Kargatu gehiago"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "Kargatu iradokitako feed gehiago"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Kargatu iradokitako jarraipen gehiago"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Kargatu jakinarazpen berriak"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Kargatu post berriak"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Kargatzen..."
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Erregistroa"
@@ -4164,12 +4560,12 @@ msgstr "Erregistroa"
msgid "Logged-out visibility"
msgstr "Saioa amaitutako ikusgarritasuna"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "@sawaratsuki.bsky.social-ren logotipoa"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "<0>@sawaratsuki.bsky.social0>-ren logotipoa"
@@ -4193,7 +4589,11 @@ msgstr "Badirudi feed guztiak ainguratik kendu dituzula. Baina ez kezkatu, behea
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Badirudi jarraipen feed bat falta zaizula. <0>Egin klik hemen bat gehitzeko.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr "Egin doikuntzak zure kontuko posta elektronikoaren ezarpenetan"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "Egin bat niretzat"
@@ -4201,18 +4601,22 @@ msgstr "Egin bat niretzat"
msgid "Make sure this is where you intend to go!"
msgstr "Ziurtatu hori dela joan nahi duzun tokia!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "Kudeatu gordetako feedak"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr "Kudeatu egiaztapen-ezarpenak"
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Kudeatu mutututa dauden hitzak eta etiketak"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr "Markatu denak irakurri gisa"
@@ -4221,16 +4625,23 @@ msgstr "Markatu denak irakurri gisa"
msgid "Mark as read"
msgstr "Markatu irakurri gisa"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr "Denak irakurri gisa markatuta"
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr "Agian beranduago"
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Multimedia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Publiko batzuentzat kezkagarriak edo desegokiak izan daitezkeen multimediak."
@@ -4246,23 +4657,27 @@ msgstr "Aipatutako erabiltzaileak"
msgid "Mentions"
msgstr "Aipamenak"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Menua"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Mezua {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Mezua ezabatuta"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Mezua ezabatuta"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr "@{0}-ren mezua: {1}"
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Zerbitzariaren mezua: {0}"
@@ -4276,14 +4691,18 @@ msgstr "Mezua sartzeko eremua"
msgid "Message is too long"
msgstr "Mezua luzeegia da"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr "Mezuaren aukerak"
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Mezuak"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81
msgctxt "Name of app icon variant"
msgid "Midnight"
-msgstr ""
+msgstr "Gauerdia"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47
#: src/lib/moderation/useReportOptions.ts:47
@@ -4295,10 +4714,10 @@ msgstr "Kontu Engainagarria"
msgid "Misleading Post"
msgstr "Post engainagarria"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Moderazioa"
@@ -4320,22 +4739,22 @@ msgstr "<0/>-ren moderazio zerrenda"
msgid "Moderation list by you"
msgstr "Zure moderazio zerrenda"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "Moderazio-zerrenda sortuta"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "Moderazio-zerrenda eguneratuta"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Moderazio zerrendak"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Moderazio Zerrendak"
@@ -4343,11 +4762,11 @@ msgstr "Moderazio Zerrendak"
msgid "moderation settings"
msgstr "moderazio ezarpenak"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "Moderazio-egoerak"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Moderazio tresnak"
@@ -4356,7 +4775,7 @@ msgstr "Moderazio tresnak"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Moderatzaileak edukiari buruzko abisu orokor bat ezartzea aukeratu du."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Gehiago"
@@ -4365,9 +4784,9 @@ msgstr "Gehiago"
msgid "More feeds"
msgstr "Feed gehiago"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Aukera gehiago"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "Gogokoenak lehenengo"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Erantzun gogokoenak lehenengo"
@@ -4400,14 +4819,14 @@ msgstr "Mututu"
msgid "Mute {tag}"
msgstr "Mututu {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "Mututu kontua"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Mututu kontuak"
@@ -4420,11 +4839,11 @@ msgstr "Mututu elkarrizketa"
msgid "Mute in:"
msgstr "Mututu:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Mututu zerrenda"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "Kontu hauek mututu?"
@@ -4452,26 +4871,26 @@ msgstr "Mututu hitz hau etiketetan soilik"
msgid "Mute this word until you unmute it"
msgstr "Mututu hitz hau zuk mututu gabe utzi arte"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Mututu haria"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Mututu hitzak eta etiketak"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Mutututako kontuak"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Mutututako Kontuak"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Mutututako kontuei postak kendu zaizkie zure feedetatik eta jakinarazpenetatik. Mutututakoak guztiz pribatuak dira."
@@ -4479,11 +4898,11 @@ msgstr "Mutututako kontuei postak kendu zaizkie zure feedetatik eta jakinarazpen
msgid "Muted by \"{0}\""
msgstr "\"{0}\"-k mututua"
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Mutututako hitzak eta etiketak"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Mututzea pribatua da. Mutututako kontuek zurekin elkarreragin dezakete, baina ez dituzu haien postak ikusiko ezta haien jakinarazpenik jasoko."
@@ -4492,15 +4911,15 @@ msgstr "Mututzea pribatua da. Mutututako kontuek zurekin elkarreragin dezakete,
msgid "My Birthday"
msgstr "Nire Urtebetetzea"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "Nire Feedak"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Izena"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "Izena derrigorrezkoa da"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Natura"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "Nabigatu {0}-ra"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr "Joan abio multzora"
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "Hurrengo pantailara nabigatzen da"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Zure profilera nabigatzen du"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "Aldatu behar duzu?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "Copyright-urraketa baten berri eman behar al duzu?"
@@ -4547,30 +4971,43 @@ msgstr "Copyright-urraketa baten berri eman behar al duzu?"
msgid "Never lose access to your followers or data."
msgstr "Ez galdu inoiz zure jarraitzaile edo datuetarako sarbidea."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "Ez dio axola, sortu handle bat niretzako"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Berria"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Berria"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "Txat berria"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr "E-posta helbide berria"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr "Ezaugarri Berria"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "Handle berria"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "Zerrenda berria"
@@ -4578,7 +5015,7 @@ msgstr "Zerrenda berria"
msgid "New messages"
msgstr "Mezu berriak"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Moderazio Zerrenda berria"
@@ -4590,12 +5027,12 @@ msgstr "Pasahitz berria"
msgid "New Password"
msgstr "Pasahitz Berria"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Post berria"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "Post berria"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Post Berria"
@@ -4613,19 +5050,20 @@ msgstr "Post Berria"
msgid "New user info dialog"
msgstr "Erabiltzaileen berriaren informazio elkarrizketa-koadroa"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Erabiltzaile Zerrenda berria"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "Erantzun berrienak lehenengo"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Berriak"
@@ -4655,11 +5093,15 @@ msgstr "Hurrengo irudia"
msgid "No app passwords yet"
msgstr "Oraindik ez dago aplikazioen pasahitzik"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "DNS Panelik gabe"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr "Iraungitze-datarik ez"
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "Ez da aurkitu GIF aipagarririk. Baliteke Tenor-ekin arazoren bat egotea."
@@ -4668,21 +5110,25 @@ msgstr "Ez da aurkitu GIF aipagarririk. Baliteke Tenor-ekin arazoren bat egotea.
msgid "No feeds found. Try searching for something else."
msgstr "Ez da feedik aurkitu. Saiatu beste zerbait bilatzen."
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr "Irudirik ez"
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "Ez dago gogokorik oraindik"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "Jada ez da {0} jarraitzen"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr "Ezin da {MAX_SERVICE_HANDLE_LENGTH} karaktere baino luzeagoa izan"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr "Ezin da {MAX_SERVICE_HANDLE_LENGTH, plural, other {# karaktere}} baino luzeagoa izan"
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "Oraindik ez dago mezurik"
@@ -4711,31 +5157,38 @@ msgstr "Oraindik ez dago aipamenik"
msgid "No reposts yet"
msgstr "Oraindik ez dago berpostik"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Ez dago emaitzarik"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "Ez dago emaitzarik"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr "Emaitzarik ez honentzat: \"{0}\"."
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "Ez da emaitzarik aurkitu"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "Ez da emaitzarik aurkitu \"{query}\"-rentzat"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "Ez da emaitzarik aurkitu {query}-rentzat"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr "Ez dago emaitzarik."
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "Ez da aurkitu \"{search}\" bilaketaren emaitzarik."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Inor"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "Inork ez du oraindik hau gogoko. Agian lehena izan beharko zenuke!"
@@ -4775,19 +5227,15 @@ msgstr "Biluztasun ez sexuala"
msgid "Not followed by anyone you're following"
msgstr "Ez dio jarraitzen zuk jarraitzen diozun inork"
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "Ez da aurkitu"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "Oraintxe ez"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Partekatzeari buruzko oharra"
@@ -4795,7 +5243,7 @@ msgstr "Partekatzeari buruzko oharra"
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 "Oharra: Bluesky sare ireki eta publikoa da. Ezarpen honek zure edukiaren ikusgarritasuna mugatzen du Bluesky aplikazioan eta webgunean, eta baliteke beste aplikazio batzuek ezarpen hau ez errespetatzea. Baliteke zure edukia saioa amaitutako erabiltzaileei erakustea beste aplikazio eta webgune batzuek."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Hemen ezer ez"
@@ -4803,7 +5251,7 @@ msgstr "Hemen ezer ez"
msgid "Notification filters"
msgstr "Jakinarazpen-iragazkiak"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Jakinarazpen-ezarpenak"
@@ -4820,11 +5268,11 @@ msgstr "Jakinarazpen soinuak"
msgid "Notification Sounds"
msgstr "Jakinarazpen Soinuak"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Jakinarazpenak"
@@ -4832,12 +5280,12 @@ msgstr "Jakinarazpenak"
msgid "now"
msgstr "orain"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Orain"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Biluztasuna"
@@ -4859,21 +5307,23 @@ msgstr "Ai ez!"
msgid "Oh no! Something went wrong."
msgstr "Ai ez! Zerbait gaizki joan da."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "Ados"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "Ados"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "Erantzun zaharrenak lehenik"
@@ -4881,19 +5331,19 @@ msgstr "Erantzun zaharrenak lehenik"
msgid "on<0><1/><2><3/>2>0>"
msgstr "<0><1/><2><3/>2>0>-n"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Sartzea berrezarri"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "GIF bati edo gehiagori aukerazko testua falta zaio."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "Irudi bati edo gehiagori aukerazko testua falta zaio."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "Bideo bati edo gehiagori aukerazko testua falta zaio."
@@ -4905,11 +5355,11 @@ msgstr ".jpg eta .png fitxategiak soilik onartzen dira"
msgid "Only {0} can reply."
msgstr "{0}-k bakarrik erantzun dezake."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Letrak, zenbakiak eta marratxoak bakarrik"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "Irudi-fitxategiak soilik onartzen dira"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "Arazoren bat izan da!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "Ups!"
@@ -4935,67 +5385,80 @@ msgstr "Ups!"
msgid "Open"
msgstr "Ireki"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "Ireki {name} profilaren laster-menua"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Ireki abatar sortzailea"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "Ireki elkarrizketa aukerak"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "Ireki marrazki menua"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Ireki emoji-hautatzailea"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "Ireki feedaren informazio pantaila"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "Ireki feed aukeren menua"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr "Ireki emoji zerrenda osoa"
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "Ireki esteka {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "Ireki mezuen aukerak"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "Ireki moderazioaren arazketa orria"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Ireki mutututako hitzen eta etiketen ezarpenak"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr "Ireki multzoa"
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "Ireki post aukeren menua"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr "Ireki profila"
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr "Ireki partekatzeko menua"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "Ireki abio multzoaren menua"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Ireki ipuin liburuaren orria"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Ireki sistemaren erregistroa"
@@ -5015,19 +5478,19 @@ msgstr "Hari honi nork erantzun diezaiokeen aukeratzeko elkarrizketa-koadro bat
msgid "Opens additional details for a debug entry"
msgstr "Arazketa-sarrera baten xehetasun gehigarriak irekitzen ditu"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
-msgstr ""
+msgstr "Aukerazko testuaren elkarrizketa-koadroa irekitzen du"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Kamera irekitzen du gailuan"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
-msgstr ""
+msgstr "Azpidatzi eta aukerazko testuen elkarrizketa-koadroa irekitzen du"
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr "Handle aldaketa elkarrizketa-koadroa irekitzen du"
@@ -5039,7 +5502,7 @@ msgstr "Konpositorea irekitzen du"
msgid "Opens device photo gallery"
msgstr "Gailuaren argazki galeria irekitzen du"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr "Emoji-hautatzailea irekitzen du"
@@ -5057,7 +5520,7 @@ msgstr "Fluxua irekitzen du lehendik duzun Bluesky kontuan saioa hasteko"
msgid "Opens GIF select dialog"
msgstr "GIF hautatzeko elkarrizketa-koadroa irekitzen du"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr "Laguntza-zerbitzua arakatzailean irekitzen du"
@@ -5065,6 +5528,10 @@ msgstr "Laguntza-zerbitzua arakatzailean irekitzen du"
msgid "Opens list of invite codes"
msgstr "Gonbidapen kodeen zerrenda irekitzen du"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr "Zuzeneko egoeraren elkarrizketa-koadroa irekitzen du"
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Pasahitza berrezartzeko formularioa irekitzen du"
@@ -5073,12 +5540,12 @@ msgstr "Pasahitza berrezartzeko formularioa irekitzen du"
msgid "Opens the linked website"
msgstr "Estekatutako webgunea irekitzen du"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Profil hau irekitzen du"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Bideo-hautatzailea irekitzen du"
@@ -5121,11 +5588,11 @@ msgstr "OTA egoera: Ez dago bat ere eskuragarri"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Beste bat"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Beste kontu bat"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Orria Ez da Aurkitu"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "Pausa"
msgid "Pause video"
msgstr "Pausatu bideoa"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "Jendea"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "@{0}-k jarraitzen duen jendea"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "@{0}-ri jarraitzen dion jendea"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "Kamerara sartzeko baimena behar da."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "Ukatu egin da kamerara sartzeko baimena. Mesedez, gaitu zure sistemaren ezarpenetan."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr "Ukatu egin da zure argazki liburutegira sartzeko baimena. Mesedez, gaitu zure sistemaren ezarpenetan."
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "Etxe-animaliak"
msgid "Photography"
msgstr "Argazkia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Helduentzako pentsatutako irudiak."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr "Aingura"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "Ainguratu feeda"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr "Ainguratu joera bideoen feeda zure hasiera pantailean atzipen errazagorako"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr "Ainguratu Feeda"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Ainguratu hasierara"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Ainguratu Hasierara"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Ainguratu zure profilera"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Ainguratua"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "{0} Hasierara ainguratua"
@@ -5263,7 +5722,7 @@ msgstr "{0} Hasierara ainguratua"
msgid "Pinned Feeds"
msgstr "Ainguratutako Feedak"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "Ainguratua zure feedetara"
@@ -5302,24 +5761,28 @@ msgstr "GIF-a erreproduzitzen du"
msgid "Plays the video"
msgstr "Bideoa erreproduzitzen du"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr "Gehitu posteatzen ari zaren multimediari dagozkion eduki-abisuak."
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Mesedez, zure handle-a aukeratu"
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Mesedez, zure pasahitza aukeratu"
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr "Mesedez, egin klik bidali dizugun mezu elektronikoan dagoen estekan zure helbide elektroniko berria egiaztatzeko. Urrats garrantzitsua da hau Bluesky-ren funtzio guztiez gozatzen jarrai dezazun."
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Mesedez, bete egiaztapen-captcha."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Mesedez, berretsi zure helbide elektronikoa aldatu aurretik. Aldi baterako eskakizuna da posta elektronikoa eguneratzeko tresnak gehitzen diren bitartean, eta laster kenduko da."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr "Egiaztatu zure e-posta helbidea zuzen idatzi duzula."
@@ -5335,19 +5798,41 @@ msgstr "Sartu pasahitza. Gutxienez 8 karaktereko luzera izan behar du."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Mesedez, sartu izen esklusibo bat aplikazio honen pasahitzarentzat edo erabili gure ausaz sortutakoa."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr "Mesedez, sartu baliozko kode bat."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr "Mesedez, sartu baliozko helbide elektroniko bat."
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Mesedez, idatzi baliozko hitz, etiketa edo esaldi bat mututzeko"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr "Mesedez, sartu behean <0>{0}0> helbidera bidali dugun kodea."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr "Mesedez, sartu zure aurreko helbide elektronikora bidali dizugun segurtasun-kodea."
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Mesedez, sartu zure helbide elektronikoa."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Mesedez, sartu zure gonbidapen kodea."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr "Mesedez, sartu zure helbide elektroniko berria."
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr "Mesedez, sartu zure pasahitza"
@@ -5381,24 +5866,25 @@ msgstr "Mesedez, aukeratu arrazoi bat salaketa honetarako"
msgid "Please sign in as @{0}"
msgstr "Hasi saioa @{0} gisa"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr "Mesedez, egiazttu zure helbide elektronikoa"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Mesedez, Egiaztatu Zure Posta Elektronikoa"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Politika"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr "Zure sareko bideo ezagunak."
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Pornografia"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Posteatu"
@@ -5408,32 +5894,32 @@ msgctxt "description"
msgid "Post"
msgstr "Posteatu"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Posteatu Dena"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "{0}-ren posta"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "@{0}-ren posta"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "Posta ezabatuta"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Ezin izan da posta kargatu. Egiaztatu Interneteko konexioa eta saiatu berriro."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr "Posta ezabatu da"
@@ -5455,7 +5941,7 @@ msgstr "Zuk Ezkututako Posta"
msgid "Post interaction settings"
msgstr "Postaren elkarrekintza-ezarpenak"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr "Postaren Interakzio-Ezarpenak"
@@ -5476,15 +5962,16 @@ msgstr "Posta ez da aurkitu"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "Posta ainguratuta"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "Postaren aingura kendu da"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Postak"
@@ -5503,7 +5990,7 @@ msgstr "Engainagarria Izan Daitekeen Esteka"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "Hobespena gorde da"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -5524,7 +6011,7 @@ msgstr "Sakatu zuk ere jarraitzen duzun kontu honen jarraitzaileak ikusteko"
msgid "Previous image"
msgstr "Aurreko irudia"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Lehen Hizkuntza"
@@ -5537,31 +6024,31 @@ msgstr "Lehenetsi zure Jarraipenak"
msgid "Priority notifications"
msgstr "Lehentasunezko jakinarazpenak"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Pribatutasuna"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "Pribatutasuna eta segurtasuna"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Pribatutasuna eta Segurtasuna"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Pribatutasun Politika"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Bideoa prozesatzen..."
@@ -5570,23 +6057,23 @@ msgstr "Bideoa prozesatzen..."
msgid "Processing..."
msgstr "Prozesatzen..."
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "profila"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Profila"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "Profila eguneratu da"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
@@ -5600,6 +6087,26 @@ msgstr "Erabiltzaileen zerrenda publiko eta partekagarriak mututzeko edo blokeat
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "Feedak gidatzeko erabil daitezkeen zerrenda publikoak eta partekagarriak."
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr "Argitaratu posta"
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr "Argitaratu postak"
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr "Argitaratu erantzunak"
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr "Argitaratu erantzuna"
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "QR kodea zure arbelean kopiatu da!"
@@ -5612,25 +6119,25 @@ msgstr "QR kodea deskargatu da!"
msgid "QR code saved to your camera roll!"
msgstr "QR kodea gorde da zure kameran!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Posta aipatu"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "Aipatutako posta berriro erantsi da"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "Aipatutako posta behar bezala kendu da"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "Post aipamenak desgaituta daude"
@@ -5642,39 +6149,48 @@ msgstr "Aipamen ezarpenak"
msgid "Quotes"
msgstr "Aipamenak"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "Post honen aipamenak"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Ausazko (\"Poster-en erruleta\" bezala ezagutua)"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "Saiakera muga gainditu da. Gehiegitan saiatu zara handle-a aldatzen denbora laburrean. Mesedez, itxaron minutu bat berriro saiatu aurretik."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "Erantsi berriro aipamena"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr "Erreakzionatu {emoji}-rekin"
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Berriz aktibatu zure kontua"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr "Irakurri blogeko posta"
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr "Irakurri gutxiago"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr "Irakurri gehiago"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Irakurri Bluesky bloga"
@@ -5697,11 +6213,11 @@ msgstr "Apelazio arrazoia"
msgid "Reason:"
msgstr "Arrazoia:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Azken Bilaketak"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "Gomendatua"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "Berriro konektatu"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr "Baztertu"
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr "Baztertu txateatzeko eskaera"
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Berriz kargatu elkarrizketak"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Kendu"
msgid "Remove {displayName} from starter pack"
msgstr "Kendu {displayName} abio multzotik"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr "Kendu {historyItem}"
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Kendu kontua"
@@ -5752,13 +6268,13 @@ msgstr "Kendu kontua"
msgid "Remove attachment"
msgstr "Kendu eranskina"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Kendu Abatarra"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "Kendu Bannerra"
@@ -5776,24 +6292,25 @@ msgstr "Kendu feeda"
msgid "Remove feed?"
msgstr "Feeda kendu?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Kendu nire feedetatik"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "Sarrera azkarretik kendu?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "Kendu feed gordetatik"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr "Zure feedetatik kendu?"
@@ -5802,11 +6319,16 @@ msgstr "Zure feedetatik kendu?"
msgid "Remove image"
msgstr "Kendu irudia"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr "Kendu zuzeneko egoera"
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Kendu hitz mututua zure zerrendatik"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Kendu profila"
@@ -5814,12 +6336,12 @@ msgstr "Kendu profila"
msgid "Remove quote"
msgstr "Kendu aipamena"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Kendu berposta"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Kendu azpitituluen fitxategia"
@@ -5827,6 +6349,21 @@ msgstr "Kendu azpitituluen fitxategia"
msgid "Remove this feed from your saved feeds"
msgstr "Kendu feed hau gordetako zure feedetatik"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr "Kendu erabiltzailea zerrendatik"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr "Kendu egiaztapena"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr "Zure egiaztapena kendu kontu honi?"
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "Egileak kenduta"
@@ -5835,7 +6372,7 @@ msgstr "Egileak kenduta"
msgid "Removed by you"
msgstr "Zuk kenduta"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Zerrendatik kenduta"
@@ -5845,19 +6382,18 @@ msgid "Removed from my feeds"
msgstr "Nire feedetatik kenduta"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Gordetako feedetatik kenduta"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Zure feedetatik kenduta"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr "Bilaketa historiatik profila kentzen du"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr "Egiaztapena kenduta"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
@@ -5868,7 +6404,7 @@ msgstr "Aipatutako posta kentzen du"
msgid "Replace with Discover"
msgstr "Ordeztu Aurkitu-gatik"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Erantzunak"
@@ -5880,12 +6416,13 @@ msgstr "Erantzunak desgaituta daude"
msgid "Replies to this post are disabled."
msgstr "Mezu honen erantzunak desgaituta daude."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Erantzun"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Erantzuna ({0, plural, one {erantzun #} other {# erantzun}})"
@@ -5907,86 +6444,86 @@ msgstr "Erantzunaren ezarpenak"
msgid "Reply settings are chosen by the author of the thread"
msgstr "Erantzun ezarpenak hariaren egileak aukeratzen ditu"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "Erantzunak ordenatzea"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "<0><1/>0>-ri erantzun"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Erantzun blokeatutako post bati"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "Post bati erantzun"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Zuri erantzun"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "Erantzunen ikusgarritasuna eguneratu da"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "Erantzuna behar bezala ezkutatu da"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Salatu"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "Salatu kontua"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Salatu elkarrizketa"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "Salaketaren elkarrizketa-koadroa"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Salatu feeda"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
-msgstr "Salatu Zerrenda"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
+msgstr "Salatu zerrenda"
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Salatu mezua"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Salatu posta"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "Salatu abio multzoa"
@@ -6030,25 +6567,26 @@ msgstr "Salatu abio multzo hau"
msgid "Report this user"
msgstr "Salatu erabiltzaile hau"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Berpostatu"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Berpostatu"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Berposta ({0, plural, one {berpost #} other {# berpost}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Berpostatu edo aipatu posta"
@@ -6056,27 +6594,27 @@ msgstr "Berpostatu edo aipatu posta"
msgid "Reposted By"
msgstr "Nork berpostatua"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "{0}-k berpostatua"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "<0><1/>0>-k berpostatua"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "Zuk berpostatua"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "Berpostatu post hau"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "Eskatu Aldaketa"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr "Eskatu aldaketa"
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6088,11 +6626,11 @@ msgstr "Eskaera Kodea"
msgid "Require alt text before posting"
msgstr "Eskatu aukerazko testua argitaratu aurretik"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr "Eskatu posta-kode bat zure kontuan saioa hasteko."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Beharrezkoa hornitzaile honetarako"
@@ -6100,13 +6638,19 @@ msgstr "Beharrezkoa hornitzaile honetarako"
msgid "Required in your region"
msgstr "Beharrezkoa zure eskualdean"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr "Berbidali"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "Berriro bidali mezu elektronikoa"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "Berriro bidali Posta Elektronikoa"
@@ -6123,8 +6667,8 @@ msgstr "Berrezarri kodea"
msgid "Reset Code"
msgstr "Berrezarri Kodea"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "Berrezarri sartze-egoera"
@@ -6141,16 +6685,16 @@ msgstr "Saioa hasi berriro"
msgid "Retries the last action, which errored out"
msgstr "Azken ekintza berriro saiatzen da, errorea izan duena"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "Azken ekintza berriro saiatzen da, errorea izan duena"
msgid "Retry"
msgstr "Saiatu berriro"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr "Saiatu berriro salaketa aukerak kargatzen"
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Itzuli aurreko orrialdera"
@@ -6175,11 +6719,11 @@ msgstr "Itzuli aurreko orrialdera"
msgid "Returns to home page"
msgstr "Hasierako orrira itzultzen da"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "Aurreko orrialdera itzultzen da"
@@ -6190,24 +6734,26 @@ msgstr "Aurreko urratsera itzultzen da"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Gorde"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Gorde"
@@ -6221,12 +6767,12 @@ msgstr "Gorde jaiotze data"
msgid "Save changes"
msgstr "Gorde aldaketak"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Gorde Aldaketak"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Gorde irudia"
@@ -6234,16 +6780,16 @@ msgstr "Gorde irudia"
msgid "Save image crop"
msgstr "Gorde irudiaren mozketa"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Gorde handle berria"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "Gorde QR kodea"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Gorde nire feedetan"
@@ -6251,16 +6797,12 @@ msgstr "Gorde nire feedetan"
msgid "Saved Feeds"
msgstr "Gordetako Feedak"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "Zure kameran gordeta"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "Zure feedetan gordeta"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "Zure profilean edozein aldaketa gordetzen du"
@@ -6270,8 +6812,8 @@ msgstr "Irudi mozketa ezarpenak gordetzen ditu"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "Esan kaixo!"
@@ -6280,45 +6822,42 @@ msgstr "Esan kaixo!"
msgid "Science"
msgstr "Zientzia"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "Joan gora"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Bilatu"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Bilatu @{0}-ren postak"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "Bilatu izenaren edo interesaren arabera"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "Bilatu feedak"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "Bilatu \"{interestsDisplayName}\"{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Bilatu \"{query}\""
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "Bilatu \"{searchText}\""
@@ -6326,29 +6865,33 @@ msgstr "Bilatu \"{searchText}\""
msgid "Search for feeds that you want to suggest to others."
msgstr "Bilatu besteei iradoki nahi diezun feedak."
-#: src/view/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr "Bilatu kontu gehiago"
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr "Bilatu feed gehiago"
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
msgstr "Bilatu postak, erabiltzaileak edo feedak"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Bilatu erabiltzaileak"
-
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "Bilatu GIF-ak"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr "Bilatu nire postak"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr "Bilatu postak"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Bilatu profilak"
@@ -6356,16 +6899,20 @@ msgstr "Bilatu profilak"
msgid "Search Tenor"
msgstr "Bilatu Tenor-en"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr "Bilatu..."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr "Profilak bilatzen ditu"
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr "Segurtasun urratsa behar da"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Segurtasun Urratsa Behar da"
@@ -6385,7 +6932,7 @@ msgstr "Ikusi #{tag} postak"
msgid "See #{tag} posts by user"
msgstr "Ikusi erabiltzailearen #{tag} postak"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Ikusi Bluesky-n lanpostuak"
@@ -6405,6 +6952,10 @@ msgstr "Aukeratu kolore bat"
msgid "Select account"
msgstr "Aukeratu kontua"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr "Aukeratu aplikazioaren hizkuntza bat"
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Aukeratu abatar bat"
@@ -6413,10 +6964,22 @@ msgstr "Aukeratu abatar bat"
msgid "Select an emoji"
msgstr "Aukeratu emoji bat"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr "Hautatu aukera bat"
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr "Aukeratu aplikazioaren hizkuntza"
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Aukeratu edukien hizkuntzak"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr "Hautatu iraupena"
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Aukeratu lehendik dagoen kontu batetik"
@@ -6433,15 +6996,15 @@ msgstr "Aukeratu GIF-a \"{0}\""
msgid "Select how long to mute this word for."
msgstr "Aukeratu zenbat denboraz mututu hitz hau."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Aukeratu hizkuntza..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Aukeratu hizkuntzak"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr "Aukeratu moderazio zerbitzua"
@@ -6449,6 +7012,10 @@ msgstr "Aukeratu moderazio zerbitzua"
msgid "Select moderator"
msgstr "Aukeratu moderatzailea"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr "Aukeratu hizkuntza nagusia"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "Aukeratu {emojiName} emojia zure abatar gisa"
msgid "Select the moderation service(s) to report to"
msgstr "Aukeratu salatzeko moderazio-zerbitzuak"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Aukeratu bideoa"
@@ -6470,23 +7037,24 @@ msgstr "Aukeratu bideoa"
msgid "Select what content this mute word should apply to."
msgstr "Aukeratu hitz mutu hau zer edukiri aplikatu behar zaion."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr "Aukeratu zein hizkuntza erabili aplikazioaren interfazerako."
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Aukeratu harpidetutako feedak zein hizkuntzatan nahi dituzun. Bat ere ez bada aukeratzen, hizkuntza guztiak erakutsiko dira."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Aukeratu zure jaioteguna"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "Aukeratu zure interesak beheko aukeretatik"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "Aukeratu zure feedean itzulpenak egiteko nahi duzun hizkuntza."
@@ -6498,19 +7066,17 @@ msgstr "{0}/{numItems} aukera hautatzen du"
msgid "Send a neat website!"
msgstr "Bidali webgune txukun bat!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr "Bidali Baieztapena"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
+msgstr "Bidali baieztapena"
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Bidali baieztapen mezu elektronikoa"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Bidali Baieztapen Mezu Elektronikoa"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Bidali mezu elektronikoa"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Bidali Mezu Elektronikoa"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Bidali iritzia"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Bidali mezua"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr "Bidali posta {name}-ri"
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Bidali posta hona..."
@@ -6544,17 +7114,20 @@ msgstr "Bidali salaketa"
msgid "Send report to {0}"
msgstr "Bidali salaketa hona {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr "Bidali salaketa {title}-ra"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Bidali egiaztapen-mezu elektronikoa"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Bidali mezu zuzenaren bidez"
@@ -6570,7 +7143,7 @@ msgstr "Zerbitzariaren helbidea"
msgid "Set app icon to {0}"
msgstr "Ezarri {0} aplikazio ikono gisa"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "Ezarri jaiotze-data"
@@ -6586,19 +7159,19 @@ msgstr "Konfiguratu zure kontua"
msgid "Sets email for password reset"
msgstr "Pasahitza berrezartzeko posta elektronikoa ezartzen du"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Ezarpenak"
#: src/screens/ModerationInteractionSettings/index.tsx:102
msgctxt "toast"
msgid "Settings saved"
-msgstr ""
+msgstr "Ezarpenak gorde dira"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Sexu-jarduera edo biluztasun erotikoa."
@@ -6606,21 +7179,15 @@ msgstr "Sexu-jarduera edo biluztasun erotikoa."
msgid "Sexually Suggestive"
msgstr "Sexu Lizuna"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Partekatu"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Partekatu"
@@ -6633,15 +7200,19 @@ msgstr "Partekatu istorio polit bat!"
msgid "Share a fun fact!"
msgstr "Partekatu datu dibertigarri bat!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Partekatu hala ere"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr "Partekatu egilearen DID"
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "Partekatu esteka"
@@ -6650,32 +7221,46 @@ msgstr "Partekatu esteka"
msgid "Share Link"
msgstr "Partekatu Esteka"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "Partekatu estekaren elkarrizketa-koadroa"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr "Partekatu posta hemen:// URI"
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Partekatu QR kodea"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "Partekatu feed hau"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "Partekatu abio multzo hau"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "Partekatu abio multzo hau eta lagundu jendea zure Bluesky komunitatean sartzen."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr "Partekatu hemen..."
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "Partekatu zure feed gogokoena!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "Partekatutako Hobespenen Probatzailea"
@@ -6685,7 +7270,7 @@ msgstr "Estekatutako webgunea partekatzen du"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Erakutsi"
@@ -6696,8 +7281,8 @@ msgstr "Erakutsi aukerazko testua"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Erakutsi hala ere"
@@ -6718,8 +7303,8 @@ msgstr "Erakutsi pertsonalizazio-aukerak"
msgid "Show hidden replies"
msgstr "Erakutsi erantzun ezkutuak"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "Erakutsi honelako gutxiago"
@@ -6727,14 +7312,14 @@ msgstr "Erakutsi honelako gutxiago"
msgid "Show list anyway"
msgstr "Erakutsi zerrenda hala ere"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Erakutsi gehiago"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Erakutsi horrelako gehiago"
@@ -6752,7 +7337,7 @@ msgstr "Erakutsi post aipatuak"
msgid "Show replies"
msgstr "Erakutsi erantzunak"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "Erakutsi erantzunak honela"
@@ -6764,8 +7349,8 @@ msgstr "Erakutsi erantzunak hari gisa"
msgid "Show replies by people you follow before all other replies"
msgstr "Erakutsi jarraitzen duzun jendearen erantzunak gainerako erantzunen aurretik"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "Erakutsi erantzuna guztientzako"
@@ -6787,11 +7372,11 @@ msgstr "Erakutsi abisua"
msgid "Show warning and filter from feeds"
msgstr "Erakutsi feedetako abisua eta iragazkia"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr "Post hau noiz sortu zenari buruzko informazioa erakusten du"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr "Alda ditzakezun beste kontu batzuk erakusten ditu"
@@ -6809,8 +7394,8 @@ msgstr "Edukia erakusten du"
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr "Edukia erakusten du"
msgid "Sign in"
msgstr "Hasi saioa"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Hasi saioa {0} gisa"
@@ -6826,16 +7411,16 @@ msgstr "Hasi saioa {0} gisa"
msgid "Sign in as..."
msgstr "Hasi saioa honela..."
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr "Hasi saioa edo sortu kontua"
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "Hasi saioa edo sortu zure kontua elkarrizketan sartzeko!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "Hasi saioa edo erregistratu"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "Hasi saioa zerrendan ez dagoen kontuan"
@@ -6843,15 +7428,15 @@ msgstr "Hasi saioa zerrendan ez dagoen kontuan"
msgid "Sign in to Bluesky or create a new account"
msgstr "Hasi saioa Bluesky-n edo sortu kontu berri bat"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Amaitu saioa"
@@ -6859,8 +7444,8 @@ msgstr "Amaitu saioa"
msgid "Sign Out"
msgstr "Amaitu saioa"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "Saioa amaitu?"
@@ -6874,11 +7459,6 @@ msgstr "Saioa hasi behar da"
msgid "Signed in as @{0}"
msgstr "@{0} gisa hasi duzu saioa"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "Eman izena abio multzorik gabe"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Antzeko kontuak"
@@ -6896,12 +7476,21 @@ msgstr "Saltatu fluxu hau"
msgid "Smaller"
msgstr "Txikiagoa"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr "Gogorarazpena atzeratzen du"
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Software Garatzailea"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr "Zure egiaztapenetako batzuk baliogabeak dira."
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "Gustatuko litzaizukeen beste feed batzuk"
@@ -6909,23 +7498,31 @@ msgstr "Gustatuko litzaizukeen beste feed batzuk"
msgid "Some people can reply"
msgstr "Batzuek erantzun dezakete"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr "Norbaitek erreakzionatu du {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr "Norbaitek erreakzionatu du {0} {1}-i"
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Zerbait ez zegoen ondo salatzen saiatzen ari zaren datuekin. Mesedez, jarri laguntzarekin harremanetan."
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Zerbait gaizki joan da"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Arazoren bat izan da. Mesedez, saiatu berriro"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Arazoren bat izan da. Mesedez, saiatu berriro."
@@ -6934,16 +7531,16 @@ msgstr "Arazoren bat izan da. Mesedez, saiatu berriro."
msgid "Something went wrong!"
msgstr "Arazoren bat izan da!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr "Arazoren bat izan da. Mesedez, saiatu berriro."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "Zerbait gaizki? Jakinaraziguzu."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "Barkatu! Zure saioa iraungi da. Mesedez, hasi saioa berriro."
@@ -6978,34 +7575,39 @@ msgstr "Spama; gehiegizko aipamen edo erantzunak"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Kirolak"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr "Hasi elkarrizketa bat, eta hemen agertuko da."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Txat berria hasi"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "Hasi jendea gehitzen"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "Hasi jendea gehitzen!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Txat berria hasi {displayName}-rekin"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Abio Multzoa"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "{0}-ren abio multzoa"
@@ -7013,38 +7615,39 @@ msgstr "{0}-ren abio multzoa"
msgid "Starter pack by <0/>"
msgstr "<0/>-ren abio multzoa"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "Zure abio multzoa"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "Abio multzoa ez da zuzena"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "Abio Multzoak"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Abio multzoek zure gogoko feedak eta jendea zure lagunekin erraz partekatzeko aukera ematen dizu."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Egoera Orria"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "{0}/{1} urratsa"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "Biltegia garbitu da, aplikazioa berrabiarazi behar duzu orain."
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "Ipuin liburua"
@@ -7063,69 +7666,74 @@ msgstr "Bidali apelazioa"
msgid "Submit Appeal"
msgstr "Bidali Apelazioa"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr "Bidali salaketa"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Harpidetu"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "Harpidetu @{0}-ra etiketa hauek erabiltzeko:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "Harpidetu Etiketatzailera"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "Harpidetu etiketatzaile honetara"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "Harpidetu zerrenda honetara"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "Arrakasta!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
-msgstr "Iradokitako kontuak"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr "Behar bezala egiaztatu da"
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
+msgstr "Iradokitako Kontuak"
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Zuretzat proposatua"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Lizuna"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60
msgctxt "Name of app icon variant"
msgid "Sunrise"
-msgstr ""
+msgstr "Egunsentia"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70
msgctxt "Name of app icon variant"
msgid "Sunset"
-msgstr ""
+msgstr "Ilunabarra"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Laguntza"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Aldatu kontua"
@@ -7134,11 +7742,11 @@ msgstr "Aldatu kontua"
msgid "Switch Account"
msgstr "Kontua Aldatu"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "Kontuak aldatu"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr "Aldatu {0}-ra"
@@ -7149,9 +7757,9 @@ msgstr "Aldatu {0}-ra"
msgid "System"
msgstr "Sistema"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Sistemaren erregistroa"
@@ -7159,6 +7767,12 @@ msgstr "Sistemaren erregistroa"
msgid "Tags only"
msgstr "Etiketak soilik"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr "Ukitu testuinguru-menua ixteko"
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Sakatu baztertzeko"
@@ -7184,7 +7798,7 @@ msgstr "Teknologia"
msgid "Tell a joke!"
msgstr "Kontatu txantxa bat!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "Kontaiguzu zure buruari buruz pixka bat"
@@ -7192,17 +7806,17 @@ msgstr "Kontaiguzu zure buruari buruz pixka bat"
msgid "Tell us a little more"
msgstr "Kontaiguzu apur bat gehiago"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Baldintzak"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Zerbitzu-Baldintzak"
@@ -7230,7 +7844,11 @@ msgstr "Testu eremua"
msgid "Text input field"
msgstr "Testua idazteko eremua"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr "Eskerrik asko zure iritziagatik! Feedaren operadoreari bidali zaio."
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "Eskerrik asko! Zure helbide elektronikoa behar bezala egiaztatu da."
@@ -7242,7 +7860,7 @@ msgstr "Eskerrik asko. Zure salaketa bidali da."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Eskerrik asko, zure helbide elektronikoa behar bezala egiaztatu duzu. Leiho hau itxi dezakezu."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "Horrek honako hauek ditu:"
@@ -7250,10 +7868,10 @@ msgstr "Horrek honako hauek ditu:"
msgid "That handle is already taken."
msgstr "Handle hori dagoeneko hartua dago."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "Ezin izan da aurkitu abio multzo hori."
msgid "That's all, folks!"
msgstr "Hori da guztia, lagunok!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr "Hori da dena!"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "Kontua zurekin elkarreragin ahal izango du desblokeatu ondoren."
@@ -7282,7 +7900,7 @@ msgstr "Aplikazioa berrabiaraziko da"
msgid "The author of this thread has hidden this reply."
msgstr "Hari honen egileak erantzun hau ezkutatu du."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "Bluesky web aplikazioa"
@@ -7302,6 +7920,10 @@ msgstr "Ezagutu feeda"
msgid "The Discover feed now knows what you like"
msgstr "Ezagutu feedak badaki zer gustatzen zaizun"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr "Sartu duzun e-posta helbidea oraingo berbera da."
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Esperientzia hobea da aplikazioan. Deskargatu Bluesky orain eta utzi zenuen lekuan hartuko dugu berriro."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "Pribatutasun-politika <0/>-ra eraman da"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "Aukeratutako bideoa 50 MB baino handiagoa da."
+msgid "The selected video is larger than 100 MB."
+msgstr "Aukeratutako bideoa 100 MB baino handiagoa da."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "Zerbitzariak arazoak dituela dirudi. Mesedez, saiatu berriro une batzuk barru."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "Ikusten saiatzen ari zaren abio multzoa ez da zuzena. Horren ordez, abio multzo hau ezaba dezakezu."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr "Testuinguru-menuaren gaia"
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "Laguntza-inprimakia mugitu da. Laguntza behar baduzu, mesedez <0/> edo joan {HELP_DESK_URL} gurekin harremanetan jartzeko."
@@ -7367,15 +7994,15 @@ msgstr "Ez dago kontua desaktibatzeko denbora-mugarik, itzuli edonoiz."
msgid "There was an issue connecting to Tenor."
msgstr "Arazo bat izan da Tenor-era konektatzean."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "Arazo bat izan da zerbitzariarekin harremanetan jartzeko"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Arazo bat izan da zerbitzariarekin harremanetan jartzeko. Mesedez, egiaztatu Interneteko konexioa eta saiatu berriro."
@@ -7388,11 +8015,12 @@ msgstr "Arazo bat izan da zure zerbitzariarekin harremanetan jartzeko"
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Arazo bat izan da jakinarazpenak eskuratzean. Sakatu hemen berriro saiatzeko."
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Arazo bat izan da postak eskuratzean. Sakatu hemen berriro saiatzeko."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Arazo bat izan da zerrenda eskuratzean. Sakatu hemen berriro saiatzeko."
@@ -7400,12 +8028,12 @@ msgstr "Arazo bat izan da zerrenda eskuratzean. Sakatu hemen berriro saiatzeko."
msgid "There was an issue fetching your app passwords"
msgstr "Arazo bat izan da aplikazio pasahitzak eskuratzean"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Arazo bat izan da zure zerrendak eskuratzean. Sakatu hemen berriro saiatzeko."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "Arazo bat izan da zure zerbitzu informazioa eskuratzean"
@@ -7418,26 +8046,26 @@ msgstr "Arazo bat izan da feed hau kentzean. Egiaztatu Interneteko konexioa eta
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Arazo bat izan da zure salaketa bidaltzean. Mesedez, egiaztatu zure Interneteko konexioa."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "Arazo bat izan da feedak eguneratzean. Egiaztatu Interneteko konexioa eta saiatu berriro."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "Arazo bat egon da! {0}"
@@ -7445,10 +8073,10 @@ msgstr "Arazo bat egon da! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Arazo bat egon da. Mesedez, egiaztatu Interneteko konexioa eta saiatu berriro."
@@ -7469,6 +8097,14 @@ msgstr "Ezarpen hauek Jarraitzen feedari soilik aplikatzen zaizkio."
msgid "This {screenDescription} has been flagged:"
msgstr "{screenDescription} hau markatu da:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr "Kontu honek egiaztapen-marka bat du, iturri fidagarriek egiaztatu dutelako."
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr "Kontu honek egiaztapen saiakera bat edo gehiago ditu, baina une honetan ez dago egiaztatuta."
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "Kontu honen profila saioa hasitako erabiltzaileek bakarrik ikus dezakete."
@@ -7477,6 +8113,10 @@ msgstr "Kontu honen profila saioa hasitako erabiltzaileek bakarrik ikus dezakete
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 "Kontu hau zure moderazio-zerrenda batek edo gehiagok blokeatzen du. Desblokeatzeko, mesedez bisitatu zerrendak zuzenean eta kendu erabiltzaile hau."
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr "Ekintza hau edozein unetan desegin daiteke."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Apelazio hau <0>{sourceName}0> helbidera bidaliko da."
@@ -7510,14 +8150,22 @@ msgstr "Eduki hau ez dago erabilgarri inplikatutako erabiltzaileetako batek best
msgid "This content is not viewable without a Bluesky account."
msgstr "Eduki hau ezin da ikusi Bluesky konturik gabe."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Elkarrizketa ezabatuta edo desaktibatuta dagoen kontu batekin da. Sakatu aukerak ikusteko"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr "Helbide elektroniko hau zure kontuarekin lotuta dago dagoeneko."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "Ezaugarri hau beta-n dago. Biltegien esportazioei buruzko informazio gehiago irakur dezakezu <0>blog-argitalpen honetan0> ."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr "Ezaugarri hau ez dago erabilgarri aplikazioaren pasahitza erabiltzen duzun bitartean. Mesedez, hasi saioa zure pasahitz nagusiarekin."
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "Ezaugarri hau ez dago erabilgarri aplikazioaren pasahitza erabiltzen duzun bitartean. Mesedez, hasi saioa zure pasahitz nagusiarekin."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Feed hau hutsik dago! Baliteke erabiltzaile gehiago jarraitu behar izatea edo hizkuntza-ezarpenak doitzea."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Feed hau hutsik dago."
@@ -7540,7 +8188,7 @@ msgstr "Feed hau hutsik dago."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Feed hau jada ez dago sarean. <0>Ezagutu0> erakusten ari gara horren ordez."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "Handle hau erreserbatuta dago. Mesedez, saiatu beste bat."
@@ -7548,9 +8196,10 @@ msgstr "Handle hau erreserbatuta dago. Mesedez, saiatu beste bat."
msgid "This information is not shared with other users."
msgstr "Informazio hau ez da beste erabiltzaile batzuekin partekatzen."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "Hau garrantzitsua da inoiz zure posta elektronikoa aldatu edo pasahitza berrezarri behar baduzu."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr "Esteka hau ez da baliozkoa"
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "Etiketa hau egileak aplikatu du."
msgid "This label was applied by you."
msgstr "Etiketa hau zuk aplikatu duzu."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "Etiketatzaile honek ez du deklaratu zein etiketa argitaratzen dituen, eta baliteke aktibo ez egotea."
@@ -7576,7 +8225,7 @@ msgstr "<0>{0}0>-(e)k sortutako zerrenda honen izenak edo deskribapenak Bluesk
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr "Zuk sortutako zerrenda honen izenak edo deskribapenak Bluesky-ren komunitate-gidalerroak urratu ditzake."
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "Zerrenda hau hutsik dago."
@@ -7584,7 +8233,7 @@ msgstr "Zerrenda hau hutsik dago."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Moderazio-zerbitzu hau ez dago erabilgarri. Ikus behean xehetasun gehiagorako. Arazo honek jarraitzen badu, jarri gurekin harremanetan."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Post honek <0>{0}0>-n sortu dela dio, baina Bluesky-k <1>{1}1>-n ikusi zuen lehen aldiz."
@@ -7592,28 +8241,29 @@ msgstr "Post honek <0>{0}0>-n sortu dela dio, baina Bluesky-k <1>{1}1>-n iku
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr "Post honek hari mota ezezagun bat du. Baliteke zure aplikazioa zaharkituta egotea."
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "Post hau ezabatu da."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Post hau saioa hasitako erabiltzaileek soilik ikus dezakete. Saioa hasita ez dagoen jendearentzat ez da ikusgai egongo."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Post hau feed eta harietatik ezkutatuta egongo da. Hau ezin da desegin."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "Post honen egileak aipamenak desgaitu ditu."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Profil hau saioa hasitako erabiltzaileek soilik ikus dezakete. Saioa hasita ez dagoen jendearentzat ez da ikusgai egongo."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr "Erantzun hau zure hariaren beheko aldean ezkutuko atal batean ordenatuko da eta hurrengo erantzunen jakinarazpenak mututuko ditu, bai zuretzako bai besteentzako."
@@ -7621,10 +8271,14 @@ msgstr "Erantzun hau zure hariaren beheko aldean ezkutuko atal batean ordenatuko
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Zerbitzu honek ez du zerbitzu-baldintzarik edo pribatutasun-politikarik eman."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "Honek domeinu-erregistro bat sortu beharko luke hemen:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr "Erabiltzaile honek ez du bistaratzeko izenik, beraz, ezin da egiaztatu."
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "Erabiltzaile honek ez du jarraitzailerik."
@@ -7662,21 +8316,21 @@ msgstr "Erabiltzaile hau ez du inor jarraitzen."
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "Honek \"{0}\" ezabatuko du mutututa dauden hitzetatik. Geroago gehi dezakezu beti."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "Honek @{0} sarbide azkarreko zerrendatik kenduko du."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "Honek zure posta aipatutako post honetatik kenduko du erabiltzaile guztientzat, eta leku-marka batekin ordezkatuko du."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "Hariaren aukerak"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Hariaren hobespenak"
@@ -7684,8 +8338,8 @@ msgstr "Hariaren hobespenak"
msgid "Thread Preferences"
msgstr "Hariaren Hobespenak"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "Harikatua"
@@ -7693,7 +8347,7 @@ msgstr "Harikatua"
msgid "Threaded mode"
msgstr "Haridun modua"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Harien Hobespenak"
@@ -7705,14 +8359,15 @@ msgstr "Geratzen den denbora: {0, plural, other {# segundu}}"
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "Posta elektronikoaren 2FA metodoa desgaitzeko, mesedez egiaztatu helbide elektronikorako sarbidea duzula."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr "Zure posta elektronikoaren 2FA metodoa desgaitzeko, mesedez egiaztatu <0>{0}0>-ra sarbidea duzula"
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "Elkarrizketa bat salatzeko, mesedez salatu haren mezuetako bat elkarrizketa-pantailaren bidez. Horri esker, gure moderatzaileek zure arazoaren testuingurua ulertu ahal izango dute."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Bideoak Bluesky-ra kargatzeko, lehenik zure posta elektronikoa egiaztatu behar duzu."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "Nori bidali nahiko zenioke salaketa hau?"
@@ -7725,7 +8380,7 @@ msgstr "Gaur"
msgid "Toggle dropdown"
msgstr "Aldatu goitibeherako aukera"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "Aldatu helduentzako edukia gaitzeko edo desgaitzeko"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr "Soinua aktibatu/desaktibatzen du"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Joan gora"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "Gaia"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Itzuli"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "Joera"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "Joera Bideoak"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr "Konfiantza harremanetatik, komunitateetatik eta partekatutako testuinguruetatik sortzen da, beraz, <0>egiaztatzaile fidagarriak0> ere gaitzen ari gara: egiaztapena zuzenean jaulki dezaketen erakundeak."
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "Telebista"
msgid "Two-factor authentication (2FA)"
msgstr "Bi faktoreko autentifikazioa (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Idatzi nahi duzun erabiltzaile-izena"
@@ -7783,18 +8440,11 @@ msgstr "Idatzi nahi duzun erabiltzaile-izena"
msgid "Type your message here"
msgstr "Idatzi zure mezua hemen"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Mota:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Desblokeatu zerrenda"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Desmututu zerrenda"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "Ezin da konektatu. Mesedez, egiaztatu Interneteko konexioa eta saiatu berriro."
@@ -7809,7 +8459,7 @@ msgstr "Ezin da konektatu. Mesedez, egiaztatu Interneteko konexioa eta saiatu be
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Ezin da zure zerbitzuarekin harremanetan jarri. Mesedez, egiaztatu zure Interneteko konexioa."
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "Ezin da ezabatu"
@@ -7817,36 +8467,41 @@ msgstr "Ezin da ezabatu"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Desblokeatu"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Desblokeatu"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Desblokeatu kontua"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "Kontua Desblokeatu?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr "Desblokeatu zerrenda"
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Desegin berposta"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Desegin berposta ({0, plural, one {berpost #} other {# berpost}})"
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Jarraitzen utzi"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "{0} jarraitzen utzi"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "Utzi kontua jarraitzeari"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr "Erabiltzailea jarraitzeari uzten dio"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Zoritxarrez, harpidetutako etiketatzaileetako batek ere ez du onartzen salaketa mota hau."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr "Egiaztatzaile ezezaguna"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "Ez gogoko"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Ez gogoko ({0, plural, one {gogoko #} other {# gogoko}})"
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr "Desmututu"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Mututzea utzi"
@@ -7895,10 +8555,10 @@ msgstr "Mututzea utzi"
msgid "Unmute {tag}"
msgstr "{tag} ez mututu"
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "Desmututu kontua"
@@ -7906,8 +8566,12 @@ msgstr "Desmututu kontua"
msgid "Unmute conversation"
msgstr "Elkarrizketa ez mututu"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr "Desmututu zerrenda"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Haria ez mututu"
@@ -7915,38 +8579,47 @@ msgstr "Haria ez mututu"
msgid "Unmute video"
msgstr "Bideoa ez mututu"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Aingura kendu"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "Feedari aingura kendu"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr "Kendu aingura Feedari"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Aingura kendu hasieratik"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "Aingura kendu profiletik"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Moderazio zerrendari aingura kendu"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "{0}-ri aingura kendu Hasieratik"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Aingura kendu zure feedetatik"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr "Utzi e-posta bidezko gogorarazpena atzeratzeari"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Harpidetza kendu"
@@ -7955,7 +8628,7 @@ msgstr "Harpidetza kendu"
msgid "Unsubscribe from list"
msgstr "Harpidetza kendu zerrendatik"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Harpidetza kendu etiketatzaile honi"
@@ -7963,11 +8636,11 @@ msgstr "Harpidetza kendu etiketatzaile honi"
msgid "Unsubscribed from list"
msgstr "Zerrendatik harpidetza kenduta"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "Onartzen ez den bideo mota"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "Onartzen ez den bideo mota: {0}"
@@ -7987,49 +8660,60 @@ msgstr "Eguneratu"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Eguneratu <0>{displayName}0> Zerrendetan"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr "Eguneratu posta elektronikoa"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Eguneratu {domain}ra"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
+msgstr "Eguneratu zure posta elektronikoa"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
msgctxt "toast"
msgid "Updating quote attachment failed"
-msgstr ""
+msgstr "Ezin izan da eguneratu aipamenaren eranskina"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "Ezin izan da eguneratu erantzunen ikusgaitasuna"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "Eguneratzen..."
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Kargatu argazki bat ordez"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Kargatu testu-fitxategi bat hona:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Kargatu Kameratik"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Kargatu Fitxategietatik"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Kargatu Liburutegitik"
@@ -8042,7 +8726,7 @@ msgstr "Irudiak kargatzen..."
msgid "Uploading link thumbnail..."
msgstr "Estekaren miniatura kargatzen..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "Bideoa kargatzen..."
@@ -8050,22 +8734,22 @@ msgstr "Bideoa kargatzen..."
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Erabili aplikazioen pasahitzak beste Bluesky bezeroetan saioa hasteko, zure konturako edo pasahitzerako sarbide osoa eman gabe."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Erabili hornitzaile lehenetsia"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Erabili aplikazioko arakatzailea"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Erabili aplikazioko arakatzailea estekak irekitzeko"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Erabili nire arakatzaile lehenetsia"
@@ -8084,7 +8768,7 @@ msgstr "Honek erabiltzen du:"
#: src/components/dms/ReportDialog.tsx:324
msgctxt "toast"
msgid "User blocked"
-msgstr ""
+msgstr "Erabiltzailea blokeatuta"
#: src/components/moderation/ModerationDetailsDialog.tsx:71
#: src/lib/moderation/useModerationCauseDescription.ts:63
@@ -8119,15 +8803,15 @@ msgstr "{0}-ren erabiltzaile zerrenda"
msgid "User list by you"
msgstr "Zure erabiltzaile zerrenda"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "Erabiltzaile zerrenda sortua"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "Erabiltzaile zerrenda eguneratua"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8150,58 +8834,88 @@ msgstr "Nik jarraitzen ditudan erabiltzaileak"
msgid "Users in \"{0}\""
msgstr "\"{0}\"-n dauden erabiltzaileak"
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "Eduki edo profil hau gustoko duten erabiltzaileak"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr "Nik jarraitzen ditudan erabiltzaileak"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Balioa:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "Egiaztatutako helbide elektronikoa behar da"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr "Egiaztapena huts egin du, saiatu berriro."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr "Egiaztapen-ezarpenak"
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr "Egiaztapen-Ezarpenak"
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr "Bluesky-n egiaztapenek beste plataformetan baino modu desberdinean funtzionatzen dute. <0>Ikasi gehiago hemen.0>"
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr "Honek egiaztatuta:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr "Egiaztatu kontua"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr "Egiaztatu kodea"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Egiaztatu DNS erregistroa"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr "Egiaztatu e-posta"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr "Egiaztatu posta elektroniko kodea"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Egiaztatu posta elektronikoko elkarrizketa-koadroa"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Egiaztatu posta elektroniko berria"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Egiaztatu orain"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Egiaztatu testu-fitxategia"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr "Kontu hau egiaztatu?"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Egiaztatu zure posta elektronikoa"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Egiaztatu zure posta elektronikoa"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "{appVersion} bertsioa"
@@ -8214,7 +8928,7 @@ msgstr "Bideoa"
msgid "Video failed to process"
msgstr "Ezin izan da prozesatu bideoa"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr "Bideo Feeda"
@@ -8224,14 +8938,15 @@ msgstr "{0}-ren bideoa: {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Bideo-jokoak"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr "Bideoa geldirik dago"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr "Bideoa erreproduzitzen ari da"
@@ -8239,11 +8954,11 @@ msgstr "Bideoa erreproduzitzen ari da"
msgid "Video not found."
msgstr "Ez da bideoa aurkitu."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Bideo ezarpenak"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Bideoa kargatuta"
@@ -8251,31 +8966,32 @@ msgstr "Bideoa kargatuta"
msgid "Video: {0}"
msgstr "Bideoa: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "Bideoak"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
-msgstr ""
+msgstr "Bideoek 3 minutu baino gutxiago iraun behar dute"
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "Ikusi {0}-ren abatarra"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "Ikusi {0}-ren profila"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "Ikusi {displayName}-ren profila"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "Ikusi blokeatutako erabiltzailearen profila"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "Ikusi arazketa-sarrera"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Ikusi xehetasunak"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "Ikusi copyright-urraketa salatzeko xehetasunak"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Ikusi hari osoa"
@@ -8308,18 +9024,17 @@ msgstr "Ikusi etiketa hauei buruzko informazioa"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "Ikusi gehiago"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Ikusi profila"
@@ -8331,7 +9046,11 @@ msgstr "Ikusi abatarra"
msgid "View the labeling service provided by @{0}"
msgstr "Ikusi @{0}-k eskaintzen duen etiketa-zerbitzua"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr "Ikusi erabiltzaile honen egiaztapenak"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "Ikusi feed hau gogoko duten erabiltzaileak"
@@ -8339,11 +9058,11 @@ msgstr "Ikusi feed hau gogoko duten erabiltzaileak"
msgid "View video"
msgstr "Bideoa ikusi"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Ikusi zuk blokeatutako kontuak"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr "Ikusi post interakzio-ezarpen lehenetsiak"
@@ -8352,14 +9071,18 @@ msgstr "Ikusi post interakzio-ezarpen lehenetsiak"
msgid "View your feeds and explore more"
msgstr "Ikusi zure feedak eta arakatu gehiago"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Ikusi zure moderazio zerrendak"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "Ikusi zuk mutututako kontuak"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr "Ikusi zure egiaztapenak"
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "Edukia ohartarazi"
msgid "Warn content and filter from feeds"
msgstr "Edukia ohartarazi eta iragazi feedetatik"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr "Ikusi orain"
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "Ezin izan dugu etiketa horren emaitzarik aurkitu."
@@ -8400,7 +9128,7 @@ msgstr "Ezin izan dugu etiketa horren emaitzarik aurkitu."
msgid "We couldn't find any results for that topic."
msgstr "Ezin izan dugu gai horren emaitzarik aurkitu."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "Ezin izan dugu kargatu elkarrizketa hau"
@@ -8420,6 +9148,14 @@ msgstr "Oso ondo pasatzea espero dugu. Gogoratu, Bluesky hau da:"
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Zure jarraitzaileen postik gabe geratu gara. Hona hemen <0/>-ren azkena."
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr "Gutxienez bi interes hautatzea gomendatzen dugu."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Esteka bat duen mezu elektroniko bat bidali dugu <0>{0}0> helbidera. Egin klik gainean helbide elektronikoaren egiaztapen prozesua osatzeko."
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Ezin izan dugu zehaztu bideoak kargatzeko baimena duzun ala ez. Mesedez, saiatu berriro."
@@ -8428,7 +9164,7 @@ msgstr "Ezin izan dugu zehaztu bideoak kargatzeko baimena duzun ala ez. Mesedez,
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "Ezin izan ditugu kargatu zure jaiotze dataren hobespenak. Mesedez, saiatu berriro."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:428
msgid "We were unable to load your configured labelers at this time."
msgstr "Une honetan ezin izan ditugu kargatu konfiguratutako etiketatzaileak."
@@ -8440,20 +9176,28 @@ msgstr "Ezin izan gara konektatu. Mesedez, saiatu berriro zure kontua konfigurat
msgid "We will let you know when your account is ready."
msgstr "Zure kontua prest dagoenean jakinaraziko dizugu."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Esteka bat duen mezu elektroniko bat bidaliko dugu <0>{0}0> helbidera. Egin klik gainean helbide elektronikoaren egiaztapen prozesua osatzeko."
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "Hau erabiliko dugu zure esperientzia pertsonalizatzeko."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "Sare arazoak ditugu, saiatu berriro"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr "Bluesky-n egiaztapen-geruza berri bat sartzen ari gara — erraz ikusteko egiaztapen-marka bat."
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "Pozik gaude gurekin bat egin izanagatik!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Sentitzen dugu, baina ezin izan dugu zerrenda hau konpondu. Honek jarraitzen badu, jarri harremanetan zerrendaren sortzailearekin, @{handleOrDid}."
@@ -8461,11 +9205,11 @@ msgstr "Sentitzen dugu, baina ezin izan dugu zerrenda hau konpondu. Honek jarrai
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Sentitzen dugu, baina momentu honetan ezin izan ditugu kargatu zure mutututako hitzak. Mesedez, saiatu berriro."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Sentitzen dugu, baina ezin izan da bilaketa osatu. Mesedez, saiatu berriro minutu batzuk barru."
-#: src/view/com/composer/Composer.tsx:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Sentitzen dugu! Erantzuten ari zaren posta ezabatu da."
@@ -8474,7 +9218,7 @@ msgstr "Sentitzen dugu! Erantzuten ari zaren posta ezabatu da."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Sentitzen dugu! Ezin dugu aurkitu bilatzen ari zaren orria."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Sentitzen dugu! Hogei etiketatzailetara baino ezin duzu harpidetu, eta hogeiren mugara iritsi zara."
@@ -8494,16 +9238,16 @@ msgstr "Zeintzuk dira zure interesak?"
msgid "What do you want to call your starter pack?"
msgstr "Nola deitu nahi diozu zure abio multzoari?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "Zertaz ari da jendea posteatzen."
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "Zer da?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr "Egiaztapen-marka bat sakatzen duzunean, egiaztapena zein erakundek eman duten ikusiko duzu."
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "Zein hizkuntza erabiltzen dira post honetan?"
@@ -8520,14 +9264,18 @@ msgstr "Nork elkarreragin dezake post honekin?"
msgid "Who can reply"
msgstr "Nork erantzun dezake"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr "Nork egiaztatu dezake?"
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "Aiba!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr "Aiba! Joera bideoak kargatzeak huts egin du."
@@ -8574,11 +9322,11 @@ msgstr "Zergatik berrikusi behar da erabiltzaile hau?"
msgid "Write a message"
msgstr "Idatzi mezu bat"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Idatzi posta"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Idatzi zure erantzuna"
@@ -8588,11 +9336,16 @@ msgstr "Idatzi zure erantzuna"
msgid "Writers"
msgstr "Idazleak"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "Zerbitzariak DID ez zuzena erantzun du. Jasotakoa: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr "www.mylivestream.tv"
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Bai"
@@ -8601,15 +9354,15 @@ msgstr "Bai"
msgid "Yes, deactivate"
msgstr "Bai, desaktibatu"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Bai, ezabatu abio multzo hau"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Bai, kendu"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Bai, ezkutatu"
@@ -8625,14 +9378,31 @@ msgstr "Atzo"
msgid "You"
msgstr "Zu"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr "Egiaztatzaile fidagarria zara"
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
-msgstr ""
+msgstr "Kontua sortzen ari zara hemen"
#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
msgstr "Ilaran zaude."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr "Zuzenean zaude"
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr "Jada ez zaude zuzenean"
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr "Ez duzu baimenik zuzenean jartzeko"
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "Ezin dituzu bideoak kargatu."
@@ -8641,6 +9411,27 @@ msgstr "Ezin dituzu bideoak kargatu."
msgid "You are not following anyone."
msgstr "Ez zara inor jarraitzen ari."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr "Orain zuzenean zaude!"
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr "Egiaztatuta zaude"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr "Egiaztatuta zaude. Zure egiaztapen-egoera galduko duzu bistaratzeko izena aldatzen baduzu. <0>Ikasi gehiago.0>"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr "Egiaztatuta zaude. Zure egiaztapen-egoera galduko duzu erabiltzaile izena aldatzen baduzu. <0>Ikasi gehiago.0>"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr "Zure interesak edonoiz doi ditzakezu \"Edukia eta multimedia\" ezarpenetatik."
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr "Interakzio-ezarpen lehenetsiak ezar ditzakezu <0>Ezarpenak → Moderazio
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "Geroago eguneratu dezakezu hau zure ezarpenetan."
@@ -8682,7 +9472,7 @@ msgstr "Ez duzu jarraitzailerik."
msgid "You don't follow any users who follow @{name}."
msgstr "Ez duzu jarraitzen @{name}-k jarraitzen duen erabiltzailerik."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr "Ez daukazu txateatzeko eskaerarik oraingoz."
@@ -8736,24 +9526,24 @@ msgstr "Kontu hau mututu duzu."
msgid "You have muted this user"
msgstr "Erabiltzaile hau mututu duzu"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "Ez duzu elkarrizketarik oraindik. Hasi bat!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "Ez duzu feedik."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "Ez duzu zerrendarik."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Oraindik ez duzu konturik blokeatu. Kontu bat blokeatzeko, joan bere profilera eta hautatu \"Blokeatu kontua\" bere kontuko menuan."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Oraindik ez duzu mututu konturik. Kontu bat mututzeko, joan bere profilera eta hautatu \"Mututu kontua\" bere kontuko menuan."
@@ -8761,11 +9551,15 @@ msgstr "Oraindik ez duzu mututu konturik. Kontu bat mututzeko, joan bere profile
msgid "You have reached the end"
msgstr "Bukaerara iritsi zara"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr "Zure helbide elektronikoa behar bezala egiaztatu duzu. Leiho hau itxi dezakezu."
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Bideoak kargatzeko mugara iritsi zara aldi baterako. Mesedez, saiatu berriro geroago."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "Ez duzu oraindik abio multzorik sortu!"
@@ -8787,22 +9581,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Etiketa hauek apelatu ditzakezu akatsean jarri direla uste baduzu."
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "Gehienez {STARTER_PACK_MAX_SIZE} profil gehi ditzakezu"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr "Gehienez {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profil}} gehi ditzakezu"
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Gehienez 3 feed gehi ditzakezu"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "Gehienez 4 irudi hauta ditzakezu"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "Izena emateko 13 urte edo gehiago izan behar dituzu."
+msgid "You must be 13 years of age or older to create an account."
+msgstr "Kontua sortzeko 13 urte edo gehiago izan behar dituzu."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Gutxienez beste zazpi pertsona jarraitu behar dituzu abio multzo bat sortzeko."
@@ -8810,28 +9604,40 @@ msgstr "Gutxienez beste zazpi pertsona jarraitu behar dituzu abio multzo bat sor
msgid "You must grant access to your photo library to save a QR code"
msgstr "Zure argazki liburutegirako sarbidea eman behar duzu QR kodea gordetzeko"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "Zure argazki liburutegirako sarbidea eman behar duzu irudia gordetzeko."
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "Gutxienez etiketatzaile bat hautatu behar duzu salaketa baterako"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr "Zure e-posta helbidea egiaztatu behar duzu e-posta bidezko 2FA gaitu aurretik."
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "Aurretik @{0} desaktibatu zenuen."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr "Aplikazioa orain berrabiaraztea komeni da."
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr "Erreakzionatu duzu {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr "Erreakzionatu duzu {0} {1}-i"
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "Zure kontu guztietatik aterako zara."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "Aurrerantzean ez duzu hari honen jakinarazpenik jasoko"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Hari honen jakinarazpenak jasoko dituzu orain"
@@ -8839,23 +9645,23 @@ msgstr "Hari honen jakinarazpenak jasoko dituzu orain"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "\"Berrezarpen kodea\" duen mezu elektroniko bat jasoko duzu. Sartu kode hori hemen, eta ondoren sartu pasahitz berria."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "Zu: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Zu: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "Zu: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "Iradokitako erabiltzaileak eta feedak jarraituko dituzu zure kontua sortzen amaitzean!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "Iradokitako erabiltzaileak jarraituko dituzu kontua sortzen amaitzean!"
@@ -8867,7 +9673,7 @@ msgstr "Pertsona hauek eta beste {0} jarraituko dituzu"
msgid "You'll follow these people right away"
msgstr "Pertsona hauek jarraituko dituzu berehala"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "Mezu elektroniko bat jasoko duzu <0>{0}0> helbidean zu zarela egiaztatzeko."
@@ -8901,6 +9707,10 @@ msgstr "Jarraitzeko jendea aurkitu duzu"
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Zure feedaren amaierara iritsi zara! Bilatu jarraitzeko kontu gehiago."
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr "Eskaera kopuru maximoa gainditu duzu. Mesedez, saiatu berriro geroago."
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Bideoak kargatzeko eguneko mugara iritsi zara (byte gehiegi)"
@@ -8909,11 +9719,11 @@ msgstr "Bideoak kargatzeko eguneko mugara iritsi zara (byte gehiegi)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Bideoak kargatzeko eguneko mugara iritsi zara (bideo gehiegi)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Ikusteko bideorik gabe geratu zara. Agian momentu ona da atsedena hartzeko?"
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "Zure kontua"
@@ -8941,7 +9751,7 @@ msgstr "Zure kontua <0>Bluesky Sozial Zerbitzu-Baldintzak0> urratzen dituela i
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr "Zure apelazioa bidali da. Zure apelazioa onartzen bada, mezu elektroniko bat jasoko duzu."
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "Zure jaiotze-data"
@@ -8953,26 +9763,30 @@ msgstr "Zure arakatzaileak ez du bideo formatua onartzen. Mesedez, saiatu beste
msgid "Your chats have been disabled"
msgstr "Zure txatak desaktibatu dira"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "Zure aukera gordeko da, baina geroago alda daiteke ezarpenetan."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr "Zure aukera etorkizuneko esteketarako gogoratuko da. Edozein unetan alda dezakezu ezarpenetan."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "Zure oraingo handlea <0>{0}0> zuretzako automatikoki erreserbatuko da. Edozein momentutan berriro aukeratu dezakezu kontu honetatik."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr "Zure e-posta helbidea eguneratu da baina oraindik ez dago egiaztatuta. Jarraitzeko, egiaztatu zure e-posta berria."
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Zure helbide elektronikoa ez dirudi zuzena denik."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "Zure helbide elektronikoa eguneratu da baina ez da egiaztatu. Hurrengo urrats gisa, mesedez, egiaztatu zure posta elektroniko berria."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr "Zure helbide elektronikoa ez da oraindik egiaztatu. Mesedez, egiaztatu zure helbide elektronikoa Bluesky-ren funtzio guztiez gozatzeko."
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Zure helbide elektronikoa ez da oraindik egiaztatu. Gomendatzen dugun segurtasun-urrats garrantzitsua da."
@@ -8988,14 +9802,31 @@ msgstr "Zure jarraitzaileak"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Zure jarraitzen feeda hutsik dago! Jarraitu erabiltzaile gehiago zer gertatzen ari den ikusteko."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "Zure handle osoa <0>@{0}0> da"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr "Zure erabiltzaile-izen osoa <0>@{0}0> izango da"
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr "Zure interesak"
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr "Zure interesak eguneratu dira!"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr "Zure interesek gustatzen zaizuna aurkitzen laguntzen digute!"
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Zure mutututako hitzak"
@@ -9004,15 +9835,15 @@ msgstr "Zure mutututako hitzak"
msgid "Your password has been changed successfully!"
msgstr "Zure pasahitza ondo aldatu da!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr "Pasahitzak 8 karaktereko luzera izan behar du gutxienez."
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "Zure posta argitaratu da"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "Zure postak argitaratu dira"
@@ -9024,14 +9855,22 @@ msgstr "Zure postak, gogokoak eta blokeatuak publikoak dira. Mutututakoak pribat
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Zure profila, postak, feedak eta zerrendak ez dira ikusgai egongo beste Bluesky erabiltzaileentzat. Zure kontua edonoiz aktiba dezakezu saioa hasita."
-#: src/view/com/composer/Composer.tsx:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Zure erantzuna argitaratu da"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr "Zure salaketa <0>{0}0>-ra bidaliko da."
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Zure salaketa Bluesky Moderazio Zerbitzura bidaliko da"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr "Aukeratutako interesek gogoko duzun edukia zerbitzatzen laguntzen digute."
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr "Zure egiaztapenak"
diff --git a/src/locale/locales/fi/messages.po b/src/locale/locales/fi/messages.po
index eb132fde48..895f824921 100644
--- a/src/locale/locales/fi/messages.po
+++ b/src/locale/locales/fi/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: fi\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 03:35\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(aktiivinen)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(sisältää upotettua sisältöä)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(ei sähköpostiosoitetta)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {# uudelleenjulkaisu} other {# uudelleenjulkaisua}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# sekunti} other {# sekuntia}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -90,17 +90,17 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {seuraaja} other {seuraajaa}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {seurattu} other {seurattua}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {tykkäys} other {tykkäystä}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {tykkäys} other {tykkäystä}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {julkaisu} other {julkaisua}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {lainaus} other {lainausta}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {uudelleenjulkaisu} other {uudelleenjulkaisua}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr ""
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr ""
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0><1>tunnisteissa1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0><1>tekstissä ja tunnisteissa1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr ""
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} liittyi tällä viikolla"
@@ -139,11 +156,16 @@ msgstr "{0}/{1}"
msgid "{0} out of 50"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0} käyttäjää on käyttänyt tätä aloituspakettia!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr ""
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "Käyttäjän {0} profiilikuva"
@@ -175,7 +197,7 @@ msgstr "{0} min"
msgid "{0}s"
msgstr "{0} s"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, one {tunti} other {tuntia}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {minuutti} other {minuuttia}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} ja <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}}0> seurasivat sinua"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "{firstAuthorLink} ja <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}}0> tykkäsivät mukautetusta syötteestäsi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink} ja <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}}0> tykkäsivät julkaisustasi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} ja <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}}0> uudelleenjulkaisivat julkaisusi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} ja <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}}0> rekisteröityivät aloituspakettisi avulla"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} seurasi sinua"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} seurasi sinua takaisin"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "{firstAuthorLink} tykkäsi mukautetusta syötteestäsi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "{firstAuthorLink} tykkäsi julkaisustasi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} uudelleenjulkaisi julkaisusi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} rekisteröityi aloituspakettisi avulla"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} ja {additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} seurasivat sinua"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "{firstAuthorName} ja {additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} tykkäsivät mukautetusta syötteestäsi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "{firstAuthorName} ja {additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} tykkäsivät julkaisustasi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} ja {additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} uudelleenjulkaisivat julkaisusi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName} ja {additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} rekisteröityivät aloituspakettisi avulla"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} seurasi sinua"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} seurasi sinua takaisin"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "{firstAuthorName} tykkäsi mukautetusta syötteestäsi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "{firstAuthorName} tykkäsi julkaisustasi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} uudelleenjulkaisi julkaisusi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} rekisteröityi aloituspakettisi avulla"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} seurattua"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "Käyttäjälle {handle} ei voi viestiä"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr ""
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr ""
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -301,6 +404,34 @@ msgstr "{profileName} liittyi Blueskyhin {0} sitten"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} liittyi Blueskyhin aloituspaketin avulla {0} sitten"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr ""
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr ""
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr ""
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr ""
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr ""
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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>ja {2, plural, one {# muu} other {# muuta}} sisältyvät aloituspakettiisi"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {seuraaja} other {seuraajaa}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {seurattu} other {seurattua}}"
@@ -343,7 +474,7 @@ msgstr "<0>Kokeellinen:0> Kun tämä asetus on käytössä, saat vain vastaus-
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>Sinä0> ja<1> 1><2>{0} 2>sisällytte aloituspakettiisi"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Virheellinen käyttäjätunnus"
@@ -363,19 +494,28 @@ msgstr "30 päivää"
msgid "7 days"
msgstr "7 päivää"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr ""
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Tietoja"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr ""
@@ -385,40 +525,40 @@ msgid "Accept Request"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Saavutettavuus"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Saavutettavuusasetukset"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Tili"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "Tili estetty"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "Tiliä seurattu"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "Tili mykistetty"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
@@ -429,33 +569,37 @@ msgstr "Tili mykistetty"
msgid "Account Muted by List"
msgstr "Tili mykistetty listan perusteella"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Tilin valinnat"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Tili poistettu pikakäytöstä"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "Tilin esto poistettu"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "Tilin seuraaminen lopetettu"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
+msgstr "Tilin mykistys poistettu"
+
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Lisää"
@@ -473,8 +617,12 @@ msgstr "Lisää {displayName} aloituspakettiin"
msgid "Add a content warning"
msgstr "Lisää sisältövaroitus"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "Lisää käyttäjä tähän listaan"
@@ -485,7 +633,7 @@ msgstr "Lisää tili"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Lisää tili"
msgid "Add alt text"
msgstr "Lisää tekstivastine"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Lisää tekstivastine (valinnainen)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Lisää toinen tili"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Lisää toinen julkaisu"
@@ -518,8 +666,12 @@ msgstr "Lisää sovellussalasana"
msgid "Add App Password"
msgstr "Lisää sovellussalasana"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr ""
@@ -531,15 +683,23 @@ msgstr ""
msgid "Add muted words and tags"
msgstr "Lisää mykistettyjä sanoja ja tunnisteita"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Lisää uusi julkaisu"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Lisää käyttäjiä"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr ""
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Lisää suositellut syötteet"
@@ -552,27 +712,28 @@ msgstr "Lisää syötteitä aloituspakettiisi!"
msgid "Add the default feed of only people you follow"
msgstr "Lisää oletussyöte: vain seuraamasi käyttäjät"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Lisää seuraava DNS-tietue verkkotunnukseesi:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Lisää tämä syöte syötteisiisi"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "Lisää listoihin"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Lisää listoihin"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Lisää syötteisiini"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Lisätty listaan"
@@ -581,22 +742,22 @@ msgstr "Lisätty listaan"
msgid "Added to my feeds"
msgstr "Lisätty syötteisiini"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Aikuinen"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Aikuissisältö"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "Aikuissisällön voi ottaa käyttöön vain selainsovelluksen <0>bsky.app0> kautta."
@@ -604,30 +765,35 @@ msgstr "Aikuissisällön voi ottaa käyttöön vain selainsovelluksen <0>bsky.ap
msgid "Adult content is disabled."
msgstr "Aikuissisältö on poissa käytöstä."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Aikuissisällön merkinnät"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Edistyneet"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr ""
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Kaikki"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "Kaikkia tilejä seurattiin!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr ""
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "Kaikki tallentamasi syötteet yhdessä paikassa."
@@ -671,10 +837,10 @@ msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Tekstivastine"
@@ -688,19 +854,18 @@ msgstr "Tekstivastine kuvailee kuvia sokeille ja heikkonäköisille käyttäjill
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "Tekstivastine katkaistaan. Rajoitus: {0} merkkiä."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr ""
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "Osoitteeseen {0} on lähetetty sähköpostiviesti. Siinä on vahvistuskoodi, jonka voit syöttää alle."
-#: src/view/com/modals/ChangeEmail.tsx:114
-msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
-msgstr "Aiempaan osoitteeseesi {0} on lähetetty sähköpostiviesti. Siinä on vahvistuskoodi, jonka voit syöttää alle."
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "Sinulle on lähetetty sähköpostiviesti! Syötä siinä oleva vahvistuskoodi alle."
@@ -716,7 +881,11 @@ msgstr "Tapahtui virhe"
msgid "An error occurred while compressing the video."
msgstr "Videota pakattaessa tapahtui virhe."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Aloituspakettiasi luotaessa tapahtui virhe. Haluatko yrittää uudelleen?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "Videota ladattaesa tapahtui virhe. Yritä uudelleen."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "QR-koodia tallennettaessa tapahtui virhe!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "Videota valittaessa tapahtui virhe"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "Yritettäessä seurata kaikkia tapahtui virhe"
@@ -746,12 +914,17 @@ msgstr "Yritettäessä seurata kaikkia tapahtui virhe"
msgid "An error occurred while uploading the video."
msgstr "Ladattaessa videota palveluun tapahtui virhe."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Ongelma, joka ei sisälly näihin vaihtoehtoihin"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "Chattia käynnistettäessä ilmeni ongelma"
@@ -761,13 +934,17 @@ msgstr "Yritettäessä avata chattia ilmenei ongelma"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Ilmeni ongelma. Yritä uudelleen."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "tapahtui tuntematon virhe"
@@ -790,6 +967,10 @@ msgstr "Eläimet"
msgid "Animated GIF"
msgstr "Animoitu GIF"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Epäsosiaalinen käytös"
msgid "Anybody can interact"
msgstr "Kaikki voivat olla vuorovaikutuksessa"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "Sovelluskuvake"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "Sovelluksen kieli"
@@ -817,7 +998,7 @@ msgstr "Sovellussalasana"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "Sovellukssalasana poistettu"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
@@ -836,7 +1017,7 @@ msgstr "Sovellussalasanojen nimien on oltava vähintään 4 merkkiä pitkiä"
msgid "App passwords"
msgstr "Sovellussalasanat"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Sovellussalasanat"
@@ -854,7 +1035,7 @@ msgstr "Valita merkinnästä ”{0}”"
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "Valitus lähetetty"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -872,10 +1053,10 @@ msgstr ""
msgid "Appeal this decision"
msgstr "Valita tästä päätöksestä"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Ulkoasu"
@@ -884,12 +1065,12 @@ msgstr "Ulkoasu"
msgid "Apply default recommended feeds"
msgstr "Käytä oletusarvoisia suositeltuja syötteitä"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Arkistoitu ajankohdasta {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Arkistoitu julkaisu"
@@ -897,15 +1078,15 @@ msgstr "Arkistoitu julkaisu"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Haluatko varmasti poistaa sovellussalasanan ”{0}”?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Haluatko varmasti poistaa tämän viestin? Viesti poistuu sinulta mutta ei toiselta keskusteluun osallistuneelta."
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "Haluatko varmasti poistaa tämän aloituspaketin?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "Haluatko varmasti hylätä tekemäsi muutokset?"
@@ -921,15 +1102,15 @@ msgstr "Haluatko varmasti poistua tästä keskustelusta? Viestisi poistuvat sinu
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Haluatko varmasti poistaa syötteen {0} syötteistäsi?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Haluatko varmasti poistaa tämän syötteistäsi?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "Haluatko varmasti hylätä tämän luonnoksen?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "Haluatko varmasti hylätä tämän julkaisun?"
@@ -937,20 +1118,25 @@ msgstr "Haluatko varmasti hylätä tämän julkaisun?"
msgid "Are you sure?"
msgstr "Oletko varma?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
-msgstr ""
+msgstr "Kirjoitatko kielellä <0>{suggestedLanguageName}0>?"
#: src/screens/Onboarding/index.tsx:23
#: src/screens/Onboarding/state.ts:95
msgid "Art"
msgstr "Taide"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Taiteellinen tai ei-eroottinen alastomuus."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "Vähintään 3 merkkiä"
@@ -963,12 +1149,12 @@ msgstr ""
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Automaattisen toiston valinnat on siirretty <0>Sisältö ja media -asetuksiin0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Toista videot ja GIF-animaatiot automaattisesti"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Toista videot ja GIF-animaatiot automaattisesti"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Takaisin"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr ""
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Ennen listan luomista sinun on vahvistettava sähköpostiosoitteesi."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Ennen julkaisun luomista sinun on vahvistettava sähköpostiosoitteesi."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Ennen aloituspaketin luomista sinun on vahvistettava sähköpostiosoitteesi."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "Ennen kuin voit viestiä toisen käyttäjän kanssa sinun on vahvistettava sähköpostiosoitteesi."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BEETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
+msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Syntymäpäivä"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Estä"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Estä tili"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "Estetäänkö tili?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Estä tilit"
@@ -1054,7 +1241,7 @@ msgstr ""
msgid "Block and/or delete this conversation"
msgstr ""
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Estä lista"
@@ -1062,7 +1249,7 @@ msgstr "Estä lista"
msgid "Block or report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "Estetäänkö nämä tilit?"
@@ -1079,21 +1266,21 @@ msgstr ""
msgid "Blocked"
msgstr "Estetty"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Estetyt tilit"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Estetyt tilit"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Estetyt tilit eivät voi vastata ketjuihisi, mainita sinua tai olla muuten vuorovaikutuksessa kanssasi."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 tilit eivät voi vastata ketjuihisi, mainita sinua tai olla muuten vuorovaikutuksessa kanssasi. Et näe niiden sisältöä, eivätkä ne näe sinun sisältöäsi."
@@ -1101,19 +1288,19 @@ msgstr "Estetyt tilit eivät voi vastata ketjuihisi, mainita sinua tai olla muut
msgid "Blocked post."
msgstr "Estetty julkaisu."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
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:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Estäminen on julkista. Estetyt tilit eivät voi vastata ketjuihisi, mainita sinua tai olla muuten vuorovaikutuksessa kanssasi."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Estäminen ei estä merkintöjen asettamista tilillesi, mutta se estää tätä tiliä vastaamasta ketjuihisi tai olemasta muuten vuorovaikutuksessa kanssasi."
-#: src/view/com/auth/SplashScreen.web.tsx:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blogi"
@@ -1122,7 +1309,7 @@ msgstr "Blogi"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky ei voi vahvistaa väitetyn päivämäärän oikeellisuutta."
@@ -1148,7 +1335,7 @@ msgstr "Bluesky on parempi kavereiden kanssa!"
msgid "Bluesky Social Terms of Service"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky valitsee joukon suositeltuja tilejä verkostosi käyttäjistä."
@@ -1156,6 +1343,10 @@ msgstr "Bluesky valitsee joukon suositeltuja tilejä verkostosi käyttäjistä."
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky ei näytä profiiliasi eikä julkaisujasi kirjautumattomille käyttäjille. Muut sovellukset eivät välttämättä noudata tätä pyyntöä. Tämä ei tee tilistäsi yksityistä."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr ""
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "Sumenna kuvat ja suodata syötteistä"
msgid "Books"
msgstr "Kirjat"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "Selaa lisää tilejä Explore-sivulla"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "Selaa lisää syötteitä Explore-sivulla"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Selaa lisää ehdotuksia"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "Selaa lisää ehdotuksia Explore-sivulla"
@@ -1214,20 +1405,26 @@ msgstr "Selaa julkaisuja tunnisteella {displayName}"
msgid "Browse starter pack {displayName}"
msgstr ""
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr ""
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "Selaa aihetta {displayName}"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Yritys"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "Käyttäjältä {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Käyttäjältä <0>{0}0>"
@@ -1243,44 +1440,51 @@ msgstr "Luomalla tilin hyväksyt <0>käyttöehdot0> ja <1>tietosuojakäytänn
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Luomalla tilin hyväksyt <0>käyttöehdot0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr ""
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Kamera"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Peruuta"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "Peruuta tilin poisto"
msgid "Cancel image crop"
msgstr "Peruuta kuvan rajaus"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Peruuta profiilin muokkaus"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Peruuta julkaisun lainaus"
@@ -1308,8 +1512,7 @@ msgstr "Peruuta julkaisun lainaus"
msgid "Cancel reactivation and sign out"
msgstr "Peruuta tilin käyttöönpalautus ja kirjaudu ulos"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Peruuta haku"
@@ -1317,24 +1520,23 @@ msgstr "Peruuta haku"
msgid "Cancels opening the linked website"
msgstr "Peruuttaa linkitetyn verkkosivuston avaamisen"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "Estetyn käyttäjän kanssa ei voi olla vuorovaikutuksessa"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Tekstitykset (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Tekstitykset ja tekstivastine"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Vaihda"
@@ -1347,46 +1549,41 @@ msgstr "Vaihda sovelluskuvake"
msgid "Change app icon to \"{0}\""
msgstr "Vaihda sovelluskuvakkeeksi ”{0}”"
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Vaihda sähköpostiosoite"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Vaihda sähköpostiosoite"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Vaihda käyttäjätunnus"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Vaihda sähköpostiosoitteeni"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Vaihda salasana"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "Vaihda julkaisun kieleksi {suggestedLanguageName}"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Vaihda sähköpostiosoitteesi"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Vaihda sähköpostiosoitteesi"
@@ -1394,20 +1591,20 @@ msgstr "Vaihda sähköpostiosoitteesi"
msgid "Changes app icon"
msgstr ""
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr ""
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Chatti"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
msgstr ""
@@ -1415,22 +1612,21 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "Chatti mykistetty"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr ""
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Chatin asetukset"
@@ -1441,10 +1637,10 @@ msgstr "Chatin asetukset"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "Chatti mykistetty"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr ""
@@ -1461,7 +1657,7 @@ msgstr "Tarkista sähköpostisi ja syötä saamasi kirjautumiskoodi tähän."
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Tarkista sähköpostisi ja syötä saamasi vahvistuskoodi alle:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Valitse verkkotunnuksen vahvistusmenetelmä"
@@ -1469,7 +1665,7 @@ msgstr "Valitse verkkotunnuksen vahvistusmenetelmä"
msgid "Choose Feeds"
msgstr "Valitse syötteet"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Valitse puolestani"
@@ -1477,10 +1673,6 @@ msgstr "Valitse puolestani"
msgid "Choose People"
msgstr "Valitse käyttäjät"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Valitse itse merkinnät, jotka koskevat julkaistavaa mediaa. Jos et valitse mitään, tämä julkaisu sopii kaikille yleisöille."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Valitse algoritmit, jotka ohjaavat mukautettuja syötteitäsi."
@@ -1493,27 +1685,31 @@ msgstr "Valitse tämä väri profiilikuvaksesi"
msgid "Choose your account provider"
msgstr ""
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Valitse oma aikajanasi! Yhteisön rakentamat syötteet auttavat löytämään mieleistäsi sisältöä."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Valitse salasanasi"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "Valitse käyttäjätunnuksesi"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Tyhjennä kaikki tallennustilan tiedot"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Tyhjennä kaikki tallennustilan tiedot (käynnistä uudelleen tämän jälkeen)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr ""
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Tyhjennä hakukysely"
@@ -1522,6 +1718,14 @@ msgstr "Tyhjennä hakukysely"
msgid "click here"
msgstr "napsauta tästä"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Napsauta poistaaksesi lainausjulkaisut käytöstä tältä julkaisulta."
@@ -1534,7 +1738,7 @@ msgstr "Napsauta ottaaksesi lainausjulkaisut käyttöön tälle julkaisulle."
msgid "Click to open tag menu for {tag}"
msgstr "Napsauta tästä avataksesi valikon tunnisteelle {tag}"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Napsauta tästä yrittääksesi uudelleen epäonnistunutta viestin lähetystä"
@@ -1546,24 +1750,34 @@ msgstr "Ilmasto"
msgid "Clip 🐴 clop 🐴"
msgstr "Kopoti 🐴 kopoti 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Sulje"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Sulje aktiivinen valintaikkuna"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Sulje alavalikko"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Sulje valintaikkuna"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr ""
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "Sulje emojinvalitsin"
@@ -1600,7 +1816,13 @@ msgstr "Sulje kuva"
msgid "Close image viewer"
msgstr "Sulje kuvankatselu"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr ""
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Sulje tämä valintaikkuna"
@@ -1608,8 +1830,12 @@ msgstr "Sulje tämä valintaikkuna"
msgid "Closes password update alert"
msgstr "Sulkee salasanan päivityshälytyksen"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr ""
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr ""
@@ -1617,11 +1843,11 @@ msgstr ""
msgid "Closes viewer for header image"
msgstr "Sulkee kuvan katseluohjelman"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Pienennä käyttäjäluettelo"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Pienentää tämän ilmoituksen käyttäjäluettelon"
@@ -1644,7 +1870,7 @@ msgstr "Komedia"
msgid "Comics"
msgstr "Sarjakuvat"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Yhteisöohjeet"
@@ -1653,23 +1879,23 @@ msgstr "Yhteisöohjeet"
msgid "Complete onboarding and start using your account"
msgstr "Suorita käyttöönotto loppuun ja aloita tilisi käyttö"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Suorita haaste loppuun"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Laadi uusi julkaisu"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "Laadi julkaisuja, joiden pituus on enintään {MAX_GRAPHEME_LENGTH} merkkiä"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr ""
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Laadi vastaus"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Pakataan videota…"
@@ -1681,23 +1907,17 @@ msgstr "Määritä sisällönsuodatusasetus luokalle {name}"
msgid "Configured in <0>moderation settings0>."
msgstr "Määritetään <0>moderointiasetuksissa0>."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Vahvista"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Vahvista muutos"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Vahvista sisällön kieliasetukset"
@@ -1706,26 +1926,27 @@ msgstr "Vahvista sisällön kieliasetukset"
msgid "Confirm delete account"
msgstr "Vahvista tilin poisto"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Vahvista ikäsi:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Vahvista syntymäaikasi"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Vahvistuskoodi"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Vahvistuskoodi"
@@ -1733,22 +1954,22 @@ msgstr "Vahvistuskoodi"
msgid "Connecting..."
msgstr "Yhdistetään…"
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Ota yhteys tukeen"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "Sisältö ja media"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Sisältö ja media"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Sisältö ja media"
@@ -1756,15 +1977,15 @@ msgstr "Sisältö ja media"
msgid "Content Blocked"
msgstr "Sisältö estetty"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Sisällönsuodattimet"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Sisällön kielet"
@@ -1785,16 +2006,16 @@ msgstr "Sisältövaroitus"
msgid "Content warnings"
msgstr "Sisältövaroitukset"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "Kontekstivalikon tausta-alue. Napsauta sulkeaksesi valikon."
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Jatka"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Jatka käyttäjänä {0} (nyt kirjautuneena)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Jatka ketjua…"
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Jatka seuraavaan vaiheeseen"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Keskustelu poistettu"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Keskustelu poistettu"
@@ -1826,16 +2047,17 @@ msgstr "Ruoanlaitto"
msgid "Copied"
msgstr "Kopioitu"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Ohjelmiston versio kopioitu leikepöydälle"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Kopioitu leikepöydälle"
@@ -1844,25 +2066,29 @@ msgstr "Kopioitu leikepöydälle"
msgid "Copied!"
msgstr "Kopioitu!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Kopioi"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr ""
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Kopioi sovellussalasana"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr ""
@@ -1871,57 +2097,69 @@ msgstr ""
msgid "Copy code"
msgstr "Kopioi koodi"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Kopioi DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Kopioi hosti"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Kopioi linkki"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Kopioi linkki"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Kopioi listan linkki"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Kopioi julkaisun linkki"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Kopioi viestin teksti"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Kopioi julkaisun teksti"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Kopioi QR-koodi"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "Kopioi TXT-tietueen arvo"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Tekijänoikeuskäytäntö"
@@ -1931,11 +2169,11 @@ msgstr "Tekijänoikeuskäytäntö"
msgid "Could not leave chat"
msgstr "Chatista ei voitu poistua"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "Syötettä ei voitu ladata"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "Listaa ei voitu ladata"
@@ -1947,28 +2185,28 @@ msgstr "Chattia ei voitu mykistää"
msgid "Could not process your video"
msgstr "Videota ei voitu käsitellä"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Luo"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "Luo QR-koodi aloituspaketille"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Luo aloituspaketti"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Luo aloituspaketti minulle"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Luo aloituspaketti minulle"
msgid "Create account"
msgstr "Luo tili"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Luo tili"
@@ -1985,11 +2223,16 @@ msgstr "Luo tili"
msgid "Create an account"
msgstr "Luo tili"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Luo sen sijaan profiilikuva"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Luo toinen"
@@ -1998,7 +2241,7 @@ msgstr "Luo toinen"
msgid "Create new account"
msgstr "Luo uusi tili"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Luo raportti: {0}"
@@ -2053,17 +2296,17 @@ msgstr "Tumma ulkoasu"
msgid "Dark theme"
msgstr "Tumma teema"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Syntymäaika"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Poista tili käytöstä"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Avaa moderoinnin vianetsintä"
@@ -2079,19 +2322,19 @@ msgstr "Oletus"
msgid "Default icons"
msgstr "Oletuskuvakkeet"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Poista"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Poista tili"
@@ -2107,19 +2350,19 @@ msgstr "Poista sovellussalasana"
msgid "Delete app password?"
msgstr "Poistetaanko sovellussalasana?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr ""
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Poista chatin deklaraatiotietue"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr ""
@@ -2127,19 +2370,19 @@ msgstr ""
msgid "Delete Conversation"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Poista itseltäni"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
-msgstr "Poista lista"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Poista viesti"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Poista viesti itseltäni"
@@ -2147,26 +2390,26 @@ msgstr "Poista viesti itseltäni"
msgid "Delete my account"
msgstr "Poista tilini"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Poista julkaisu"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Poista aloituspaketti"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "Poistetaanko aloituspaketti?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "Poistetaanko tämä lista?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "Poistetaanko tämä julkaisu?"
@@ -2174,8 +2417,8 @@ msgstr "Poistetaanko tämä julkaisu?"
msgid "Deleted"
msgstr "Poistettu"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Poistettu tili"
@@ -2183,48 +2426,48 @@ msgstr "Poistettu tili"
msgid "Deleted post."
msgstr "Poistettu julkaisu."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Kuvaus"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "Kuvaus on liian pitkä"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "Kuvaus on liian pitkä. Enimmäismerkkimäärä on {DESCRIPTION_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Kuvaileva tekstivastine"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Irrota lainaus"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "Irrotetaanko lainausjulkaisu?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
msgstr ""
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Kehittäjän valinnat"
@@ -2236,6 +2479,15 @@ msgstr "Valintaikkuna: säädä, kuka voi olla vuorovaikutuksessa tämän julkai
msgid "Dim"
msgstr "Himmeä"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr ""
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "Poista sähköpostiin perustuva kaksivaiheinen tunnistautuminen käytöstä"
@@ -2254,25 +2506,25 @@ msgstr "Poista tekstitykset käytöstä"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Poissa käytöstä"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Hylkää"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "Hylätäänkö muutokset?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "Hylätäänkö luonnos?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "Hylätäänkö julkaisu?"
@@ -2281,24 +2533,24 @@ msgstr "Hylätäänkö julkaisu?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Kiellä sovelluksia näyttämästä tiliäni kirjautumattomille käyttäjille"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Löydä uusia mukautettuja syötteitä"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Löydä uusia syötteitä"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Löydä uusia syötteitä"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Hylkää"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Hylkää virhe"
@@ -2306,6 +2558,10 @@ msgstr "Hylkää virhe"
msgid "Dismiss getting started guide"
msgstr "Hylkää aloitusopas"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr ""
@@ -2315,27 +2571,27 @@ msgstr ""
msgid "Display larger alt text badges"
msgstr "Näytä suuremmat tekstivastineen merkit"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Näyttönimi"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Näyttönimi"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "Näyttönimi on liian pitkä"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "Näyttönimi on liian pitkä. Enimmäismerkkimäärä on {DISPLAY_NAME_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "DNS-paneeli"
@@ -2347,37 +2603,45 @@ msgstr "Älä käytä tätä mykistyssanaa seuraamiisi käyttäjiin"
msgid "Does not include nudity."
msgstr "Ei sisällä alastomuutta."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "Ei ala yhdysviivalla eikä lopu sellaiseen"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "Verkkotunnus vahvistettu!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Valmis"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Valmis"
msgid "Done{extraText}"
msgstr "Valmis{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr ""
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Kaksoisnapauta sulkeaksesi valintaikkunan"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr ""
@@ -2413,23 +2681,23 @@ msgstr "Raahaa tähän lisätäksesi kuvia"
msgid "Duration:"
msgstr "Kesto:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "esim. maija"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "esim. Maija Sukunimi"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "esim. Maija Mallikas"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "esim. maija.fi"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "esim. Taiteilija, koiraharrastaja ja innokas lukija."
@@ -2437,19 +2705,19 @@ msgstr "esim. Taiteilija, koiraharrastaja ja innokas lukija."
msgid "E.g. artistic nudes."
msgstr "Esim. taiteelliset alastonkuvat."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "esim. Loistavat kirjoittajat"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "esim. Roskapostittajat"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "esim. Julkaisijat, jotka osuvat maaliin aina."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "esim. Käyttäjät, jotka vastaavat toistuvasti mainoksilla."
@@ -2457,20 +2725,21 @@ 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 kerran. Saat lisää kutsukoodeja määräajoin."
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Muokkaa"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Muokkaa"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Muokkaa profiilikuvaa"
@@ -2478,31 +2747,41 @@ msgstr "Muokkaa profiilikuvaa"
msgid "Edit Feeds"
msgstr "Muokkaa syötteitä"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Muokkaa kuvaa"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Muokkaa vuorovaikutusasetuksia"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Muokkaa listan tietoja"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Muokkaa moderointilistaa"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Muokkaa syötteitäni"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Muokkaa profiiliani"
@@ -2515,23 +2794,23 @@ msgstr "Muokkaa käyttäjiä"
msgid "Edit post interaction settings"
msgstr "Muokkaa julkaisun vuorovaikutusasetuksia"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Muokkaa profiilia"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Muokkaa profiilia"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Muokkaa aloituspakettia"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Muokkaa käyttäjälistaa"
@@ -2539,15 +2818,15 @@ msgstr "Muokkaa käyttäjälistaa"
msgid "Edit who can reply"
msgstr "Muokkaa, kuka voi vastata"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Muokkaa näyttönimeäsi"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Muokkaa profiilisi kuvausta"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Muokkaa aloituspakettiasi"
@@ -2560,16 +2839,15 @@ msgstr "Koulutus"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "Joko listan tekijä on estänyt sinut tai sitten sinä olet estänyt listan tekijän."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "Sähköpostiosoite"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "Sähköpostiin perustuva kaksivaiheinen tunnistautuminen poissa käytöstä"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
@@ -2583,19 +2861,16 @@ msgstr "Sähköpostiosoite"
msgid "Email Resent"
msgstr "Sähköpostiviesti lähetetty uudelleen"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "Sähköpostiosoite päivitetty"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
msgstr ""
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
@@ -2608,8 +2883,8 @@ msgstr "Upotuksen HTML-koodi"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Upota julkaisu"
@@ -2617,12 +2892,13 @@ msgstr "Upota julkaisu"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Upota tämä julkaisu verkkosivustollesi. Kopioi vain seuraava koodinpätkä ja liitä se sivustosi HTML-koodiin."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "Upotettu videosoitin"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Ota käyttöön"
@@ -2630,13 +2906,13 @@ msgstr "Ota käyttöön"
msgid "Enable {0} only"
msgstr "Ota vain {0} käyttöön"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Ota aikuissisältö käyttöön"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr "Ota sähköpostiin perustuva kaksivaiheinen tunnistautuminen käyttöön"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2660,30 +2936,30 @@ msgstr "Ota tekstitykset käyttöön"
msgid "Enable this source only"
msgstr "Ota käyttöön vain tämä lähde"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "Ota trendaavat aiheet käyttöön"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr ""
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Käytössä"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Syötteen loppu"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Varmista, että olet valinnut jokaisen tekstitystiedoston kielen."
@@ -2696,14 +2972,15 @@ msgstr "Syötä salasana"
msgid "Enter a word or tag"
msgstr "Syötä sana tai tunniste"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
msgid "Enter Code"
msgstr "Syötä koodi"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Syötä vahvistuskoodi"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
msgstr "Siirry koko näytön tilaan"
@@ -2712,7 +2989,7 @@ msgstr "Siirry koko näytön tilaan"
msgid "Enter the code you received to change your password."
msgstr "Syötä saamasi koodi vaihtaaksesi salasanasi."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Syötä verkkotunnus, jota haluat käyttää"
@@ -2720,20 +2997,20 @@ msgstr "Syötä verkkotunnus, jota haluat käyttää"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Syötä sähköpostiosoite, jota käytit tilisi luomiseen. Lähetämme sinulle ”palautuskoodin”, jotta voit asettaa uuden salasanan."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Syötä syntymäaikasi"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Syötä sähköpostiosoitteesi"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Syötä uusi sähköpostiosoitteesi ylle"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Syötä uusi sähköpostiosoitteesi alle."
@@ -2749,7 +3026,11 @@ msgstr "Syötä käyttäjätunnuksesi ja salasanasi"
msgid "Enters full screen"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Virhe"
@@ -2758,15 +3039,18 @@ msgstr "Virhe"
msgid "Error occurred while saving file"
msgstr "Tiedostoa tallennettaessa tapahtui virhe"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "Virhe captcha-vastauksen vastaanottamisessa."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Virhe:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Kaikilta"
@@ -2818,30 +3102,22 @@ msgstr "Keskeyttää kuvan rajausprosessin"
msgid "Exits image view"
msgstr "Poistuu kuvan katselutilasta"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Poistuu hakukyselyn syöttämisestä"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Laajenna tekstivastine"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Laajenna käyttäjäluettelo"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "Laajenna tai pienennä julkaisu, johon olit vastaamassa"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr ""
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "Odotettiin URIn resolvoituvan tietueeseen"
@@ -2864,6 +3140,10 @@ msgstr "Vanhentuu {0}"
msgid "Expires in {0}"
msgstr ""
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "Siveetön tai mahdollisesti häiritsevä media."
msgid "Explicit sexual images."
msgstr "Siveettömän seksuaaliset kuvat."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Vie tietoni"
@@ -2882,8 +3169,8 @@ msgstr "Vie tietoni"
msgid "Export My Data"
msgstr "Vie tietoni"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "Ulkoinen media"
@@ -2897,17 +3184,22 @@ msgstr "Ulkoinen media"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Ulkoinen media voi mahdollistaa verkkosivustoille tietojenkeruun sinusta ja laitteestasi. Tietoja ei lähetetä eikä pyydetä, ellet paina ”toista”-painiketta."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Ulkoisten median asetukset"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "Käyttäjätunnuksen vaihtaminen epäonnistui. Yritä uudelleen."
@@ -2915,7 +3207,7 @@ msgstr "Käyttäjätunnuksen vaihtaminen epäonnistui. Yritä uudelleen."
msgid "Failed to create app password. Please try again."
msgstr "Sovellussalasanan luominen epäonnistui. Yritä uudelleen."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr ""
@@ -2924,35 +3216,37 @@ msgstr ""
msgid "Failed to create starter pack"
msgstr "Aloituspaketin luominen epäonnistui"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "Listan luominen epäonnistui. Tarkista internetyhteytesi ja yritä uudelleen."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Viestin poistaminen epäonnistui"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "Julkaisun poistaminen epäonnistui, yritä uudelleen"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "Aloituspaketin poistaminen epäonnistui"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "Syötteiden asetusten lataaminen epäonnistui"
@@ -2964,17 +3258,19 @@ msgstr "GIF-animaatioiden lataaminen epäonnistui"
msgid "Failed to load past messages"
msgstr "Vanhojen viestien lataaminen epäonnistui"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "Ehdotettujen syötteiden lataaminen epäonnistui"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "Ehdotettujen seurattavien lataaminen epäonnistui"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr ""
@@ -2982,7 +3278,16 @@ msgstr ""
msgid "Failed to pin post"
msgstr "Julkaisun kiinnittäminen epäonnistui"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr ""
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Kuvan {0} tallentaminen epäonnistui"
@@ -2994,20 +3299,39 @@ msgstr "Ilmoitusasetusten tallentaminen epäonnistui, yritä uudelleen"
msgid "Failed to save settings. Please try again."
msgstr ""
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "Lähettäminen epäonnistui"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Valituksen lähettäminen epäonnistui. Yritä uudelleen."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "Ketjun mykistäminen tai mykistyksen poistaminen epäonnistui, yritä uudelleen"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr ""
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "Syötteiden päivittäminen epäonnistui"
@@ -3022,20 +3346,24 @@ msgstr "Asetusten päivittäminen epäonnistui"
msgid "Failed to upload video"
msgstr "Videon lataaminen palveluun epäonnistui"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "Käyttäjätunnuksen vahvistaminen epäonnistui. Yritä uudelleen."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Syöte"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Syöte käyttäjältä {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "Syötteen valikko"
@@ -3043,26 +3371,26 @@ msgstr "Syötteen valikko"
msgid "Feed toggle"
msgstr "Syötteen vaihtokytkin"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Palaute"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "Palaute lähetetty!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Syötteet"
@@ -3070,13 +3398,13 @@ msgstr "Syötteet"
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 ohjelmointitaitoa. <0/> saadaksesi lisätietoa."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "Syötteet päivitetty!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "Syötteet, joista uskomme sinun pitävän."
@@ -3092,11 +3420,11 @@ msgstr "Tiedosto tallennettu onnistuneesti!"
msgid "Filter from feeds"
msgstr "Suodata syötteistä"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr ""
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr ""
@@ -3110,13 +3438,13 @@ msgstr "Viimeistely"
msgid "Find accounts to follow"
msgstr "Etsi tilejä seurattavaksi"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "Etsi käyttäjiä seurattavaksi"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
@@ -3148,11 +3476,11 @@ msgid "Flexible"
msgstr "Joustava"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Seuraa"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Seuraa"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Seuraa tiliä {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Seuraa käyttäjää {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "Seuraa 10:tä tiliä"
msgid "Follow 7 accounts"
msgstr "Seuraa 7:ää tiliä"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "Seuraa tiliä"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Seuraa kaikkia"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Seuraa takaisin"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Seuraa takaisin"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "Seuraa useampia tilejä, jotta saat yhteyden kiinnostuksen kohteisiisi ja voit rakentaa verkostoasi."
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "Seuraajana <0>{0}0>"
@@ -3224,7 +3544,7 @@ msgstr "Seuraajina <0>{0}0> ja <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Seuraajina <0>{0}0>, <1>{1}1> ja {2, plural, one {# muu} other {# muuta}}"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Tuntemasi käyttäjän @{0} seuraajat"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Tuntemasi seuraajat"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Seuratut"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "Seurataan käyttäjää {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Seurataan käyttäjää {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Seuratut-syötteen asetukset"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Seuratut-syötteen asetukset"
@@ -3301,6 +3617,10 @@ msgstr "Turvallisuussyistä et voi tarkastella tätä enää uudelleen. Jos kado
msgid "For the best experience, we recommend using the theme font."
msgstr "Parhaan käyttökokemuksen saavuttamiseksi suosittelemme käyttämään teemafonttia."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Ikuinen"
@@ -3327,7 +3647,7 @@ msgstr "Julkaisee usein ei-toivottua sisältöä"
msgid "From @{sanitizedAuthor}"
msgstr "Käyttäjältä @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Syötteestä <0/>"
@@ -3336,28 +3656,30 @@ msgstr "Syötteestä <0/>"
msgid "Gallery"
msgstr "Galleria"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Generoi aloituspaketti"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Näytä ohje"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "Aloita tästä"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr ""
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Aloita tästä"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Anna profiilillesi kasvot"
@@ -3366,17 +3688,17 @@ msgstr "Anna profiilillesi kasvot"
msgid "Glaring violations of law or terms of service"
msgstr "Räikeät lain tai käyttöehtojen rikkomukset"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Palaa takaisin"
@@ -3384,10 +3706,10 @@ msgstr "Palaa takaisin"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Palaa takaisin"
@@ -3408,7 +3730,27 @@ msgstr "Palaa kotinäkymään"
msgid "Go Home"
msgstr "Palaa kotinäkymään"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Siirry keskusteluun käyttäjän {0} kanssa"
@@ -3427,8 +3769,8 @@ msgstr "Siirry käyttäjän profiiliin"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Graafinen media"
@@ -3437,21 +3779,21 @@ msgstr "Graafinen media"
msgid "Half way there!"
msgstr "Puolivälissä!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Käyttäjätunnus"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "Käyttäjätunnus jo varattu. Kokeile toista."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "Käyttäjätunnus vaihdettu!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "Käyttäjätunnus liian pitkä. Kokeile lyhyempää."
@@ -3464,7 +3806,7 @@ msgstr "Haptiikka"
msgid "Harassment, trolling, or intolerance"
msgstr "Häirintä, trollaus tai suvaitsemattomuus"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Aihetunniste"
@@ -3472,19 +3814,24 @@ msgstr "Aihetunniste"
msgid "Hashtag {tag}"
msgstr "Aihetunniste {tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "Ongelmia?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Ohje"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Auta ihmisiä tietämään, ettet ole botti, lataamalla palveluun kuva tai luomalla profiilikuva."
@@ -3497,7 +3844,7 @@ msgstr "Tässä on sovellussalasanasi!"
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr ""
@@ -3509,18 +3856,17 @@ msgstr "Piilotettu lista"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Piilota"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Piilota"
@@ -3529,38 +3875,40 @@ msgstr "Piilota"
msgid "Hide customization options"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Piilota julkaisu minulta"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Piilota vastaus kaikilta"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Piilota vastaus minulta"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "Piilotetaanko tämä julkaisu?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "Piilotetaanko tämä vastaus?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Piilota trendaavat aiheet"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "Piilotetaanko trendaavat aiheet?"
@@ -3569,10 +3917,15 @@ msgstr "Piilotetaanko trendaavat aiheet?"
msgid "Hide trending videos?"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Piilota käyttäjäluettelo"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "Hmm, syötteen palvelin antoi virheellisen vastauksen. Ilmoita asiasta s
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Hmm, meillä on vaikeuksia löytää tätä syötettä. Se on ehkä poistettu."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Hmm, näiden tietojen lataamisessa vaikuttaa olevan vaikauksia. Katso lisätietoja alta. Jos ongelma jatkuu, ota yhteys meihin."
@@ -3610,15 +3963,15 @@ msgstr "Hmm, emme pystyneet lataamaan tätä moderointipalvelua."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Odottakaa! Annamme vähitellen pääsyn videoon, ja olet yhä odotusjonossa. Tarkista tilanne pian uudelleen!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Koti"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "Hosti:"
@@ -3627,34 +3980,33 @@ msgstr "Hosti:"
msgid "Hosting provider"
msgstr "Hostingyritys"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr ""
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "Kuumat vastaukset ensin"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "Kuinka haluat avata tämän linkin?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Minulla on koodi"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Minulla on koodi"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Minulla on vahvistuskoodi"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Minulla on oma verkkotunnus"
@@ -3667,22 +4019,30 @@ msgstr "Ymmärrän"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Jos tekstivastine on pitkä, laajentaa tai pienentää sen"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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ä aikuinen kotimaasi lakien mukaan, huoltajasi tai laillisen edustajasi on luettava nämä ehdot puolestasi."
-#: src/view/screens/ProfileList.tsx:758
+#: src/view/screens/ProfileList.tsx:765
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/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Jos sinulla on oma verkkotunnus, voit käyttää sitä käyttäjätunnuksenasi. Näin voit itse vahvistaa henkilöllisyytesi. <0>Lue lisää täältä.0>"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Jos poistat tämän julkaisun, et voi palauttaa sitä."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr ""
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Jos haluat vaihtaa salasanasi, lähetämme sinulle koodin vahvistaaksemme, että tämä on tilisi."
@@ -3704,9 +4064,22 @@ msgstr "Laiton ja kiireellinen"
msgid "Image"
msgstr "Kuva"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "Kuva tallennettu galleriaasi!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr ""
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr ""
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr ""
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "Sopimattomat viestit tai siveettömät linkit"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr ""
@@ -3752,15 +4125,11 @@ msgstr "Syötä salasana tilin poistoa varten"
msgid "Input the code which has been emailed to you"
msgstr "Syötä sinulle sähköpostitse lähetetty koodi"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "Syötä käyttäjätunnus tai sähköpostiosoite, jonka käytit rekisteröityessäsi"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Vuorovaikutusta rajoitettu"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr ""
@@ -3769,11 +4138,11 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Virheellinen kaksivaiheisen tunnistautumisen vahvistuskoodi."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Virheellinen käyttäjätunnus. Kokeile toista."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "Virheellinen tai ei-tuettu julkaisutietue"
@@ -3789,11 +4158,11 @@ msgstr "Virheellinen vahvistuskoodi"
msgid "Invite a Friend"
msgstr "Kutsu ystävä"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Kutsukoodi"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
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."
@@ -3805,7 +4174,7 @@ msgstr "Kutsukoodit: {0} saatavilla"
msgid "Invite codes: 1 available"
msgstr "Kutsukoodit: 1 saatavilla"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "Kutsu käyttäjiä tähän aloituspakettiin!"
@@ -3817,7 +4186,7 @@ msgstr "Kutsu kavereitasi seuraamaan suosikkisyötteitäsi ja -käyttäjiäsi"
msgid "Invites, but personal"
msgstr "Kutsuja mutta henkilökohtaisia"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "Se on oikein"
@@ -3825,19 +4194,19 @@ msgstr "Se on oikein"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Vain sinä olet nyt tässä! Lisää muita käyttäjiä aloituspakettiisi yllä olevalla haulla."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "Työpaikan tunnus: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Työpaikat"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Liity Blueskyhin"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "Tekijän merkitsemä."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Merkinnät"
@@ -3868,7 +4237,7 @@ msgstr "Merkinnät"
msgid "Labels added"
msgstr "Merkinnät lisätty"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "Merkinnät ovat käyttäjiä ja sisältöä koskevia huomioita. Niitä voidaan käyttää verkoston piilottamiseen, varoittamiseen ja luokitteluun."
@@ -3884,13 +4253,13 @@ msgstr "Sisältösi merkinnät"
msgid "Language selection"
msgstr "Kielen valinta"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Kieliasetukset"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Kielet"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Suurempi"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "Uusimmat"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "lue lisää"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Lue lisää"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Lue lisää Blueskysta"
@@ -3933,6 +4311,11 @@ msgstr "Lue lisää tähän sisältöön kohdistuvasta moderoinnista."
msgid "Learn more about this warning"
msgstr "Lue lisää tästä varoituksesta"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr ""
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "Poistutaan Blueskysta"
msgid "left to go."
msgstr "jäljellä."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Anna minun valita"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Vaalea"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "Tykkää"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Tykkää ({0, plural, one {# tykkäys} other {# tykkäystä}})"
@@ -4013,17 +4397,16 @@ msgstr "Tykkää 10 julkaisusta"
msgid "Like 10 posts to train the Discover feed"
msgstr "Tykkää 10 julkaisusta kouluttaaksesi Discover-syötettä"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Tykkää tästä syötteestä"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr ""
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Tykänneet"
@@ -4033,43 +4416,43 @@ msgstr "Tykänneet"
msgid "Liked By"
msgstr "Tykänneet"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Tykännyt {0, plural, one {# käyttäjä} other {# käyttäjää}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Tykännyt {likeCount, plural, one {# käyttäjä} other {# käyttäjää}}"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "Tykkäykset"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "Tämän julkaisun tykkäykset"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "Lineaarisesti"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Lista"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Listan kuvake"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "Lista estetty"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4084,44 +4467,44 @@ msgstr "Lista käyttäjältä <0/>"
msgid "List by you"
msgstr "Oma listasi"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "Lista poistettu"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
msgstr "Lista on piilotettu"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "Lista piilotettu"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "Lista mykistetty"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Listan nimi"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "Listan esto poistettu"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "Listan mykistys poistettu"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Listat"
@@ -4129,34 +4512,47 @@ msgstr "Listat"
msgid "Lists blocking this user:"
msgstr "Listat, jotka estävät tämän käyttäjän:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr ""
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr ""
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Lue lisää"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "Lataa lisää ehdotettuja syötteitä"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Lataa lisää ehdotettuja seurattavia"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Lataa uusia ilmoituksia"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Lataa uusia julkaisuja"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Ladataan…"
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Loki"
@@ -4164,12 +4560,12 @@ msgstr "Loki"
msgid "Logged-out visibility"
msgstr "Näkyvyys kirjautumattomana"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo käyttäjältä @sawaratsuki.bsky.social"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo käyttäjältä <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "Nähtävästi irrotit kaikki syötteesi. Älä kuitenkaan huoli, sillä
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Nähtävästi sinulta puuttuu seurattujen syöte. <0>Napsauta tästä lisätäksesi sellaisen.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "Tee minulle sellainen"
@@ -4201,18 +4601,22 @@ msgstr "Tee minulle sellainen"
msgid "Make sure this is where you intend to go!"
msgstr "Varmista, että olet menossa oikeaan paikkaan!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "Hallinnoi tallennettuja syötteitä"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Hallinnoi mykistettyjä sanoja ja tunnisteita"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr ""
@@ -4221,16 +4625,23 @@ msgstr ""
msgid "Mark as read"
msgstr "Merkitse luetuksi"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr ""
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Media, joka voi olla häiritsevää tai sopimatonta joillekin yleisöille."
@@ -4246,23 +4657,27 @@ msgstr "Mainituilta käyttäjiltä"
msgid "Mentions"
msgstr "Maininnat"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Valikko"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Lähetä viesti käyttäjälle {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Viesti poistettu"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Viesti poistettu"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr ""
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Viesti palvelimelta: {0}"
@@ -4276,7 +4691,11 @@ msgstr "Viestin syöttökenttä"
msgid "Message is too long"
msgstr "Viesti on liian pitkä"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr ""
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Viestit"
@@ -4295,10 +4714,10 @@ msgstr "Harhaanjohtava tili"
msgid "Misleading Post"
msgstr "Harhaanjohtava julkaisu"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Moderointi"
@@ -4320,22 +4739,22 @@ msgstr "Moderointilista käyttäjältä <0/>"
msgid "Moderation list by you"
msgstr "Oma moderointilistasi"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "Moderointilista luotu"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "Moderointilista päivitetty"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Moderointilistat"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Moderointilistat"
@@ -4343,11 +4762,11 @@ msgstr "Moderointilistat"
msgid "moderation settings"
msgstr "moderointiasetukset"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "Moderointitilat"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Moderointityökalut"
@@ -4356,7 +4775,7 @@ msgstr "Moderointityökalut"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Moderaattori on valinnut asettaa sisällölle yleisen varoituksen."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Lisää"
@@ -4365,9 +4784,9 @@ msgstr "Lisää"
msgid "More feeds"
msgstr "Lisää syötteitä"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Lisää valintoja"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "Tykätyimmät ensin"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Tykätyimmät vastaukset ensin"
@@ -4400,14 +4819,14 @@ msgstr "Mykistä"
msgid "Mute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "Mykistä tili"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Mykistä tilit"
@@ -4420,11 +4839,11 @@ msgstr "Mykistä keskustelu"
msgid "Mute in:"
msgstr "Mykistä"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Mykistä lista"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "Mykistetäänkö nämä tilit?"
@@ -4452,26 +4871,26 @@ msgstr "Mykistä tämä sana vain tunnisteissa"
msgid "Mute this word until you unmute it"
msgstr "Mykistä tämä sana kunnes poistat sen mykistyksen"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Mykistä ketju"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Mykistä sanoja ja tunnisteita"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Mykistetyt tilit"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Mykistetyt tilit"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Mykistettyjen tilien julkaisut poistetaan syötteestäsi ja ilmoituksistasi. Mykistykset ovat täysin yksityisiä."
@@ -4479,11 +4898,11 @@ msgstr "Mykistettyjen tilien julkaisut poistetaan syötteestäsi ja ilmoituksist
msgid "Muted by \"{0}\""
msgstr "Mykistänyt ”{0}”"
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Mykistetyt sanat ja tunnisteet"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Mykistäminen on yksityistä. Mykistetyt tilit voivat edelleen olla vuorovaikutuksessa kanssasi, mutta et näe niiden julkaisuja etkä saa ilmoituksia niiltä."
@@ -4492,15 +4911,15 @@ msgstr "Mykistäminen on yksityistä. Mykistetyt tilit voivat edelleen olla vuor
msgid "My Birthday"
msgstr "Syntymäpäiväni"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "Syötteeni"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Nimi"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "Nimi on pakollinen"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Luonto"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "Siirry kohteeseen {0}"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "Siirtyy seuraavalle näytölle"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Siirtyy profiiliisi"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "Tarvitseeko sinun vaihtaa se?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "Tarvitseeko sinun ilmiantaa tekijänoikeusrikkomus?"
@@ -4547,30 +4971,43 @@ msgstr "Tarvitseeko sinun ilmiantaa tekijänoikeusrikkomus?"
msgid "Never lose access to your followers or data."
msgstr "Älä koskaan menetä pääsyä seuraajiisi tai tietoihisi."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "Ei se mitään, luo minulle käyttäjätunnus"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Uusi"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Uusi"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "Uusi chatti"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "Uusi käyttäjätunnus"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "Uusi lista"
@@ -4578,7 +5015,7 @@ msgstr "Uusi lista"
msgid "New messages"
msgstr "Uusia viestejä"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Uusi moderointilista"
@@ -4590,12 +5027,12 @@ msgstr "Uusi salasana"
msgid "New Password"
msgstr "Uusi salasana"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Uusi julkaisu"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "Uusi julkaisu"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Uusi julkaisu"
@@ -4613,19 +5050,20 @@ msgstr "Uusi julkaisu"
msgid "New user info dialog"
msgstr "Käyttäjän uusien tietojen valintaikkuna"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Uusi käyttäjälista"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "Uusimmat vastaukset ensin"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Uutiset"
@@ -4655,11 +5093,15 @@ msgstr "Seuraava kuva"
msgid "No app passwords yet"
msgstr "Ei vielä sovellussalasanoja"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "Ei DNS-paneelia"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "Esillä olevia GIF-kuvia ei löydy. Tenorissa saattaa olla ongelma."
@@ -4668,21 +5110,25 @@ msgstr "Esillä olevia GIF-kuvia ei löydy. Tenorissa saattaa olla ongelma."
msgid "No feeds found. Try searching for something else."
msgstr "Syötteitä ei löydy. Kokeile hakea jotain muuta."
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr ""
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "Ei vielä tykkäyksiä"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "Et enää seuraa käyttäjää {0}"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "Ei vielä viestejä"
@@ -4711,31 +5157,38 @@ msgstr "Ei vielä lainauksia"
msgid "No reposts yet"
msgstr "Ei vielä uudelleenjulkaisuja"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Ei tulosta"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "Ei tuloksia"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr ""
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "Tuloksia ei löytynyt"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "Ei tuloksia haulle ”{query}”"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "Ei tuloksia haulle {query}"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "Ei tuloksia haulle ”{search}”."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Ei keneltäkään"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "Kukaan ei ole vielä tykännyt tästä. Ehkä sinun pitäisi olla ensimmäinen!"
@@ -4775,19 +5227,15 @@ msgstr "Ei-seksuaalinen alastomuus"
msgid "Not followed by anyone you're following"
msgstr ""
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "Ei löydy"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "Ei juuri nyt"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Huomio jakamisesta"
@@ -4795,7 +5243,7 @@ msgstr "Huomio jakamisesta"
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 -verkkosivustolla, eivätkä muut sovellukset välttämättä noudata tätä asetusta. Sisältösi voi silti näkyä kirjautumattomille käyttäjille muissa sovelluksissa ja muilla sivustoilla."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Täällä ei mitään"
@@ -4803,7 +5251,7 @@ msgstr "Täällä ei mitään"
msgid "Notification filters"
msgstr "Ilmoitusten suodattimet"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Ilmoitusasetukset"
@@ -4820,11 +5268,11 @@ msgstr "Ilmoitusasäänet"
msgid "Notification Sounds"
msgstr "Ilmoitusasäänet"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Ilmoitukset"
@@ -4832,12 +5280,12 @@ msgstr "Ilmoitukset"
msgid "now"
msgstr "nyt"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Nyt"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Alastomuus"
@@ -4859,21 +5307,23 @@ msgstr "Voi ei!"
msgid "Oh no! Something went wrong."
msgstr "Voi ei! Jokin meni vikaan."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "Selvä"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "Vanhimmat vastaukset ensin"
@@ -4881,19 +5331,19 @@ msgstr "Vanhimmat vastaukset ensin"
msgid "on<0><1/><2><3/>2>0>"
msgstr "palvelussa<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Käyttöönoton nollaus"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "Ainakin yhdeltä GIF-animaatiolta puuttuu tekstivastine."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "Ainakin yhdeltä kuvalta puuttuu tekstivastine."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "Ainakin yhdeltä videolta puuttuu tekstivastine."
@@ -4905,11 +5355,11 @@ msgstr "Vain .jpg- ja .png-tiedostoja tuetaan"
msgid "Only {0} can reply."
msgstr "Vain {0} voi vastata."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Sisältää vain kirjaimia, numeroita ja yhdysviivoja"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "Vain kuvatiedostoja tuetaan"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "Hups, jokin meni vikaan!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "Hups!"
@@ -4935,67 +5385,80 @@ msgstr "Hups!"
msgid "Open"
msgstr "Avoin"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "Avaa käyttäjän {name} profiilin pikavalikko"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Avaa profiilikuvan luontityökalu"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "Avaa keskustelun valinnat"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "Avaa alavalikko"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Avaa emojinvalitsin"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "Avaa syötteen tietonäkymä"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "Avaa syötteen valinnat"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr ""
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "Avaa linkki {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "Avaa viestin valinnat"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "Avaa moderoinnin vianetsintäsivu"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Avaa mykistettyjen sanojen ja tunnisteiden asetukset"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "Avaa julkaisun valinnat"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "Avaa aloituspaketin valikko"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Avaa storybook-sivu"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Avaa järjestelmäloki"
@@ -5015,19 +5478,19 @@ msgstr "Avaa valintaikkunan sen valitsemiseksi, kuka voi vastata tähän ketjuun
msgid "Opens additional details for a debug entry"
msgstr "Avaa vienetsintäkirjauksen lisätiedot"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Avaa laitteen kameran"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr ""
@@ -5039,7 +5502,7 @@ msgstr "Avaa editorin"
msgid "Opens device photo gallery"
msgstr "Avaa laitteen kuvagallerian"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr ""
@@ -5057,7 +5520,7 @@ msgstr "Avaa vaiheet olemassa olevaan Bluesky-tiliisi kirjautumiseksi"
msgid "Opens GIF select dialog"
msgstr "Avaa GIF-valintaikkunan"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr ""
@@ -5065,6 +5528,10 @@ msgstr ""
msgid "Opens list of invite codes"
msgstr "Avaa kutsukoodien luettelon"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Avaa salasanan palautuslomakkeen"
@@ -5073,12 +5540,12 @@ msgstr "Avaa salasanan palautuslomakkeen"
msgid "Opens the linked website"
msgstr "Avaa linkitetyn verkkosivun"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Avaa tämän profiilin"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Avaa videonvalitsimen"
@@ -5121,11 +5588,11 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Jokin muu"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Toinen tili"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Sivua ei löydy"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "Pysäytä"
msgid "Pause video"
msgstr "Pysäytä video"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "Käyttäjät"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "Käyttäjät, joita @{0} seuraa"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "Käyttäjät, jotka seuraavat tiliä @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "Tarvitaan käyttöoikeus kuvagalleriaan."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "Kuvagallerian käyttö estetty. Anna lupa järjestelmäasetuksissa."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr ""
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "Lemmikit"
msgid "Photography"
msgstr "Valokuvaus"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Aikuisille tarkoitetut kuvat."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "Kiinnitä syöte"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
msgstr ""
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Kiinnitä kotinäkymään"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Kiinnitä kotinäkymään"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Kiinnitä profiiliisi"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Kiinnitetty"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "Kiinnitetty {0} kotinäkymään"
@@ -5263,7 +5722,7 @@ msgstr "Kiinnitetty {0} kotinäkymään"
msgid "Pinned Feeds"
msgstr "Kiinnitetyt syötteet"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "Kiinnitetty syötteisiisi"
@@ -5302,24 +5761,28 @@ msgstr "Toistaa GIF-animaation"
msgid "Plays the video"
msgstr ""
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr ""
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Valitse käyttäjätunnuksesi."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Valitse salasanasi."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr ""
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Täydennä vahvistus-captcha, ole hyvä."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Vahvista sähköpostiosoitteesi ennen sen vaihtamista. Tämä on väliaikainen vaatimus siksi ajaksi kun sähköpostiosoitteen päivitystyökaluja lisätään, ja se poistetaan pian."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr ""
@@ -5335,19 +5798,41 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Anna tälle sovellussalasanalle uniikki nimi tai käytä satunnaisesti luotua."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Syötä mykistettäväksi kelpaava sana, tunniste tai fraasi"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr ""
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Syötä sähköpostiosoitteesi."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Syötä kutsukoodisi."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr ""
@@ -5381,24 +5866,25 @@ msgstr ""
msgid "Please sign in as @{0}"
msgstr "Kirjaudu sisään käyttäjänä @{0}"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Vahvista sähköpostiosoitteesi"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Politiikka"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr ""
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Porno"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Julkaise"
@@ -5408,32 +5894,32 @@ msgctxt "description"
msgid "Post"
msgstr "Julkaise"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Julkaise kaikki"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "Julkaissut {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "Julkaissut @{0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "Julkaisu poistettu"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Julkaisun lataaminen palveluun epäonnistui. Tarkista internetyhteytesi ja yritä uudelleen."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr ""
@@ -5455,7 +5941,7 @@ msgstr "Piilottamasi julkaisu"
msgid "Post interaction settings"
msgstr "Julkaisun vuorovaikutusasetukset"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr ""
@@ -5476,15 +5962,16 @@ msgstr "Julkaisua ei löydy"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "Julkaisu kiinnitetty"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "Julkaisu irrotettu"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Julkaisut"
@@ -5503,7 +5990,7 @@ msgstr "Mahdollisesti harhaanjohtava linkki"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "Asetus tallennettu"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -5524,7 +6011,7 @@ msgstr "Paina näyttääksesi tämän tilin seuraajat, joita seuraat myös itse"
msgid "Previous image"
msgstr "Edellinen kuva"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Ensisijainen kieli"
@@ -5537,31 +6024,31 @@ msgstr "Aseta seurattusi ensisijaisiksi"
msgid "Priority notifications"
msgstr "Etusijan ilmoitukset"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Yksityisyys"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "Yksityisyys ja turvallisuus"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Yksityisyys ja turvallisuus"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Tietosuojakäytäntö"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Käsitellään videota…"
@@ -5570,23 +6057,23 @@ msgstr "Käsitellään videota…"
msgid "Processing..."
msgstr "Käsitellään…"
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "profiili"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Profiili"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "Profiili päivitetty"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
@@ -5600,6 +6087,26 @@ msgstr "Julkisia, jaettavia listoja käyttäjistä, joita voi mykistää tai est
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "Julkisia, jaettavia listoja, joita voidaan käyttää syötteiden ohjaamiseen."
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr ""
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr ""
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr ""
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr ""
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "QR-koodi kopiooitu leikepöydelle!"
@@ -5612,25 +6119,25 @@ msgstr "QR-koodi ladattu!"
msgid "QR code saved to your camera roll!"
msgstr "QR-koodi tallennettu kuvagalleriaasi!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Lainaa julkaisua"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "Lainausjulkaisu liitettiin uudelleen"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "Lainausjulkaisu irrotettiin onnistuneesti"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "Lainausjulkaisut poissa käytöstä"
@@ -5642,39 +6149,48 @@ msgstr "Lainausasetukset"
msgid "Quotes"
msgstr "Lainaukset"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "Tämän julkaisun lainaukset"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Satunnainen (niin sanottu ”lähettäjän ruletti”)"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "Nopeusraja ylitettiin – olet yrittänyt vaihtaa käyttäjätunnustasi liian monta kertaa lyhyessä ajassa. Odota hetki ennen kuin yrität uudelleen."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "Liitä lainaus uudelleen"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr ""
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Palauta tilisi käyttöön"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Lue Blueskyn blogia"
@@ -5697,11 +6213,11 @@ msgstr ""
msgid "Reason:"
msgstr "Syy:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Viimeaikaiset haut"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "Suositellut"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "Yhdistä uudelleen"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Lataa keskustelut uudelleen"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Poista"
msgid "Remove {displayName} from starter pack"
msgstr "Poista {displayName} aloituspaketista"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr ""
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Poista tili"
@@ -5752,13 +6268,13 @@ msgstr "Poista tili"
msgid "Remove attachment"
msgstr "Poista liite"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Poista profiilikuva"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "Poista banneri"
@@ -5776,24 +6292,25 @@ msgstr "Poista syöte"
msgid "Remove feed?"
msgstr "Poistetaanko syöte?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Poista syötteistäni"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "Poistetaanko pikakäytöstä?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "Poista tallennetuista syötteistä"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr ""
@@ -5802,11 +6319,16 @@ msgstr ""
msgid "Remove image"
msgstr "Poista kuva"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Poista mykistyssana listastasi"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Poista profiili"
@@ -5814,12 +6336,12 @@ msgstr "Poista profiili"
msgid "Remove quote"
msgstr "Poista lainaus"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Poista uudelleenjulkaisu"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Poista tekstitystiedosto"
@@ -5827,6 +6349,21 @@ msgstr "Poista tekstitystiedosto"
msgid "Remove this feed from your saved feeds"
msgstr "Poista tämä syöte tallennetuista syötteistäsi"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr ""
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "Tekijän poistama"
@@ -5835,7 +6372,7 @@ msgstr "Tekijän poistama"
msgid "Removed by you"
msgstr "Poistamasi"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Poistettu listasta"
@@ -5845,18 +6382,17 @@ msgid "Removed from my feeds"
msgstr "Poistettu syötteistäni"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Poistettu tallennetuista syötteistä"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Poistettu syötteistäsi"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
msgstr ""
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
@@ -5868,7 +6404,7 @@ msgstr "Poistaa lainausjulkaisun"
msgid "Replace with Discover"
msgstr "Korvaa syötteellä Discover"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Vastaukset"
@@ -5880,12 +6416,13 @@ msgstr "Vastaaminen poissa käytöstä"
msgid "Replies to this post are disabled."
msgstr "Tähän julkaisuun vastaaminen on poissa käytöstä."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Vastaa"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Vastaa ({0, plural, one {# vastaus} other {# vastausta}})"
@@ -5907,86 +6444,86 @@ msgstr "Vastausasetukset"
msgid "Reply settings are chosen by the author of the thread"
msgstr "Vastausasetukset ovat ketjun aloittajan valitsemat"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "Vastausten järjestely"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Vastaa käyttäjälle <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Vastaa estettyyn julkaisuun"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "Vastaa julkaisuun"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Vastaa sinulle"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "Vastauksen näkyvyys päivitetty"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "Vastaus piilotettiin onnistuneesti"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Ilmianna"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "Ilmianna tili"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Ilmianna keskustelu"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "Ilmiannon valintaikkuna"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Ilmianna syöte"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
-msgstr "Ilmianna lista"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Ilmianna viesti"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Ilmianna julkaisu"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "Ilmianna aloituspaketti"
@@ -6030,25 +6567,26 @@ msgstr "Ilmianna tämä aloituspaketti"
msgid "Report this user"
msgstr "Ilmianna tämä käyttäjä"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Uudelleenjulkaise"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Uudelleenjulkaise"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Uudelleenjulkaise ({0, plural, one {# uudelleenjulkaisu} other {# uudelleenjulkaisua}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Uudelleenjulkaise tai lainaa julkaisua"
@@ -6056,27 +6594,27 @@ msgstr "Uudelleenjulkaise tai lainaa julkaisua"
msgid "Reposted By"
msgstr "Uudelleenjulkaisseet"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "{0} uudelleenjulkaisi"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "<0><1/>0> uudelleenjulkaisi"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "Uudelleenjulkaisit"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "Tämän julkaisun uudelleenjulkaisut"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "Pyydä muutosta"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr ""
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6088,11 +6626,11 @@ msgstr "Pyydä koodia"
msgid "Require alt text before posting"
msgstr "Edellytä tekstivastinetta ennen julkaisua"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr "Edellytä sähköpostikoodia tilillesi kirjautumiseen."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Vaaditaan tälle palveluntarjoajalle"
@@ -6100,13 +6638,19 @@ msgstr "Vaaditaan tälle palveluntarjoajalle"
msgid "Required in your region"
msgstr "Pakollinen alueellasi"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "Lähetä sähköpostiviesti uudelleen"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "Lähetä sähköpostiviesti uudelleen"
@@ -6123,8 +6667,8 @@ msgstr "Palautuskoodi"
msgid "Reset Code"
msgstr "Palautuskoodi"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "Nollaa käyttöönoton tila"
@@ -6141,16 +6685,16 @@ msgstr ""
msgid "Retries the last action, which errored out"
msgstr "Yrittää uudelleen viimeisintä toimintoa, joka epäonnistui"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "Yrittää uudelleen viimeisintä toimintoa, joka epäonnistui"
msgid "Retry"
msgstr "Yritä uudelleen"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr ""
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Palaa edelliselle sivulle"
@@ -6175,11 +6719,11 @@ msgstr "Palaa edelliselle sivulle"
msgid "Returns to home page"
msgstr "Palaa kotinäkymään"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "Palaa edelliselle sivulle"
@@ -6190,24 +6734,26 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Tallenna"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Tallenna"
@@ -6221,12 +6767,12 @@ msgstr "Tallenna syntymäpäivä"
msgid "Save changes"
msgstr "Tallenna muutokset"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Tallenna muutokset"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Tallenna kuva"
@@ -6234,16 +6780,16 @@ msgstr "Tallenna kuva"
msgid "Save image crop"
msgstr "Tallenna kuvan rajaus"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Tallenna uusi käyttäjätunnus"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "Tallenna QR-koodi"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Tallenna syötteisiini"
@@ -6251,16 +6797,12 @@ msgstr "Tallenna syötteisiini"
msgid "Saved Feeds"
msgstr "Tallennetut syötteet"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "Tallennettu kuvagalleriaasi"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "Tallennettu syötteisiisi"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "Tallentaa profiilisi muutokset"
@@ -6270,8 +6812,8 @@ msgstr "Tallentaa kuvan rajausasetukset"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "Tervehdi!"
@@ -6280,45 +6822,42 @@ msgstr "Tervehdi!"
msgid "Science"
msgstr "Tiede"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "Vieritä alkuun"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Haku"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "Hae nimellä tai kiinnostuksen kohteella"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "Hae syötteitä"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "Haku ”{interestsDisplayName}”{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Haku ”{query}”"
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "Haku ”{searchText}”"
@@ -6326,29 +6865,33 @@ msgstr "Haku ”{searchText}”"
msgid "Search for feeds that you want to suggest to others."
msgstr "Hae syötteitä, joita haluat ehdottaa toisille."
-#: src/view/screens/Search/Search.tsx:875
-msgid "Search for posts, users, or feeds"
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Hae käyttäjiä"
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr ""
+
+#: src/screens/Search/Shell.tsx:334
+msgid "Search for posts, users, or feeds"
+msgstr ""
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "Hae GIF-animaatioita"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Hae profiileja"
@@ -6356,16 +6899,20 @@ msgstr "Hae profiileja"
msgid "Search Tenor"
msgstr "Hae Tenorista"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Turvatarkistus vaaditaan"
@@ -6385,7 +6932,7 @@ msgstr ""
msgid "See #{tag} posts by user"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Katso Blueskyn työpaikat"
@@ -6405,6 +6952,10 @@ msgstr "Valitse väri"
msgid "Select account"
msgstr "Valitse tili"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Valitse profiilikuva"
@@ -6413,10 +6964,22 @@ msgstr "Valitse profiilikuva"
msgid "Select an emoji"
msgstr "Valitse emoji"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Valitse sisällön kielet"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr ""
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Valitse olemassa olevalta tililtä"
@@ -6433,15 +6996,15 @@ msgstr "Valitse GIF ”{0}”"
msgid "Select how long to mute this word for."
msgstr "Valitse, kuinka pitkään tämä sana mykistetään."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Valitse kieli…"
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Valitse kielet"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr ""
@@ -6449,6 +7012,10 @@ msgstr ""
msgid "Select moderator"
msgstr "Valitse moderaattori"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "Valitse emoji {emojiName} profiikuvaksesi"
msgid "Select the moderation service(s) to report to"
msgstr "Valitse moderointipalvelu(t), joille ilmiantaa"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Valitse video"
@@ -6470,23 +7037,24 @@ msgstr "Valitse video"
msgid "Select what content this mute word should apply to."
msgstr "Valitse, mitä sisältöä tämä mykistyssana koskee."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
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 tilaamiesi syötteiden sisältävän. Jos et valitse mitään, kaikki kielet näytetään."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Aseta syntymäaikasi"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "Valitse kiinnostuksen kohteesi alla olevista vaihtoehdoista"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "Valitse käännösten kieli syötteessäsi."
@@ -6498,19 +7066,17 @@ msgstr ""
msgid "Send a neat website!"
msgstr "Lähetä siisti verkkosivusto!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr "Lähetä vahvistus"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Lähetä vahvistussähköpostiviesti"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Lähetä vahvistussähköpostiviesti"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Lähetä sähköpostiviesti"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Lähetä sähköpostiviesti"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Lähetä palautetta"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Lähetä viesti"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr ""
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Lähetä julkaisu käyttäjälle…"
@@ -6544,17 +7114,20 @@ msgstr "Lähetä raportti"
msgid "Send report to {0}"
msgstr "Lähetä raportti palveluun {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Lähetä vahvistussähköpostiviesti"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Lähetä yksityisviestillä"
@@ -6570,7 +7143,7 @@ msgstr "Palvelimen osoite"
msgid "Set app icon to {0}"
msgstr "Aseta sovelluskuvakkeeksi {0}"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "Aseta syntymäaika"
@@ -6586,10 +7159,10 @@ msgstr "Määritä tilisi"
msgid "Sets email for password reset"
msgstr "Asettaa sähköpostiosoitteen salasanan palautusta varten"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Asetukset"
@@ -6598,7 +7171,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Erotiikka tai muu aikuisviihde."
@@ -6606,21 +7179,15 @@ msgstr "Erotiikka tai muu aikuisviihde."
msgid "Sexually Suggestive"
msgstr "Seksuaalisesti vihjaileva"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Jaa"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Jaa"
@@ -6633,15 +7200,19 @@ msgstr "Jaa siisti tarina!"
msgid "Share a fun fact!"
msgstr "Jaa hauska fakta!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Jaa kuitenkin"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "Jaa linkki"
@@ -6650,32 +7221,46 @@ msgstr "Jaa linkki"
msgid "Share Link"
msgstr "Jaa linkki"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "Jaa linkki -valintaikkuna"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Jaa QR-koodi"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "Jaa tämä syöte"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "Jaa tämä aloituspaketti"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "Jaa tämä aloituspaketti ja auta muita liittymään yhteisöösi Blueskyssa."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr ""
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "Jaa suosikkisyötteesi!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "Jaettujen asetusten testeri"
@@ -6685,7 +7270,7 @@ msgstr "Jakaa linkitetyn verkkosivun"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Näytä"
@@ -6696,8 +7281,8 @@ msgstr "Näytä tekstivastine"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Näytä silti"
@@ -6718,8 +7303,8 @@ msgstr ""
msgid "Show hidden replies"
msgstr "Näytä piilotetut vastaukset"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "Näytä vähemmän tällaista"
@@ -6727,14 +7312,14 @@ msgstr "Näytä vähemmän tällaista"
msgid "Show list anyway"
msgstr "Näytä lista silti"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Näytä lisää"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Näytä enemmän tällaista"
@@ -6752,7 +7337,7 @@ msgstr "Näytä lainausjulkaisut"
msgid "Show replies"
msgstr "Näytä vastaukset"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "Näytä vastaukset"
@@ -6764,8 +7349,8 @@ msgstr "Näytä vastaukset ketjuna"
msgid "Show replies by people you follow before all other replies"
msgstr "Näytä seuraamiesi käyttäjien vastaukset ennen muita vastauksia"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "Näytä vastaus kaikille"
@@ -6787,11 +7372,11 @@ msgstr "Näytä varoitus"
msgid "Show warning and filter from feeds"
msgstr "Näytä varoitus ja suodata syötteistä"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr ""
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr ""
@@ -6809,8 +7394,8 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr ""
msgid "Sign in"
msgstr "Kirjaudu sisään"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Kirjaudu sisään käyttäjänä {0}"
@@ -6826,16 +7411,16 @@ msgstr "Kirjaudu sisään käyttäjänä {0}"
msgid "Sign in as..."
msgstr "Kirjaudu sisään käyttäjänä…"
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr ""
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "Kirjaudu sisään tai luo tili osallistuaksesi keskusteluun!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "Kirjaudu sisään tai rekisteröidy"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "Kirjaudu tiliin, joka ei ole luettelossa"
@@ -6843,15 +7428,15 @@ msgstr "Kirjaudu tiliin, joka ei ole luettelossa"
msgid "Sign in to Bluesky or create a new account"
msgstr "Kirjaudu Blueskyhin tai luo uusi tili"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Kirjaudu ulos"
@@ -6859,8 +7444,8 @@ msgstr "Kirjaudu ulos"
msgid "Sign Out"
msgstr "Kirjaudu ulos"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "Kirjaudutaanko ulos?"
@@ -6874,11 +7459,6 @@ msgstr "Sisäänkirjautuminen vaaditaan"
msgid "Signed in as @{0}"
msgstr "Kirjautunut sisään käyttäjänä @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "Rekisteröidy ilman aloituspakettia"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Samankaltaisia tilejä"
@@ -6896,12 +7476,21 @@ msgstr "Ohita nämä vaiheet"
msgid "Smaller"
msgstr "Pienempi"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Ohjelmistokehitys"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "Muita syötteitä, joista saattaisit pitää"
@@ -6909,23 +7498,31 @@ msgstr "Muita syötteitä, joista saattaisit pitää"
msgid "Some people can reply"
msgstr "Jotkut voivat vastata"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Jokin meni vikaan"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Jokin meni vikaan, yritä uudelleen"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Jokin meni vikaan. Yritä uudelleen."
@@ -6934,16 +7531,16 @@ msgstr "Jokin meni vikaan. Yritä uudelleen."
msgid "Something went wrong!"
msgstr "Jokin meni vikaan!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr "Jokin meni vikaan. Yritä uudelleen."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "Onko jokin vialla? Kerro meille."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "Pahoittelut! Istuntosi on vanhentunut. Kirjaudu sisään uudelleen."
@@ -6978,34 +7575,39 @@ msgstr "Roskaposti; liialliset maininnat tai vastaukset"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Urheilu"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Aloita uusi chatti"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "Ala lisätä käyttäjiä"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "Ala lisätä käyttäjiä!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Aloita chatti käyttäjän {displayName} kanssa"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Aloituspaketti"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "Aloituspaketti käyttäjältä {0}"
@@ -7013,38 +7615,39 @@ msgstr "Aloituspaketti käyttäjältä {0}"
msgid "Starter pack by <0/>"
msgstr "Aloituspaketti käyttäjältä <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "Oma aloituspakettisi"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "Aloituspaketti on virheellinen"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "Aloituspaketit"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Aloituspakettien avulla voit jakaa helposti suosikkisyötteesi ja -käyttäjäsi kavareillesi."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Tilasivu"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "Vaihe {0}/{1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "Tallennustila tyhjennetty. Sinun on nyt käynnistettävä sovellus uudelleen."
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr ""
@@ -7063,46 +7666,51 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Tilaa"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "Tilaa @{0} käyttääksesi näitä merkintöjä:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "Tilaa merkitsijä"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "Tilaa tämä merkitsijä"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "Tilaa tämä lista"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "Onnistui!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
-msgstr "Ehdotetut tilit"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
+msgstr ""
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Ehdotuksia sinulle"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Vihjaileva"
@@ -7116,16 +7724,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Tuki"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Vaihda tiliä"
@@ -7134,11 +7742,11 @@ msgstr "Vaihda tiliä"
msgid "Switch Account"
msgstr "Vaihda tiliä"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr ""
@@ -7149,9 +7757,9 @@ msgstr ""
msgid "System"
msgstr "Järjestelmä"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Järjestelmäloki"
@@ -7159,6 +7767,12 @@ msgstr "Järjestelmäloki"
msgid "Tags only"
msgstr "Vain tunnisteissa"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Hylkää napauttamalla"
@@ -7184,7 +7798,7 @@ msgstr "Teknologia"
msgid "Tell a joke!"
msgstr "Kerro vitsi!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "Kerro hieman itsestäsi"
@@ -7192,17 +7806,17 @@ msgstr "Kerro hieman itsestäsi"
msgid "Tell us a little more"
msgstr "Kerro hieman lisää"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Ehdot"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Käyttöehdot"
@@ -7230,7 +7844,11 @@ msgstr ""
msgid "Text input field"
msgstr "Tekstikenttä"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "Kiitos! Sähköpostiosoitteesi on vahvistettu onnistuneesti!"
@@ -7242,7 +7860,7 @@ msgstr "Kiitos. Raporttisi on lähetetty."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Kiitos, olet vahvistanut sähköpostiosoitteesi onnistuneesti. Voit sulkea tämän valintaikkunan."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "Se sisältää seuraavaa:"
@@ -7250,10 +7868,10 @@ msgstr "Se sisältää seuraavaa:"
msgid "That handle is already taken."
msgstr "Tuo käyttätunnus on jo käytössä."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "Tätä aloituspakettia ei löydy."
msgid "That's all, folks!"
msgstr "Siinä kaikki, ihmiset!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "Tili voi olla vuorovaikutuksessa kanssasi, kun poistat eston."
@@ -7282,7 +7900,7 @@ msgstr "Sovellus käynnistyy uudelleen"
msgid "The author of this thread has hidden this reply."
msgstr "Ketjun aloittaja on piilottanut tämän vastauksen."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "Blueskyn selainsovellus"
@@ -7302,6 +7920,10 @@ msgstr "Discover-syöte"
msgid "The Discover feed now knows what you like"
msgstr "Discover-syöte tietää nyt, mistä pidät"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Kokemus on parempi sovelluksessa. Lataa Bluesky nyt, niin jatkamme siitä, mihin jäit."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "Tietosuojakäytäntö on siirretty kohtaan <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "Valittu video on suurempi kuin 50 Mt."
+msgid "The selected video is larger than 100 MB."
+msgstr "Valittu video on suurempi kuin 100 Mt."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "Palvelin näyttää kärsivän ongelmista. Yritä hetken kuluttua uudelleen."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "Aloituspaketti, jonka yritit näyttää, on virheellinen. Voit sen sijaan poistaa tämän aloituspaketin."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr ""
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "Tukilomake on siirretty. Jos tarvitset apua, <0/> tai käy osoitteessa {HELP_DESK_URL} ottaaksesi meihin yhteyden."
@@ -7367,15 +7994,15 @@ msgstr "Tilin käytöstä poistamiseen ei ole aikarajaa. Palaa takaisin milloin
msgid "There was an issue connecting to Tenor."
msgstr "Yhteyden muodostamisessa Tenoriin ilmeni ongelma."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "Yhteydenotossa palvelimeen ilmeni ongelma"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Yhteydenotossa palvelimeen ilmeni ongelma. Tarkista internetyhteytesi ja yritä uudelleen."
@@ -7388,11 +8015,12 @@ msgstr "Yhteydenotossa palvelimeen ilmeni ongelma"
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Ilmoitusten hakemisessa ilmeni ongelma. Napauta tästä yrittääksesi uudelleen."
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Julkaisujen hakemisessa ilmeni ongelma. Napauta tästä yrittääksesi uudelleen."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Listan hakemisessa ilmeni ongelma. Napauta tästä yrittääksesi uudelleen."
@@ -7400,12 +8028,12 @@ msgstr "Listan hakemisessa ilmeni ongelma. Napauta tästä yrittääksesi uudell
msgid "There was an issue fetching your app passwords"
msgstr "Sovellussalasanojesi hakemisessa ilmeni ongelma"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Listojesi hakemisessa ilmeni ongelma. Napauta tästä yrittääksesi uudelleen."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "Palvelutietojesi hakemisessa ilmeni ongelma"
@@ -7418,26 +8046,26 @@ msgstr "Tämän syötteen poistamisessa ilmeni ongelma. Tarkista internetyhteyte
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Raportin lähettämisessä ilmeni ongelma. Tarkista internetyhteytesi."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "Syötteidesi päivityksessä ilmeni ongelma. Tarkista internetyhteytesi ja yritä uudelleen."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "Ilmeni ongelma! {0}"
@@ -7445,10 +8073,10 @@ msgstr "Ilmeni ongelma! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Ilmeni ongelma. Tarkista internetyhteytesi ja yritä uudelleen."
@@ -7469,6 +8097,14 @@ msgstr "Nämä asetukset vaikuttavat vain Seuratut-syötteeseen."
msgid "This {screenDescription} has been flagged:"
msgstr "Tämä {screenDescription} on liputettu:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "Tämä tili on pyytänyt, että käyttäjät kirjautuvat sisään nähdäkseen profiilin."
@@ -7477,6 +8113,10 @@ msgstr "Tämä tili on pyytänyt, että käyttäjät kirjautuvat sisään nähd
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 "Tämä tili on estetty ainakin yhden moderointilistasi perusteella. Poistaaksesi eston käy suoraan listoissa ja poista tämä käyttäjä."
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Tämä valitus lähetetään kohteeseen <0>{sourceName}0>."
@@ -7510,14 +8150,22 @@ msgstr "Tämä sisältö ei ole saatavilla, koska toinen käyttäjistä on estä
msgid "This content is not viewable without a Bluesky account."
msgstr "Tämä sisältö ei ole nähtävissä ilman Bluesky-tiliä."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "Tämä ominaisuus on beetavaiheessa. Voit lukea lisää arkistojen viennistä <0>tästä blogijulkaisusta0>."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr ""
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "Tämä ominaisuus ei ole saatavilla sovellussalasanaa käytettäessä. Kirjaudu sisään pääsalasanallasi."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Tämä syöte on tyhjä! Sinun on ehkä seurattava useampia käyttäjiä tai säädettävä kieliasetuksiasi."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Tämä syöte on tyhjä."
@@ -7540,7 +8188,7 @@ msgstr "Tämä syöte on tyhjä."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Tämä syöte ei ole enää linjoilla. Näytämme sen sijaan syötteen <0>Discover0>."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "Tämä käyttäjätunnus on varattu. Kokeile toista."
@@ -7548,9 +8196,10 @@ msgstr "Tämä käyttäjätunnus on varattu. Kokeile toista."
msgid "This information is not shared with other users."
msgstr "Tätä tietoa ei jaeta muiden käyttäjien kanssa."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "Tämä on tärkeää, jos sinun on koskaan vaihdettava sähköpostiosoitteesi tai palautettava salasanasi."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr ""
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "Tämä merkintä on tekijän asettama."
msgid "This label was applied by you."
msgstr "Tämä merkintä on itse asettamasi."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "Tämä merkitsijä ei ole ilmoittanut, mitä merkintöjä se julkaisee, eikä välttämättä ole aktiivinen."
@@ -7576,7 +8225,7 @@ msgstr "Tämä lista – luojana <0>{0}0> – sisältää nimessään tai kuva
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr ""
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "Tämä lista on tyhjä."
@@ -7584,7 +8233,7 @@ msgstr "Tämä lista on tyhjä."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Tämä moderointipalvelu ei ole saatavilla. Katso lisätietoja alta. Jos ongelma jatkuu, ota yhteys meihin."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Tämä julkaisu väittää olevansa luotu <0>{0}0>, mutta ensi kerran se on nähty Blueskyssa <1>{1}1>."
@@ -7592,28 +8241,29 @@ msgstr "Tämä julkaisu väittää olevansa luotu <0>{0}0>, mutta ensi kerran
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "Tämä julkaisu on poistettu."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed 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/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Tämä julkaisu piilotetaan syötteistä ja ketjuista. Tätä ei voi kumota."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "Tämän julkaisun tekijä on poistanut lainausjulkaisut käytöstä."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Tämä profiili näkyy vain kirjautuneille käyttäjille. Se ei näy kirjautumattomille henkilöille."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr "Tämä vastaus sijoitetaan piilotettuun osaan ketjusi loppuun, ja ilmoitukset myöhemmistä vastauksista – niin omista kuin muidenkin – mykistetään."
@@ -7621,10 +8271,14 @@ msgstr "Tämä vastaus sijoitetaan piilotettuun osaan ketjusi loppuun, ja ilmoit
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öä."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "Tämän pitäisi luoda tietue verkkotunnukseen"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr ""
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "Tällä käyttäjällä ei ole yhtään seuraajaa."
@@ -7662,21 +8316,21 @@ msgstr "Tämä käyttäjä ei seuraa ketään."
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "Tämä poistaa sanan ”{0}” mykistyksistäsi. Voit lisätä sen takaisin myöhemmin."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "Tämä poistaa tilin @{0} pikakäyttöluettelosta."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "Tämä poistaa julkaisusi tästä lainausjulkaisusta kaikilta käyttäjiltä ja korvaa sen paikkamerkillä."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "Ketjun valinnat"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Ketjun asetukset"
@@ -7684,8 +8338,8 @@ msgstr "Ketjun asetukset"
msgid "Thread Preferences"
msgstr "Ketjun asetukset"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "Ketjuna"
@@ -7693,7 +8347,7 @@ msgstr "Ketjuna"
msgid "Threaded mode"
msgstr "Ketjunäkymä"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Ketjujen asetukset"
@@ -7705,14 +8359,15 @@ msgstr ""
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "Jotta voit poistaa sähköpostiin perustuvan kaksivaiheisen tunnistautumisen käytöstä, vahvista pääsysi sähköpostiosoitteeseen."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr ""
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "Jos haluat ilmiantaa keskustelun, ilmianna jokin sen viesteistä keskustelunäytön kautta. Tämä auttaa moderaattoreitamme ymmärtämään ongelmasi kontekstin."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Jotta voit ladata videoita Blueskyhin, sinun on vahvistettava sähköpostiosoitteesi."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "Kenelle haluaisit lähettää tämän raportin?"
@@ -7725,7 +8380,7 @@ msgstr "Tänään"
msgid "Toggle dropdown"
msgstr "Avaa tai sulje pudotusvalikko"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "Vaihda ottaaksesi aikuisille tarkoitetun sisällön käyttöön tai poistaaksesi sen käytöstä"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr ""
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Suosituimmat"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "Aihe"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Käännä"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "Trendaavat"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr ""
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr ""
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr ""
msgid "Two-factor authentication (2FA)"
msgstr "Kaksivaiheinen tunnistautuminen"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Kirjoita haluamasi käyttäjätunnus"
@@ -7783,18 +8440,11 @@ msgstr "Kirjoita haluamasi käyttäjätunnus"
msgid "Type your message here"
msgstr "Kirjoita viestisi tähän"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Tyyppi:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Poista listan esto"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Poista listan mykistys"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "Yhteyden muodostaminen ei onnistu. Tarkista internetyhteytesi ja yritä uudelleen."
@@ -7809,7 +8459,7 @@ msgstr "Yhteyden muodostaminen ei onnistu. Tarkista internetyhteytesi ja yritä
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Yhteyden muodostaminen palveluusi ei onnistu. Tarkista internetyhteytesi."
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "Poistaminen ei onnistu"
@@ -7817,36 +8467,41 @@ msgstr "Poistaminen ei onnistu"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Poista esto"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Poista esto"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Poista tilin esto"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "Poistetaanko tilin esto?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Kumoa uudelleenjulkaisu"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Kumoa uudelleenjulkaisu ({0, plural, one {# uudelleenjulkaisu} other {# uudelleenjulkaisua}})"
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Älä seuraa"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "Lopeta käyttäjän {0} seuraaminen"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "Lopeta tilin seuraaminen"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "Älä tykkää"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Älä tykkää ({0, plural, one {# tykkäys} other {# tykkäystä}})"
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr ""
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Poista mykistys"
@@ -7895,10 +8555,10 @@ msgstr "Poista mykistys"
msgid "Unmute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "Poista tilin mykistys"
@@ -7906,8 +8566,12 @@ msgstr "Poista tilin mykistys"
msgid "Unmute conversation"
msgstr "Poista keskustelun mykistys"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Poista ketjun mykistys"
@@ -7915,38 +8579,47 @@ msgstr "Poista ketjun mykistys"
msgid "Unmute video"
msgstr "Poista videon mykistys"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Irrota"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "Irrota syöte"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Irrota kotinäkymästä"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "Irrota profiilista"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Irrota moderointilista"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "Irrotettu {0} kotinäkymästä"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Irrotettu syötteistäsi"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Peruuta tilaus"
@@ -7955,7 +8628,7 @@ msgstr "Peruuta tilaus"
msgid "Unsubscribe from list"
msgstr "Peruuta listan tilaus"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Peruuta merkitsijän tilaus"
@@ -7963,11 +8636,11 @@ msgstr "Peruuta merkitsijän tilaus"
msgid "Unsubscribed from list"
msgstr "Listan tilaus peruutettu"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "Ei-tuettu videotyyppi"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "Ei-tuettu videotyyppi: {0}"
@@ -7987,49 +8660,60 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "Päivitä <0>{displayName}0> listoissa"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Päivitä verkkotunnukseen {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
-msgctxt "toast"
-msgid "Updating quote attachment failed"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
+msgctxt "toast"
+msgid "Updating quote attachment failed"
+msgstr "Lainauksen liitoksen päivittäminen epäonnistui"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "Vastauksen näkyvyyden päivittäminen epäonnistui"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "Päivitetään…"
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Lataa palveluun sen sijaan kuva"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Lataa tekstitiedosto osoitteeseen"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Lataa kamerasta"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Lataa tiedostoista"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Lataa kirjastosta"
@@ -8042,7 +8726,7 @@ msgstr "Ladataan kuvia palveluun…"
msgid "Uploading link thumbnail..."
msgstr "Ladataan linkin pikkukuvaa palveluun…"
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "Ladataan videota palveluun…"
@@ -8050,22 +8734,22 @@ msgstr "Ladataan videota palveluun…"
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Käytä sovellussalasanoja kirjautuaksesi muihin Bluesky-sovelluksiin antamatta niille täyttä pääsyä tiliisi tai salasanaasi."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Käytä oletustoimittajaa"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Käytä sovelluksen sisäistä selainta"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Avaa linkit sovelluksen sisäisellä selaimella"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Käytä oletusselaintani"
@@ -8119,15 +8803,15 @@ msgstr "Käyttäjälista käyttäjältä {0}"
msgid "User list by you"
msgstr "Oma käyttäjälistasi"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "Käyttäjälista luotu"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "Käyttäjälista päivitetty"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8150,58 +8834,88 @@ msgstr "Seuraamiltani käyttäjiltä"
msgid "Users in \"{0}\""
msgstr "Käyttäjiltä listassa ”{0}”"
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "Käyttäjät, jotka ovat tykänneet tästä sisällöstä tai profiilista"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Arvo:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "Vaaditaan vahvistettu sähköpostiosoite"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr ""
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr ""
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Vahvista DNS-tietue"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Vahvista sähköpostiosoite -valintaikkuna"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Vahvista uusi sähköpostiosoite"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Vahvista nyt"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Vahvista tekstitiedosto"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Vahvista sähköpostiosoitteesi"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Vahvista sähköpostiosoitteesi"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Versio {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr ""
msgid "Video failed to process"
msgstr "Videon käsitteleminen epäonnistui"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr ""
@@ -8224,14 +8938,15 @@ msgstr ""
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Videopelit"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr ""
@@ -8239,11 +8954,11 @@ msgstr ""
msgid "Video not found."
msgstr "Videota ei löydy."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Videon asetukset"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Video ladattu palveluun"
@@ -8251,31 +8966,32 @@ msgstr "Video ladattu palveluun"
msgid "Video: {0}"
msgstr ""
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "Videot"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "Näytä käyttäjän {0} profiilikuva"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "Näytä käyttäjän {0} profiili"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "Näytä käyttäjän {displayName} profiili"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "Näytä estetyn käyttäjän profiili"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "Näytä vianetsintäkirjaus"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Näytä lisätietoja"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "Näytä lisätietoja tekijänoikeusrikkomuksen ilmiantamisesta"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Näytä koko ketju"
@@ -8308,18 +9024,17 @@ msgstr "Näytä tietoja näistä merkinnöistä"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Näytä profiili"
@@ -8331,7 +9046,11 @@ msgstr "Näytä profiilikuva"
msgid "View the labeling service provided by @{0}"
msgstr "Näytä käyttäjän @{0} tarjoama merkintäpalvelu"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "Näytä tästä syötteestä tykänneet käyttäjät"
@@ -8339,11 +9058,11 @@ msgstr "Näytä tästä syötteestä tykänneet käyttäjät"
msgid "View video"
msgstr ""
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Näytä estämäsi tilit"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr ""
@@ -8352,14 +9071,18 @@ msgstr ""
msgid "View your feeds and explore more"
msgstr "Näytä syötteesi ja löydä lisää"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Näytä moderointilistasi"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "Näytä mykistämäsi tilit"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "Varoita sisällöstä"
msgid "Warn content and filter from feeds"
msgstr "Varoita sisällöstä ja suodata syötteistä"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr ""
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "Emme löytäneet tuloksia tälle aihetunnisteelle."
@@ -8400,7 +9128,7 @@ msgstr "Emme löytäneet tuloksia tälle aihetunnisteelle."
msgid "We couldn't find any results for that topic."
msgstr "Emme löytäneet tuloksia tästä aiheesta."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "Emme voineet ladata tätä keskustelua"
@@ -8420,6 +9148,14 @@ msgstr "Toivomme sinulle ihania hetkiä. Muista, että Bluesky on"
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Seurattusi julkaisut loppuivat tähän. Tässä ovat uusimmat syötteestä <0/>."
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Emme onnistuneet määrittämään, saatko ladata palveluun videoita. Yritä uudelleen."
@@ -8428,7 +9164,7 @@ msgstr "Emme onnistuneet määrittämään, saatko ladata palveluun videoita. Yr
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "Emme onnistuneet lataamaan syntymäaika-asetuksiasi. Yritä uudelleen."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:428
msgid "We were unable to load your configured labelers at this time."
msgstr "Emme tällä kertaa onnistuneet lataamaan määriteltyjä merkitsijöitäsi."
@@ -8440,20 +9176,28 @@ msgstr "Yhteyden muodostaminen ei onnistunut. Yritä uudelleen jatkaaksesi tilis
msgid "We will let you know when your account is ready."
msgstr "Ilmoitamme, kun tilisi on valmis."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "Käytämme tätä mukauttaaksemme kokemustasi."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "Meillä on verkko-ongelmia, yritä uudelleen"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr ""
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "Olemme innoissamme, että liityt joukkoomme!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Pahoittelemme, mutta emme onnistuneet resolvoimaan tätä listaa. Jos tämä jatkuu, ota yhteys listan tekijään: @{handleOrDid}."
@@ -8461,11 +9205,11 @@ msgstr "Pahoittelemme, mutta emme onnistuneet resolvoimaan tätä listaa. Jos t
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Pahoittelut, mutta emme tällä kertaa onnistuneet lataamaan mykistettyjä sanojasi. Yritä uudelleen."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Pahoittelut, mutta hakuasi ei voitu suorittaa loppuun. Yritä uudelleen muutaman minuutin kuluttua."
-#: src/view/com/composer/Composer.tsx:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Pahoittelut! Julkaisu, johon olet vastaamassa, on poistettu."
@@ -8474,7 +9218,7 @@ msgstr "Pahoittelut! Julkaisu, johon olet vastaamassa, on poistettu."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Pahoittelut! Emme löydä etsimääsi sivua."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Pahoittelut! Voit tilata vain kaksikymmentä merkitsijää, ja olet saavuttanut kahdenkymmenen rajasi."
@@ -8494,16 +9238,16 @@ msgstr "Mitkä ovat kiinnostuksenkohteesi?"
msgid "What do you want to call your starter pack?"
msgstr "Millä nimellä haluat kutsua aloituspakettiasi?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "Mistä käyttäjät julkaisevat."
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "Mitä kuuluu?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr ""
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "Mitä kieliä tässä julkaisussa käytetään?"
@@ -8520,14 +9264,18 @@ msgstr "Kuka voi olla vuorovaikutuksessa tämän julkaisun kanssa?"
msgid "Who can reply"
msgstr "Kuka voi vastata"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "Hupsista!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr ""
@@ -8574,11 +9322,11 @@ msgstr "Miksi tämä käyttäjä tulisi arvioida?"
msgid "Write a message"
msgstr "Kirjoita viesti"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Kirjoita julkaisu"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Kirjoita vastauksesi"
@@ -8588,11 +9336,16 @@ msgstr "Kirjoita vastauksesi"
msgid "Writers"
msgstr "Kirjoittajat"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "Palvelin palautti väärän DID:n. Vastaanotettiin {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Kyllä"
@@ -8601,15 +9354,15 @@ msgstr "Kyllä"
msgid "Yes, deactivate"
msgstr "Kyllä, poista käytöstä"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Kyllä, poista tämä aloituspaketti"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Kyllä, irrota"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Kyllä, piilota"
@@ -8625,7 +9378,11 @@ msgstr "Eilen"
msgid "You"
msgstr "Kirjautunut käyttäjä"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr ""
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
msgstr ""
@@ -8633,6 +9390,19 @@ msgstr ""
msgid "You are in line."
msgstr "Olet jonossa."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr ""
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr ""
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr ""
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "Sinun ei ole mahdollista ladata videoita palveluun."
@@ -8641,6 +9411,27 @@ msgstr "Sinun ei ole mahdollista ladata videoita palveluun."
msgid "You are not following anyone."
msgstr "Et seuraa ketään."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr ""
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "Voit päivittää tämän myöhemmin asetuksistasi."
@@ -8682,7 +9472,7 @@ msgstr "Sinulla ei ole yhtään seuraajaa."
msgid "You don't follow any users who follow @{name}."
msgstr "Et seuraa ketään, joka seuraa käyttäjää @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr ""
@@ -8736,24 +9526,24 @@ msgstr "Olet mykistänyt tämän tilin."
msgid "You have muted this user"
msgstr "Olet mykistänyt tämän käyttäjän"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "Sinulla ei ole vielä keskusteluja. Aloita sellainen!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "Sinulla ei ole syötteitä."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "Sinulla ei ole listoja."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Et ole estänyt vielä yhtään tiliä. Estääksesi tilin siirry hänen profiiliinsa ja valitse valikosta ”Estä tili”."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Et ole mykistänyt vielä yhtään tiliä. Mykistääksesi tilin siirry hänen profiiliinsa ja valitse valikosta ”Mykistä tili”."
@@ -8761,11 +9551,15 @@ msgstr "Et ole mykistänyt vielä yhtään tiliä. Mykistääksesi tilin siirry
msgid "You have reached the end"
msgstr "Olet päässyt loppuun"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr ""
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Olet väliaikaisesti saavuttanut videolatausten rajoituksen. Yritä myöhemmin uudelleen."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "Et ole luonut vielä aloituspakettia!"
@@ -8787,22 +9581,22 @@ 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:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "Voit lisätä enintään {STARTER_PACK_MAX_SIZE} profiilia"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Voit lisätä enintään 3 syötettä"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "Voit valita enintään 4 kuvaa"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-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."
+msgid "You must be 13 years of age or older to create an account."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Sinun on seurattava ainakin seitsemää muuta käyttäjää, jotta voit luoda aloituspaketin."
@@ -8810,28 +9604,40 @@ msgstr "Sinun on seurattava ainakin seitsemää muuta käyttäjää, jotta voit
msgid "You must grant access to your photo library to save a QR code"
msgstr "Sinun on myönnettävä pääsy kuvakirjastoosi tallentaaksesi QR-koodin"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "Sinun on myönnettävä pääsy kuvagalleriaasi tallentaaksesi kuvan."
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "Sinun on valittava raporttia varten ainakin yksi merkitsijä"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr ""
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "Poistit aiemmin käytöstä tilin @{0}."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "Sinut kirjataan ulos kaikista tileistäsi."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "Et saa enää ilmoituksia tästä ketjusta"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Saat nyt ilmoituksia tästä ketjusta"
@@ -8839,23 +9645,23 @@ msgstr "Saat nyt ilmoituksia tästä ketjusta"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Saat sähköpostiisi ”palautuskoodin”. Syötä koodi tähän, ja syötä sitten uusi salasanasi."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "Sinä: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Sinä: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "Sinä: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "Alat seurata ehdotettuja käyttäjiä ja syötteitä, kun olet saanut tilisi luomisen valmiiksi!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "Alat seurata ehdotettuja käyttäjiä, kun olet saanut tilisi luomisen valmiiksi!"
@@ -8867,7 +9673,7 @@ msgstr "Alat seurata näitä käyttäjiä ja {0} muuta"
msgid "You'll follow these people right away"
msgstr "Alat seurata näitä käyttäjiä välittömästi"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "Saat sähköpostia osoitteeseen <0>{0}0>, jotta voit vahvistaa henkilöllisyytesi."
@@ -8901,6 +9707,10 @@ msgstr "Olet löytänyt käyttäjiä seurattavaksi"
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Olet päässyt syötteesi loppuun! Etsi lisää tilejä seurattavaksi."
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Olet saavuttanut päiväkohtaisen videolatausten rajoituksen (liian monta tavua)"
@@ -8909,11 +9719,11 @@ msgstr "Olet saavuttanut päiväkohtaisen videolatausten rajoituksen (liian mont
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Olet saavuttanut päiväkohtaisen videolatausten rajoituksen (liian monta videota)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "Tilisi"
@@ -8941,7 +9751,7 @@ msgstr ""
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "Syntymäaikasi"
@@ -8953,26 +9763,30 @@ msgstr "Selaimesi ei tue tätä videotiedostomuotoa. Kokeile eri selainta."
msgid "Your chats have been disabled"
msgstr "Chattisi on poistettu käytöstä"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "Valintasi tallennetaan, mutta sen voi muuttaa myöhemmin asetuksista."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "Nykyinen käyttäjätunnuksesi <0>{0}0> pysyy automaattisesti sinulle varattuna. Voit vaihtaa siihen takaisin tältä tililtä milloin tahansa."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Sähköpostiosoitteesi on nähtävästi virheellinen."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "Sähköpostiosoitteesi on päivitetty, mutta sitä ei ole vielä vahvistettu. Seuraavana vaiheena vahvista uusi sähköpostiosoitteesi."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
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, jota suosittelemme."
@@ -8988,14 +9802,31 @@ 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/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "Koko tuleva käyttäjätunnuksesi on <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr "Koko tuleva käyttäjätunnuksesi on <0>@{0}0>"
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr ""
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Mykistämäsi sanat"
@@ -9004,15 +9835,15 @@ msgstr "Mykistämäsi sanat"
msgid "Your password has been changed successfully!"
msgstr "Salasanasi on vaihdettu onnistuneesti!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "Julkaisusi on julkaistu"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "Julkaisusi on julkaistu"
@@ -9024,14 +9855,22 @@ msgstr "Julkaisusi, tykkäyksesi ja estosi ovat julkisia. Mykistykset ovat yksit
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Profiilisi, julkaisusi, syötteesi ja listasi eivät enää näy muille Blueskyn käyttäjille. Voit palauttaa tilisi käyttöön milloin tahansa kirjautumalla sisään."
-#: src/view/com/composer/Composer.tsx:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Vastauksesi on julkaistu"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Raporttisi lähetetään Blueskyn moderointipalveluun"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr ""
diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po
index 51d55fb3f9..4a21a838d0 100644
--- a/src/locale/locales/fr/messages.po
+++ b/src/locale/locales/fr/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: fr\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 16:40\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(en cours)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(contient du contenu intégré)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(pas d’e-mail)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {# repost} other {# reposts}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# seconde} other {# secondes}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# élément non lu} other {# éléments non lus}}"
@@ -90,17 +90,17 @@ msgstr "{0, plural, one {# élément non lu} other {# éléments non lus}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# mois} other {# mois}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {abonné·e} other {abonné·e·s}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {abonnement} other {abonnements}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {a aimé} other {ont aimé}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {a aimé} other {ont aimé}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {post} other {posts}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citation} other {citations}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {repost} other {reposts}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, other {{1} posts}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "{0, plural, one {# personne a} other {# personnes ont}} utilisé ce kit de démarrage !"
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0>dans <1>les mots-clés1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>dans <1>le texte et les mots-clés1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr "{0} est en direct"
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr "{0} n’est pas une URL valide"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} personnes se sont inscrites cette semaine"
@@ -137,13 +154,18 @@ msgstr "{0} sur {1}"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
-msgstr ""
+msgstr "{0} sur 50"
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0} personnes ont utilisé ce kit de démarrage !"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "{0} a réagi avec {1}"
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "{0} a réagi avec {1} à {2}"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "Avatar de {0}"
@@ -175,7 +197,7 @@ msgstr "{0} min"
msgid "{0}s"
msgstr "{0} s"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# élément non lu} other {# éléments non lus}}"
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, one {heure} other {heures}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {minute} other {minutes}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}}0> vous ont suivi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}}0> ont aimé votre fil d’actu personnalisé"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}}0> ont aimé votre post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}}0> ont aimé votre repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}}0> ont retiré leurs vérifications de votre compte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}}0> ont republié votre post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}}0> ont republié votre repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}}0> se sont inscrits avec votre kit de démarrage"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}}0> ont vérifié votre compte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} vous a suivi·e"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} vous a suivi·e en retour"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "{firstAuthorLink} a aimé votre fil d’actu personnalisé"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "{firstAuthorLink} a aimé votre post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr "{firstAuthorLink} a aimé votre repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr "{firstAuthorLink} a retiré sa vérification de votre compte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} a republié votre post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr "{firstAuthorLink} a republié votre repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} s’est inscrit·e avec votre kit de démarrage"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr "{firstAuthorLink} a vérifié votre compte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} vous ont suivi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont aimé votre fil d’actu personnalisé"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont aimé votre post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont aimé votre repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}} ont retiré leurs vérifications de votre compte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont republié votre post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont republié votre repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} se sont inscrits avec votre kit de démarrage"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}} ont vérifié votre compte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} a suivi votre compte"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} a suivi votre compte en retour"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "{firstAuthorName} a aimé votre fil d’actu personnalisé"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "{firstAuthorName} a aimé votre post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr "{firstAuthorName} a aimé votre repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr "{firstAuthorName} a retiré sa vérification de votre compte"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} a republié votre post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr "{firstAuthorName} a republié votre repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorLink} s’est inscrit·e avec votre kit de démarrage"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr "{firstAuthorName} a vérifié votre compte"
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} abonnements"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "{handle} ne peut être contacté par message"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr "{hours, plural, one {# heure {minutesString}} other {# heures {minutesString}}}"
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr "{hours, plural, one {# heure} other {# heures}}"
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "{joinedAllTimeCount, plural, other {# personnes se sont}} inscrites !"
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr "{minutes, plural, one {# minute} other {# minutes}}"
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# élément non lu} other {# éléments non lus}}"
@@ -301,6 +404,34 @@ msgstr "{profileName} a rejoint Bluesky il y a {0}"
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}"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "il y a {type} h"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr "{userName} est un vérificateur de confiance"
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr "{userName} est vérifié"
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr "Vérifications de {userName}"
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "+ {computedTotal}"
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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:97
+#: src/view/shell/Drawer.tsx:116
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:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {abonnement} other {abonnements}}"
@@ -343,7 +474,7 @@ msgstr "<0>Expérimental :0> lorsque cette préférence est activée, vous ne
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>Vous0> et<1> 1><2>{0} 2>faites partie de votre kit de démarrage"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Pseudo invalide"
@@ -363,19 +494,28 @@ msgstr "30 jours"
msgid "7 days"
msgstr "7 jours"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "un message"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr "Une nouvelle forme de vérification"
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "À propos"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr "Accepter"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr "Accepter la demande de discussion"
@@ -385,37 +525,37 @@ msgid "Accept Request"
msgstr "Accepter la demande"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Accessibilité"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Paramètres d’accessibilité"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Compte"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
msgstr "Compte bloqué"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
msgstr "Compte suivi"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
msgstr "Compte masqué"
@@ -429,33 +569,37 @@ msgstr "Compte masqué"
msgid "Account Muted by List"
msgstr "Compte masqué par liste"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Options de compte"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Compte supprimé de l’accès rapide"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
msgstr "Compte débloqué"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
msgstr "Compte désabonné"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
msgstr "Compte réaffiché"
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+msgstr "Les comptes avec une coche bleue émaillée <0><1/>0> peuvent en vérifier d’autres. Ces vérificateurs de confiance sont sélectionnés par Bluesky."
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Ajouter"
@@ -473,8 +617,12 @@ 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:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr "Ajoute un statut « En direct » à votre profil. Si quelqu’un clique sur votre avatar, il pourra voir des informations concernant votre évènement en direct."
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "Ajouter un compte à cette liste"
@@ -485,7 +633,7 @@ msgstr "Ajouter un compte"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Ajouter un compte"
msgid "Add alt text"
msgstr "Ajouter un texte alt"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Ajouter un texte alt (facultatif)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Ajouter un autre compte"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Ajouter un autre post"
@@ -518,8 +666,12 @@ msgstr "Ajouter un mot de passe d’application"
msgid "Add App Password"
msgstr "Ajouter un mot de passe d’application"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr "Ajouter une réaction émoji"
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr "Ajouter plus de détails (facultatif)"
@@ -531,15 +683,23 @@ msgstr "Ajouter un mot à cacher avec les paramètres choisis"
msgid "Add muted words and tags"
msgstr "Ajouter des mots et des mots-clés masqués"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Ajouter un post"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Ajouter des personnes"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr "Ajouter des comptes à la liste"
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr "Ajouter une réaction"
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Ajouter les fils d’actu recommandés"
@@ -552,27 +712,28 @@ msgstr "Ajoutez des fils d’actu à votre kit de démarrage !"
msgid "Add the default feed of only people you follow"
msgstr "Ajouter le fil d’actu par défaut avec seulement les comptes que vous suivez"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Ajoutez l’enregistrement DNS suivant à votre domaine :"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Ajouter ce fil à vos fils d’actu"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "Ajouter à des listes"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Ajouter aux listes"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Ajouter à mes fils d’actu"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr "Ajouter le compte à la liste"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Ajouté à la liste"
@@ -581,22 +742,22 @@ msgstr "Ajouté à la liste"
msgid "Added to my feeds"
msgstr "Ajouté à mes fils d’actu"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr "Détails supplémentaires (300 caractères maximum)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Adulte"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Contenu pour adultes"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
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>."
@@ -604,30 +765,35 @@ 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/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Étiquettes de contenu adulte"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Avancé"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr "alice@example.com"
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Toutes"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "Tous les comptes ont été suivis !"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "Toutes les langues"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
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."
@@ -671,10 +837,10 @@ msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Texte alt"
@@ -688,19 +854,18 @@ msgstr "Le texte alt décrit les images pour les personnes aveugles et malvoyant
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "Le texte alt sera tronqué. Limite : {0} caractères."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr "Le texte alt sera tronqué. Limite : {MAX_ALT_TEXT, plural, one {{0} caractère.}other {{0} caractères.}}"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "Un e-mail a été envoyé à {0}. Il comprend un code de confirmation que vous pouvez saisir ici."
-#: src/view/com/modals/ChangeEmail.tsx:114
-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/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr "Un e-mail a été envoyé à votre adresse précédente, {currentEmail}. Il comprend un code de confirmation que vous pouvez saisir ici."
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "Un e-mail a été envoyé ! Entrez ci-dessous le code de confirmation présent dans l’e-mail."
@@ -716,7 +881,11 @@ msgstr "Une erreur s’est produite"
msgid "An error occurred while compressing the video."
msgstr "Une erreur s’est produite lors de la compression de la vidéo."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr "Une erreur s’est produite lors de la récupération du fil d’actu."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
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 ?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "Une erreur s’est produite lors du chargement de la vidéo. Veuillez réessayer."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: 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/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "Une erreur s’est produite lors de la sélection de la vidéo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "Une erreur s’est produite en essayant de suivre tous les comptes"
@@ -746,12 +914,17 @@ msgstr "Une erreur s’est produite en essayant de suivre tous les comptes"
msgid "An error occurred while uploading the video."
msgstr "Une erreur s’est produite lors de l’envoi de la vidéo."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr "Une illustration montrant que Bluesky sélectionne des vérificateurs de confiance, qui à leur tour vérifient des comptes d’utilisateur·ices individuels."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: 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:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "Un problème est survenu au démarrage de la discussion"
@@ -761,13 +934,17 @@ 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:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Un problème est survenu, veuillez réessayer."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr "Une maquette d’un iPhone qui montre l’app de Bluesky ouverte sur un profil d’un compte vérifié avec une coche bleue après leur nom d’affichage."
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "une erreur inconnue s’est produite"
@@ -790,6 +967,10 @@ msgstr "Animaux"
msgid "Animated GIF"
msgstr "GIF animé"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr "La vérification arrive sur Bluesky"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Comportement antisocial"
msgid "Anybody can interact"
msgstr "Tout le monde peut interagir"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "Icône de l’application"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "Langue de l’application"
@@ -836,7 +1017,7 @@ msgstr "Les noms de mots de passe d’application doivent comporter au moins 4 c
msgid "App passwords"
msgstr "Mots de passe d’application"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Mots de passe d’application"
@@ -872,10 +1053,10 @@ msgstr "Faire appel de la suspension"
msgid "Appeal this decision"
msgstr "Faire appel de cette décision"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Affichage"
@@ -884,12 +1065,12 @@ msgstr "Affichage"
msgid "Apply default recommended feeds"
msgstr "Utiliser les fils d’actu recommandés par défaut"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Archive datée du {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Post archivé"
@@ -897,15 +1078,15 @@ msgstr "Post archivé"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Êtes-vous sûr de vouloir supprimer le mot de passe d’application « {0} » ?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
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:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "Êtes-vous sûr de vouloir supprimer ce kit de démarrage ?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "Êtes-vous sûr de vouloir abandonner vos changements ?"
@@ -921,15 +1102,15 @@ msgstr "Êtes-vous sûr de vouloir partir de cette conversation ? Vos messages
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:312
+#: src/components/FeedCard.tsx:340
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:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
-msgstr "Êtes-vous sûr de vouloir rejeter ce brouillon ?"
+msgstr "Êtes-vous sûr de vouloir abandonner ce brouillon ?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "Êtes-vous sûr de vouloir abandonner ce post ?"
@@ -937,7 +1118,7 @@ msgstr "Êtes-vous sûr de vouloir abandonner ce post ?"
msgid "Are you sure?"
msgstr "Vous confirmez ?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "Écrivez-vous en <0>{suggestedLanguageName}0> ?"
@@ -946,11 +1127,16 @@ msgstr "Écrivez-vous en <0>{suggestedLanguageName}0> ?"
msgid "Art"
msgstr "Art"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Nudité artistique ou non érotique."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr "Assigner un sujet pour l’algo"
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "Au moins 3 caractères"
@@ -963,12 +1149,12 @@ msgstr "Aurores"
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Les options de la lecture automatique ont été déplacées dans les <0>paramètres Contenu et médias0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Lire automatiquement les vidéos et les GIFs"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Lire automatiquement les vidéos et les GIFs"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Retour"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr "Retour aux discussions"
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Veuillez vérifier votre e-mail avant de créer une liste."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Veuillez vérifier votre e-mail avant de créer un post."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr "Veuillez vérifier votre e-mail avant de créer un post ou de répondre."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Veuillez vérifier votre e-mail avant de créer un kit de démarrage."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr "Veuillez vérifier votre e-mail avant d’accepter cette demande de discussion."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
msgstr "Veuillez vérifier votre e-mail avant d’envoyer des messages à d’autres personnes."
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BÊTA"
-
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Date de naissance"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Bloquer"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Bloquer le compte"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "Bloquer ce compte ?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Bloquer ces comptes"
@@ -1054,7 +1241,7 @@ msgstr "Bloquer et supprimer"
msgid "Block and/or delete this conversation"
msgstr "Bloquer et/ou supprimer cette conversation"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Liste de blocage"
@@ -1062,7 +1249,7 @@ msgstr "Liste de blocage"
msgid "Block or report"
msgstr "Bloquer ou signaler"
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "Bloquer ces comptes ?"
@@ -1079,21 +1266,21 @@ msgstr "Bloquer le compte"
msgid "Blocked"
msgstr "Bloqué"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Comptes bloqués"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Comptes bloqués"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Les comptes bloqués ne peuvent pas répondre à vos discussions, vous mentionner ou interagir avec vous."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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."
@@ -1101,19 +1288,19 @@ msgstr "Les comptes bloqués ne peuvent pas répondre à vos discussions, vous m
msgid "Blocked post."
msgstr "Post bloqué."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
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:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Le blocage est public. Les comptes bloqués ne peuvent pas répondre à vos discussions, vous mentionner ou interagir avec vous."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
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:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blog"
@@ -1122,7 +1309,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky ne peut pas confirmer l’authenticité de la date déclarée."
@@ -1148,7 +1335,7 @@ msgstr "Bluesky est meilleur entre ami·e·s !"
msgid "Bluesky Social Terms of Service"
msgstr "Conditions générales de Bluesky Social"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
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."
@@ -1156,6 +1343,10 @@ msgstr "Bluesky choisira un ensemble de comptes recommandés parmi les personnes
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky n’affichera pas votre profil et vos posts à des personnes non connectées. Il est possible que d’autres applications n’honorent pas cette demande. Cela ne privatise pas votre compte."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr "Bluesky va vérifier de manière proactive les comptes connus et authentiques."
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,25 +1368,25 @@ msgstr "Flouter les images et les filtrer des fils d’actu"
msgid "Books"
msgstr "Livres"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
-msgstr "Parcourir d’autres comptes sur la page « Explore »"
+msgstr "Parcourir d’autres comptes sur la page « Explorer »"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
-msgstr "Parcourir d’autres fils d’actu sur la page « Explore »"
+msgstr "Parcourir d’autres fils d’actu sur la page « Explorer »"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Parcourir d’autres suggestions"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
-msgstr "Parcourir d’autres suggestions sur la page « Explore »"
+msgstr "Parcourir d’autres suggestions sur la page « Explorer »"
#: src/screens/Home/NoFeedsPinned.tsx:103
#: src/screens/Home/NoFeedsPinned.tsx:109
@@ -1214,20 +1405,26 @@ msgstr "Parcourir des posts avec le mot-clé {displayName}"
msgid "Browse starter pack {displayName}"
msgstr "Parcourir le kit de démarrage {displayName}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr "Parcourir le sujet {0}"
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "Parcourir le sujet {displayName}"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Affaires"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "Par {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Par <0>{0}0>"
@@ -1243,44 +1440,51 @@ msgstr "En créant un compte, vous acceptez les <0>Conditions d’utilisation0
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "En créant un compte, vous acceptez les <0>Conditions d’utilisation0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr "Par vous"
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Caméra"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Annuler"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "Annuler la suppression de compte"
msgid "Cancel image crop"
msgstr "Annuler le recadrage de l’image"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Annuler les modifications du profil"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Annuler la citation"
@@ -1308,8 +1512,7 @@ msgstr "Annuler la citation"
msgid "Cancel reactivation and sign out"
msgstr "Annuler la réactivation et se déconnecter"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Annuler la recherche"
@@ -1317,24 +1520,23 @@ msgstr "Annuler la recherche"
msgid "Cancels opening the linked website"
msgstr "Annule l’ouverture du site web lié"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "Impossible d’interagir avec un compte bloqué"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Sous-titres (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Sous-titres et texte alt"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Modifier"
@@ -1347,46 +1549,41 @@ msgstr "Changer l’icône de l’application"
msgid "Change app icon to \"{0}\""
msgstr "Changer l’icône de l’application pour « {0} »"
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Modifier votre adresse e-mail"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr "Changer la langue de l’appli."
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Modifier votre adresse e-mail"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Modifier le pseudo"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr "Changer de service de modération"
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Modifier mon e-mail"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Modifier le mot de passe"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "Modifier la langue du post en {suggestedLanguageName}"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr "Changer la raison du signalement"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Modifier votre e-mail"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Modifier votre adresse e-mail"
@@ -1394,20 +1591,20 @@ msgstr "Modifier votre adresse e-mail"
msgid "Changes app icon"
msgstr "Change l’icône de l’application"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr "Change l’hébergeur"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Discussions"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
msgstr "Conversation supprimée"
@@ -1417,20 +1614,19 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Discussion masquée"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr "Demandes de discussion en attente"
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr "Demandes de discussion"
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Paramètres de discussion"
@@ -1443,8 +1639,8 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Discussion réaffichée"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr "Discussions"
@@ -1461,7 +1657,7 @@ 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/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Sélectionnez une méthode de vérification de domaine"
@@ -1469,7 +1665,7 @@ msgstr "Sélectionnez une méthode de vérification de domaine"
msgid "Choose Feeds"
msgstr "Choisissez des fils d’actu"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Choisir pour moi"
@@ -1477,10 +1673,6 @@ msgstr "Choisir pour moi"
msgid "Choose People"
msgstr "Choisissez des personnes"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Choisissez les auto-étiquettes qui sont pertinentes pour les médias que vous postez. Si aucune n’est sélectionnée, le post est adapté à tous les publics."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Choisissez les algorithmes qui alimentent vos fils d’actu personnalisés."
@@ -1493,27 +1685,31 @@ msgstr "Choisir cette couleur comme avatar"
msgid "Choose your account provider"
msgstr "Choisir votre hébergeur"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Construisez votre propre page d’accueil ! Abonnez-vous à des fils d’actu de la communauté pour y retrouver ce que vous aimez."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Choisissez votre mot de passe"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "Votre pseudo"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Effacer toutes les données de stockage"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Effacer toutes les données de stockage (redémarrer ensuite)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr "Purger le cache des images"
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Effacer la recherche"
@@ -1522,6 +1718,14 @@ msgstr "Effacer la recherche"
msgid "click here"
msgstr "cliquez ici"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr "Cliquez ici pour redémarrer le processus de vérification."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr "Cliquez ici pour mettre à jour votre adresse e-mail"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Cliquez pour désactiver les citations de ce post."
@@ -1534,7 +1738,7 @@ msgstr "Cliquez pour activer les citations de ce post."
msgid "Click to open tag menu for {tag}"
msgstr "Cliquez pour ouvrir le menu de mot-clé pour {tag}"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Cliquer pour réessayer l’envoi échoué du message"
@@ -1546,24 +1750,34 @@ msgstr "Climat"
msgid "Clip 🐴 clop 🐴"
msgstr "Cataclop 🐴 cataclop 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Fermer"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Fermer le dialogue actif"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Fermer le tiroir du bas"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Fermer le dialogue"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr "Ferme le menu latéral"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "Fermer le sélecteur d’emoji"
@@ -1600,7 +1816,13 @@ msgstr "Fermer l’image"
msgid "Close image viewer"
msgstr "Fermer la visionneuse d’images"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr "Fermer le menu"
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Fermer ce dialogue"
@@ -1608,8 +1830,12 @@ msgstr "Fermer ce dialogue"
msgid "Closes password update alert"
msgstr "Ferme la notification de mise à jour du mot de passe"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr "Ferme la fenêtre de rédaction et abandonne le brouillon de post"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr "Ferme le sélecteur d’émoji"
@@ -1617,11 +1843,11 @@ msgstr "Ferme le sélecteur d’émoji"
msgid "Closes viewer for header image"
msgstr "Ferme la visionneuse pour l’image d’en-tête"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Fermer la liste des comptes"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Réduit la liste des comptes pour une notification donnée"
@@ -1644,7 +1870,7 @@ msgstr "Comédie"
msgid "Comics"
msgstr "Bandes dessinées"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Directives communautaires"
@@ -1653,23 +1879,23 @@ msgstr "Directives communautaires"
msgid "Complete onboarding and start using your account"
msgstr "Terminez le didacticiel et commencez à utiliser votre compte"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Compléter le défi"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Écrire un nouveau post"
-#: src/view/com/composer/Composer.tsx:834
-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/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr "Permet d’écrire des posts de {0, plural, other {# caractères}} maximum"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Rédiger une réponse"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Compression de la vidéo en cours…"
@@ -1681,23 +1907,17 @@ msgstr "Configure les paramètres de filtrage de contenu pour la catégorie : {
msgid "Configured in <0>moderation settings0>."
msgstr "Configuré dans <0>les paramètres de modération0>."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Confirmer"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Confirmer le changement"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Confirmer les paramètres de langue"
@@ -1706,26 +1926,27 @@ msgstr "Confirmer les paramètres de langue"
msgid "Confirm delete account"
msgstr "Confirmer la suppression du compte"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Confirmez votre âge :"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Confirme votre date de naissance"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Code de confirmation"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Code de confirmation"
@@ -1733,22 +1954,22 @@ msgstr "Code de confirmation"
msgid "Connecting..."
msgstr "Connexion…"
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Contacter le support"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "Contenu et médias"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Contenu et médias"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Contenu et médias"
@@ -1756,15 +1977,15 @@ msgstr "Contenu et médias"
msgid "Content Blocked"
msgstr "Contenu bloqué"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Filtres de contenu"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr "Du contenu provenant des quatre coins du réseau que nous pensons que vous pourriez aimer."
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Langues du contenu"
@@ -1785,16 +2006,16 @@ msgstr "Avertissement sur le contenu"
msgid "Content warnings"
msgstr "Avertissements sur le contenu"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
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:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Continuer"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Continuer comme {0} (actuellement connecté)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Poursuivre le fil de discussion…"
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Passer à l’étape suivante"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversation supprimée"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Conversation supprimée"
@@ -1826,16 +2047,17 @@ msgstr "Cuisine"
msgid "Copied"
msgstr "Copié"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Version de build copiée dans le presse-papier"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Copié dans le presse-papier"
@@ -1844,25 +2066,29 @@ msgstr "Copié dans le presse-papier"
msgid "Copied!"
msgstr "Copié !"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr "Copie la version de build vers le presse-papier"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Copier"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr "Copier quand même"
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Copier le mot de passe d’application"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr "Copier l’URI at://"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr "Copier le DID de l’auteur·ice"
@@ -1871,57 +2097,69 @@ msgstr "Copier le DID de l’auteur·ice"
msgid "Copy code"
msgstr "Copier ce code"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Copier le DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Copier l’hébergeur"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Copier le lien"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Copier le lien"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Copier le lien vers la liste"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Copier le lien vers le post"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr "Copier le lien vers le profil"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr "Copier le lien vers le kit de démarrage"
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Copier le texte du message"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr "Copier l’URI at:// du post"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Copier le texte du post"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Copier le code QR"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "Copier la valeur du registre TXT"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Politique sur les droits d’auteur"
@@ -1931,11 +2169,11 @@ msgstr "Politique sur les droits d’auteur"
msgid "Could not leave chat"
msgstr "Impossible de partir de la discussion"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "Impossible de charger le fil d’actu"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "Impossible de charger la liste"
@@ -1947,28 +2185,28 @@ msgstr "Impossible de masquer la discussion"
msgid "Could not process your video"
msgstr "Impossible de traiter votre vidéo"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Créer"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "Créer un code QR pour un kit de démarrage"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Créer un kit de démarrage"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Créer un kit de démarrage pour moi"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Créer un kit de démarrage pour moi"
msgid "Create account"
msgstr "S’inscrire"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Créer un compte"
@@ -1985,11 +2223,16 @@ msgstr "Créer un compte"
msgid "Create an account"
msgstr "Créer un compte"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr "Créer un compte sans utiliser ce kit de démarrage"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Créer plutôt un avatar"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Créer un autre"
@@ -1998,7 +2241,7 @@ msgstr "Créer un autre"
msgid "Create new account"
msgstr "Créer un nouveau compte"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Créer un signalement pour {0}"
@@ -2053,17 +2296,17 @@ msgstr "Mode sombre"
msgid "Dark theme"
msgstr "Thème sombre"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Date de naissance"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Désactiver le compte"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Déboguer la modération"
@@ -2079,19 +2322,19 @@ msgstr "Par défaut"
msgid "Default icons"
msgstr "Icônes par défaut"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Supprimer"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Supprimer le compte"
@@ -2107,19 +2350,19 @@ msgstr "Supprimer le mot de passe de l’appli"
msgid "Delete app password?"
msgstr "Supprimer le mot de passe de l’appli ?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr "Supprimer la conversation"
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Supprimer la déclaration d’ouverture aux discussions"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "Supprimer la conversation"
@@ -2127,19 +2370,19 @@ msgstr "Supprimer la conversation"
msgid "Delete Conversation"
msgstr "Supprimer la conversation"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Supprimer pour moi"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
msgstr "Supprimer la liste"
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Supprimer le message"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Supprimer le message pour moi"
@@ -2147,26 +2390,26 @@ msgstr "Supprimer le message pour moi"
msgid "Delete my account"
msgstr "Supprimer mon compte"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Supprimer le post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Supprimer le kit de démarrage"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "Supprimer le kit de démarrage ?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "Supprimer cette liste ?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "Supprimer ce post ?"
@@ -2174,8 +2417,8 @@ msgstr "Supprimer ce post ?"
msgid "Deleted"
msgstr "Supprimé"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Compte supprimé"
@@ -2183,48 +2426,48 @@ msgstr "Compte supprimé"
msgid "Deleted post."
msgstr "Post supprimé."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Description"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "Description trop longue"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "La description est trop longue. La longueur maximale est de {DESCRIPTION_MAX_GRAPHEMES} caractères."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Description trop longue. La taille maximum est de {DESCRIPTION_MAX_GRAPHEMES, plural, one {# caractère.} other {# caractères.}}"
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Texte alt descriptif"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Détacher la citation"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "Détacher la citation ?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
msgstr "Mode développement désactivé"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
msgstr "Mode développement activé"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Options pour développeurs"
@@ -2236,6 +2479,15 @@ msgstr "Une boîte de dialogue : réglez qui peut interagir avec ce post"
msgid "Dim"
msgstr "Atténué"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr "Désactiver le 2FA"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr "Désactiver le 2FA par e-mail"
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "Désactiver le 2FA par e-mail"
@@ -2254,25 +2506,25 @@ msgstr "Désactiver les sous-titres"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Désactivé"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Abandonner"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "Abandonner les changements ?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "Abandonner le brouillon ?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "Abandonner ce post ?"
@@ -2281,24 +2533,24 @@ msgstr "Abandonner ce post ?"
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"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr "Découvrir des fils d’actu"
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Découvrir des fils d’actu personnalisés"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Découvrir de nouveaux fils d’actu"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Découvrir de nouveaux fils d’actu"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Ignorer"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Ignorer l’erreur"
@@ -2306,6 +2558,10 @@ msgstr "Ignorer l’erreur"
msgid "Dismiss getting started guide"
msgstr "Annuler le guide de démarrage"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr "Ignorer les centres d’intérêt"
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr "Ignorer cette section"
@@ -2315,27 +2571,27 @@ msgstr "Ignorer cette section"
msgid "Display larger alt text badges"
msgstr "Afficher des badges de texte alt plus grands"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Nom d’affichage"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Nom d’affichage"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "Nom d’affichage trop long"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "Le nom d’affichage est trop long. La longueur maximale est de {DISPLAY_NAME_MAX_GRAPHEMES} caractères."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Nom d’affichage trop long. La taille maximum est de {DISPLAY_NAME_MAX_GRAPHEMES, plural, one {# caractère.} other {# caractères.}}"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "Panneau DNS"
@@ -2347,37 +2603,45 @@ msgstr "Ne pas appliquer ce mot masqué aux comptes que vous suivez"
msgid "Does not include nudity."
msgstr "Ne comprend pas de nudité."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "Ne commence pas ou ne se termine pas par un trait d’union"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "Domaine vérifié !"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr "Vous n’avez pas de code ou en voulez un nouveau ? <0>Cliquez ici.0>"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr "Pas d’e-mail à l’horizon ? <0>Cliquez ici pour le renvoyer.0>"
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Terminé"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Terminer"
msgid "Done{extraText}"
msgstr "Terminé{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr "Tapez deux fois ou appuyez longtemps sur le message pour ajouter une réaction"
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Tapez deux fois pour fermer cette boîte de dialogue"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr "Tapez deux fois pour aimer"
@@ -2413,23 +2681,23 @@ msgstr "Déposer pour ajouter des images"
msgid "Duration:"
msgstr "Durée :"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "ex. alice"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "ex. Alice Nomdefamille"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "ex. Alice Roberts"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "ex. alice.fr"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "ex. Artiste, amie des chiens et lectrice passionnée."
@@ -2437,19 +2705,19 @@ msgstr "ex. Artiste, amie des chiens et lectrice passionnée."
msgid "E.g. artistic nudes."
msgstr "Nudité artistique par exemple."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "ex. Les meilleurs comptes"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "ex. Spammeurs"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "ex. Ces comptes qui ne ratent jamais leur coup."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "ex. Les comptes qui répondent toujours avec des pubs."
@@ -2457,20 +2725,21 @@ 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/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Modifier"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Modifier"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Modifier l’avatar"
@@ -2478,31 +2747,41 @@ msgstr "Modifier l’avatar"
msgid "Edit Feeds"
msgstr "Modifier les fils d’actu"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Modifier l’image"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Modifier les paramètres d’interaction"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr "Modifier les centres d’intérêt"
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Modifier les infos de la liste"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr "Modifier le statut « En direct »"
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Modifier la liste de modération"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Modifier mes fils d’actu"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Modifier votre profil"
@@ -2515,23 +2794,23 @@ msgstr "Modifier les personnes"
msgid "Edit post interaction settings"
msgstr "Modifier les paramètres d’interaction du post"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Modifier le profil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Modifier le profil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Modifier le kit de démarrage"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Modifier la liste de comptes"
@@ -2539,15 +2818,15 @@ msgstr "Modifier la liste de comptes"
msgid "Edit who can reply"
msgstr "Modifier qui peut répondre"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Modifier votre nom d’affichage"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Modifier la description de votre profil"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Modifier votre kit de démarrage"
@@ -2560,9 +2839,8 @@ msgstr "Éducation"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "Soit l’auteur·ice de cette liste vous a bloqué soit vous en avez bloqué l’auteur·ice."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "E-mail"
@@ -2583,20 +2861,17 @@ msgstr "Adresse e-mail"
msgid "Email Resent"
msgstr "E-mail renvoyé"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
-msgstr "Adresse e-mail mise à jour"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
+msgstr "E-mail envoyé !"
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "Adresse e-mail mise à jour"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr "Adresse e-mail mise à jour !"
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
-msgstr "Adresse e-mail vérifiée"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
+msgstr "Vérification de l’e-mail terminée !"
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
msgid "Email Verified"
@@ -2608,8 +2883,8 @@ msgstr "Code HTML à intégrer"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Intégrer le post"
@@ -2617,12 +2892,13 @@ msgstr "Intégrer le post"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Intégrez ce post à votre site web. Il suffit de copier l’extrait suivant et de le coller dans le code HTML de votre site web."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "Lecteur vidéo intégré"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Activer"
@@ -2630,13 +2906,13 @@ msgstr "Activer"
msgid "Enable {0} only"
msgstr "Activer {0} uniquement"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Activer le contenu pour adultes"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr "Activer auth. à deux facteurs par e-mail"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr "Activer le 2FA par e-mail"
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2660,30 +2936,30 @@ msgstr "Activer les sous-titres"
msgid "Enable this source only"
msgstr "Active cette source uniquement"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "Activer les tendances"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr "Activer les vidéos tendances dans votre fil Discover"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr "Activer les vidéos tendances dans votre fil Discover."
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Activé"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Fin du fil d’actu"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Assurez-vous d’avoir sélectionné une langue pour chaque fichier de sous-titres."
@@ -2696,13 +2972,14 @@ msgstr "Saisir un mot de passe"
msgid "Enter a word or tag"
msgstr "Saisir un mot ou un mot-clé"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
-msgid "Enter Code"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
msgstr "Entrer le code"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Entrer un code de confirmation"
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
+msgid "Enter Code"
+msgstr "Entrer le code"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
@@ -2712,7 +2989,7 @@ msgstr "Passer en plein écran"
msgid "Enter the code you received to change your password."
msgstr "Saisissez le code que vous avez reçu pour modifier votre mot de passe."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Entrez le domaine que vous voulez utiliser"
@@ -2720,20 +2997,20 @@ msgstr "Entrez le domaine que vous voulez utiliser"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Saisissez l’e-mail que vous avez utilisé pour créer votre compte. Nous vous enverrons un « code de réinitialisation » pour vous permettre de changer de mot de passe."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr "Entrer le pseudo ou l’adresse e-mail utilisée lors de la création de votre compte"
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Saisissez votre date de naissance"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Entrez votre e-mail"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Entrez votre nouvel e-mail ci-dessus"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Entrez votre nouvelle e-mail ci-dessous."
@@ -2749,24 +3026,31 @@ msgstr "Entrez votre pseudo et votre mot de passe"
msgid "Enters full screen"
msgstr "Passe en mode plein écran"
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr "Divertissement"
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Erreur"
#: src/screens/Settings/components/ExportCarDialog.tsx:47
msgid "Error occurred while saving file"
-msgstr "Échec lors de la sauvegarde du fichier"
+msgstr "Échec lors de l’enregistrement du fichier"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "Erreur de réception de la réponse captcha."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Erreur :"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr "Erreur : {error}"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Tout le monde"
@@ -2818,30 +3102,22 @@ msgstr "Sort du processus de recadrage de l’image"
msgid "Exits image view"
msgstr "Sort de la vue de l’image"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Sort de la saisie de la recherche"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Développer le texte alt"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Développer la liste des comptes"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "Développe ou réduit le post complet auquel vous répondez"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr "Développe ou réduit le texte du post"
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr "Développe ou réduit le post complet auquel vous répondez"
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "URI attendue pour résoudre un enregistrement"
@@ -2864,6 +3140,10 @@ msgstr "Expire {0}"
msgid "Expires in {0}"
msgstr "Expire dans {0}"
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr "Expire dans {0} à {1}"
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "Médias explicites ou potentiellement dérangeants."
msgid "Explicit sexual images."
msgstr "Images sexuelles explicites."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr "Explorer"
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Exporter mes données"
@@ -2882,8 +3169,8 @@ msgstr "Exporter mes données"
msgid "Export My Data"
msgstr "Exporter mes données"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "Média externe"
@@ -2897,17 +3184,22 @@ msgstr "Média externe"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Les médias externes peuvent permettre à des sites web de collecter des informations sur vous et votre appareil. Aucune information n’est envoyée ou demandée tant que vous n’appuyez pas sur le bouton de lecture."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Préférences sur les médias externes"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Échec de l’acceptation de la conversation"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr "Échec de l’ajout de la réaction émoji"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "Le changement de pseudo a échoué. Veuillez réessayer."
@@ -2915,7 +3207,7 @@ msgstr "Le changement de pseudo a échoué. Veuillez réessayer."
msgid "Failed to create app password. Please try again."
msgstr "La création du mot de passe d’application a échoué. Veuillez réessayer."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr "Échec de la création de la conversation"
@@ -2924,35 +3216,37 @@ msgstr "Échec de la création de la conversation"
msgid "Failed to create starter pack"
msgstr "Échec de la création du kit de démarrage"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "Échec de la création de la liste. Vérifiez votre connexion Internet et réessayez."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Échec de la suppression de la conversation"
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Échec de la suppression du message"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "Échec de la suppression du post, veuillez réessayer"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "Échec de la suppression du kit de démarrage"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr "Échec du chargement des conversations"
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "Échec du chargement des fils d’actu"
@@ -2964,17 +3258,19 @@ 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:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "Échec du chargement des fils d’actu suggerés"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "Échec du chargement des suivis suggérés"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr "Échec du marquage de toutes les demandes comme lues"
@@ -2982,7 +3278,16 @@ msgstr "Échec du marquage de toutes les demandes comme lues"
msgid "Failed to pin post"
msgstr "Échec de l’épinglage du post"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr "Échec du retrait de la réaction émoji"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr "Échec du retrait de la vérification"
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Échec de l’enregistrement de l’image : {0}"
@@ -2994,20 +3299,39 @@ msgstr "Échec de l’enregistrement des préférences de notification, veuillez
msgid "Failed to save settings. Please try again."
msgstr "L’enregistrement des paramètres a échoué. Veuillez réessayer."
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr "Échec de l’enregistrement de vos centres d’intérêt."
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "Échec de l’envoi"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr "Échec de l’envoi de l’e-mail, veuillez réessayer."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/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/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
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:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr "Échec de la mise à jour des paramètres du 2FA par e-mail"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr "Échec de la mise à jour de l’e-mail, veuillez réessayer."
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "Échec de la mise à jour des fils d’actu"
@@ -3022,20 +3346,24 @@ msgstr "Échec de la mise à jour des paramètres"
msgid "Failed to upload video"
msgstr "Échec de l’envoi de la vidéo"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr "Échec de la vérification de l’e-mail, veuillez réessayer."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "La vérification du pseudo a échoué. Veuillez réessayer."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Fil d’actu"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Fil d’actu par {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "Menu du fil d’actu"
@@ -3043,26 +3371,26 @@ msgstr "Menu du fil d’actu"
msgid "Feed toggle"
msgstr "Ajouter/enlever le fil d’actu"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Commentaires"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
msgstr "Commentaire envoyé !"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Fils d’actu"
@@ -3070,13 +3398,13 @@ msgstr "Fils d’actu"
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:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
msgstr "Fils d’actu mis à jour !"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "Fils d’actu qui pourraient vous plaire."
@@ -3086,17 +3414,17 @@ msgstr "Rechercher des mises à jour"
#: src/screens/Settings/components/ExportCarDialog.tsx:43
msgid "File saved successfully!"
-msgstr "Fichier sauvegardé avec succès !"
+msgstr "Fichier enregistré avec succès !"
#: src/lib/moderation/useLabelBehaviorDescription.ts:66
msgid "Filter from feeds"
msgstr "Filtrer des fils d’actu"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr "Filtrer les résultats par langue"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr "Filtrer les résultats par langue (actuellement : {currentLanguageLabel})"
@@ -3110,13 +3438,13 @@ msgstr "Finalisation"
msgid "Find accounts to follow"
msgstr "Trouver des comptes à suivre"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "Trouver des comptes à suivre"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Trouver des posts, des comptes et des fils d’actu sur Bluesky"
@@ -3148,11 +3476,11 @@ msgid "Flexible"
msgstr "Flexible"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Suivre"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Suivre"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Suivre {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr "Suivre {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Suivre {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "Suivre 10 comptes"
msgid "Follow 7 accounts"
msgstr "Suivre 7 comptes"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "Suivre le compte"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Suivre tous"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Suivre en retour"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Suivre en retour"
-#: src/view/screens/Search/Explore.tsx:370
-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/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "Suivi par <0>{0}0>"
@@ -3224,7 +3544,7 @@ 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/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Abonné·e·s de @{0} que vous connaissez"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Abonné·e·s que vous connaissez"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Suivi"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "Suit {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr "Suit {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Suit {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Préférences du fil des abonnements"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Préférences du fil des abonnements"
@@ -3301,6 +3617,10 @@ msgstr "Pour des raisons de sécurité, vous ne pouvez consulter ceci qu’une s
msgid "For the best experience, we recommend using the theme font."
msgstr "Pour une meilleure expérience, nous vous recommandons d’utiliser la police thématique."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr "Pour vous"
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Pour toujours"
@@ -3327,7 +3647,7 @@ msgstr "Publication fréquente de contenu indésirable"
msgid "From @{sanitizedAuthor}"
msgstr "De @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Tiré de <0/>"
@@ -3336,28 +3656,30 @@ msgstr "Tiré de <0/>"
msgid "Gallery"
msgstr "Galerie"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Générer un kit de démarrage"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Obtenir de l’aide"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
msgstr "C’est parti"
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Pour commencer"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Donner à votre profil un visage"
@@ -3366,17 +3688,17 @@ 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/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Retour"
@@ -3384,10 +3706,10 @@ msgstr "Retour"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Retour"
@@ -3408,7 +3730,27 @@ msgstr "Accéder à l’accueil"
msgid "Go Home"
msgstr "Accéder à l’accueil"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr "Passer en direct"
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr "Passer en direct"
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr "Passer en direct pendant"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr "Voir le profil de {firstAuthorName}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Aller à la conversation avec {0}"
@@ -3427,8 +3769,8 @@ msgstr "Voir le profil du compte"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Médias crus"
@@ -3437,21 +3779,21 @@ msgstr "Médias crus"
msgid "Half way there!"
msgstr "On y est presque !"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Pseudo"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "Ce pseudo est déjà utilisé. Veuillez utiliser un autre pseudo."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "Pseudo changé !"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "Ce pseudo est trop long. Veuillez utiliser un pseudo plus court."
@@ -3464,7 +3806,7 @@ msgstr "Haptiques"
msgid "Harassment, trolling, or intolerance"
msgstr "Harcèlement, trolling ou intolérance"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Mot-clé"
@@ -3472,19 +3814,24 @@ msgstr "Mot-clé"
msgid "Hashtag {tag}"
msgstr "Mot-clé : {tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr "Vous avez un code ? <0>Cliquez ici.0>"
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "Un souci ?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Aide"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Aidez les gens à savoir que vous n’êtes pas un bot en envoyant une image ou en créant un avatar."
@@ -3497,7 +3844,7 @@ msgstr "Voici votre mot de passe d’application !"
msgid "Hidden"
msgstr "Masqué"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr "Masqué par vos paramètres de modération."
@@ -3509,18 +3856,17 @@ msgstr "Liste cachée"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Cacher"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Cacher"
@@ -3529,38 +3875,40 @@ msgstr "Cacher"
msgid "Hide customization options"
msgstr "Masquer les paramètres de personnalisation"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Cacher ce post pour moi"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Cacher cette réponse pour tout le monde"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Cacher cette réponse pour moi"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr "Cacher cette carte"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "Cacher ce post ?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "Cacher cette réponse ?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Cacher les tendances"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "Cacher les tendances ?"
@@ -3569,10 +3917,15 @@ msgstr "Cacher les tendances ?"
msgid "Hide trending videos?"
msgstr "Cacher les vidéos tendances ?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Cacher la liste des comptes"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr "Masquer les badges de vérification"
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3580,25 +3933,25 @@ msgstr "Cache ce contenu"
#: src/view/com/posts/PostFeedErrorMessage.tsx:117
msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue."
-msgstr "Hmm, un problème s’est produit avec le serveur de fils d’actu. Veuillez informer la personne propriétaire du fil d’actu de ce problème."
+msgstr "Hmm, un problème s’est produit avec le serveur de fils d’actu. Veuillez informer le fournisseur du fil d’actu de ce problème."
#: src/view/com/posts/PostFeedErrorMessage.tsx:105
msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue."
-msgstr "Hmm, le serveur du fils d’actu semble être mal configuré. Veuillez informer la personne propriétaire du fil d’actu de ce problème."
+msgstr "Hmm, le serveur de fils d’actu semble être mal configuré. Veuillez informer le fournisseur du fil d’actu de ce problème."
#: src/view/com/posts/PostFeedErrorMessage.tsx:111
msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue."
-msgstr "Hmm, le serveur de fils d’actu semble être hors ligne. Veuillez informer la personne propriétaire du fil d’actu de ce problème."
+msgstr "Hmm, le serveur de fils d’actu semble être hors ligne. Veuillez informer le fournisseur du fil d’actu de ce problème."
#: src/view/com/posts/PostFeedErrorMessage.tsx:108
msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue."
-msgstr "Hmm, le serveur de fils d’actu ne répond pas. Veuillez informer la personne propriétaire du fil d’actu de ce problème."
+msgstr "Hmm, le serveur de fils d’actu ne répond pas. Veuillez informer le fournisseur du fil d’actu de ce problème."
#: src/view/com/posts/PostFeedErrorMessage.tsx:102
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Hmm, nous n’arrivons pas à trouver ce fil d’actu. Il a peut-être été supprimé."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Hmm, il semble que nous ayons des difficultés à charger ces données. Voir ci-dessous pour plus de détails. Si le problème persiste, contactez-nous."
@@ -3610,15 +3963,15 @@ msgstr "Hmm, nous n’avons pas pu charger ce service de modération."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Attendez ! Nous donnons progressivement accès à la vidéo et vous faites toujours la queue. Revenez bientôt !"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Accueil"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "Hébergeur :"
@@ -3627,34 +3980,33 @@ msgstr "Hébergeur :"
msgid "Hosting provider"
msgstr "Hébergeur"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr "Populaire"
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "Réponses actives en premier"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "Comment ouvrir ce lien ?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "J’ai un code"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "J’ai un code"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "J’ai un code de confirmation"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "J’ai mon propre domaine"
@@ -3667,22 +4019,30 @@ msgstr "Je comprends"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Si le texte alt est trop long, change son mode d’affichage"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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:758
+#: src/view/screens/ProfileList.tsx:765
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/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Si vous possédez votre propre domaine, vous pouvez l’utiliser comme pseudo. Cela vous permet d’auto-vérifier votre identité. <0>En savoir plus0>"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr "Si vous avez besoin de mettre à jour votre adresse e-mail, <0>cliquez ici0>."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Si vous supprimez ce post, vous ne pourrez pas le récupérer."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr "Si vous mettez à jour votre adresse e-mail, la 2FA par e-mail sera désactivée."
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Si vous souhaitez modifier votre mot de passe, nous vous enverrons un code pour vérifier qu’il s’agit bien de votre compte."
@@ -3704,9 +4064,22 @@ msgstr "Illégal et urgent"
msgid "Image"
msgstr "Image"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "Image enregistrée dans votre photothèque !"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr "Cache des images purgé"
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr "Cache des images purgé, {0} libérés"
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr "Image enregistrée"
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr "Les images ne peuvent être enregistrées tant qu’une permission d’accès à votre photothèque n’est pas autorisée."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "Messages inappropriés ou liens explicites"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr "C’est vide !"
@@ -3752,15 +4125,11 @@ msgstr "Entrez le mot de passe pour la suppression du compte"
msgid "Input the code which has been emailed to you"
msgstr "Entrez le code qui vous a été envoyé par e-mail"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "Entrez le pseudo ou l’adresse e-mail que vous avez utilisé lors de l’inscription"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Interaction limitée"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr "Paramètres d’interaction"
@@ -3769,11 +4138,11 @@ msgstr "Paramètres d’interaction"
msgid "Invalid 2FA confirmation code."
msgstr "Code de confirmation 2FA invalide."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Votre pseudo est invalide. Veuillez utiliser un pseudo différent."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "Enregistrement de post invalide ou non pris en charge"
@@ -3789,11 +4158,11 @@ msgstr "Code de vérification invalide"
msgid "Invite a Friend"
msgstr "Inviter un ami"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Code d’invitation"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
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."
@@ -3805,7 +4174,7 @@ msgstr "Code d’invitation : {0} disponible"
msgid "Invite codes: 1 available"
msgstr "Invitations : 1 code dispo"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "Invitez les gens à ce kit de démarrage !"
@@ -3817,7 +4186,7 @@ msgstr "Invitez vos ami·e·s à suivre vos fils d’actu et vos personnes préf
msgid "Invites, but personal"
msgstr "Invitations, mais personnelles"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "C’est correct"
@@ -3825,19 +4194,19 @@ msgstr "C’est correct"
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/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "ID de job : {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Emplois"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Rejoignez Bluesky"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "Étiqueté par l’auteur·ice."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Étiquettes"
@@ -3868,7 +4237,7 @@ msgstr "Étiquettes"
msgid "Labels added"
msgstr "Étiquettes ajoutées"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
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."
@@ -3884,13 +4253,13 @@ msgstr "Étiquettes sur votre contenu"
msgid "Language selection"
msgstr "Sélection de la langue"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Paramètres linguistiques"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Langues"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Plus grande"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "Dernier"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "en savoir plus"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr "En savoir plus"
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "En savoir plus"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "En savoir plus sur Bluesky"
@@ -3933,6 +4311,11 @@ msgstr "En savoir plus sur la modération appliquée à ce contenu."
msgid "Learn more about this warning"
msgstr "En savoir plus sur cet avertissement"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr "En savoir plus sur la vérification sur Bluesky (en anglais)"
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3966,13 +4349,13 @@ msgstr "Si vous ne cochez rien, toutes les langues s’afficheront."
#: src/view/com/modals/LinkWarning.tsx:65
msgid "Leaving Bluesky"
-msgstr "Quitter Bluesky"
+msgstr "Vous quittez Bluesky"
#: src/screens/SignupQueued.tsx:155
msgid "left to go."
msgstr "devant vous dans la file."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Laissez-moi choisir"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Clair"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "Aimer"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Aimer ({0, plural, one {# ont aimé} other {# ont aimé}})"
@@ -4013,17 +4397,16 @@ msgstr "Aimer 10 posts"
msgid "Like 10 posts to train the Discover feed"
msgstr "Aimez 10 posts afin de former le fil d’actu « Discover »"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Aimer ce fil d’actu"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr "Aimer cet étiqueteur"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Aimé par"
@@ -4033,40 +4416,40 @@ msgstr "Aimé par"
msgid "Liked By"
msgstr "Aimé par"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Aimé par {0, plural, one {# compte} other {# comptes}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Aimé par {likeCount, plural, one {# compte} other {# comptes}}"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "Posts aimés"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "Mentions « J’aime » sur ce post"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "Linéaire"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Liste"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Liste des avatars"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
msgstr "Liste bloquée"
@@ -4084,7 +4467,7 @@ msgstr "Liste par <0/>"
msgid "List by you"
msgstr "Liste par vous"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
msgstr "Liste supprimée"
@@ -4093,35 +4476,35 @@ msgstr "Liste supprimée"
msgid "List has been hidden"
msgstr "La liste a été cachée"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "Liste cachée"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
msgstr "Liste masquée"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Nom de liste"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
msgstr "Liste débloquée"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
msgstr "Liste réaffichée"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Listes"
@@ -4129,34 +4512,47 @@ msgstr "Listes"
msgid "Lists blocking this user:"
msgstr "Listes qui bloquent ce compte :"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr "LIVE"
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr "La fonctionnalité « En direct » est en bêta"
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr "Lien vers le direct"
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Charger plus"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "Charger d’autres fils d’actu suggérés"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Charger d’autres suggestions de suivis"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Charger les nouvelles notifications"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Charger les nouveaux posts"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Chargement…"
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Journaux"
@@ -4164,12 +4560,12 @@ msgstr "Journaux"
msgid "Logged-out visibility"
msgstr "Visibilité déconnectée"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo par @sawaratsuki.bsky.social"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo par <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "On dirait que vous avez désépinglé tous vos fils d’actu. Mais pas d
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "On dirait que vous n’avez plus de fil des abonnements. <0>Cliquez ici pour en rajouter un.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr "Ajuster les paramètres d’e-mail pour votre compte"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "En faire un pour moi"
@@ -4201,18 +4601,22 @@ 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/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "Gérer vos fils d’actu enregistrés"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr "Gérer les paramètres de vérification"
+
#: 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"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr "Tout marquer comme lus"
@@ -4221,16 +4625,23 @@ msgstr "Tout marquer comme lus"
msgid "Mark as read"
msgstr "Marqué comme lu"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr "Tout marqué comme lus"
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr "Peut-être plus tard"
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Média"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Médias qui peuvent être perturbants ou inappropriés pour certains publics."
@@ -4246,23 +4657,27 @@ msgstr "Comptes mentionnés"
msgid "Mentions"
msgstr "Mentions"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Menu"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Envoyer un message à {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Message supprimé"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Message supprimé"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr "Message de @{0} : {1}"
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Message du serveur : {0}"
@@ -4276,7 +4691,11 @@ msgstr "Champ d’écriture du message"
msgid "Message is too long"
msgstr "Le message est trop long"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr "Options de message"
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Messages"
@@ -4295,10 +4714,10 @@ msgstr "Compte trompeur"
msgid "Misleading Post"
msgstr "Post trompeur"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Modération"
@@ -4320,22 +4739,22 @@ msgstr "Liste de modération par <0/>"
msgid "Moderation list by you"
msgstr "Liste de modération par vous"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
msgstr "Liste de modération créée"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
msgstr "Liste de modération mise à jour"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Listes de modération"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Listes de modération"
@@ -4343,11 +4762,11 @@ msgstr "Listes de modération"
msgid "moderation settings"
msgstr "paramètres de modération"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "États de modération"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Outils de modération"
@@ -4356,7 +4775,7 @@ msgstr "Outils de modération"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "La modération a choisi d’ajouter un avertissement général sur le contenu."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Plus"
@@ -4365,9 +4784,9 @@ msgstr "Plus"
msgid "More feeds"
msgstr "Plus de fils d’actu"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Plus d’options"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "Les plus aimés en premier"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Réponses les plus aimées en premier"
@@ -4400,14 +4819,14 @@ msgstr "Désactiver le son"
msgid "Mute {tag}"
msgstr "Masquer {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "Masquer le compte"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Masquer les comptes"
@@ -4420,11 +4839,11 @@ msgstr "Masquer la conversation"
msgid "Mute in:"
msgstr "Masquer dans :"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Masquer la liste"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "Masquer ces comptes ?"
@@ -4452,26 +4871,26 @@ msgstr "Masquer ce mot dans les mots-clés uniquement"
msgid "Mute this word until you unmute it"
msgstr "Masquer ce mot jusqu’à ce que vous le réaffichiez"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Masquer ce fil de discussion"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Masquer les mots et les mots-clés"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Comptes masqués"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Comptes masqués"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
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."
@@ -4479,11 +4898,11 @@ msgstr "Les comptes masqués voient leurs posts supprimés de votre fil d’actu
msgid "Muted by \"{0}\""
msgstr "Masqué par « {0} »"
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Mots et mots-clés masqués"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
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."
@@ -4492,15 +4911,15 @@ 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:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "Mes fils d’actu"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Nom"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "Le nom est requis"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Nature"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "Navigue vers {0}"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr "Accéder au kit de démarrage"
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "Navigue vers le prochain écran"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Navigue vers votre profil"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "Besoin de la changer ?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "Besoin de signaler une violation des droits d’auteur ?"
@@ -4547,30 +4971,43 @@ msgstr "Besoin de signaler une violation des droits d’auteur ?"
msgid "Never lose access to your followers or data."
msgstr "Ne perdez jamais l’accès à vos abonné·e·s ou à vos données."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "Peu importe, créez un pseudo pour moi"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Nouveau"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Nouveau"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "Nouvelle discussion"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr "Nouvelle adresse e-mail"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr "Nouvelle fonctionnalité"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "Nouveau pseudo"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "Nouvelle liste"
@@ -4578,7 +5015,7 @@ msgstr "Nouvelle liste"
msgid "New messages"
msgstr "Nouveaux messages"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Nouvelle liste de modération"
@@ -4590,12 +5027,12 @@ msgstr "Nouveau mot de passe"
msgid "New Password"
msgstr "Nouveau mot de passe"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Nouveau post"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "Nouveau post"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Nouveau post"
@@ -4613,19 +5050,20 @@ msgstr "Nouveau post"
msgid "New user info dialog"
msgstr "Dialogue d’information sur un nouveau compte"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Nouvelle liste de comptes"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "Réponses les plus récentes en premier"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Actualités"
@@ -4655,11 +5093,15 @@ msgstr "Image suivante"
msgid "No app passwords yet"
msgstr "Aucun mot de passe d’application"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "Pas de panneau DNS"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr "Pas d’expiration définie"
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "Aucun GIFs vedettes à afficher. Il y a peut-être un souci chez Tenor."
@@ -4668,21 +5110,25 @@ 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/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr "Pas d’image"
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "Pas encore de mentions « j’aime »"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "Ne suit plus {0}"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr "Pas plus de {MAX_SERVICE_HANDLE_LENGTH} caractères"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr "Pas plus de {MAX_SERVICE_HANDLE_LENGTH, plural, one {# caractère} other {# caractères}}"
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "Pas encore de messages"
@@ -4711,31 +5157,38 @@ msgstr "Pas encore de citations"
msgid "No reposts yet"
msgstr "Pas encore de reposts"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Aucun résultat"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "Aucun résultat"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr "Aucun résultat pour « {0} »."
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "Aucun résultat trouvé"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "Aucun résultat trouvé pour « {query} »"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "Aucun résultat trouvé pour {query}"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr "Aucun résultat."
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "Pas de résultats pour « {search} »."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Personne"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "Personne n’a encore mis « j’aime ». Peut-être devriez-vous ouvrir la voie !"
@@ -4775,19 +5227,15 @@ msgstr "Nudité non sexuelle"
msgid "Not followed by anyone you're following"
msgstr "Pas suivi par quiconque que vous suivez"
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "Introuvable"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "Pas maintenant"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Note sur le partage"
@@ -4795,7 +5243,7 @@ msgstr "Note sur le partage"
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Remarque : Bluesky est un réseau ouvert et public. Ce paramètre limite uniquement la visibilité de votre contenu sur l’application et le site Web de Bluesky, et d’autres applications peuvent ne pas respecter ce paramètre. Votre contenu peut toujours être montré aux personnes non connectées par d’autres applications et sites Web."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Rien ici"
@@ -4803,7 +5251,7 @@ msgstr "Rien ici"
msgid "Notification filters"
msgstr "Filtres de notification"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Paramètres de notification"
@@ -4820,11 +5268,11 @@ msgstr "Sons de notification"
msgid "Notification Sounds"
msgstr "Sons de notification"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Notifications"
@@ -4832,12 +5280,12 @@ msgstr "Notifications"
msgid "now"
msgstr "maintenant"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Maintenant"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Nudité"
@@ -4859,21 +5307,23 @@ msgstr "Oh non !"
msgid "Oh no! Something went wrong."
msgstr "Oh non ! Il y a eu un problème."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "OK"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "Plus anciennes réponses en premier"
@@ -4881,19 +5331,19 @@ msgstr "Plus anciennes réponses en premier"
msgid "on<0><1/><2><3/>2>0>"
msgstr "sur<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Réinitialiser le didacticiel"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "Un ou plusieurs GIFs n’ont pas de texte alt."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "Une ou plusieurs images n’ont pas de texte alt."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "Une ou plusieurs vidéos n’ont pas de texte alt."
@@ -4905,11 +5355,11 @@ msgstr "Seuls les fichiers .jpg et .png sont acceptés"
msgid "Only {0} can reply."
msgstr "Seul {0} peut répondre."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Ne contient que des lettres, des chiffres et des traits d’union"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "Seuls les fichiers d’images sont pris en charge"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "Oups, quelque chose n’a pas marché !"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "Oups !"
@@ -4935,67 +5385,80 @@ msgstr "Oups !"
msgid "Open"
msgstr "Ouvert"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "Ouvre le menu de raccourci du profil de {name}"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Ouvre le créateur d’avatar"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "Ouvrir les options de conversation"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "Ouvre le menu latéral"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Ouvrir le sélecteur d’emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "Ouvrir l’écran des infos sur le fil d’actu"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "Ouvrir le menu des options de fil d’actu"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr "Ouvrir la liste complète des emojis"
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "Ouvrir le lien vers {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "Ouvrir les options de message"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "Ouvrir la page de débogage de modération"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Ouvrir les paramètres des mots masqués et mots-clés"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr "Ouvrir le kit"
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "Ouvrir le menu d’options du post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr "Ouvrir le profil"
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr "Ouvrir le menu de partage"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "Ouvrir le menu du kit de démarrage"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Ouvrir la page Storybook"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Ouvrir le journal du système"
@@ -5015,19 +5478,19 @@ msgstr "Ouvre une boîte de dialogue permettant de choisir qui peut répondre à
msgid "Opens additional details for a debug entry"
msgstr "Ouvre des détails supplémentaires pour une entrée de débug"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
msgstr "Ouvre la boîte de dialogue sur le texte alt"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Ouvre l’appareil photo de l’appareil"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
msgstr "Ouvre la boîte de dialogue sur les sous-titres et le texte alt"
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr "Ouvre la boîte de dialogue de changement de pseudo"
@@ -5039,7 +5502,7 @@ msgstr "Ouvre la fenêtre de rédaction"
msgid "Opens device photo gallery"
msgstr "Ouvre la galerie de photos de l’appareil"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr "Ouvre le sélecteur d’emoji"
@@ -5057,7 +5520,7 @@ msgstr "Ouvre le parcours pour vous connecter à votre compte Bluesky existant"
msgid "Opens GIF select dialog"
msgstr "Ouvre la sélection de GIF"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr "Ouvre le site d’aide dans un navigateur"
@@ -5065,6 +5528,10 @@ msgstr "Ouvre le site d’aide dans un navigateur"
msgid "Opens list of invite codes"
msgstr "Ouvre la liste des codes d’invitation"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr "Ouvre la fenêtre de statut « En direct »"
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Ouvre le formulaire de réinitialisation du mot de passe"
@@ -5073,12 +5540,12 @@ msgstr "Ouvre le formulaire de réinitialisation du mot de passe"
msgid "Opens the linked website"
msgstr "Ouvre le site web lié"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Ouvre ce profil"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Ouvre le sélecteur de vidéos"
@@ -5121,11 +5588,11 @@ msgstr "État des MàJs : Aucune disponible"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Autre"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Autre compte"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Page introuvable"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "Mettre en pause"
msgid "Pause video"
msgstr "Mettre en pause la vidéo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "Personnes"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "Personnes suivies par @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "Personnes qui suivent @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "Permission d’accès à la pellicule requise."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "Permission d’accès à la pellicule refusée. Activez-la dans les paramètres de votre système pour continuer."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr "Permission d’accès à votre photothèque refusée. Veuillez l’autoriser depuis vos paramètres système."
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "Animaux domestiques"
msgid "Photography"
msgstr "Photographie"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Images destinées aux adultes."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr "Épingler"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "Épingler le fil d’actu"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr "Épinglez le fil des vidéos tendances à votre page d’accueil pour un accès facile"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr "Épingler le fil d’actu"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Ajouter à l’accueil"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Ajouter à l’accueil"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Épingler à votre profil"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Épinglé"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "{0} ajouté à l’accueil"
@@ -5263,7 +5722,7 @@ msgstr "{0} ajouté à l’accueil"
msgid "Pinned Feeds"
msgstr "Fils épinglés"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "Épinglé à vos fils d’actu"
@@ -5302,24 +5761,28 @@ msgstr "Lance le GIF"
msgid "Plays the video"
msgstr "Lance la vidéo"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr "Veuillez ajouter toute étiquette d’avertissement de contenu pertinente pour le média que vous postez."
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Veuillez choisir votre pseudo."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Veuillez choisir votre mot de passe."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr "Veuillez cliquer sur le lien dans l’e-mail que nous venons de vous envoyer pour vérifier votre nouvelle adresse. C’est une étape importante permettant de continuer à profiter de toutes les fonctionnalités de Bluesky."
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Veuillez compléter le captcha de vérification."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Veuillez confirmer votre e-mail avant de le modifier. Ceci est temporairement requis pendant que des outils de mise à jour d’e-mail sont ajoutés, cette étape ne sera bientôt plus nécessaire."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr "Veuillez vérifier scrupuleusement que vous avez écrit votre adresse e-mail correctement."
@@ -5335,19 +5798,41 @@ msgstr "Veuillez saisir un mot de passe. Il doit comporter au moins 8 caractère
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Veuillez saisir un nom unique pour ce mot de passe d’application ou utiliser un nom généré de manière aléatoire."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr "Veuillez saisir un code valide."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr "Veuillez saisir une adresse e-mail valide."
+
#: 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:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr "Veuillez saisir le code que nous avons envoyé à <0>{0}0> ci-dessous."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr "Veuillez saisir le code de sécurité que nous avons envoyé à votre précédente adresse e-mail."
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Veuillez entrer votre e-mail."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Veuillez saisir votre code d’invitation."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr "Veuillez saisir votre nouvelle adresse e-mail."
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr "Veuillez entrer votre mot de passe"
@@ -5381,24 +5866,25 @@ msgstr "Veuillez sélectionner une raison pour ce signalement"
msgid "Please sign in as @{0}"
msgstr "Identifiez-vous en tant que @{0}"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr "Veuillez vérifier votre e-mail"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Veuillez vérifier votre e-mail"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Politique"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr "Vidéos populaires dans votre réseau."
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Porno"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Poster"
@@ -5408,23 +5894,23 @@ msgctxt "description"
msgid "Post"
msgstr "Post"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Tout poster"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "Post de {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "Post de @{0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
msgstr "Post supprimé"
@@ -5433,7 +5919,7 @@ msgstr "Post supprimé"
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Échec de l’envoi du post. Vérifiez votre connexion Internet et réessayez."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr "Post supprimé"
@@ -5455,7 +5941,7 @@ msgstr "Post caché par vous"
msgid "Post interaction settings"
msgstr "Paramètres d’interaction du post"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr "Paramètres d’interaction du post"
@@ -5483,8 +5969,9 @@ msgctxt "toast"
msgid "Post unpinned"
msgstr "Post désépinglé"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Posts"
@@ -5524,7 +6011,7 @@ msgstr "Appuyer pour voir les personnes qui suivent ce compte et que vous suivez
msgid "Previous image"
msgstr "Image précédente"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Langue principale"
@@ -5537,31 +6024,31 @@ msgstr "Prioriser vos abonnements"
msgid "Priority notifications"
msgstr "Notifications prioritaires"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Vie privée"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "Confidentialité et sécurité"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Confidentialité et sécurité"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Charte de confidentialité"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Traitement de la vidéo en cours…"
@@ -5570,20 +6057,20 @@ msgstr "Traitement de la vidéo en cours…"
msgid "Processing..."
msgstr "Traitement…"
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Profil"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
msgstr "Profil mis à jour"
@@ -5600,6 +6087,26 @@ msgstr "Listes publiques et partageables de comptes à masquer ou à bloquer."
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "Listes publiques et partageables de comptes qui peuvent alimenter les fils d’actu."
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr "Publier le post"
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr "Publier les posts"
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr "Publier les réponses"
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr "Publier la réponse"
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "Code QR copié dans votre presse-papier !"
@@ -5612,25 +6119,25 @@ msgstr "Code QR a été téléchargé !"
msgid "QR code saved to your camera roll!"
msgstr "Code QR enregistré dans votre photothèque !"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Citer le post"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "La citation a été ré-attachée"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "La citation a été détachée avec succès"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "Citations désactivées"
@@ -5642,39 +6149,48 @@ msgstr "Paramètres des citations"
msgid "Quotes"
msgstr "Citations"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "Citations de ce post"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Aléatoire"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "Limite de changements dépassée – vous avez essayé de changer votre pseudo trop souvent dans une courte période. Veuillez attendre avant de réessayer."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "Réattacher la citation"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr "Réagir avec {emoji}"
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Réactiver votre compte"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr "Lire le post de blog (en anglais)"
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr "Lire moins"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr "Lire plus"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Lire le blog de Bluesky"
@@ -5697,11 +6213,11 @@ msgstr "Raison de l’appel"
msgid "Reason:"
msgstr "Raison :"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Recherches récentes"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "Recommandé"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "Se reconnecter"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr "Décliner"
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr "Décliner la demande de discussion"
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Rafraîchir les conversations"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Supprimer"
msgid "Remove {displayName} from starter pack"
msgstr "Supprimer {displayName} du kit de démarrage"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr "Supprimer {historyItem}"
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Supprimer compte"
@@ -5752,13 +6268,13 @@ msgstr "Supprimer compte"
msgid "Remove attachment"
msgstr "Supprimer la pièce jointe"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Supprimer l’avatar"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "Supprimer l’image d’en-tête"
@@ -5776,24 +6292,25 @@ msgstr "Supprimer le fil d’actu"
msgid "Remove feed?"
msgstr "Supprimer le fil d’actu ?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Supprimer de mes fils d’actu"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "Supprimer de l’accès rapide ?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "Supprimer des fils d’actu enregistrés"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr "Supprimer de vos fils d’actu ?"
@@ -5802,11 +6319,16 @@ msgstr "Supprimer de vos fils d’actu ?"
msgid "Remove image"
msgstr "Supprimer l’image"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr "Supprimer le statut « En direct »"
+
#: 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:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Supprimer le profil"
@@ -5814,12 +6336,12 @@ msgstr "Supprimer le profil"
msgid "Remove quote"
msgstr "Supprimer la citation"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Supprimer le repost"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Supprimer le fichier de sous-titres"
@@ -5827,6 +6349,21 @@ msgstr "Supprimer le fichier de sous-titres"
msgid "Remove this feed from your saved feeds"
msgstr "Supprimer ce fil d’actu de vos fils d’actu enregistrés"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr "Supprimer le compte de la liste"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr "Retirer la vérification"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr "Retirer votre vérification de ce compte ?"
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "Supprimé par l’auteur·ice"
@@ -5835,7 +6372,7 @@ msgstr "Supprimé par l’auteur·ice"
msgid "Removed by you"
msgstr "Supprimé par vous"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Supprimé de la liste"
@@ -5845,19 +6382,18 @@ msgid "Removed from my feeds"
msgstr "Supprimé de mes fils d’actu"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Supprimé de vos fils d’actu enregistrés"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Supprimé de vos fils d’actu"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr "Supprime le profil de l’historique de recherche"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr "Vérification retirée"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
@@ -5868,7 +6404,7 @@ msgstr "Supprime le post cité"
msgid "Replace with Discover"
msgstr "Remplacer par Discover"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Réponses"
@@ -5880,12 +6416,13 @@ msgstr "Les réponses sont désactivées"
msgid "Replies to this post are disabled."
msgstr "Les réponses à ce post sont désactivées."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Répondre"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Répondre ({0, plural, one {# réponse} other {# réponses}})"
@@ -5907,86 +6444,86 @@ msgstr "Paramètres de réponse"
msgid "Reply settings are chosen by the author of the thread"
msgstr "Les paramètres de réponse sont choisis par l’auteur·ice du fil de discussion"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "Ordre des réponses"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Réponse à <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Réponse à un post bloqué"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "Réponse à un post"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Réponse à vous"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
msgstr "Visibilité de la réponse mise à jour"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "La réponse a été cachée avec succès"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Signaler"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "Signaler le compte"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Signaler la conversation"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "Fenêtre de dialogue de signalement"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Signaler le fil d’actu"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
msgstr "Signaler la liste"
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Signaler le message"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Signaler le post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "Signaler le kit de démarrage"
@@ -6030,25 +6567,26 @@ msgstr "Signaler ce kit de démarrage"
msgid "Report this user"
msgstr "Signaler ce compte"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Republier"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Republier"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Republier ({0, plural, one {# repost} other {# reposts}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Republier ou citer"
@@ -6056,27 +6594,27 @@ msgstr "Republier ou citer"
msgid "Reposted By"
msgstr "Republié par"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "Republié par {0}"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "Republié par <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "Republié par vous"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "Reposts de ce post"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "Demande de modification"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr "Demander la modification"
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6088,11 +6626,11 @@ msgstr "Demander un code"
msgid "Require alt text before posting"
msgstr "Nécessiter un texte alt avant de publier"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr "Nécessiter un code par e-mail pour se connecter au compte."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Obligatoire pour cet hébergeur"
@@ -6100,13 +6638,19 @@ msgstr "Obligatoire pour cet hébergeur"
msgid "Required in your region"
msgstr "Nécessaire dans votre région"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr "Renvoyer"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "Renvoyer l’e-mail"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "Renvoyer l’e-mail"
@@ -6123,8 +6667,8 @@ msgstr "Réinitialiser le code"
msgid "Reset Code"
msgstr "Code de réinitialisation"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "Réinitialisation du didacticiel"
@@ -6141,16 +6685,16 @@ msgstr "Réessaye de se connecter"
msgid "Retries the last action, which errored out"
msgstr "Réessaye la dernière action, qui a échoué"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "Réessaye la dernière action, qui a échoué"
msgid "Retry"
msgstr "Réessayer"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr "Réessayer le chargement des options de signalement"
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Retourne à la page précédente"
@@ -6175,11 +6719,11 @@ msgstr "Retourne à la page précédente"
msgid "Returns to home page"
msgstr "Retour à la page d’accueil"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "Retour à la page précédente"
@@ -6190,24 +6734,26 @@ msgstr "Retourne à l’étape précédente"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Enregistrer"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Enregistrer"
@@ -6221,12 +6767,12 @@ msgstr "Enregistrer la date de naissance"
msgid "Save changes"
msgstr "Enregistrer les modifications"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Enregistrer"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Enregistrer l’image"
@@ -6234,16 +6780,16 @@ msgstr "Enregistrer l’image"
msgid "Save image crop"
msgstr "Enregistrer le recadrage de l’image"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Enregistrer votre nouveau pseudo"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "Enregistrer le code QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Enregistrer dans mes fils d’actu"
@@ -6251,16 +6797,12 @@ msgstr "Enregistrer dans mes fils d’actu"
msgid "Saved Feeds"
msgstr "Fils d’actu enregistrés"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "Enregistré dans votre photothèque"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "Enregistré à mes fils d’actu"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "Enregistre les changements sur votre profil"
@@ -6270,8 +6812,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/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "Dites bonjour !"
@@ -6280,45 +6822,42 @@ msgstr "Dites bonjour !"
msgid "Science"
msgstr "Science"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "Remonter en haut"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Recherche"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Rechercher dans les posts de @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "Rechercher par nom ou intérêt"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "Rechercher des fils d’actu"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "Recherche de « {interestsDisplayName} »{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Recherche de « {query} »"
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "Recherche de « {searchText} »"
@@ -6326,29 +6865,33 @@ msgstr "Recherche de « {searchText} »"
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/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr "Rechercher plus de comptes"
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr "Rechercher plus de fils d’actu"
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
msgstr "Rechercher des posts, des comptes ou des fils d’actu"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Rechercher des comptes"
-
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "Rechercher des GIFs"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr "Rechercher dans mes posts"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr "Rechercher dans ses posts"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Rechercher dans les profils"
@@ -6356,16 +6899,20 @@ msgstr "Rechercher dans les profils"
msgid "Search Tenor"
msgstr "Rechercher dans Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr "Rechercher…"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr "Recherche parmi les profils"
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr "Étape de sécurité requise"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Étape de sécurité requise"
@@ -6385,7 +6932,7 @@ msgstr "Voir les posts #{tag}"
msgid "See #{tag} posts by user"
msgstr "Voir les posts #{tag} de ce compte"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Voir les offres d’emploi chez Bluesky"
@@ -6405,6 +6952,10 @@ msgstr "Sélectionner une couleur"
msgid "Select account"
msgstr "Sélectionner un compte"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr "Sélectionner une langue pour l’appli."
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Sélectionner un avatar"
@@ -6413,10 +6964,22 @@ msgstr "Sélectionner un avatar"
msgid "Select an emoji"
msgstr "Sélectionner un emoji"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr "Sélectionner une option"
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr "Sélectionner la langue de l’appli."
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Sélectionner les langues de contenu"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr "Sélectionner une durée"
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Sélectionner un compte existant"
@@ -6433,15 +6996,15 @@ msgstr "Sélectionner le GIF « {0} »"
msgid "Select how long to mute this word for."
msgstr "Sélectionnez la durée pendant laquelle vous souhaitez masquer ce mot."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Sélectionner la langue…"
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Sélectionner les langues"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr "Sélectionner un service de modération"
@@ -6449,6 +7012,10 @@ msgstr "Sélectionner un service de modération"
msgid "Select moderator"
msgstr "Sélectionner une modération"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr "Sélectionner la langue principale"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "Sélectionner l’emoji {emojiName} comme avatar"
msgid "Select the moderation service(s) to report to"
msgstr "Sélectionnez le(s) service(s) de modération destinataires du signalement"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Sélectionner une vidéo"
@@ -6470,23 +7037,24 @@ msgstr "Sélectionner une vidéo"
msgid "Select what content this mute word should apply to."
msgstr "Sélectionnez le contenu pour lequel ce mot masqué doit s’appliquer."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr "Choisissez la langue à utiliser pour l’interface de l’application."
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
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."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Sélectionnez votre date de naissance"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "Sélectionnez vos centres d’intérêt parmi les options ci-dessous"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
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."
@@ -6498,19 +7066,17 @@ msgstr "Sélectionne l’option {0} sur {numItems}"
msgid "Send a neat website!"
msgstr "Envoyez un site chouette !"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
msgstr "Envoyer la confirmation"
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Envoyer l’e-mail de confirmation"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Envoyer un e-mail de confirmation"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Envoyer e-mail"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Envoyer l’e-mail"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Envoyer des commentaires"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Envoyer le message"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr "Envoyer le post à {name}"
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Envoyer le post à…"
@@ -6544,17 +7114,20 @@ msgstr "Envoyer le signalement"
msgid "Send report to {0}"
msgstr "Envoyer le signalement à {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr "Envoyer le signalement à {title}"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Envoyer l’e-mail de vérification"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Envoyer par message privé"
@@ -6570,7 +7143,7 @@ msgstr "Adresse du serveur"
msgid "Set app icon to {0}"
msgstr "Définir l’icône de l’application comme {0}"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "Entrez votre date de naissance"
@@ -6586,10 +7159,10 @@ msgstr "Créez votre compte"
msgid "Sets email for password reset"
msgstr "Définit l’e-mail pour la réinitialisation du mot de passe"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Paramètres"
@@ -6598,7 +7171,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Paramètres enregistrés"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Activité sexuelle ou nudité érotique."
@@ -6606,21 +7179,15 @@ msgstr "Activité sexuelle ou nudité érotique."
msgid "Sexually Suggestive"
msgstr "Sexuellement suggestif"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Partager"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Partager"
@@ -6633,15 +7200,19 @@ msgstr "Partagez une histoire sympa !"
msgid "Share a fun fact!"
msgstr "Partagez une anecdote insolite !"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Partager quand même"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr "Partager le DID de l’auteur"
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "Partager le lien"
@@ -6650,32 +7221,46 @@ msgstr "Partager le lien"
msgid "Share Link"
msgstr "Partager le lien"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "Dialogue pour le partage d’un lien"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr "Partager l’URI at:// du post"
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Partager le code QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "Partager ce fil d’actu"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "Partagez ce kit de démarrage"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "Partagez ce kit de démarrage et aidez les gens à rejoindre votre communauté sur Bluesky."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr "Partager via…"
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "Partagez votre fil d’actu favori !"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "Testeur de préférences partagées"
@@ -6685,7 +7270,7 @@ msgstr "Partage le site web lié"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Afficher"
@@ -6696,8 +7281,8 @@ msgstr "Voir le texte alt"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Afficher quand même"
@@ -6718,8 +7303,8 @@ msgstr "Afficher les paramètres de personnalisation"
msgid "Show hidden replies"
msgstr "Afficher les réponses cachées"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "En montrer moins comme ça"
@@ -6727,14 +7312,14 @@ msgstr "En montrer moins comme ça"
msgid "Show list anyway"
msgstr "Afficher quand même la liste"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Voir plus"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "En montrer plus comme ça"
@@ -6752,7 +7337,7 @@ msgstr "Afficher les citations"
msgid "Show replies"
msgstr "Afficher les réponses"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "Type d’affichage des réponses"
@@ -6764,8 +7349,8 @@ msgstr "Afficher les réponses comme des fils"
msgid "Show replies by people you follow before all other replies"
msgstr "Afficher les réponses des comptes que vous suivez avant les autres réponses"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "Afficher la réponse pour tout le monde"
@@ -6787,11 +7372,11 @@ msgstr "Afficher l’avertissement"
msgid "Show warning and filter from feeds"
msgstr "Afficher l’avertissement et filtrer des fils d’actu"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr "Affiche plus d’informations sur la date de création de ce post"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr "Affiche les autres comptes vers lesquels vous pouvez basculer"
@@ -6809,8 +7394,8 @@ msgstr "Affiche le contenu"
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr "Affiche le contenu"
msgid "Sign in"
msgstr "Connexion"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Se connecter en tant que {0}"
@@ -6826,16 +7411,16 @@ msgstr "Se connecter en tant que {0}"
msgid "Sign in as..."
msgstr "Se connecter en tant que…"
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr "Se connecter ou créer un compte"
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "Connectez-vous ou créez votre compte pour participer à la conversation !"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "Se connecter ou s’inscrire"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "Se connecter à un compte qui n’est pas listé"
@@ -6843,15 +7428,15 @@ msgstr "Se connecter à un compte qui n’est pas listé"
msgid "Sign in to Bluesky or create a new account"
msgstr "Connectez-vous à Bluesky ou créez un nouveau compte"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Déconnexion"
@@ -6859,8 +7444,8 @@ msgstr "Déconnexion"
msgid "Sign Out"
msgstr "Se déconnecter"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "Se déconnecter ?"
@@ -6874,11 +7459,6 @@ msgstr "Connexion requise"
msgid "Signed in as @{0}"
msgstr "Connecté en tant que @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "S’inscrire sans kit de démarrage"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Comptes similaires"
@@ -6896,12 +7476,21 @@ msgstr "Passer cette étape"
msgid "Smaller"
msgstr "Plus petite"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr "Repousse le rappel"
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Développement de logiciels"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr "Certaines de vos vérifications ne sont pas valides."
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "Quelques autres fils d’actu qui pourraient vous intéresser"
@@ -6909,23 +7498,31 @@ msgstr "Quelques autres fils d’actu qui pourraient vous intéresser"
msgid "Some people can reply"
msgstr "Quelques comptes peuvent répondre"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr "Quelqu’un a réagi avec {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr "Quelqu’un a réagi à {1} avec {0}"
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Il y a un souci avec les données que vous essayez de signaler. Veuillez contacter le support."
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Quelque chose n’a pas marché"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Quelque chose n’a pas marché, veuillez réessayer"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Quelque chose n’a pas marché, veuillez réessayer."
@@ -6934,16 +7531,16 @@ msgstr "Quelque chose n’a pas marché, veuillez réessayer."
msgid "Something went wrong!"
msgstr "Quelque chose n’a pas marché !"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr "Quelque chose n’a pas marché. Veuillez réessayer."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "Un problème ? Dites-nous tout."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "Désolé ! Votre session a expiré. Essayez de vous reconnecter."
@@ -6978,34 +7575,39 @@ msgstr "Spam ; mentions ou réponses excessives"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Sports"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr "Démarrez une conversation, et elle apparaîtra ici."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Démarrer une nouvelle discussion"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "Commencer à ajouter des personnes"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "Commencez à ajouter des personnes !"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Démarrer une discussion avec {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Kit de démarrage"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "Kit de démarrage par {0}"
@@ -7013,38 +7615,39 @@ msgstr "Kit de démarrage par {0}"
msgid "Starter pack by <0/>"
msgstr "Kit de démarrage par <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "Kit de démarrage par vous"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "Le kit de démarrage n’est pas valide"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "Kits de démarrage"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
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/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "État du service"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "Étape {0} sur {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "Stockage effacé, vous devez redémarrer l’application maintenant."
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "Historique"
@@ -7063,46 +7666,51 @@ msgstr "Faire appel"
msgid "Submit Appeal"
msgstr "Faire appel"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr "Envoyer le signalement"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "S’abonner"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "Abonnez-vous à @{0} pour utiliser ces étiquettes :"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "S’abonner à l’étiqueteur"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "S’abonner à cet étiqueteur"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "S’abonner à cette liste"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "Succès !"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr "Vérification réussie"
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
msgstr "Comptes suggérés"
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Suggérés pour vous"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Suggestif"
@@ -7116,16 +7724,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Coucher du soleil"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Soutien"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Changer de compte"
@@ -7134,11 +7742,11 @@ msgstr "Changer de compte"
msgid "Switch Account"
msgstr "Changer de compte"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "Changer de compte"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr "Basculer vers {0}"
@@ -7149,9 +7757,9 @@ msgstr "Basculer vers {0}"
msgid "System"
msgstr "Système"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Journal système"
@@ -7159,6 +7767,12 @@ msgstr "Journal système"
msgid "Tags only"
msgstr "Mots-clés seulement"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr "Taper pour fermer le menu contextuel"
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Appuyer pour annuler"
@@ -7184,7 +7798,7 @@ msgstr "Technologie"
msgid "Tell a joke!"
msgstr "Racontez une blague !"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "Dites-nous en un peu à propos de vous"
@@ -7192,17 +7806,17 @@ msgstr "Dites-nous en un peu à propos de vous"
msgid "Tell us a little more"
msgstr "Dites-nous en un peu plus"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Conditions générales"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Conditions d’utilisation"
@@ -7230,7 +7844,11 @@ msgstr "Champ de texte"
msgid "Text input field"
msgstr "Champ de saisie de texte"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr "Merci pour votre retour ! Il sera envoyé au fournisseur du fil d’actu."
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "Merci ! Votre adresse e-mail a été vérifiée avec succès."
@@ -7242,7 +7860,7 @@ msgstr "Nous vous remercions. Votre signalement a été envoyé."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Merci, vous avez vérifié avec succès votre adresse e-mail. Vous pouvez fermer cette fenêtre."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "Qui contient les éléments suivants :"
@@ -7250,10 +7868,10 @@ msgstr "Qui contient les éléments suivants :"
msgid "That handle is already taken."
msgstr "Ce pseudo est déjà occupé."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "Ce kit de démarrage n’a pas pu être trouvé."
msgid "That's all, folks!"
msgstr "Et voilà, c’est tout !"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr "C’est tout !"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "Ce compte pourra interagir avec vous après le déblocage."
@@ -7282,7 +7900,7 @@ msgstr "L’application redémarrera."
msgid "The author of this thread has hidden this reply."
msgstr "L’auteur·ice de ce fil de discussion a masqué cette réponse."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "L’application web Bluesky"
@@ -7302,6 +7920,10 @@ msgstr "Le fil d’actu « Discover »"
msgid "The Discover feed now knows what you like"
msgstr "Le fil d’actu « Discover » sait désormais ce que vous aimez"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr "L’adresse e-mail que vous avez entrée est la même que votre adresse e-mail courante."
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
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."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "Notre politique de confidentialité a été déplacée vers <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "La vidéo sélectionnée a une taille supérieure à 50 Mo."
+msgid "The selected video is larger than 100 MB."
+msgstr "La vidéo sélectionnée a une taille supérieure à 100 Mo."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "Le serveur semble rencontrer des problèmes. Veuillez réessayer ultérieurement."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
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."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr "Le sujet du menu contextuel"
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "Le formulaire d’assistance a été déplacé. Si vous avez besoin d’aide, veuillez <0/> ou rendez-vous sur {HELP_DESK_URL} pour nous contacter."
@@ -7367,15 +7994,15 @@ msgstr "Il n’y a pas de limite de temps pour la désactivation du compte, reve
msgid "There was an issue connecting to Tenor."
msgstr "Il y a eu un problème de connexion à Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "Il y a eu un problème de connexion au serveur"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Il y a eu un problème de connexion au serveur, vérifiez votre connexion Internet et réessayez."
@@ -7388,11 +8015,12 @@ msgstr "Il y a eu un problème de connexion à votre serveur"
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/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
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."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
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."
@@ -7400,12 +8028,12 @@ msgstr "Il y a eu un problème lors de la récupération de la liste. Appuyez ic
msgid "There was an issue fetching your app passwords"
msgstr "Il y a eu un problème lors de la récupération de vos mots de passe d’application"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
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/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "Il y a eu un problème lors de la récupération de vos informations de service"
@@ -7418,26 +8046,26 @@ msgstr "Il y a eu un problème lors de la suppression de ce fil d’actu. Vérif
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 signalement. Vérifiez votre connexion internet."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "Il y a eu un problème lors de la mise-à-jour de vos fils d’actu. Vérifiez votre connexion internet et réessayez."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "Il y a eu un problème ! {0}"
@@ -7445,10 +8073,10 @@ msgstr "Il y a eu un problème ! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Il y a eu un problème. Vérifiez votre connexion Internet et réessayez."
@@ -7469,6 +8097,14 @@ msgstr "Ces paramètres s’appliquent seulement pour votre fil d’abonnements.
msgid "This {screenDescription} has been flagged:"
msgstr "Ce {screenDescription} a été signalé :"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr "Ce compte a une coche car il a été vérifié par des sources de confiance."
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr "Ce compte a une ou plusieurs tentatives de vérifications, mais n’est pas actuellement vérifié."
+
#: src/components/moderation/ScreenHider.tsx:106
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."
@@ -7477,6 +8113,10 @@ msgstr "Ce compte a demandé aux personnes de se connecter pour voir son profil.
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 "Ce compte est bloqué par un ou plusieurs de vos listes de modération. Pour le débloquer, visitez vos listes directement et retirez-en ce compte."
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr "Cette action peut être annulée à tout moment."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Cet appel sera envoyé à <0>{sourceName}0>."
@@ -7510,14 +8150,22 @@ msgstr "Ce contenu n’est pas disponible car l’un des comptes impliqués a bl
msgid "This content is not viewable without a Bluesky account."
msgstr "Ce contenu n’est pas visible sans un compte Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Cette conversation se fait avec un compte supprimé ou désactivé. Appuyer pour plus d’options"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr "Cette adresse e-mail est déjà associée à votre compte."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "Cette fonctionnalité est en version bêta. Vous pouvez en savoir plus sur les exportations de dépôts dans <0>ce blogpost0>."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr "Cette fonctionnalité n’est pas disponible lorsque vous utilisez un mot de passe d’application. Veuillez vous connecter avec le mot de passe de votre compte."
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "Cette fonctionnalité n’est pas disponible lorsque vous utilisez un mot de passe d’application. Veuillez vous connecter avec le mot de passe de votre compte."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Ce fil d’actu est vide ! Vous devriez peut-être suivre plus de comptes ou ajuster vos paramètres de langue."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Ce fil d’actu est vide."
@@ -7540,7 +8188,7 @@ msgstr "Ce fil d’actu est vide."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Ce fil d’actu n’est plus disponible. Nous vous montrons <0>Discover0> à la place."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "Ce pseudo est réservé. Veuillez utiliser un pseudo différent."
@@ -7548,9 +8196,10 @@ msgstr "Ce pseudo est réservé. Veuillez utiliser un pseudo différent."
msgid "This information is not shared with other users."
msgstr "Ces informations ne sont pas partagées avec d’autres personnes."
-#: src/view/com/modals/VerifyEmail.tsx:127
-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/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr "Ce n’est pas un lien valide"
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "Cette étiquette a été apposée par l’auteur·ice."
msgid "This label was applied by you."
msgstr "Cette étiquette a été apposée par vous."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "Cet étiqueteur n’a pas déclaré les étiquettes qu’il publie et peut ne pas être actif."
@@ -7576,7 +8225,7 @@ msgstr "Cette liste – créée par <0>{0}0> – contient des violations possi
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr "Cette liste – que vous avez créée – contient des violations possibles des directives communautaires de Bluesky dans son nom ou sa description."
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "Cette liste est vide."
@@ -7584,7 +8233,7 @@ msgstr "Cette liste est vide."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Ce service de modération n’est pas disponible. Voir ci-dessous pour plus de détails. Si le problème persiste, contactez-nous."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Ce post déclare avoir été créé le <0>{0}0>, mais a été vu pour la première fois par Bluesky le <1>{1}1>."
@@ -7592,28 +8241,29 @@ msgstr "Ce post déclare avoir été créé le <0>{0}0>, mais a été vu pour
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr "Ce post a un type inconnu de restriction de fil. Votre appli. n’est peut-être pas à jour."
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "Ce post a été supprimé."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed 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/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Ce post sera masqué des fils d’actu et des fils de discussion. C’est irréversible."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "L’auteur·ice de ce post a désactivé les citations."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Ce profil n’est visible que pour les personnes connectées. Il ne sera pas visible pour les personnes qui ne sont pas connectées."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr "Cette réponse sera classée dans une section cachée au bas de votre fil de discussion et masquera les notifications pour les réponses suivantes – à la fois pour vous-même et pour les autres."
@@ -7621,10 +8271,14 @@ msgstr "Cette réponse sera classée dans une section cachée au bas de votre fi
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é."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "Cela devrait créer un enregistrement de domaine à :"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr "Ce compte n’a pas de nom d’affichage, et ne peut donc pas être vérifié."
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "Ce compte n’a pas d’abonné·e·s."
@@ -7662,21 +8316,21 @@ msgstr "Ce compte ne suit personne."
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/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "Cela supprimera @{0} de la liste d’accès rapide."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "Cela retirera votre post de cette citation pour tout le monde, et le remplacera par un espace vide."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "Options de fil de discussion"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Préférences des fils de discussion"
@@ -7684,8 +8338,8 @@ msgstr "Préférences des fils de discussion"
msgid "Thread Preferences"
msgstr "Préférences des fils de discussion"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "Sous forme de fils"
@@ -7693,7 +8347,7 @@ msgstr "Sous forme de fils"
msgid "Threaded mode"
msgstr "Mode sous forme de fils"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Préférences des fils de discussion"
@@ -7705,14 +8359,15 @@ msgstr "Temps restant : {0, plural, one {# seconde} other {# secondes}}"
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "Pour désactiver le 2FA par e-mail, vérifiez votre accès à votre adresse e-mail."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr "Pour désactiver le 2FA par e-mail, veuillez prouver que vous avez accès à <0>{0}0>"
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "Pour signaler une conversation, signalez plutôt un de ses messages via l’écran de conversation. Cela permettra à la modération de comprendre le contexte du problème."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Pour envoyer des vidéos sur Bluesky, vous devez d’abord vérifier votre e-mail."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "À qui souhaitez-vous envoyer ce signalement ?"
@@ -7725,7 +8380,7 @@ msgstr "Aujourd’hui"
msgid "Toggle dropdown"
msgstr "Activer le menu déroulant"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "Activer ou désactiver le contenu pour adultes"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr "Rétablit/désactive le son"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Meilleur"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "Sujet"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Traduire"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "Tendances"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "Vidéos tendances"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr "La confiance émerge de relations, de communautés et d’un contexte partagé, donc nous désignons également des <0>vérificateurs de confiance0> : des organisations qui peuvent vérifier des comptes directement."
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "TV"
msgid "Two-factor authentication (2FA)"
msgstr "Auth. à deux facteurs (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Entrez votre pseudo"
@@ -7783,18 +8440,11 @@ msgstr "Entrez votre pseudo"
msgid "Type your message here"
msgstr "Écrivez votre message ici"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Type :"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Débloquer la liste"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Réafficher cette liste"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "Connexion échouée. Veuillez vérifier votre connexion Internet et réessayer."
@@ -7809,7 +8459,7 @@ msgstr "Connexion échouée. Veuillez vérifier votre connexion Internet et rée
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Impossible de contacter votre service. Vérifiez votre connexion Internet."
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "Impossible de supprimer"
@@ -7817,36 +8467,41 @@ msgstr "Impossible de supprimer"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Débloquer"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Débloquer"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Débloquer le compte"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "Débloquer le compte ?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr "Débloquer la liste"
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Annuler le repost"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Annuler le repost ({0, plural, one {# repost} other {# reposts}})"
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Se désabonner"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "Se désabonner de {0}"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "Se désabonner du compte"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr "Se désabonne du compte"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Malheureusement, aucun des étiqueteurs auxquels vous êtes abonnés ne supporte ce type de signalement."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr "Vérificateur inconnu"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "Retirer la mention « J’aime »"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Retirer la mention « J’aime » ({0, plural, one {# ont aimé} other {# ont aimé}})"
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr "Rétablir le son"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Réafficher"
@@ -7895,10 +8555,10 @@ msgstr "Réafficher"
msgid "Unmute {tag}"
msgstr "Réafficher {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "Réafficher ce compte"
@@ -7906,8 +8566,12 @@ msgstr "Réafficher ce compte"
msgid "Unmute conversation"
msgstr "Réafficher la conversation"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr "Réafficher la liste"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Réafficher ce fil de discussion"
@@ -7915,38 +8579,47 @@ msgstr "Réafficher ce fil de discussion"
msgid "Unmute video"
msgstr "Rétablir le son de la vidéo"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Désépingler"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "Désépingler le fil d’actu"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr "Désépingler le fil d’actu"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Désépingler de l’accueil"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "Désépingler du profil"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Supprimer la liste de modération"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "{0} retiré de la page d’accueil"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Désépinglé de vos fils d’actu"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr "Dérepousse le rappel d’e-mail"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Se désabonner"
@@ -7955,7 +8628,7 @@ msgstr "Se désabonner"
msgid "Unsubscribe from list"
msgstr "Se désabonner de la liste"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Se désabonner de cet étiqueteur"
@@ -7963,11 +8636,11 @@ msgstr "Se désabonner de cet étiqueteur"
msgid "Unsubscribed from list"
msgstr "Désabonné de la liste"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "Type de vidéo non pris en charge"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "Type de vidéo non pris en charge : {0}"
@@ -7987,17 +8660,28 @@ msgstr "Mettre à jour"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Mise à jour de <0>{displayName}0> dans les listes"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr "Mettre à jour l’e-mail"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Mettre à jour pour {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
+msgstr "Mettre à jour votre e-mail"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr "La mise à jour de l’attachement de la citation a échoué"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "La mise à jour de la visibilité de la réponse a échoué"
@@ -8006,30 +8690,30 @@ msgstr "La mise à jour de la visibilité de la réponse a échoué"
msgid "Updating..."
msgstr "Mise à jour…"
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Envoyer plutôt une photo"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Envoyer un fichier texte vers :"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Envoyer à partir de l’appareil photo"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Envoyer à partir de fichiers"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Envoyer à partir de la photothèque"
@@ -8042,7 +8726,7 @@ msgstr "Envoi des images en cours…"
msgid "Uploading link thumbnail..."
msgstr "Envoi de la miniature du lien en cours…"
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "Envoi de la vidéo en cours…"
@@ -8050,22 +8734,22 @@ msgstr "Envoi de la vidéo en cours…"
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Utilisez des mots de passe d’application pour vous connecter à d’autres clients Bluesky sans donner l’accès complet à votre compte ou mot de passe."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Utiliser le fournisseur par défaut"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Utiliser le navigateur interne à l’appli"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Utiliser le navigateur interne à l’appli pour ouvrir les liens"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Utiliser mon navigateur par défaut"
@@ -8119,12 +8803,12 @@ msgstr "Liste de compte de {0}"
msgid "User list by you"
msgstr "Liste de compte par vous"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
msgstr "Liste de compte créée"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
msgstr "Liste de compte mise à jour"
@@ -8150,58 +8834,88 @@ msgstr "Comptes que je suis"
msgid "Users in \"{0}\""
msgstr "Comptes dans « {0} »"
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "Comptes qui ont aimé ce contenu ou ce profil"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr "Comptes que vous suivez"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Valeur :"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "Vérification de l’adresse e-mail requise"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr "La vérification a échoué, veuillez réessayer."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr "Paramètres de vérification"
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr "Paramètres de vérification"
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr "Les vérifications sur Bluesky fonctionnent différemment que sur d’autres plateformes. <0>En savoir plus (en anglais).0>"
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr "Vérifié par :"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr "Vérifier le compte"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr "Vérifier le code"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Vérifier l’enregistrement DNS"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr "Vérifier l’e-mail"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr "Vérifier le code d’e-mail"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Boîte de dialogue de vérification de l’adresse e-mail"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Confirmer le nouvel e-mail"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Vérifier maintenant"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Vérifier le fichier texte"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr "Vérifier le compte ?"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Vérifier votre e-mail"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Vérifiez votre e-mail"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Version {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "Vidéo"
msgid "Video failed to process"
msgstr "Le traitement de la vidéo a échoué"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr "Fil de vidéos"
@@ -8224,14 +8938,15 @@ msgstr "Vidéo de {0} : {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Jeux vidéo"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr "Vidéo en pause"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr "Vidéo en cours de lecture"
@@ -8239,11 +8954,11 @@ msgstr "Vidéo en cours de lecture"
msgid "Video not found."
msgstr "Vidéo non trouvée."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Paramètres vidéo"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Vidéo envoyée"
@@ -8251,31 +8966,32 @@ msgstr "Vidéo envoyée"
msgid "Video: {0}"
msgstr "Vidéo : {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "Vidéos"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
msgstr "Les vidéos doivent faire moins de 3 minutes"
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "Voir l’avatar de {0}"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "Voir le profil de {0}"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "Voir le profil de {displayName}"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "Voir le profil du compte bloqué"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "Afficher l’entrée de débogage"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Voir les détails"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
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/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Voir le fil de discussion entier"
@@ -8308,18 +9024,17 @@ msgstr "Voir les informations sur ces étiquettes"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "Voir plus"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Voir le profil"
@@ -8331,7 +9046,11 @@ msgstr "Afficher l’avatar"
msgid "View the labeling service provided by @{0}"
msgstr "Voir le service d’étiquetage fourni par @{0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr "Voir les vérifications de ce compte"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "Voir les comptes qui ont aimé ce fil d’actu"
@@ -8339,11 +9058,11 @@ msgstr "Voir les comptes qui ont aimé ce fil d’actu"
msgid "View video"
msgstr "Voir la vidéo"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Consulter vos comptes bloqués"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr "Afficher vos paramètres d’interaction de post par défaut"
@@ -8352,14 +9071,18 @@ msgstr "Afficher vos paramètres d’interaction de post par défaut"
msgid "View your feeds and explore more"
msgstr "Consultez vos fils d’actu et explorez-en plus"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Consulter vos listes de modération"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "Consulter vos comptes masqués"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr "Voir vos vérifications"
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "Avertir du contenu"
msgid "Warn content and filter from feeds"
msgstr "Avertir du contenu et filtrer des fils d’actu"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr "Regarder maintenant"
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "Nous n’avons trouvé aucun résultat pour ce mot-clé."
@@ -8400,7 +9128,7 @@ msgstr "Nous n’avons trouvé aucun résultat pour ce mot-clé."
msgid "We couldn't find any results for that topic."
msgstr "Nous n’avons trouvé aucun résultat pour ce sujet."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "Nous ne pouvons pas charger cette conversation"
@@ -8420,6 +9148,14 @@ msgstr "Nous espérons que vous passerez un excellent moment. N’oubliez pas qu
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/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr "Nous vous recommandons de sélectionner au moins deux centres d’intérêt."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Nous avons envoyé un e-mail à <0>{0}0> contenant un lien. Veuillez cliquer dessus pour terminer le processus de vérification par e-mail."
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Nous n’avons pas pu déterminer si vous étiez autorisé à envoyer des vidéos. Veuillez réessayer."
@@ -8428,7 +9164,7 @@ msgstr "Nous n’avons pas pu déterminer si vous étiez autorisé à envoyer de
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:428
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."
@@ -8440,20 +9176,28 @@ 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/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Nous enverrons un e-mail à <0>{0}0> contenant un lien. Vous devrez cliquer dessus pour terminer le processus de vérification par e-mail."
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "Nous utiliserons ces informations pour personnaliser votre expérience."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "Nous avons des soucis de réseau, réessayez"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr "Nous introduisons un nouveau niveau de vérification sur Bluesky — une coche facile à voir."
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "Nous sommes ravis de vous accueillir !"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
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, contactez plutôt @{handleOrDid}, à l’origine de la liste."
@@ -8461,11 +9205,11 @@ msgstr "Nous sommes désolés, mais nous n’avons pas pu charger cette liste. S
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."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
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:425
+#: src/view/com/composer/Composer.tsx:421
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é."
@@ -8474,7 +9218,7 @@ msgstr "Nous sommes désolés ! Le post auquel vous répondez a été supprimé
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."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Nous sommes désolés ! Vous ne pouvez vous abonner qu’à vingt étiqueteurs, et vous avez atteint votre limite de vingt."
@@ -8494,16 +9238,16 @@ msgstr "Quels sont vos centres d’intérêt ?"
msgid "What do you want to call your starter pack?"
msgstr "Quel est le nom de votre kit de démarrage ?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "Ce sur quoi les personnes postent."
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "Quoi de neuf ?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr "Quand vous tapez sur une coche, vous verrez quelles organisations ont accordé la vérification."
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "Quelles sont les langues utilisées dans ce post ?"
@@ -8520,14 +9264,18 @@ msgstr "Qui peut interagir avec ce post ?"
msgid "Who can reply"
msgstr "Qui peut répondre ?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr "Qui peut vérifier ?"
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "Oups !"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr "Oups ! Les vidéos tendances n’ont pas réussi à se charger."
@@ -8574,11 +9322,11 @@ msgstr "Pourquoi ce compte doit-il être examiné ?"
msgid "Write a message"
msgstr "Écrire un message"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Rédiger un post"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Rédigez votre réponse"
@@ -8588,11 +9336,16 @@ msgstr "Rédigez votre réponse"
msgid "Writers"
msgstr "Écrivain·e·s"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "L’identifiant DID retourné du serveur est incorrect. Réponse : {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr "www.monfluxendirect.tv"
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Oui"
@@ -8601,15 +9354,15 @@ msgstr "Oui"
msgid "Yes, deactivate"
msgstr "Oui, désactiver"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Oui, supprimer ce kit de démarrage"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Oui, détacher"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Oui, cacher"
@@ -8625,14 +9378,31 @@ msgstr "Hier"
msgid "You"
msgstr "Vous"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr "Vous êtes un vérificateur de confiance"
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
-msgstr ""
+msgstr "Vous créez un compte sur"
#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
msgstr "Vous êtes dans la file d’attente."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr "Vous êtes en direct"
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr "Vous n’êtes plus en direct"
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr "Vous n’êtes pas autorisé à partir en direct"
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "Vous n’êtes pas autorisé à envoyer des vidéos."
@@ -8641,6 +9411,27 @@ msgstr "Vous n’êtes pas autorisé à envoyer des vidéos."
msgid "You are not following anyone."
msgstr "Vous ne suivez personne."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr "Vous êtes désormais en direct !"
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr "Votre compte est vérifié"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr "Votre compte est vérifié. Il perdra son statut de vérification si vous changez votre nom d’affichage. <0>En savoir plus (en anglais).0>"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr "Votre compte est vérifié. Il perdra son statut de vérification si vous changez votre pseudo. <0>En savoir plus (en anglais).0>"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr "Vous pouvez modifier vos centres d’intérêt à tout moment depuis les paramètres « Contenu et médias »."
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr "Vous pouvez définir les paramètres d’interaction par défaut dans <0
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "Vous pourrez changer ça plus tard depuis vos paramètres."
@@ -8682,7 +9472,7 @@ msgstr "Vous n’avez pas d’abonné·e·s."
msgid "You don't follow any users who follow @{name}."
msgstr "Vous ne suivez aucun des comptes qui suivent @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr "Vous n’avez aucune demande de discussion en attente actuellement."
@@ -8736,24 +9526,24 @@ msgstr "Vous avez masqué ce compte."
msgid "You have muted this user"
msgstr "Vous avez masqué ce compte"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
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:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "Vous n’avez aucun fil d’actu."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "Vous n’avez aucune liste."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Vous n’avez pas encore bloqué de comptes. Pour bloquer un compte, allez sur son profil et sélectionnez « Bloquer le compte » dans le menu de son compte."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Vous n’avez encore masqué aucun compte. Pour masquer un compte, allez sur son profil et sélectionnez « Masquer le compte » dans le menu de son compte."
@@ -8761,11 +9551,15 @@ msgstr "Vous n’avez encore masqué aucun compte. Pour masquer un compte, allez
msgid "You have reached the end"
msgstr "Vous avez atteint la fin"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr "Vous avez vérifié votre adresse e-mail avec succès. Vous pouvez fermer cette fenêtre."
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Vous avez temporairement atteint la limite d’envoi de vidéos. Veuillez réessayer plus tard."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "Vous n’avez pas encore créé de kit de démarrage !"
@@ -8787,22 +9581,22 @@ 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:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "Vous ne pouvez ajouter que {STARTER_PACK_MAX_SIZE} profils au maximum"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr "Vous ne pouvez ajouter que {STARTER_PACK_MAX_SIZE, plural, one {{STARTER_PACK_MAX_SIZE} profil} other {{STARTER_PACK_MAX_SIZE} profils}} au maximum"
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Vous ne pouvez ajouter que 3 fils d’actu au maximum"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "Vous ne pouvez sélectionner qu’un total de 4 images."
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "Vous devez avoir 13 ans ou plus pour vous inscrire."
+msgid "You must be 13 years of age or older to create an account."
+msgstr "Vous devez avoir 13 ans ou plus pour créer un compte."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Vous devez suivre au moins sept autres personnes pour générer un kit de démarrage."
@@ -8810,28 +9604,40 @@ msgstr "Vous devez suivre au moins sept autres personnes pour générer un kit d
msgid "You must grant access to your photo library to save a QR code"
msgstr "Vous devez autoriser l’accès à votre photothèque pour enregistrer un code QR"
-#: src/components/StarterPack/ShareDialog.tsx:68
-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:211
msgid "You must select at least one labeler for a report"
msgstr "Vous devez sélectionner au moins un étiqueteur pour un signalement"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr "Vous devez vérifier votre adresse e-mail avant de pouvoir utiliser la 2FA par e-mail."
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "Vous avez précédemment désactivé @{0}."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr "Vous voulez sans doute redémarrer l’appli. maintenant."
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr "Vous avez réagi avec {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr "Vous avez réagi à {1} avec {0}"
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "Vous serez déconnecté·e de tous vos comptes."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
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/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Vous recevrez désormais des notifications pour ce fil de discussion"
@@ -8839,23 +9645,23 @@ msgstr "Vous recevrez désormais des notifications pour ce fil de discussion"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Vous recevrez un e-mail contenant un « code de réinitialisation ». Saisissez ce code ici, puis votre nouveau mot de passe."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "Vous : {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Vous : {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "Vous : {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
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:116
+#: src/screens/Signup/index.tsx:130
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 !"
@@ -8867,7 +9673,7 @@ msgstr "Vous suivrez ces personnes et {0} autres"
msgid "You'll follow these people right away"
msgstr "Vous suivrez ces personnes immédiatement"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "Vous recevrez un e-mail à <0>{0}0> pour vérifier que c’est vous."
@@ -8901,6 +9707,10 @@ msgstr "Vous avez trouvé des personnes à suivre"
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/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr "Vous avez atteint le nombre maximum de requêtes autorisées. Veuillez réessayer plus tard."
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Vous avez atteint votre limite quotidienne d’envoi de vidéos (trop d’octets)"
@@ -8909,11 +9719,11 @@ msgstr "Vous avez atteint votre limite quotidienne d’envoi de vidéos (trop d
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Vous avez atteint votre limite quotidienne d’envoi de vidéos (trop de vidéos)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Vous êtes venus à bout de vidéos à regarder. Peut-être est-ce un bon moment pour prendre une pause ?"
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "Votre compte"
@@ -8941,7 +9751,7 @@ msgstr "Votre compte a été considéré comme violant les <0>Conditions génér
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr "Votre appel a été envoyé. Si votre appel est réussi, vous recevrez un e-mail."
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "Votre date de naissance"
@@ -8953,26 +9763,30 @@ msgstr "Votre navigateur ne prend pas en charge le format vidéo. Essayez plutô
msgid "Your chats have been disabled"
msgstr "Vos discussions ont été désactivées"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-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/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr "Votre choix sera mémorisé pour les futurs liens. Vous pouvez changer ça à tout moment dans vos paramètres."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "Votre pseudo actuel <0>{0}0> sera automatiquement conservé et vous sera réservé. Vous pourrez y revenir à tout moment depuis ce compte."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr "Votre adresse e-mail a été mis à jour, mais n’a pas été vérifié. L’étape suivante consiste à vérifier votre nouvelle adresse e-mail."
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Votre e-mail semble être invalide."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "Votre e-mail a été mis à jour, mais n’a pas été vérifié. L’étape suivante consiste à vérifier votre nouvel e-mail."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr "Votre adresse e-mail n’a pas encore été vérifiée. Veuillez vérifier votre adresse e-mail pour profiter de toutes les fonctionnalités de Bluesky."
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
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."
@@ -8988,14 +9802,31 @@ msgstr "Comptes qui vous suivent"
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/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "Votre pseudo complet sera <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr "Votre pseudo complet sera <0>@{0}0>"
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr "Vos centres d’intérêt"
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr "Vos centres d’intérêt ont été mis à jour !"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr "Vos centres d’intérêt nous aident à trouver ce que vous aimez !"
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Vos mots masqués"
@@ -9004,15 +9835,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/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr "Votre mot de passe doit comporter au moins 8 caractères."
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "Votre post a été publié"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "Vos posts ont été publiés"
@@ -9024,14 +9855,22 @@ msgstr "Vos posts, vos mentions « j’aime » et vos blocages sont publics. 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 "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:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Votre réponse a été publiée"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr "Votre signalement sera envoyé à <0>{0}0>."
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Votre signalement sera envoyé au Service de Modération de Bluesky"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr "Votre sélection de centres d’intérêt nous aide à vous proposer des contenus qui vous tiennent à cœur."
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr "Vos vérifications"
diff --git a/src/locale/locales/fy/messages.po b/src/locale/locales/fy/messages.po
new file mode 100644
index 0000000000..6e80bc6d07
--- /dev/null
+++ b/src/locale/locales/fy/messages.po
@@ -0,0 +1,9876 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2023-11-05 16:01-0800\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: fy\n"
+"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
+"Last-Translator: \n"
+"Language-Team: Frisian\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Crowdin-Project: 49a8cb746fbc2ae5707392ee41ddec4c\n"
+"X-Crowdin-Project-ID: 1\n"
+"X-Crowdin-Language: fy\n"
+"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
+"X-Crowdin-File-ID: 11\n"
+
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
+msgid "(active)"
+msgstr "(aktyf)"
+
+#: src/screens/Messages/components/ChatListItem.tsx:160
+msgid "(contains embedded content)"
+msgstr "(befettet ynsletten ynhâld)"
+
+#: src/screens/Settings/AccountSettings.tsx:68
+msgid "(no email)"
+msgstr "(gjin e-mailadres)"
+
+#: src/lib/hooks/useTimeAgo.ts:169
+msgid "{0, plural, one {# day} other {# days}}"
+msgstr "{0, plural, one {# dei} other {# dagen}}"
+
+#: src/screens/Profile/ProfileFollowers.tsx:40
+msgid "{0, plural, one {# follower} other {# followers}}"
+msgstr "{0, plural, one {# folger} other {# folgers}}"
+
+#: src/screens/Profile/ProfileFollows.tsx:40
+msgid "{0, plural, one {# following} other {# following}}"
+msgstr "{0, plural, one {# folgjend} other {# folgjend}}"
+
+#: src/lib/hooks/useTimeAgo.ts:159
+msgid "{0, plural, one {# hour} other {# hours}}"
+msgstr "{0, plural, one {# oere} other {# oeren}}"
+
+#: src/components/moderation/LabelsOnMe.tsx:53
+msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account"
+msgstr "{0, plural, one {# label is} other {# labels binne}} op dizze account pleatst"
+
+#: src/components/moderation/LabelsOnMe.tsx:62
+msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content"
+msgstr "{0, plural, one {# label is} other {# labels binne}} op dizze ynhâld pleatst"
+
+#: src/screens/Post/PostLikedBy.tsx:41
+msgid "{0, plural, one {# like} other {# likes}}"
+msgstr "{0, plural, one {# mei-’k-wol-oer} other {# mei-’k-wol-oers}}"
+
+#: src/lib/hooks/useTimeAgo.ts:149
+msgid "{0, plural, one {# minute} other {# minutes}}"
+msgstr "{0, plural, one {# minút} other {# minuten}}"
+
+#: src/lib/hooks/useTimeAgo.ts:180
+msgid "{0, plural, one {# month} other {# months}}"
+msgstr "{0, plural, one {# moanne} other {# moannen}}"
+
+#: src/screens/Post/PostQuotes.tsx:41
+msgid "{0, plural, one {# quote} other {# quotes}}"
+msgstr "{0, plural, one {# sitaat} other {# sitaten}}"
+
+#: src/screens/Post/PostRepostedBy.tsx:41
+msgid "{0, plural, one {# repost} other {# reposts}}"
+msgstr "{0, plural, one {# opnij pleatsing} other {# opnij pleatsingen}}"
+
+#: src/lib/hooks/useTimeAgo.ts:139
+msgid "{0, plural, one {# second} other {# seconds}}"
+msgstr "{0, plural, one {# sekonde} other {# sekonden}}"
+
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
+msgid "{0, plural, one {# unread item} other {# unread items}}"
+msgstr "{0, plural, one {# net-lêzen item} other {# net-lêzen items}}"
+
+#. How many months have passed, displayed in a narrow form
+#: src/lib/hooks/useTimeAgo.ts:182
+msgid "{0, plural, one {#mo} other {#mo}}"
+msgstr "{0, plural, one {#mo} other {#mo}}"
+
+#: src/components/ProfileHoverCard/index.web.tsx:442
+#: src/screens/Profile/Header/Metrics.tsx:22
+msgid "{0, plural, one {follower} other {followers}}"
+msgstr "{0, plural, one {folger} other {folgers}}"
+
+#: src/components/ProfileHoverCard/index.web.tsx:446
+#: src/screens/Profile/Header/Metrics.tsx:26
+msgid "{0, plural, one {following} other {following}}"
+msgstr "{0, plural, one {folgjend} other {folgjend}}"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:529
+msgid "{0, plural, one {like} other {likes}}"
+msgstr "{0, plural, one {mei-’k-wol-oer} other {mei-’k-wol-oers}}"
+
+#: src/screens/Profile/Header/Metrics.tsx:58
+msgid "{0, plural, one {post} other {posts}}"
+msgstr "{0, plural, one {berjocht} other {berjochten}}"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:513
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr "{0, plural, one {sitaat} other {sitaten}}"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:495
+msgid "{0, plural, one {repost} other {reposts}}"
+msgstr "{0, plural, one {opnij pleatsing} other {opnij pleatsingen}}"
+
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, one {}other {{1} berjocht}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "{0, plural, one {}other {# minsken hawwe}} dit startpakket brûkt!"
+
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr "{0} <0>in <1>tags1>0>"
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr "{0} <0>in <1>tekst en tags1>0>"
+
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr "{0} is live"
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr "{0} is net in falide URL"
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+msgid "{0} joined this week"
+msgstr "{0} dizze wike lid wurden"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201
+msgid "{0} of {1}"
+msgstr "{0} fan {1}"
+
+#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
+msgid "{0} out of 50"
+msgstr "{0} fan 50"
+
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "{0} reagearre {1}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "{0} reagearre {1} op {2}"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
+msgid "{0}'s avatar"
+msgstr "Avatar fan {0}"
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:74
+msgid "{0}'s favorite feeds and people - join me!"
+msgstr "Favorite feeds en persoanen fan {0} - doch mei!"
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:46
+msgid "{0}'s starter pack"
+msgstr "Startpakket fan {0}"
+
+#. How many days have passed, displayed in a narrow form
+#: src/lib/hooks/useTimeAgo.ts:171
+msgid "{0}d"
+msgstr "{0}d"
+
+#. How many hours have passed, displayed in a narrow form
+#: src/lib/hooks/useTimeAgo.ts:161
+msgid "{0}h"
+msgstr "{0}o"
+
+#. How many minutes have passed, displayed in a narrow form
+#: src/lib/hooks/useTimeAgo.ts:151
+msgid "{0}m"
+msgstr "{0}m"
+
+#. How many seconds have passed, displayed in a narrow form
+#: src/lib/hooks/useTimeAgo.ts:141
+msgid "{0}s"
+msgstr "{0}s"
+
+#: src/view/shell/desktop/LeftNav.tsx:401
+msgid "{count, plural, one {# unread item} other {# unread items}}"
+msgstr "{count, plural, one {# net-lêzen item} other {# net-lêzen items}}"
+
+#: src/lib/generate-starterpack.ts:111
+#: src/screens/StarterPack/Wizard/index.tsx:178
+msgid "{displayName}'s Starter Pack"
+msgstr "Startpakket fan {displayName}"
+
+#: src/screens/SignupQueued.tsx:216
+msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}"
+msgstr "{estimatedTimeHrs, plural, one {oere} other {oeren}}"
+
+#: src/screens/SignupQueued.tsx:222
+msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
+msgstr "{estimatedTimeMins, plural, one {minút} other {minuten}}"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
+msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}}0> hawwe dy folge"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
+msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}}0> meie wol oer dyn personalisearre feed"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
+msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}}0> meie wol oer dyn berjocht"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}}0> hawwe harren ferifikaasjes fan dyn account fuortsmiten"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
+msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}}0> hawwe dyn berjocht opnij pleatst"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
+msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}}0> hawwe harren registrearre mei dyn startpakket"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}}0> hawwe dy ferifiearre"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
+msgid "{firstAuthorLink} followed you"
+msgstr "{firstAuthorLink} folge dy"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
+msgid "{firstAuthorLink} followed you back"
+msgstr "{firstAuthorLink} folge dy werom"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
+msgid "{firstAuthorLink} liked your custom feed"
+msgstr "{firstAuthorLink} mei wol oer dyn personalisearre feed"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
+msgid "{firstAuthorLink} liked your post"
+msgstr "{firstAuthorLink} mei wol oer dyn bericht"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr "{firstAuthorLink} hat de ferifiearring fan dyn account fuortsmiten"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
+msgid "{firstAuthorLink} reposted your post"
+msgstr "{firstAuthorLink} hat dyn berjocht opnij pleatst"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
+msgid "{firstAuthorLink} signed up with your starter pack"
+msgstr "{firstAuthorLink} registrearre harren mei dyn startpakket"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr "{firstAuthorLink} hat dy ferifiearre"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
+msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dy folge"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
+msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} meie wol oer dyn personalisearre feed"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
+msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} meie wol oer dyn berjocht"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe harren ferifikaasjes fan dyn account fuortsmiten"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
+msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dyn berjocht opnij pleatst"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
+msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe harren registrearre mei dyn startpakket"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dy ferifiearre"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
+msgid "{firstAuthorName} followed you"
+msgstr "{firstAuthorName} folge dy"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
+msgid "{firstAuthorName} followed you back"
+msgstr "{firstAuthorName} folge dy werom"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
+msgid "{firstAuthorName} liked your custom feed"
+msgstr "{firstAuthorName} mei wol oer dyn personalisearre feed"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
+msgid "{firstAuthorName} liked your post"
+msgstr "{firstAuthorName} mei wol oer dyn berjocht"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr "{firstAuthorName} hat de ferifiearring fan dyn account fuortsmiten"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
+msgid "{firstAuthorName} reposted your post"
+msgstr "{firstAuthorName} hat dyn berjocht opnij pleatst"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
+msgid "{firstAuthorName} signed up with your starter pack"
+msgstr "{firstAuthorName} registrearre harren mei dyn startpakket"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr "{firstAuthorName} hat dy ferifiearre"
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
+#: src/screens/Profile/Header/Metrics.tsx:49
+msgid "{following} following"
+msgstr "{following} folgjend"
+
+#: src/components/dialogs/SearchablePeopleList.tsx:412
+msgid "{handle} can't be messaged"
+msgstr "{handle} kin gjin priveeberjocht ûntfange"
+
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr "{hours, plural, one {# oere {minutesString}} other {# oeren {minutesString}}}"
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr "{hours, plural, one {# oere} other {# oeren}}"
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "{joinedAllTimeCount, plural, one {}other {# bûkers binne}} derby kaam!"
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr "{minutes, plural, one {# minút} other {# minuten}}"
+
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
+msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
+msgstr "{notificationCount, plural, one {# net-lêzen item} other {# net-lêzen items}}"
+
+#: src/components/NewskieDialog.tsx:116
+msgid "{profileName} joined Bluesky {0} ago"
+msgstr "{profileName} bist {0} lyn lid wurden fan Bluesky"
+
+#: src/components/NewskieDialog.tsx:111
+msgid "{profileName} joined Bluesky using a starter pack {0} ago"
+msgstr "{profileName} bist {0} lyn lid wurden fan Bluesky mei in startpakket"
+
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "{type}o lyn"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr "{userName} is in fertroude ferifiearder"
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr "{userName} is ferifiearre"
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr "Ferifikaasjes fan {userName}"
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "+{computedTotal}"
+
+#: src/screens/StarterPack/Wizard/index.tsx:449
+msgctxt "profiles"
+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>en {2, plural, one {# oare} other {# oaren}} binne ynbegrepen yn dyn startpakket"
+
+#: src/screens/StarterPack/Wizard/index.tsx:502
+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>en {2, plural, one {# oare} other {# oaren}} binne ynbegrepen yn dyn startpakket"
+
+#: src/view/shell/Drawer.tsx:116
+msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
+msgstr "<0>{0}0> {1, plural, one {folger} other {folgers}}"
+
+#: src/view/shell/Drawer.tsx:127
+msgid "<0>{0}0> {1, plural, one {following} other {following}}"
+msgstr "<0>{0}0> {1, plural, one {folgjend} other {folgjend}}"
+
+#: src/screens/StarterPack/Wizard/index.tsx:490
+msgid "<0>{0}0> and<1> 1><2>{1} 2>are included in your starter pack"
+msgstr "<0>{0}0> en<1> 1><2>{1} 2>binne ynbegrepen yn dyn startpakket"
+
+#: src/screens/StarterPack/Wizard/index.tsx:483
+msgid "<0>{0}0> is included in your starter pack"
+msgstr "<0>{0}0> is ynbegrepen yn dyn startpakket"
+
+#: src/components/WhoCanReply.tsx:296
+msgid "<0>{0}0> members"
+msgstr "<0>{0}0> leden"
+
+#: src/components/dms/DateDivider.tsx:69
+msgid "<0>{date}0> at {time}"
+msgstr "<0>{date}0> om {time}"
+
+#: src/screens/Settings/NotificationSettings.tsx:85
+msgid "<0>Experimental:0> 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 "<0>Eksperiminteel:0> wannear’t dizze foarkar ynskeakele is ûntfangsto allinnich antwurd- en sitaatmeldingen fan brûkers dy’tsto folgest. Wy sille yn de rin fan de tiid hjir mear bestjoeringseleminten oan tafoegje."
+
+#: src/screens/StarterPack/Wizard/index.tsx:440
+msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
+msgstr "<0>Do0> en<1> 1><2>{0} 2>binne ynbegrepen yn dyn startpakket"
+
+#: src/screens/Profile/Header/Handle.tsx:53
+msgid "⚠Invalid Handle"
+msgstr "⚠Unjildige handle"
+
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr "24 oeren"
+
+#: src/screens/Login/LoginForm.tsx:268
+msgid "2FA Confirmation"
+msgstr "2FA-befêstiging"
+
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr "30 dagen"
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr "7 dagen"
+
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "in berjocht"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr "In nij ferifikaasjeformulier"
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
+msgid "About"
+msgstr "Oer"
+
+#. Accept a chat request
+#: src/screens/Messages/components/RequestButtons.tsx:259
+msgid "Accept"
+msgstr "Akseptearje"
+
+#: src/screens/Messages/components/RequestButtons.tsx:249
+msgid "Accept chat request"
+msgstr "Chatfersyk akseptearje"
+
+#. Accept a chat request
+#: src/screens/Messages/components/RequestListItem.tsx:42
+msgid "Accept Request"
+msgstr "Fersyk akseptearje"
+
+#: src/screens/Settings/AccessibilitySettings.tsx:46
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
+msgid "Accessibility"
+msgstr "Tagonklikheid"
+
+#: src/Navigation.tsx:355
+msgid "Accessibility Settings"
+msgstr "Tagonklikheidsynstellingen"
+
+#: src/Navigation.tsx:371
+#: src/screens/Login/LoginForm.tsx:194
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
+msgid "Account"
+msgstr "Account"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
+msgctxt "toast"
+msgid "Account blocked"
+msgstr "Account blokkearre"
+
+#: src/view/com/profile/ProfileMenu.tsx:171
+msgctxt "toast"
+msgid "Account followed"
+msgstr "Account folge"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
+msgctxt "toast"
+msgid "Account muted"
+msgstr "Account negearre"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:98
+msgid "Account Muted"
+msgstr "Account negearre"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:89
+msgid "Account Muted by List"
+msgstr "Account negearre troch list"
+
+#: src/screens/Settings/Settings.tsx:505
+msgid "Account options"
+msgstr "Accountopsjes"
+
+#: src/screens/Settings/Settings.tsx:541
+msgid "Account removed from quick access"
+msgstr "Account út flugge tagong fuortsmiten"
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
+msgctxt "toast"
+msgid "Account unblocked"
+msgstr "Account deblokkearre"
+
+#: src/view/com/profile/ProfileMenu.tsx:183
+msgctxt "toast"
+msgid "Account unfollowed"
+msgstr "Account ûntfolge"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
+msgctxt "toast"
+msgid "Account unmuted"
+msgstr "Account negearre opheven"
+
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+msgstr "Accounts mei in skulpe blau finkje <0><1/>0> kinne oaren ferifiearje. Dizze fertroude ferifiearders binne troch Bluesky selektearre."
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
+#: src/components/dialogs/MutedWords.tsx:328
+#: src/view/com/modals/UserAddRemoveLists.tsx:235
+msgid "Add"
+msgstr "Tafoegje"
+
+#: src/screens/StarterPack/Wizard/index.tsx:551
+msgid "Add {0} more to continue"
+msgstr "Foegje noch {0} ta om troch te gean"
+
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:59
+msgid "Add {displayName} to starter pack"
+msgstr "{displayName} tafoegje oan it startpakket"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:112
+msgid "Add a content warning"
+msgstr "In ynhâldswarskôging tafoegje"
+
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr "Foegje in tydlike live-status ta oan dyn profyl. As immen op dyn avatar klikt, sjocht dy daliks ynformaasje oer dyn barren."
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
+msgid "Add a user to this list"
+msgstr "In brûker oan dizze list tafoegje"
+
+#: src/components/dialogs/SwitchAccount.tsx:55
+#: src/screens/Deactivated.tsx:192
+msgid "Add account"
+msgstr "Account tafoegje"
+
+#: src/view/com/composer/GifAltText.tsx:76
+#: src/view/com/composer/GifAltText.tsx:144
+#: src/view/com/composer/GifAltText.tsx:210
+#: src/view/com/composer/photos/Gallery.tsx:169
+#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93
+msgid "Add alt text"
+msgstr "Alt-tekst tafoegje"
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+msgid "Add alt text (optional)"
+msgstr "Alt-tekst tafoegje (opsjoneel)"
+
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
+msgid "Add another account"
+msgstr "Noch in account tafoegje"
+
+#: src/view/com/composer/Composer.tsx:731
+msgid "Add another post"
+msgstr "Noch in berjocht tafoegje"
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:102
+msgid "Add app password"
+msgstr "App-wachtwurd tafoegje"
+
+#: src/screens/Settings/AppPasswords.tsx:75
+#: src/screens/Settings/AppPasswords.tsx:83
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:111
+msgid "Add App Password"
+msgstr "App-wachtwurd tafoegje"
+
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr "Emoji-reaksje tafoegje"
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
+msgid "Add more details (optional)"
+msgstr "Mear details tafoegje (opsjoneel)"
+
+#: src/components/dialogs/MutedWords.tsx:321
+msgid "Add mute word with chosen settings"
+msgstr "Dôvwurd tafoegje mei keazen ynstellingen"
+
+#: src/components/dialogs/MutedWords.tsx:112
+msgid "Add muted words and tags"
+msgstr "Negearre wurden en tags tafoegje"
+
+#: src/view/com/composer/Composer.tsx:1287
+msgid "Add new post"
+msgstr "Nij berjocht tafoegje"
+
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
+msgid "Add people"
+msgstr "Minsken tafoegje"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr "Minsken oan list tafoegje"
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr "Reaksje tafoegje"
+
+#: src/screens/Home/NoFeedsPinned.tsx:99
+msgid "Add recommended feeds"
+msgstr "Oanrekommandearre feeds tafoegje"
+
+#: src/screens/StarterPack/Wizard/index.tsx:471
+msgid "Add some feeds to your starter pack!"
+msgstr "Foegje wat feeds ta oan dyn startpakket!"
+
+#: src/screens/Feeds/NoFollowingFeed.tsx:41
+msgid "Add the default feed of only people you follow"
+msgstr "Standertfeed fan allinnich de persoanen dy’tsto folgest tafoegje"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
+msgid "Add the following DNS record to your domain:"
+msgstr "Foegje it folgjende DNS-record ta oan dyn domein:"
+
+#: src/components/FeedCard.tsx:305
+msgid "Add this feed to your feeds"
+msgstr "Dizze feed oan dyn feeds tafoegje"
+
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
+msgid "Add to lists"
+msgstr "Oan listen tafoegje"
+
+#: src/view/com/feeds/FeedSourceCard.tsx:269
+msgid "Add to my feeds"
+msgstr "Tafoegje oan myn feeds"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr "Brûker oan list tafoegje"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
+#: src/view/com/modals/UserAddRemoveLists.tsx:162
+msgid "Added to list"
+msgstr "Tafoege oan list"
+
+#: src/view/com/feeds/FeedSourceCard.tsx:125
+msgid "Added to my feeds"
+msgstr "Tafoege oan myn feeds"
+
+#: src/components/moderation/ReportDialog/index.tsx:418
+msgid "Additional details (limit 300 characters)"
+msgstr "Oanfoljende details (maksimaal 300 tekens)"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
+msgid "Adult"
+msgstr "Folwoeksene"
+
+#: src/components/moderation/ContentHider.tsx:113
+#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
+msgid "Adult Content"
+msgstr "Ynhâld foar folwoeksenen"
+
+#: src/screens/Moderation/index.tsx:374
+msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
+msgstr "Ynhâld foar folwoeksenen kin allinnich ynskeakele wurde fia it ynternet op <0>bsky.app0>."
+
+#: src/components/moderation/LabelPreference.tsx:242
+msgid "Adult content is disabled."
+msgstr "Ynhâld foar folwoeksenen is útskeakele."
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
+msgid "Adult Content labels"
+msgstr "Labels foar ynhâld foar folwoeksenen"
+
+#: src/screens/Moderation/index.tsx:418
+msgid "Advanced"
+msgstr "Avansearre"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr "alice@example.com"
+
+#: src/view/screens/Notifications.tsx:86
+msgid "All"
+msgstr "Alles"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
+msgid "All accounts have been followed!"
+msgstr "Do hast alle accounts folge!"
+
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
+msgid "All languages"
+msgstr "Alle talen"
+
+#: src/view/screens/Feeds.tsx:705
+msgid "All the feeds you've saved, right in one place."
+msgstr "Alle feeds dy’tsto bewarre hast, byinoar op ien plak."
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:146
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:153
+msgid "Allow access to your direct messages"
+msgstr "Jou tagong ta dyn priveeberjochten"
+
+#: src/screens/Messages/Settings.tsx:70
+#: src/screens/Messages/Settings.tsx:73
+msgid "Allow new messages from"
+msgstr "Nije priveeberjochten akseptearje fan"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344
+msgid "Allow quote posts"
+msgstr "Sitaatberjochten tastean"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389
+msgid "Allow replies from:"
+msgstr "Antwurden tastean fan:"
+
+#: src/screens/Settings/AppPasswords.tsx:200
+msgid "Allows access to direct messages"
+msgstr "Stiet tagong ta priveeberjochten ta"
+
+#: src/screens/Login/ForgotPasswordForm.tsx:171
+#: src/view/com/modals/ChangePassword.tsx:182
+msgid "Already have a code?"
+msgstr "Hasto al in koade?"
+
+#: src/screens/Login/ChooseAccountForm.tsx:43
+msgid "Already signed in as @{0}"
+msgstr "Al oanmeld as @{0}"
+
+#: src/view/com/composer/GifAltText.tsx:100
+#: src/view/com/composer/photos/Gallery.tsx:187
+#: src/view/com/util/post-embeds/GifEmbed.tsx:186
+msgid "ALT"
+msgstr "ALT"
+
+#: src/screens/Settings/AccessibilitySettings.tsx:56
+#: src/view/com/composer/GifAltText.tsx:154
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
+msgid "Alt text"
+msgstr "Alt-tekst"
+
+#: src/view/com/util/post-embeds/GifEmbed.tsx:191
+msgid "Alt Text"
+msgstr "Alt-tekst"
+
+#: src/view/com/composer/photos/Gallery.tsx:255
+msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
+msgstr "Alt-tekst beskriuwt ôfbyldingen foar bline en fisueel beheinde brûkers en biedt elkenien kontekst."
+
+#: src/view/com/composer/GifAltText.tsx:179
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr "Alt-tekst sil ôfkoart wurde. {MAX_ALT_TEXT, plural, one {}other {Limyt: {0} karakters.}}"
+
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
+msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
+msgstr "Der is in e-mailberjocht ferstjoerd nei {0}. Dizze befettet in befêstigingskoade dy’tsto hjirûnder ynfiere kinst."
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr "Der is in e-mailberjocht ferstjoerd nei dyn foarige e-mailadres, {currentEmail}. Dizze befettet in befêstigingskoade dy’tsto hjirûnder ynfiere kinst."
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
+msgid "An email has been sent! Please enter the confirmation code included in the email below."
+msgstr "Der is in e-mailberjocht ferstjoerd! Fier hjirûnder de befêstigingskoade yn dy’t yn it e-mailberjocht opnommen is."
+
+#: src/components/dialogs/GifSelect.tsx:265
+msgid "An error has occurred"
+msgstr "Der is in flater bard"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420
+msgid "An error occurred"
+msgstr "Der is in flater bard"
+
+#: src/view/com/composer/state/video.ts:398
+msgid "An error occurred while compressing the video."
+msgstr "Der is in flater bard wylst it komprimearjen fan de fideo."
+
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr "Der is in flater bard by it opheljen fan de feed."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
+msgid "An error occurred while generating your starter pack. Want to try again?"
+msgstr "Der is in flater bard by it generearjen fan dyn startpakket. Wolsto it opnij probearje?"
+
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:160
+msgid "An error occurred while loading the video. Please try again later."
+msgstr "Der is in flater bard wylst it laden fan de fideo. Probearje it letter opnij."
+
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198
+msgid "An error occurred while loading the video. Please try again."
+msgstr "Der is in flater bard wylst it laden fan de fideo. Probearje it nochris."
+
+#: src/components/StarterPack/QrCodeDialog.tsx:72
+msgid "An error occurred while saving the QR code!"
+msgstr "Der is in flater bard by it bewarjen fan de QR-koade!"
+
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
+msgid "An error occurred while selecting the video"
+msgstr "Der is in flater bard by it selektearjen fan de fideo"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
+msgid "An error occurred while trying to follow all"
+msgstr "Der is in flater bard wylst it besykjen om elkenien te folgjen"
+
+#: src/view/com/composer/state/video.ts:435
+msgid "An error occurred while uploading the video."
+msgstr "Der is in flater bard by it opladen fan de fideo."
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr "In yllustraasje, dy’t toant dat Bluesky fertroude ferifiearders selektearret en dizze wer inkelde brûkersaccounts ferifiearje."
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
+#: src/lib/moderation/useReportOptions.ts:28
+msgid "An issue not included in these options"
+msgstr "In probleem net fermeld yn dizze opsjes"
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
+msgid "An issue occurred starting the chat"
+msgstr "Der is in flater bard by it starten fan de chat"
+
+#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47
+msgid "An issue occurred while trying to open the chat"
+msgstr "Der is in flater bard by it iepenjen fan de chat"
+
+#: src/components/hooks/useFollowMethods.ts:35
+#: src/components/hooks/useFollowMethods.ts:50
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
+#: src/view/com/profile/FollowButton.tsx:38
+#: src/view/com/profile/FollowButton.tsx:48
+msgid "An issue occurred, please try again."
+msgstr "Der is in flater bard. Probearje it opnij."
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr "In mock-up fan in iPhone dy’t de Bluesky-app iepenet nei it profyl fan in ferifiearre brûker mei in blau finkje njonken harren werjeftenamme."
+
+#: src/screens/Onboarding/StepInterests/index.tsx:185
+msgid "an unknown error occurred"
+msgstr "der is in ûnbekende flater bard"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:134
+#: src/lib/moderation/useModerationCauseDescription.ts:144
+msgid "an unknown labeler"
+msgstr "in ûnbekende labeler"
+
+#: src/components/WhoCanReply.tsx:317
+msgid "and"
+msgstr "en"
+
+#: src/screens/Onboarding/index.tsx:29
+#: src/screens/Onboarding/state.ts:94
+msgid "Animals"
+msgstr "Bisten"
+
+#: src/view/com/util/post-embeds/GifEmbed.tsx:149
+msgid "Animated GIF"
+msgstr "Animearre GIF"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr "Oankundiging fan ferifikaasje op Bluesky"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
+#: src/lib/moderation/useReportOptions.ts:33
+msgid "Anti-Social Behavior"
+msgstr "Asosjaal gedrach"
+
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48
+msgid "Anybody can interact"
+msgstr "Elkenien kin reagearje"
+
+#: src/Navigation.tsx:411
+#: src/screens/Settings/AppIconSettings/index.tsx:67
+#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
+#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
+msgid "App Icon"
+msgstr "App-piktogram"
+
+#: src/screens/Settings/LanguageSettings.tsx:87
+msgid "App Language"
+msgstr "App-taal"
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122
+msgid "App Password"
+msgstr "App-wachtwurd"
+
+#: src/screens/Settings/AppPasswords.tsx:147
+msgctxt "toast"
+msgid "App password deleted"
+msgstr "App-wachtwurd fuortsmiten"
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
+msgid "App password name must be unique"
+msgstr "App-wachtwurdnamme moat unyk wêze"
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62
+msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores"
+msgstr "App-wachtwurdnammen meie allinnich letters, sifers, spaasjes, streekjes en underscores befetsje"
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80
+msgid "App password names must be at least 4 characters long"
+msgstr "App-wachtwurdnammen moatte minimaal 4 tekens lang wêze"
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66
+msgid "App passwords"
+msgstr "App-wachtwurden"
+
+#: src/Navigation.tsx:323
+#: src/screens/Settings/AppPasswords.tsx:51
+msgid "App Passwords"
+msgstr "App-wachtwurden"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:150
+#: src/components/moderation/LabelsOnMeDialog.tsx:153
+msgid "Appeal"
+msgstr "Beswier meitsje"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
+msgid "Appeal \"{0}\" label"
+msgstr "Beswier tsjin ‘{0}’-label meitsje"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:258
+#: src/screens/Messages/components/ChatDisabled.tsx:91
+msgctxt "toast"
+msgid "Appeal submitted"
+msgstr "Beswier yntsjinne"
+
+#: src/screens/Takendown.tsx:111
+#: src/screens/Takendown.tsx:144
+msgid "Appeal suspension"
+msgstr "Beswier tsjin skorsing meitsje"
+
+#: src/screens/Takendown.tsx:114
+msgid "Appeal Suspension"
+msgstr "Beswier tsjin skorsing meitsje"
+
+#: src/screens/Messages/components/ChatDisabled.tsx:51
+#: src/screens/Messages/components/ChatDisabled.tsx:53
+#: src/screens/Messages/components/ChatDisabled.tsx:99
+#: src/screens/Messages/components/ChatDisabled.tsx:101
+msgid "Appeal this decision"
+msgstr "Beswier tsjin dizze beslissing meitsje"
+
+#: src/Navigation.tsx:363
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
+msgid "Appearance"
+msgstr "Werjefte"
+
+#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
+#: src/screens/Home/NoFeedsPinned.tsx:93
+msgid "Apply default recommended feeds"
+msgstr "Standert oanrekommandearre feeds brûke"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:945
+msgid "Archived from {0}"
+msgstr "Argivearre fan {0}"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
+msgid "Archived post"
+msgstr "Argivearre berjocht"
+
+#: src/screens/Settings/AppPasswords.tsx:209
+msgid "Are you sure you want to delete the app password \"{0}\"?"
+msgstr "Bisto wis datsto it app-wachtwurd ‘{0}’ fuorsmite wolst?"
+
+#: src/components/dms/MessageContextMenu.tsx:189
+msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
+msgstr "Bisto wis datsto dit priveeberjocht fuortsmite wolst? It priveeberjocht wurdt foar dy fuortsmiten, mar net foar de oare dielnimmer."
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
+msgid "Are you sure you want to delete this starter pack?"
+msgstr "Bisto wis datsto dit startpakket fuortsmite wolst?"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
+msgid "Are you sure you want to discard your changes?"
+msgstr "Bisto wis datsto dyn wizigingen ûngedien meitsje wolst?"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:46
+msgid "Are you sure you want to leave this conversation?"
+msgstr "Bisto wis datsto dit petear ferlitte wolst?"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:45
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
+msgstr "Bisto wis datsto dit petear ferlitte wolst? Dyn priveeberjochten wurde foar dy fuortsmiten, mar net foar de oare dielnimmer."
+
+#: src/view/com/feeds/FeedSourceCard.tsx:319
+msgid "Are you sure you want to remove {0} from your feeds?"
+msgstr "Bisto wis datsto {0} út dyn feeds fuortsmite wolst?"
+
+#: src/components/FeedCard.tsx:340
+msgid "Are you sure you want to remove this from your feeds?"
+msgstr "Bisto wis datsto dit út dyn feeds fuortsmite wolst?"
+
+#: src/view/com/composer/Composer.tsx:682
+msgid "Are you sure you'd like to discard this draft?"
+msgstr "Bisto wis datsto dit konsept fuortsmite wolst?"
+
+#: src/view/com/composer/Composer.tsx:861
+msgid "Are you sure you'd like to discard this post?"
+msgstr "Bisto wis datsto dit berjocht fuortsmite wolst?"
+
+#: src/components/dialogs/MutedWords.tsx:433
+msgid "Are you sure?"
+msgstr "Bisto wis?"
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
+msgid "Are you writing in <0>{suggestedLanguageName}0>?"
+msgstr "Skriuwsto yn it <0>{suggestedLanguageName}0>?"
+
+#: src/screens/Onboarding/index.tsx:23
+#: src/screens/Onboarding/state.ts:95
+msgid "Art"
+msgstr "Keunst"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
+msgid "Artistic or non-erotic nudity."
+msgstr "Artistike of net-erotyske neakenbylden."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr "Underwerp foar algoritme tawize"
+
+#: src/screens/Signup/StepHandle.tsx:194
+msgid "At least 3 characters"
+msgstr "Op syn minst 3 tekens"
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40
+msgctxt "Name of app icon variant"
+msgid "Aurora"
+msgstr "Aurora"
+
+#: src/screens/Settings/AccessibilitySettings.tsx:105
+msgid "Autoplay options have moved to the <0>Content and Media settings0>."
+msgstr "De opsjes foar automatysk ôfspyljen binne ferpleatst nei de <0>Ynstellingen foar ynhâld en media0>."
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
+msgid "Autoplay videos and GIFs"
+msgstr "Fideo’s en GIF’s automatysk ôfspylje"
+
+#: src/components/dms/MessagesListHeader.tsx:84
+#: src/components/moderation/LabelsOnMeDialog.tsx:315
+#: src/components/moderation/LabelsOnMeDialog.tsx:316
+#: src/screens/Login/ChooseAccountForm.tsx:90
+#: src/screens/Login/ChooseAccountForm.tsx:95
+#: src/screens/Login/ForgotPasswordForm.tsx:123
+#: src/screens/Login/ForgotPasswordForm.tsx:129
+#: src/screens/Login/LoginForm.tsx:310
+#: src/screens/Login/LoginForm.tsx:316
+#: src/screens/Login/SetNewPasswordForm.tsx:164
+#: src/screens/Login/SetNewPasswordForm.tsx:170
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Profile/Header/Shell.tsx:158
+#: src/screens/Signup/BackNextButtons.tsx:41
+#: src/screens/StarterPack/Wizard/index.tsx:286
+msgid "Back"
+msgstr "Tebek"
+
+#: src/screens/Messages/Inbox.tsx:238
+msgid "Back to Chats"
+msgstr "Werom nei chats"
+
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
+msgid "Before creating a list, you must first verify your email."
+msgstr "Do moatst earst dyn e-mailadres befêstigje eardatsto in list makkest."
+
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr "Do moatst earst dyn e-mailadres befêstigje eardatsto in berjocht makkest of antwurdest."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
+msgid "Before creating a starter pack, you must first verify your email."
+msgstr "Do moatst earst dyn e-mailadres befêstigje eardatsto in startpakket makkest."
+
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr "Do moatst earst dyn e-mailadres befêstigje eardatsto in petearfersyk akseptearje kinst."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
+msgstr "Do moatst earst dyn e-mailadres befêstigje eardatsto in oare brûker in priveeberjocht stjoere kinst."
+
+#: src/components/dialogs/BirthDateSettings.tsx:103
+#: src/screens/Settings/AccountSettings.tsx:120
+msgid "Birthday"
+msgstr "Jierdei"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+msgid "Block"
+msgstr "Blokkearje"
+
+#: src/components/dms/ConvoMenu.tsx:247
+#: src/components/dms/ConvoMenu.tsx:250
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
+msgid "Block account"
+msgstr "Account blokkearje"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
+msgid "Block Account?"
+msgstr "Account blokkearje?"
+
+#: src/view/screens/ProfileList.tsx:669
+msgid "Block accounts"
+msgstr "Accounts blokkearje"
+
+#: src/components/dms/ReportDialog.tsx:317
+msgid "Block and Delete"
+msgstr "Blokkearje en fuortsmite"
+
+#: src/components/dms/ReportDialog.tsx:352
+msgid "Block and/or delete this conversation"
+msgstr "Dit petear blokkearje en/of fuortsmite"
+
+#: src/view/screens/ProfileList.tsx:789
+msgid "Block list"
+msgstr "Blokkearlist"
+
+#: src/screens/Messages/components/ChatStatusInfo.tsx:46
+msgid "Block or report"
+msgstr "Blokkearje of rapportearje"
+
+#: src/view/screens/ProfileList.tsx:784
+msgid "Block these accounts?"
+msgstr "Dizze accounts blokkearje?"
+
+#: src/components/dms/ReportDialog.tsx:356
+#: src/components/dms/ReportDialog.tsx:359
+msgid "Block user"
+msgstr "Brûker blokkearje"
+
+#: src/components/dms/ReportDialog.tsx:323
+msgid "Block User"
+msgstr "Brûker blokkearje"
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+msgid "Blocked"
+msgstr "Blokkearre"
+
+#: src/screens/Moderation/index.tsx:273
+msgid "Blocked accounts"
+msgstr "Blokkearre accounts"
+
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
+msgid "Blocked Accounts"
+msgstr "Blokkearre accounts"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
+msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
+msgstr "Blokkearre accounts kinne net reagearje op dyn petearen, dy net fermelde en net op in oare manier mei dy kommunisearje."
+
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
+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 "Blokkearre accounts kinne net reagearje op dyn petearen, dy net fermelde en net op in oare manier mei dy kommunisearje. Do sjochst harren tekst net en sy dy fan dy ek net."
+
+#: src/view/com/post-thread/PostThread.tsx:468
+msgid "Blocked post."
+msgstr "Blokkearre berjocht."
+
+#: src/screens/Profile/Sections/Labels.tsx:170
+msgid "Blocking does not prevent this labeler from placing labels on your account."
+msgstr "Blokkearjen wjerhâld dizze labeler der net fan om labels op dyn account te pleatsen."
+
+#: src/view/screens/ProfileList.tsx:786
+msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
+msgstr "Blokkearjen is iepenbier. Blokkearre accounts kinne net reagearje op dyn petearen, dy net fermelde en net op in oare manier mei dy kommunisearje."
+
+#: src/view/com/profile/ProfileMenu.tsx:465
+msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
+msgstr "Blokkearjen sil dizze labels net fan dyn account ôfhelje, mar it soarget der wol foar dat dizze brûker net mear op dyn petearen reagearje kin of op oare wize mei dy yn kommunisearje kin."
+
+#: src/view/com/auth/SplashScreen.web.tsx:175
+msgid "Blog"
+msgstr "Blog"
+
+#: src/view/com/auth/server-input/index.tsx:136
+#: src/view/com/auth/server-input/index.tsx:137
+msgid "Bluesky"
+msgstr "Bluesky"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:970
+msgid "Bluesky cannot confirm the authenticity of the claimed date."
+msgstr "Bluesky kin de wierheid fan dizze datum net befêstigje."
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129
+msgctxt "Name of app icon variant"
+msgid "Bluesky Classic™"
+msgstr "Bluesky Classic™"
+
+#: src/view/com/auth/server-input/index.tsx:212
+msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server."
+msgstr "Bluesky is in iepen netwurk dêr’tsto sels dyn hostingprovider útsykje kinst. Asto in ûntwikkeler bist, kinsto dyn eigen server hoste."
+
+#: src/view/com/auth/server-input/index.tsx:149
+msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option."
+msgstr "Bluesky is in iepen netwurk dêr’tsto sels dyn hostingprovider útsykje kinst. Asto hjir noch mar krekt bist, riede wy dy oan de standert opsje ‘Bluesky Social’ oan te hâlden."
+
+#: src/components/ProgressGuide/List.tsx:53
+#: src/components/ProgressGuide/List.tsx:70
+msgid "Bluesky is better with friends!"
+msgstr "Bluesky is noch nofliker mei freonen!"
+
+#: src/screens/Takendown.tsx:217
+msgid "Bluesky Social Terms of Service"
+msgstr "Tsjinstbetingsten fan Bluesky Social"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
+msgid "Bluesky will choose a set of recommended accounts from people in your network."
+msgstr "Bluesky sil in oantal oanrekommandearre brûkers kieze út de minsken yn dyn netwurk."
+
+#: src/screens/Settings/components/PwiOptOut.tsx:99
+msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
+msgstr "Bluesky sil dyn profyl en berjochten net toane oan ôfmelde brûkers. Oare apps sille harren hjir miskien net oan hâlde. It makket dyn account net privee."
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr "Bluesky sil pro-aktyf bekende en autentike accounts ferifiearje."
+
+#: src/screens/Settings/AppIconSettings/index.tsx:99
+msgid "Bluesky+"
+msgstr "Bluesky+"
+
+#: src/screens/Settings/AppIconSettings/index.tsx:102
+msgid "Bluesky+ icons"
+msgstr "Bluesky+-piktogrammen"
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:53
+msgid "Blur images"
+msgstr "Ofbyldingen ferdizenje"
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:51
+msgid "Blur images and filter from feeds"
+msgstr "Ofbyldingen dizich meitsje en út dyn feeds filterje"
+
+#: src/screens/Onboarding/index.tsx:30
+#: src/screens/Onboarding/state.ts:96
+msgid "Books"
+msgstr "Boeken"
+
+#: src/components/FeedInterstitials.tsx:373
+msgid "Browse more accounts on the Explore page"
+msgstr "Blêdzje troch brûkers op de ûntdekkingsside"
+
+#: src/components/FeedInterstitials.tsx:511
+msgid "Browse more feeds on the Explore page"
+msgstr "Blêdzje troch feeds op de ûntdekkingsside"
+
+#: src/components/FeedInterstitials.tsx:353
+#: src/components/FeedInterstitials.tsx:356
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
+msgid "Browse more suggestions"
+msgstr "Blêdzje troch mear suggestjes"
+
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
+msgid "Browse more suggestions on the Explore page"
+msgstr "Blêdzje troch mear suggestjes op de ûntdekkingsside"
+
+#: src/screens/Home/NoFeedsPinned.tsx:103
+#: src/screens/Home/NoFeedsPinned.tsx:109
+msgid "Browse other feeds"
+msgstr "Blêdzje troch oare feeds"
+
+#: src/components/TrendingTopics.tsx:178
+msgid "Browse posts about {displayName}"
+msgstr "Berjochten oer {displayName} besjen."
+
+#: src/components/TrendingTopics.tsx:186
+msgid "Browse posts tagged with {displayName}"
+msgstr "Berjochten labele mei {displayName} besjen"
+
+#: src/components/TrendingTopics.tsx:195
+msgid "Browse starter pack {displayName}"
+msgstr "Startpakket {displayName} besjen"
+
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr "Underwerp {0} besjen"
+
+#: src/components/TrendingTopics.tsx:232
+msgid "Browse topic {displayName}"
+msgstr "It ûnderwerp {displayName} besjen"
+
+#: src/view/com/auth/SplashScreen.web.tsx:170
+msgid "Business"
+msgstr "Saaklik"
+
+#: src/components/LabelingServiceCard/index.tsx:62
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
+msgid "By {0}"
+msgstr "Troch {0}"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
+msgid "By <0>{0}0>"
+msgstr "Troch <0>{0}0>"
+
+#: src/screens/Signup/StepInfo/Policies.tsx:81
+msgid "By creating an account you agree to the <0>Privacy Policy0>."
+msgstr "Mei it oanmeitsjen fan in account giesto akkoard mei it <0>Privacybelied0>."
+
+#: src/screens/Signup/StepInfo/Policies.tsx:48
+msgid "By creating an account you agree to the <0>Terms of Service0> and <1>Privacy Policy1>."
+msgstr "Mei it oanmeitsjen fan in account giesto akkoard mei de <0>Tsjinstbetingsten0> en it <1>Privacybelied1>."
+
+#: src/screens/Signup/StepInfo/Policies.tsx:68
+msgid "By creating an account you agree to the <0>Terms of Service0>."
+msgstr "Mei it oanmeitsjen fan in account giesto akkoard mei de <0>Tsjinstbetingsten0>."
+
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr "Troch dy"
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+msgid "Camera"
+msgstr "Kamera"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
+#: src/screens/Deactivated.tsx:158
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
+#: src/screens/Settings/AppIconSettings/index.tsx:44
+#: src/screens/Settings/AppIconSettings/index.tsx:225
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
+#: src/screens/Takendown.tsx:99
+#: src/screens/Takendown.tsx:102
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
+#: src/view/com/modals/ChangePassword.tsx:279
+#: src/view/com/modals/ChangePassword.tsx:282
+#: src/view/com/modals/CreateOrEditList.tsx:333
+#: src/view/com/modals/CropImage.web.tsx:97
+#: src/view/com/modals/EditProfile.tsx:269
+#: src/view/com/modals/LinkWarning.tsx:105
+#: src/view/com/modals/LinkWarning.tsx:107
+#: src/view/shell/desktop/LeftNav.tsx:213
+msgid "Cancel"
+msgstr "Annulearje"
+
+#: src/view/com/modals/CreateOrEditList.tsx:338
+#: src/view/com/modals/DeleteAccount.tsx:170
+#: src/view/com/modals/DeleteAccount.tsx:278
+msgctxt "action"
+msgid "Cancel"
+msgstr "Annulearje"
+
+#: src/view/com/modals/DeleteAccount.tsx:166
+#: src/view/com/modals/DeleteAccount.tsx:274
+msgid "Cancel account deletion"
+msgstr "Accountfuortsmiten annulearje"
+
+#: src/view/com/modals/CropImage.web.tsx:94
+msgid "Cancel image crop"
+msgstr "Bysnijen ôfbylding annulearje"
+
+#: src/view/com/modals/EditProfile.tsx:264
+msgid "Cancel profile editing"
+msgstr "Profylwiziging annulearje"
+
+#: src/components/PostControls/RepostButton.tsx:192
+msgid "Cancel quote post"
+msgstr "Sitaatberjocht annulearje"
+
+#: src/screens/Deactivated.tsx:152
+msgid "Cancel reactivation and sign out"
+msgstr "Weraktivearring annulearje en ôfmelde"
+
+#: src/screens/Search/Shell.tsx:341
+msgid "Cancel search"
+msgstr "Sykopdracht annulearje"
+
+#: src/view/com/modals/LinkWarning.tsx:106
+msgid "Cancels opening the linked website"
+msgstr "Annulearret it iepenjen fan de keppele website"
+
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
+#: src/state/shell/composer/index.tsx:82
+msgid "Cannot interact with a blocked user"
+msgstr "Do kinst net yn kontakt komme mei in blokkearre brûker"
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
+msgid "Captions (.vtt)"
+msgstr "Undertitels (.vtt)"
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+msgid "Captions & alt text"
+msgstr "Undertitels & alt-tekst"
+
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
+msgid "Change"
+msgstr "Wizigje"
+
+#: src/screens/Settings/AppIconSettings/index.tsx:39
+msgid "Change app icon"
+msgstr "App-piktogram wizigje"
+
+#: src/screens/Settings/AppIconSettings/index.tsx:38
+#: src/screens/Settings/AppIconSettings/index.tsx:221
+msgid "Change app icon to \"{0}\""
+msgstr "App-piktogram wizigje nei ‘{0}’"
+
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr "App-taal wijzigen"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
+msgid "Change email address"
+msgstr "E-mailadres wizigje"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
+msgid "Change Handle"
+msgstr "Handle wizigje"
+
+#: src/components/moderation/ReportDialog/index.tsx:322
+msgid "Change moderation service"
+msgstr "Moderaasjetsjinst wizigje"
+
+#: src/view/com/modals/ChangePassword.tsx:153
+msgid "Change Password"
+msgstr "Myn wachtwurd wizigje"
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
+msgid "Change post language to {suggestedLanguageName}"
+msgstr "Berjochttaal wizigje nei {suggestedLanguageName}"
+
+#: src/components/moderation/ReportDialog/index.tsx:244
+msgid "Change report reason"
+msgstr "Rapportearreden wizigje"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
+msgid "Change Your Email"
+msgstr "Dyn e-mailadres wizigje"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
+msgid "Change your email address"
+msgstr "Dyn e-mailadres wizigje"
+
+#: src/screens/Settings/AppIconSettings/index.tsx:216
+msgid "Changes app icon"
+msgstr "App-piktogram wizigje"
+
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
+msgid "Changes hosting provider"
+msgstr "Hostingprovider wizigje"
+
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
+msgid "Chat"
+msgstr "Chat"
+
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
+msgctxt "toast"
+msgid "Chat deleted"
+msgstr "Chat fuortsmiten"
+
+#: src/components/dms/ConvoMenu.tsx:176
+msgctxt "toast"
+msgid "Chat muted"
+msgstr "Chat negearre"
+
+#: src/Navigation.tsx:438
+#: src/screens/Messages/components/InboxPreview.tsx:24
+msgid "Chat request inbox"
+msgstr "Chatfersyk Postfek YN"
+
+#: src/screens/Messages/components/InboxPreview.tsx:64
+#: src/screens/Messages/Inbox.tsx:77
+msgid "Chat requests"
+msgstr "Chatfersiken"
+
+#: src/components/dms/ConvoMenu.tsx:75
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
+msgid "Chat settings"
+msgstr "Chatynstellingen"
+
+#: src/screens/Messages/Settings.tsx:62
+msgid "Chat Settings"
+msgstr "Chatynstellingen"
+
+#: src/components/dms/ConvoMenu.tsx:178
+msgctxt "toast"
+msgid "Chat unmuted"
+msgstr "Chat net mear negearre"
+
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
+msgid "Chats"
+msgstr "Chats"
+
+#: src/screens/SignupQueued.tsx:78
+#: src/screens/SignupQueued.tsx:82
+msgid "Check my status"
+msgstr "Myn status kontrolearje"
+
+#: src/screens/Login/LoginForm.tsx:301
+msgid "Check your email for a sign in code and enter it here."
+msgstr "Kontrolearje dyn e-mail foar in oanmeldkoade en fier dy hjir yn."
+
+#: src/view/com/modals/DeleteAccount.tsx:213
+msgid "Check your inbox for an email with the confirmation code to enter below:"
+msgstr "Kontrolearje dyn Postfek YN foar in e-mailberjocht mei de befêstigingskoade om hjirûnder yn te foljen:"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
+msgid "Choose domain verification method"
+msgstr "Domeinferifikaasjemetoade kieze"
+
+#: src/screens/StarterPack/Wizard/index.tsx:194
+msgid "Choose Feeds"
+msgstr "Feeds kieze"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
+msgid "Choose for me"
+msgstr "Foar my kieze"
+
+#: src/screens/StarterPack/Wizard/index.tsx:190
+msgid "Choose People"
+msgstr "Persoanen kieze"
+
+#: src/screens/Onboarding/StepFinished.tsx:298
+msgid "Choose the algorithms that power your custom feeds."
+msgstr "De algoritmen kieze dy’t dyn personalisearre feeds oanstjoere."
+
+#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107
+msgid "Choose this color as your avatar"
+msgstr "Dizze kleur as dyn avatar kieze"
+
+#: src/view/com/auth/server-input/index.tsx:130
+msgid "Choose your account provider"
+msgstr "Dyn accountprovider kieze"
+
+#: src/view/screens/Feeds.tsx:731
+msgid "Choose your own timeline! Feeds built by the community help you find content you love."
+msgstr "Kies dyn eigen tiidline! Feeds makke troch de mienskip helpe dy om ynhâld te finen dêr’tsto wol oer meist."
+
+#: src/screens/Signup/StepInfo/index.tsx:241
+msgid "Choose your password"
+msgstr "Dyn wachtwurd kieze"
+
+#: src/screens/Signup/index.tsx:160
+msgid "Choose your username"
+msgstr "Dyn brûkershandle kieze"
+
+#: src/screens/Settings/Settings.tsx:423
+msgid "Clear all storage data"
+msgstr "Alle bewarre gegevens wiskje"
+
+#: src/screens/Settings/Settings.tsx:425
+msgid "Clear all storage data (restart after this)"
+msgstr "Alle bewarre gegevens wiskje (start de app hjirnei opnij)"
+
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr "Ofbyldingsbuffer wiskje"
+
+#: src/components/forms/SearchInput.tsx:70
+msgid "Clear search query"
+msgstr "Sykopdracht wiskje"
+
+#: src/view/screens/Support.tsx:41
+msgid "click here"
+msgstr "klik hjir"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr "Klik hjir om it ferifikaasjeproses opnij te starten."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr "Klik hjir om dyn e-mailadres by te wurkjen"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
+msgid "Click to disable quote posts of this post."
+msgstr "Klik om sitaatberjochten foar dit berjocht te ferbieden."
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338
+msgid "Click to enable quote posts of this post."
+msgstr "Klik om sitaatberjochten foar dit berjocht ta te stean."
+
+#: src/components/RichTextTag.tsx:54
+msgid "Click to open tag menu for {tag}"
+msgstr "Klik om it labelmenu foar {tag} te iepenjen"
+
+#: src/components/dms/MessageItem.tsx:317
+msgid "Click to retry failed message"
+msgstr "Klik om mislearre priveeberjocht opnij te probearjen"
+
+#: src/screens/Onboarding/index.tsx:32
+msgid "Climate"
+msgstr "Klimaat"
+
+#: src/components/dms/ChatEmptyPill.tsx:39
+msgid "Clip 🐴 clop 🐴"
+msgstr "Klik 🐴 klak 🐴"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
+#: src/components/dialogs/GifSelect.tsx:281
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
+#: src/components/dms/ReportDialog.tsx:381
+#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
+#: src/components/NewskieDialog.tsx:146
+#: src/components/NewskieDialog.tsx:153
+#: src/components/ProgressGuide/FollowDialog.tsx:386
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
+#: src/view/com/modals/ChangePassword.tsx:279
+#: src/view/com/modals/ChangePassword.tsx:282
+#: src/view/com/util/post-embeds/GifEmbed.tsx:197
+msgid "Close"
+msgstr "Slute"
+
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
+msgid "Close active dialog"
+msgstr "Aktive dialoochfinster slute"
+
+#: src/screens/Login/PasswordUpdatedForm.tsx:31
+msgid "Close alert"
+msgstr "Warskôging slute"
+
+#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
+msgid "Close bottom drawer"
+msgstr "Paniel ûnderoan slute"
+
+#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
+msgid "Close dialog"
+msgstr "Dialoochfinster slute"
+
+#: src/view/shell/index.web.tsx:85
+msgid "Close drawer menu"
+msgstr "Lademenu slute"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
+msgid "Close emoji picker"
+msgstr "Emoji-kiezer slute"
+
+#: src/components/dialogs/GifSelect.tsx:169
+msgid "Close GIF dialog"
+msgstr "GIF-dialoochfinster slute"
+
+#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:31
+msgid "Close image"
+msgstr "Ofbylding slute"
+
+#: src/view/com/lightbox/Lightbox.web.tsx:109
+msgid "Close image viewer"
+msgstr "Ofbyldingsviewer slute"
+
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr "Menu slute"
+
+#: src/components/Menu/index.tsx:333
+msgid "Close this dialog"
+msgstr "Dit dialoochfinster slute"
+
+#: src/screens/Login/PasswordUpdatedForm.tsx:32
+msgid "Closes password update alert"
+msgstr "Slút warskôging foar bywurkjen wachtwurd"
+
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr "Slút opstellen berjocht en negearret konsept"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+msgid "Closes the emoji picker"
+msgstr "Slút de emoji-kiezer"
+
+#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:32
+msgid "Closes viewer for header image"
+msgstr "Slút viewer foar headerôfbylding"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
+msgid "Collapse list of users"
+msgstr "Brûkerslist ynklappe"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
+msgid "Collapses list of users for a given notification"
+msgstr "Klapt de brûkerslist foar in bepaalde melding yn"
+
+#: src/components/dialogs/Embed.tsx:154
+#: src/screens/Settings/AppearanceSettings.tsx:93
+msgid "Color mode"
+msgstr "Kleurmodus"
+
+#: src/components/dialogs/Embed.tsx:151
+msgid "Color theme"
+msgstr "Kleuretema"
+
+#: src/screens/Onboarding/index.tsx:38
+#: src/screens/Onboarding/state.ts:97
+msgid "Comedy"
+msgstr "Komeedzje"
+
+#: src/screens/Onboarding/index.tsx:24
+#: src/screens/Onboarding/state.ts:98
+msgid "Comics"
+msgstr "Strips"
+
+#: src/Navigation.tsx:313
+#: src/view/screens/CommunityGuidelines.tsx:34
+msgid "Community Guidelines"
+msgstr "Mienskipsrjochtlinen"
+
+#: src/screens/Onboarding/StepFinished.tsx:311
+msgid "Complete onboarding and start using your account"
+msgstr "Foltôgje de yntroduksje en begjin mei it brûken fan dyn account"
+
+#: src/screens/Signup/index.tsx:162
+msgid "Complete the challenge"
+msgstr "Foltôgje de útdaging"
+
+#: src/view/shell/desktop/LeftNav.tsx:518
+msgid "Compose new post"
+msgstr "Nij berjocht opstelle"
+
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr "Do kinst berjochten opstelle mei in lingte fan maksimaal {0, plural, other {# karakters}}"
+
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
+msgid "Compose reply"
+msgstr "Antwurd opstelle"
+
+#: src/view/com/composer/Composer.tsx:1669
+msgid "Compressing video..."
+msgstr "Fideo komprimearje…"
+
+#: src/components/moderation/LabelPreference.tsx:82
+msgid "Configure content filtering setting for category: {name}"
+msgstr "Konfigurearje ynhâldsfilterynstelling foar kategory: {name}"
+
+#: src/components/moderation/LabelPreference.tsx:244
+msgid "Configured in <0>moderation settings0>."
+msgstr "Konfigurearre yn <0>moderaasje-ynstellingen0>."
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
+msgid "Confirm"
+msgstr "Befêstigje"
+
+#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
+msgid "Confirm content language settings"
+msgstr "Taalynstellingen fan ynhâld befêstigje"
+
+#: src/view/com/modals/DeleteAccount.tsx:264
+msgid "Confirm delete account"
+msgstr "Account fuortsmite befêstigje"
+
+#: src/screens/Moderation/index.tsx:322
+msgid "Confirm your age:"
+msgstr "Befêstigje dyn leeftiid:"
+
+#: src/screens/Moderation/index.tsx:313
+msgid "Confirm your birthdate"
+msgstr "Befêstigje dyn bertedatum"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
+#: src/screens/Login/LoginForm.tsx:274
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
+#: src/view/com/modals/DeleteAccount.tsx:220
+#: src/view/com/modals/DeleteAccount.tsx:226
+msgid "Confirmation code"
+msgstr "Befêstigingskoade"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
+msgid "Confirmation Code"
+msgstr "Befêstigingskoade"
+
+#: src/screens/Login/LoginForm.tsx:337
+msgid "Connecting..."
+msgstr "Ferbine…"
+
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
+msgid "Contact support"
+msgstr "Kontakt opnimme mei stipe"
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
+msgid "Content & Media"
+msgstr "Ynhâld & media"
+
+#: src/screens/Settings/AccessibilitySettings.tsx:109
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
+msgid "Content and media"
+msgstr "Ynhâld en media"
+
+#: src/Navigation.tsx:387
+msgid "Content and Media"
+msgstr "Ynhâld en media"
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:18
+msgid "Content Blocked"
+msgstr "Ynhâld blokkearre"
+
+#: src/screens/Moderation/index.tsx:306
+msgid "Content filters"
+msgstr "Ynhâldsfilters"
+
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
+msgid "Content from across the network we think you might like."
+msgstr "Ynhâld fan oer it netwurk wêrfan wy tinke datsto der wol oer meist."
+
+#: src/screens/Settings/LanguageSettings.tsx:153
+#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
+msgid "Content Languages"
+msgstr "Ynhâldstalen"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/lib/moderation/useModerationCauseDescription.ts:82
+msgid "Content Not Available"
+msgstr "Ynhâld net beskikber"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:50
+#: src/components/moderation/ScreenHider.tsx:93
+#: src/lib/moderation/useGlobalLabelStrings.ts:22
+#: src/lib/moderation/useModerationCauseDescription.ts:45
+msgid "Content Warning"
+msgstr "Ynhâldswarskôging"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:60
+msgid "Content warnings"
+msgstr "Ynhâldswarskôgingen"
+
+#: src/components/Menu/index.web.tsx:85
+msgid "Context menu backdrop, click to close the menu."
+msgstr "Kontekstmenu-eftergrûn, klik om it menu te sluten."
+
+#: src/screens/Onboarding/StepInterests/index.tsx:244
+#: src/screens/Onboarding/StepProfile/index.tsx:276
+msgid "Continue"
+msgstr "Trochgean"
+
+#: src/components/AccountList.tsx:128
+msgid "Continue as {0} (currently signed in)"
+msgstr "Trochgean as {0} (op dit stuit oanmeld)"
+
+#: src/view/com/post-thread/PostThreadLoadMore.tsx:60
+msgid "Continue thread..."
+msgstr "Fierder lêze…"
+
+#: src/screens/Onboarding/StepInterests/index.tsx:241
+#: src/screens/Onboarding/StepProfile/index.tsx:273
+#: src/screens/Signup/BackNextButtons.tsx:60
+msgid "Continue to next step"
+msgstr "Trochgean nei folgjende stap"
+
+#: src/components/dms/ReportDialog.tsx:318
+#: src/components/dms/ReportDialog.tsx:321
+msgctxt "toast"
+msgid "Conversation deleted"
+msgstr "Petear fuortsmiten"
+
+#: src/screens/Messages/components/ChatListItem.tsx:196
+msgid "Conversation deleted"
+msgstr "Petear fuortsmiten"
+
+#: src/screens/Onboarding/index.tsx:41
+msgid "Cooking"
+msgstr "Iten siede"
+
+#: src/view/com/modals/InviteCodes.tsx:183
+msgid "Copied"
+msgstr "Kopiearre"
+
+#: src/screens/Settings/AboutSettings.tsx:151
+msgid "Copied build version to clipboard"
+msgstr "Buildferzje nei klamboerd kopiearre"
+
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
+#: src/lib/sharing.ts:25
+#: src/lib/sharing.ts:41
+#: src/view/com/modals/InviteCodes.tsx:153
+msgid "Copied to clipboard"
+msgstr "Nei klamboerd kopiearre"
+
+#: src/components/dialogs/Embed.tsx:201
+#: src/screens/Settings/components/CopyButton.tsx:66
+msgid "Copied!"
+msgstr "Kopiearre!"
+
+#: src/screens/Settings/AboutSettings.tsx:127
+msgid "Copies build version to clipboard"
+msgstr "Kopiearret buildferzje nei klamboerd"
+
+#: src/components/StarterPack/QrCodeDialog.tsx:182
+msgid "Copy"
+msgstr "Kopiearje"
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr "Dochs kopiearje"
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
+msgid "Copy App Password"
+msgstr "App-wachtwurd kopiearje"
+
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
+msgid "Copy at:// URI"
+msgstr "at:// URI kopiearje"
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
+msgid "Copy author DID"
+msgstr "Auteur-DID kopiearje"
+
+#: src/components/dialogs/Embed.tsx:189
+#: src/components/dialogs/Embed.tsx:206
+msgid "Copy code"
+msgstr "Koade kopiearje"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
+msgid "Copy DID"
+msgstr "DID kopiearje"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
+msgid "Copy host"
+msgstr "Host kopiearje"
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
+msgid "Copy link"
+msgstr "Keppeling kopiearje"
+
+#: src/components/StarterPack/ShareDialog.tsx:111
+msgid "Copy Link"
+msgstr "Keppeling kopiearje"
+
+#: src/view/screens/ProfileList.tsx:513
+msgid "Copy link to list"
+msgstr "Keppeling nei list kopiearje"
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
+msgid "Copy link to post"
+msgstr "Keppeling nei berjocht kopiearje"
+
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr "Keppeling nei profyl kopiearje"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr "Keppeling nei startpakket kopiearje"
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
+msgid "Copy message text"
+msgstr "Berjochttekst kopiearje"
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
+msgid "Copy post at:// URI"
+msgstr "Berjocht at:// URI kopiearje"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
+msgid "Copy post text"
+msgstr "Berjochttekst kopiearje"
+
+#: src/components/StarterPack/QrCodeDialog.tsx:176
+msgid "Copy QR code"
+msgstr "QR-koade kopiearje"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
+msgid "Copy TXT record value"
+msgstr "TXT-recordwearde kopiearje"
+
+#: src/Navigation.tsx:318
+#: src/view/screens/CopyrightPolicy.tsx:31
+msgid "Copyright Policy"
+msgstr "Auteursrjochtbelied"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:35
+#: src/components/dms/ReportDialog.tsx:310
+msgid "Could not leave chat"
+msgstr "Kin chat net ferlitte"
+
+#: src/screens/Profile/ProfileFeed/index.tsx:83
+msgid "Could not load feed"
+msgstr "Kin feed net lade"
+
+#: src/view/screens/ProfileList.tsx:1029
+msgid "Could not load list"
+msgstr "Kin list net lade"
+
+#: src/components/dms/ConvoMenu.tsx:182
+msgid "Could not mute chat"
+msgstr "Kin chat net negearje"
+
+#: src/view/com/composer/videos/VideoPreview.web.tsx:66
+msgid "Could not process your video"
+msgstr "Kin dyn fideo net ferwurkje"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
+msgid "Create"
+msgstr "Oanmeitsje"
+
+#: src/components/StarterPack/QrCodeDialog.tsx:160
+msgid "Create a QR code for a starter pack"
+msgstr "Meitsje in QR-koade foar in startpakket"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
+msgid "Create a starter pack"
+msgstr "Meitsje in startpakket"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
+msgid "Create a starter pack for me"
+msgstr "Meitsje in startpakket foar my"
+
+#: src/view/com/auth/SplashScreen.tsx:55
+#: src/view/com/auth/SplashScreen.web.tsx:117
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
+#: src/view/shell/NavSignupCard.tsx:47
+#: src/view/shell/NavSignupCard.tsx:52
+msgid "Create account"
+msgstr "Registrearje"
+
+#: src/screens/Signup/index.tsx:108
+msgid "Create Account"
+msgstr "Registrearje"
+
+#: src/components/dialogs/Signin.tsx:86
+#: src/components/dialogs/Signin.tsx:88
+msgid "Create an account"
+msgstr "In account oanmeitsje"
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr "In account oanmeitsje sûnder gebrûk fan dit startpakket"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
+msgid "Create an avatar instead"
+msgstr "Yn stee dêrfan in avatar meitsje"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
+msgid "Create another"
+msgstr "Noch ien oanmeitsje"
+
+#: src/view/com/auth/SplashScreen.tsx:47
+#: src/view/com/auth/SplashScreen.web.tsx:109
+msgid "Create new account"
+msgstr "Nij account oanmeitsje"
+
+#: src/components/moderation/ReportDialog/index.tsx:582
+#: src/components/ReportDialog/SelectReportOptionView.tsx:99
+msgid "Create report for {0}"
+msgstr "Melding meitsje foar {0}"
+
+#: src/screens/Settings/AppPasswords.tsx:174
+msgid "Created {0}"
+msgstr "Makke {0}"
+
+#: src/screens/List/ListHiddenScreen.tsx:127
+msgid "Creator has been blocked"
+msgstr "Makker is blokkearre"
+
+#: src/screens/Onboarding/index.tsx:26
+#: src/screens/Onboarding/state.ts:99
+msgid "Culture"
+msgstr "Kultuer"
+
+#: src/view/com/auth/server-input/index.tsx:142
+#: src/view/com/auth/server-input/index.tsx:143
+msgid "Custom"
+msgstr "Oanpast"
+
+#: src/components/dialogs/Embed.tsx:144
+msgid "Customization options"
+msgstr "Oanpassingsopsjes"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103
+msgid "Customize who can interact with this post."
+msgstr "Pas oan wa’t reagearje kin op dit berjocht."
+
+#: src/screens/Onboarding/Layout.tsx:56
+msgid "Customizes your Bluesky experience"
+msgstr "Past dyn Bluesky-ûnderfining oan"
+
+#: src/components/dialogs/Embed.tsx:167
+#: src/components/dialogs/Embed.tsx:169
+#: src/screens/Settings/AppearanceSettings.tsx:105
+#: src/screens/Settings/AppearanceSettings.tsx:126
+msgid "Dark"
+msgstr "Tsjuster"
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:24
+msgctxt "Name of app icon variant"
+msgid "Dark"
+msgstr "Donker"
+
+#: src/view/screens/Debug.tsx:69
+msgid "Dark mode"
+msgstr "Donkere modus"
+
+#: src/screens/Settings/AppearanceSettings.tsx:118
+msgid "Dark theme"
+msgstr "Donker tema"
+
+#: src/screens/Signup/StepInfo/index.tsx:269
+msgid "Date of birth"
+msgstr "Bertedatum"
+
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+msgid "Deactivate account"
+msgstr "Account de-aktivearje"
+
+#: src/screens/Settings/Settings.tsx:397
+msgid "Debug Moderation"
+msgstr "Moderaasje debugge"
+
+#: src/view/screens/Debug.tsx:89
+msgid "Debug panel"
+msgstr "Paniel debugge"
+
+#: src/screens/Settings/AppearanceSettings.tsx:168
+msgid "Default"
+msgstr "Standert"
+
+#: src/screens/Settings/AppIconSettings/index.tsx:75
+msgid "Default icons"
+msgstr "Standert piktogrammen"
+
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
+#: src/screens/Messages/components/ChatStatusInfo.tsx:55
+#: src/screens/Settings/AppPasswords.tsx:212
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
+msgid "Delete"
+msgstr "Fuortsmite"
+
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
+msgid "Delete account"
+msgstr "Account fuortsmite"
+
+#: src/view/com/modals/DeleteAccount.tsx:101
+msgid "Delete Account <0>\"0><1>{0}1><2>\"2>"
+msgstr "Account <0>\"0><1>{0}1><2>\"2> fuortsmite"
+
+#: src/screens/Settings/AppPasswords.tsx:187
+msgid "Delete app password"
+msgstr "App-wachtwurd fuortsmite"
+
+#: src/screens/Settings/AppPasswords.tsx:207
+msgid "Delete app password?"
+msgstr "App-wachtwurd fuortsmite?"
+
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
+msgid "Delete chat"
+msgstr "Chat fuortsmite"
+
+#: src/screens/Settings/Settings.tsx:404
+msgid "Delete chat declaration record"
+msgstr "Chatdeklaraasjerecord fuortsmite"
+
+#: src/components/dms/ReportDialog.tsx:362
+#: src/components/dms/ReportDialog.tsx:365
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
+msgid "Delete conversation"
+msgstr "Petear fuortsmite"
+
+#: src/components/dms/ReportDialog.tsx:320
+msgid "Delete Conversation"
+msgstr "Petear fuortsmite"
+
+#: src/components/dms/MessageContextMenu.tsx:164
+msgid "Delete for me"
+msgstr "Foar my fuortsmite"
+
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
+msgstr "List fuortsmite"
+
+#: src/components/dms/MessageContextMenu.tsx:187
+msgid "Delete message"
+msgstr "Berjocht fuortsmite"
+
+#: src/components/dms/MessageContextMenu.tsx:162
+msgid "Delete message for me"
+msgstr "Berjocht foar my fuortsmite"
+
+#: src/view/com/modals/DeleteAccount.tsx:267
+msgid "Delete my account"
+msgstr "Myn account fuortsmite"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
+msgid "Delete post"
+msgstr "Berjocht fuortsmite"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
+msgid "Delete starter pack"
+msgstr "Startpakket fuortsmite"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
+msgid "Delete starter pack?"
+msgstr "Startpakket fuortsmite?"
+
+#: src/view/screens/ProfileList.tsx:763
+msgid "Delete this list?"
+msgstr "Dizze list fuortsmite?"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
+msgid "Delete this post?"
+msgstr "Dit berjocht fuortsmite?"
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94
+msgid "Deleted"
+msgstr "Fuortsmiten"
+
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
+msgid "Deleted Account"
+msgstr "Fuortsmiten account"
+
+#: src/view/com/post-thread/PostThread.tsx:454
+msgid "Deleted post."
+msgstr "Fuortsmiten berjocht."
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
+msgid "Description"
+msgstr "Omskriuwing"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
+msgid "Description is too long"
+msgstr "Omskriuwing is te lang"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Omskriuwing is te lang. {DESCRIPTION_MAX_GRAPHEMES, plural, other {It maksimaal tal karakters is #.}}"
+
+#: src/view/com/composer/GifAltText.tsx:150
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
+msgid "Descriptive alt text"
+msgstr "Beskriuwende alt-tekst"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
+msgid "Detach quote"
+msgstr "Sitaat loskeppelje"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
+msgid "Detach quote post?"
+msgstr "Sitaat loskeppelje?"
+
+#: src/screens/Settings/AboutSettings.tsx:140
+msgctxt "toast"
+msgid "Developer mode disabled"
+msgstr "Untwikkelersmodus útskeakele"
+
+#: src/screens/Settings/AboutSettings.tsx:134
+msgctxt "toast"
+msgid "Developer mode enabled"
+msgstr "Untwikkelersmodus ynskeakele"
+
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
+msgid "Developer options"
+msgstr "Untwikkelersopsjes"
+
+#: src/components/WhoCanReply.tsx:179
+msgid "Dialog: adjust who can interact with this post"
+msgstr "Dialooch: oanpasse wa’t op dit berjocht reagearje mei"
+
+#: src/screens/Settings/AppearanceSettings.tsx:122
+msgid "Dim"
+msgstr "Dôvje"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr "2FA útskeakelje"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr "E-mail-2FA útskeakelje"
+
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
+msgid "Disable Email 2FA"
+msgstr "E-mail-2FA útskeakelje"
+
+#: src/screens/Settings/AccessibilitySettings.tsx:91
+#: src/screens/Settings/AccessibilitySettings.tsx:96
+msgid "Disable haptic feedback"
+msgstr "Fielbere feedback útskeakelje"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386
+msgid "Disable subtitles"
+msgstr "Undertiteling útskeakelje"
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:32
+#: src/lib/moderation/useLabelBehaviorDescription.ts:42
+#: src/lib/moderation/useLabelBehaviorDescription.ts:68
+#: src/screens/Messages/Settings.tsx:139
+#: src/screens/Messages/Settings.tsx:142
+#: src/screens/Moderation/index.tsx:364
+msgid "Disabled"
+msgstr "Utskeakele"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
+msgid "Discard"
+msgstr "Fuortsmite"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
+msgid "Discard changes?"
+msgstr "Wizigingen fuortsmite?"
+
+#: src/view/com/composer/Composer.tsx:681
+msgid "Discard draft?"
+msgstr "Konsept fuortsmite?"
+
+#: src/view/com/composer/Composer.tsx:860
+msgid "Discard post?"
+msgstr "Berjocht fuortsmite?"
+
+#: src/screens/Settings/components/PwiOptOut.tsx:87
+#: src/screens/Settings/components/PwiOptOut.tsx:91
+msgid "Discourage apps from showing my account to logged-out users"
+msgstr "Apps ûntmoedigje om myn account te toanen oan ôfmelde brûkers"
+
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr "Feeds ûntdekke"
+
+#: src/view/com/posts/FollowingEmptyState.tsx:70
+#: src/view/com/posts/FollowingEndOfFeed.tsx:71
+msgid "Discover new custom feeds"
+msgstr "Nije personalisearre feeds ûntdekke"
+
+#: src/view/screens/Feeds.tsx:728
+msgid "Discover New Feeds"
+msgstr "Nije feeds ûntdekke"
+
+#: src/components/Dialog/index.tsx:321
+msgid "Dismiss"
+msgstr "Slute"
+
+#: src/view/com/composer/Composer.tsx:1593
+msgid "Dismiss error"
+msgstr "Flater negearje"
+
+#: src/components/ProgressGuide/List.tsx:42
+msgid "Dismiss getting started guide"
+msgstr "Starthantlieding ôfslute"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr "Ynteressen negearje"
+
+#: src/components/interstitials/TrendingVideos.tsx:92
+msgid "Dismiss this section"
+msgstr "Dizze seksje slute"
+
+#: src/screens/Settings/AccessibilitySettings.tsx:71
+#: src/screens/Settings/AccessibilitySettings.tsx:76
+msgid "Display larger alt text badges"
+msgstr "Gruttere alt-tekstbadges toane"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:320
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
+msgid "Display name"
+msgstr "Werjeftenamme"
+
+#: src/view/com/modals/EditProfile.tsx:182
+msgid "Display Name"
+msgstr "Werjeftenamme"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
+msgid "Display name is too long"
+msgstr "Werjeftenamme is te lang"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Werjeftenamme is te lang. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {It maksimaal tal karakters is #.}}"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
+msgid "DNS Panel"
+msgstr "DNS-paniel"
+
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr "Dit negearwurd net brûke foar brûkers dy’tsto folgest"
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:39
+msgid "Does not include nudity."
+msgstr "Befettet gjin neakens."
+
+#: src/screens/Signup/StepHandle.tsx:173
+msgid "Doesn't begin or end with a hyphen"
+msgstr "Begjint en einiget net mei in keppelteken"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
+msgid "Domain verified!"
+msgstr "Domein ferifiearre!"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr "Hasto gjin koade of in nije nedicht? <0>Klik hjir.0>"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr "Gjin e-mailberjocht ûntfongen? <0>Klik hjir om opnij te ferstjoeren.0>"
+
+#: src/components/dialogs/BirthDateSettings.tsx:115
+#: src/components/dialogs/BirthDateSettings.tsx:121
+#: src/components/dms/ReportDialog.tsx:314
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
+#: src/view/com/auth/server-input/index.tsx:232
+#: src/view/com/auth/server-input/index.tsx:233
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
+#: src/view/com/modals/CropImage.web.tsx:112
+#: src/view/com/modals/InviteCodes.tsx:81
+#: src/view/com/modals/InviteCodes.tsx:124
+msgid "Done"
+msgstr "Dien"
+
+#: src/view/com/modals/UserAddRemoveLists.tsx:113
+#: src/view/com/modals/UserAddRemoveLists.tsx:116
+msgctxt "action"
+msgid "Done"
+msgstr "Dien"
+
+#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:42
+msgid "Done{extraText}"
+msgstr "Dien {extraText}"
+
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr "Tik dûbeld of druk lang op in berjocht, om in reaksje ta te foegjen"
+
+#: src/components/Dialog/index.tsx:322
+msgid "Double tap to close the dialog"
+msgstr "Tik dûbeld om de dialooch te sluten"
+
+#: src/screens/VideoFeed/index.tsx:1077
+msgid "Double tap to like"
+msgstr "Tik dûbeld om der wol oer te meien"
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321
+msgid "Download Bluesky"
+msgstr "Bluesky downloade"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:79
+#: src/screens/Settings/components/ExportCarDialog.tsx:84
+msgid "Download CAR file"
+msgstr "CAR-bestân downloade"
+
+#: src/view/com/composer/text-input/TextInput.web.tsx:342
+msgid "Drop to add images"
+msgstr "Falle litte om ôfbyldingen ta te foegjen"
+
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr "Doer:"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
+msgid "e.g. alice"
+msgstr "byg. alice"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
+msgid "e.g. Alice Lastname"
+msgstr "byg. Alice Efternamme"
+
+#: src/view/com/modals/EditProfile.tsx:187
+msgid "e.g. Alice Roberts"
+msgstr "Bygelyks Alice Roberts"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
+msgid "e.g. alice.com"
+msgstr "bygelyks alice.com"
+
+#: src/view/com/modals/EditProfile.tsx:223
+msgid "e.g. Artist, dog-lover, and avid reader."
+msgstr "Bygelyks keunstner, hûneleafhawwer en fûleindich lêzer."
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:43
+msgid "E.g. artistic nudes."
+msgstr "Bygelyks artistyk neaken."
+
+#: src/view/com/modals/CreateOrEditList.tsx:261
+msgid "e.g. Great Posters"
+msgstr "Byg. geweldige auteurs"
+
+#: src/view/com/modals/CreateOrEditList.tsx:262
+msgid "e.g. Spammers"
+msgstr "Bygelyks spammers"
+
+#: src/view/com/modals/CreateOrEditList.tsx:290
+msgid "e.g. The posters who never miss."
+msgstr "Byg. de auteurs dy’t nea misse."
+
+#: src/view/com/modals/CreateOrEditList.tsx:291
+msgid "e.g. Users that repeatedly reply with ads."
+msgstr "Bygelyks brûkers dy’t faker mei advertinsjes reagearje."
+
+#: src/view/com/modals/InviteCodes.tsx:97
+msgid "Each code works once. You'll receive more invite codes periodically."
+msgstr "Elke koade wurket ien kear. Do ûntfangst periodyk mear útnûgingskoaden."
+
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
+#: src/screens/StarterPack/Wizard/index.tsx:534
+#: src/screens/StarterPack/Wizard/index.tsx:541
+msgid "Edit"
+msgstr "Bewurkje"
+
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
+msgctxt "action"
+msgid "Edit"
+msgstr "Bewurkje"
+
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
+msgid "Edit avatar"
+msgstr "Avatar bewurkje"
+
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111
+msgid "Edit Feeds"
+msgstr "Feeds bewurkje"
+
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
+#: src/view/com/composer/photos/Gallery.tsx:194
+msgid "Edit image"
+msgstr "Ofbylding bewurkje"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
+msgid "Edit interaction settings"
+msgstr "Ynteraksje-ynstellingen bewurkje"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr "Ynteressen bewurkje"
+
+#: src/view/screens/ProfileList.tsx:544
+msgid "Edit list details"
+msgstr "Listdetails bewurkje"
+
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr "Live-status bewurkje"
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
+msgid "Edit Moderation List"
+msgstr "Moderaasjelist bewurkje"
+
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
+msgid "Edit My Feeds"
+msgstr "Myn feeds bewurkje"
+
+#: src/view/com/modals/EditProfile.tsx:154
+msgid "Edit my profile"
+msgstr "Myn profyl bewurkje"
+
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109
+msgid "Edit People"
+msgstr "Persoanen bewurkje"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239
+msgid "Edit post interaction settings"
+msgstr "Berjochtynteraksje-ynstellingen bewurkje"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:275
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
+msgid "Edit profile"
+msgstr "Profyl bewurkje"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
+msgid "Edit Profile"
+msgstr "Profyl bewurkje"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
+msgid "Edit starter pack"
+msgstr "Startpakket bewurkje"
+
+#: src/view/com/modals/CreateOrEditList.tsx:223
+msgid "Edit User List"
+msgstr "Brûkerslist bewurkje"
+
+#: src/components/WhoCanReply.tsx:91
+msgid "Edit who can reply"
+msgstr "Wa’t reagearje kin bewurkje"
+
+#: src/view/com/modals/EditProfile.tsx:195
+msgid "Edit your display name"
+msgstr "Dyn werjeftenamme bewurkje"
+
+#: src/view/com/modals/EditProfile.tsx:231
+msgid "Edit your profile description"
+msgstr "Dyn profylbeskriuwing bewurkje"
+
+#: src/Navigation.tsx:468
+msgid "Edit your starter pack"
+msgstr "Dyn startpakket bewurkje"
+
+#: src/screens/Onboarding/index.tsx:31
+#: src/screens/Onboarding/state.ts:101
+msgid "Education"
+msgstr "Underwiis"
+
+#: src/screens/List/ListHiddenScreen.tsx:141
+msgid "Either the creator of this list has blocked you or you have blocked the creator."
+msgstr "De makker fan dizze list hat dy blokkearre, of do hast de makker blokkearre."
+
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
+msgid "Email"
+msgstr "E-mailadres"
+
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
+msgctxt "toast"
+msgid "Email 2FA disabled"
+msgstr "E-mail-2FA útskeakele"
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
+msgid "Email 2FA enabled"
+msgstr "E-mail-2FA ynskeakele"
+
+#: src/screens/Login/ForgotPasswordForm.tsx:93
+msgid "Email address"
+msgstr "E-mailadres"
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:104
+msgid "Email Resent"
+msgstr "E-mailberjocht opnij ferstjoerd"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
+msgstr "E-mailberjocht ferstjoerd!"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr "E-mailadres bywurke!"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
+msgstr "E-mailferifikaasje foltôge!"
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:79
+msgid "Email Verified"
+msgstr "E-mailadres ferifiearre"
+
+#: src/components/dialogs/Embed.tsx:181
+msgid "Embed HTML code"
+msgstr "HTML-koade ynslute"
+
+#: src/components/dialogs/Embed.tsx:104
+#: src/components/dialogs/Embed.tsx:108
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
+msgid "Embed post"
+msgstr "Berjocht ynslute"
+
+#: src/components/dialogs/Embed.tsx:112
+msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
+msgstr "Nim dit bericht op yn dyn website. Kopiearje ienfâldichwei it folgjende fragmint en plak it yn de HTML-koade fan dyn website."
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
+msgid "Embedded video player"
+msgstr "Yntegrearre fideospiler"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
+msgid "Enable"
+msgstr "Ynskeakelje"
+
+#: src/components/dialogs/EmbedConsent.tsx:100
+msgid "Enable {0} only"
+msgstr "Allinnich {0} ynskeakelje"
+
+#: src/screens/Moderation/index.tsx:351
+msgid "Enable adult content"
+msgstr "Ynhâld foar folwoeksenen ynskeakelje"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr "E-mail-2FA ynskeakelje"
+
+#: src/components/dialogs/EmbedConsent.tsx:81
+#: src/components/dialogs/EmbedConsent.tsx:88
+msgid "Enable external media"
+msgstr "Eksterne media ynskeakelje"
+
+#: src/screens/Settings/ExternalMediaPreferences.tsx:49
+msgid "Enable media players for"
+msgstr "Mediaspilers ynskeakelje foar"
+
+#: src/screens/Settings/NotificationSettings.tsx:74
+#: src/screens/Settings/NotificationSettings.tsx:77
+msgid "Enable priority notifications"
+msgstr "Prioriteitsmeldingen ynskeakelje"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387
+msgid "Enable subtitles"
+msgstr "Undertiteling ynskeakelje"
+
+#: src/components/dialogs/EmbedConsent.tsx:93
+msgid "Enable this source only"
+msgstr "Allinnich dizze boarne ynskeakelje"
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
+msgid "Enable trending topics"
+msgstr "Populêre ûnderwerpen ynskeakelje"
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
+msgid "Enable trending videos in your Discover feed"
+msgstr "Populêre fideo’s yn dyn Discover-feed ynskeakelje"
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
+msgid "Enable trending videos in your Discover feed."
+msgstr "Populêre fideo’s yn dyn Discover-feed ynskeakelje."
+
+#: src/screens/Messages/Settings.tsx:130
+#: src/screens/Messages/Settings.tsx:133
+#: src/screens/Moderation/index.tsx:362
+msgid "Enabled"
+msgstr "Ynskeakele"
+
+#: src/screens/Profile/Sections/Feed.tsx:113
+msgid "End of feed"
+msgstr "Ein fan feed"
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
+msgid "Ensure you have selected a language for each subtitle file."
+msgstr "Soargje derfoar datsto foar elk ûndertitelbestân in taal selektearrest."
+
+#: src/screens/Login/SetNewPasswordForm.tsx:143
+msgid "Enter a password"
+msgstr "Fier in wachtwurd yn"
+
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
+msgid "Enter a word or tag"
+msgstr "Fier in wurd of tag yn"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr "Koade ynfiere"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
+msgid "Enter Code"
+msgstr "Koade ynfiere"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
+msgid "Enter fullscreen"
+msgstr "Folslein skerm iepenje"
+
+#: src/view/com/modals/ChangePassword.tsx:165
+msgid "Enter the code you received to change your password."
+msgstr "Fier de koade yn dy’tsto ûntfongen hast foar it wizigjen fan dyn wachtwurd."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+msgid "Enter the domain you want to use"
+msgstr "Fier it domein yn datsto brûke wolst"
+
+#: src/screens/Login/ForgotPasswordForm.tsx:113
+msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
+msgstr "Fier it e-mailadres yn datsto brûkt hast om dyn account oan te meitsjen. Wy stjoere dy in ‘werstelkoade’, sadatsto in nij wachtwurd ynstelle kinst."
+
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr "Fier de brûkersnamme of it e-mailadres yn datso brûkt hast by it oanmeitsjen fan dyn account"
+
+#: src/components/dialogs/BirthDateSettings.tsx:104
+msgid "Enter your birth date"
+msgstr "Fier dyn bertedatum yn"
+
+#: src/screens/Login/ForgotPasswordForm.tsx:99
+#: src/screens/Signup/StepInfo/index.tsx:213
+msgid "Enter your email address"
+msgstr "Fier dyn e-mailadres yn"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
+msgid "Enter your new email address below."
+msgstr "Fier hjirûnder dyn nije e-mailadres yn."
+
+#: src/screens/Login/LoginForm.tsx:243
+msgid "Enter your password"
+msgstr "Fier fyn wachtwurd yn"
+
+#: src/screens/Login/index.tsx:123
+msgid "Enter your username and password"
+msgstr "Fier dyn brûkersnamme en wachtwurd yn"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135
+msgid "Enters full screen"
+msgstr "Iepenet folslein skerm"
+
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr "Ferdivedaasje"
+
+#: src/view/com/composer/Composer.tsx:1678
+#: src/view/com/util/error/ErrorScreen.tsx:42
+msgid "Error"
+msgstr "Flater"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:47
+msgid "Error occurred while saving file"
+msgstr "Der is in flater bard by it bewarjen fan it bestân"
+
+#: src/screens/Signup/StepCaptcha/index.tsx:55
+msgid "Error receiving captcha response."
+msgstr "Flater by ûntfangen fan captcha-antwurd."
+
+#: src/screens/Onboarding/StepInterests/index.tsx:183
+msgid "Error:"
+msgstr "Flater:"
+
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr "Flater: {error}"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
+msgid "Everybody"
+msgstr "Elkenien"
+
+#: src/components/WhoCanReply.tsx:71
+msgid "Everybody can reply"
+msgstr "Elkenien kin reagearje"
+
+#: src/components/WhoCanReply.tsx:222
+msgid "Everybody can reply to this post."
+msgstr "Elkenien kin reagearje op dit berjocht."
+
+#: src/screens/Messages/Settings.tsx:83
+#: src/screens/Messages/Settings.tsx:86
+msgid "Everyone"
+msgstr "Elkenien"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73
+#: src/lib/moderation/useReportOptions.ts:73
+msgid "Excessive mentions or replies"
+msgstr "Oermjittich protte fermeldingen of antwurden"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:86
+#: src/lib/moderation/useReportOptions.ts:86
+msgid "Excessive or unwanted messages"
+msgstr "Oermjittich of net-winske priveeberjochten"
+
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr "Brûkers útslute dy’tsto folgest"
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr "Slút brûkers dy’tsto folgest út"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404
+msgid "Exit fullscreen"
+msgstr "Folslein skerm slute"
+
+#: src/view/com/modals/DeleteAccount.tsx:275
+msgid "Exits account deletion process"
+msgstr "Ferlit proses fuortsmiten account"
+
+#: src/view/com/modals/CropImage.web.tsx:95
+msgid "Exits image cropping process"
+msgstr "Ferlit proses foar bysnijen fan ôfbyldingen"
+
+#: src/view/com/lightbox/Lightbox.web.tsx:110
+msgid "Exits image view"
+msgstr "Ferlit ôfbyldingswerjefte"
+
+#: src/view/com/lightbox/Lightbox.web.tsx:184
+msgid "Expand alt text"
+msgstr "Alt-tekst útklappe"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
+msgid "Expand list of users"
+msgstr "Brûkerslist útklappe"
+
+#: src/view/com/composer/ComposerReplyTo.tsx:84
+msgid "Expand or collapse the full post you are replying to"
+msgstr "Ut- of ynklappe fan it folsleine berjocht dêr’tsto op reagearrest"
+
+#: src/screens/VideoFeed/index.tsx:962
+msgid "Expands or collapses post text"
+msgstr "Klapt berjochttekst út of yn"
+
+#: src/lib/api/index.ts:406
+msgid "Expected uri to resolve to a record"
+msgstr "Ferwacht waard dat uri omset wurde koe nei in record"
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:123
+#: src/screens/Settings/ThreadPreferences.tsx:137
+msgid "Experimental"
+msgstr "Eksperimenteel"
+
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr "Ferrûn"
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
+msgstr "Ferrint {0}"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:199
+#: src/components/moderation/ModerationDetailsDialog.tsx:208
+msgid "Expires in {0}"
+msgstr "Ferrint oer {0}"
+
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr "Ferrint yn {0} om {1}"
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:47
+#: src/lib/moderation/useGlobalLabelStrings.ts:51
+msgid "Explicit or potentially disturbing media."
+msgstr "Eksplisite of mooglik oanstjitjaande media."
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:35
+msgid "Explicit sexual images."
+msgstr "Eksplisite seksuele ôfbyldingen."
+
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr "Untdekke"
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
+msgid "Export my data"
+msgstr "Myn gegevens eksportearje"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:62
+msgid "Export My Data"
+msgstr "Myn gegevens eksportearje"
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
+msgid "External media"
+msgstr "Eksterne media"
+
+#: src/components/dialogs/EmbedConsent.tsx:54
+#: src/components/dialogs/EmbedConsent.tsx:58
+msgid "External Media"
+msgstr "Eksterne media"
+
+#: src/components/dialogs/EmbedConsent.tsx:70
+#: src/screens/Settings/ExternalMediaPreferences.tsx:40
+msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
+msgstr "Eksterne media kinne websites tastean om ynformaasje oer dy en dyn apparaat te sammeljen. Der wurdt gjin ynformaasje ferstjoerd of frege oantsto op de knop ‘ôfspylje’ drukst."
+
+#: src/Navigation.tsx:347
+#: src/screens/Settings/ExternalMediaPreferences.tsx:31
+msgid "External Media Preferences"
+msgstr "Eksterne-mediafoarkarren"
+
+#: src/screens/Messages/components/RequestButtons.tsx:220
+msgctxt "toast"
+msgid "Failed to accept chat"
+msgstr "Chat akseptearje mislearre"
+
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr "Tafoegjen emoji-reaksje mislearre"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
+msgid "Failed to change handle. Please try again."
+msgstr "Kin handle net wizigje. Probearje nochris."
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173
+msgid "Failed to create app password. Please try again."
+msgstr "Koe app-wachtwurd net oanmeitsje. Probearje it nochris."
+
+#: src/components/dms/MessageProfileButton.tsx:36
+msgid "Failed to create conversation"
+msgstr "Oanmeitsjen fan petear mislearre"
+
+#: src/screens/StarterPack/Wizard/index.tsx:233
+#: src/screens/StarterPack/Wizard/index.tsx:241
+msgid "Failed to create starter pack"
+msgstr "It oanmeitsjen fan it startpakket is mislearre"
+
+#: src/view/com/modals/CreateOrEditList.tsx:184
+msgid "Failed to create the list. Check your internet connection and try again."
+msgstr "It is net slagge om de list te meitsjen. Kontrolearje dyn ynternetferbining en probearje it opnij."
+
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
+msgctxt "toast"
+msgid "Failed to delete chat"
+msgstr "Fuortsmiten fan chat mislearre"
+
+#: src/components/dms/MessageContextMenu.tsx:84
+msgid "Failed to delete message"
+msgstr "Priveeberjocht kin net fuorsmiten wurde"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
+msgid "Failed to delete post, please try again"
+msgstr "Berjocht fuortsmiten mislearre, probearje it opnij"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
+msgid "Failed to delete starter pack"
+msgstr "Fuortsmiten fan it startpakket is mislearre"
+
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
+msgid "Failed to load conversations"
+msgstr "Laden van konversaasjes mislearre"
+
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
+msgid "Failed to load feeds preferences"
+msgstr "Laden fan feedfoarkarren is mislearre"
+
+#: src/components/dialogs/GifSelect.tsx:225
+msgid "Failed to load GIFs"
+msgstr "Laden fan GIF’s is mislearre"
+
+#: src/screens/Messages/components/MessageListError.tsx:23
+msgid "Failed to load past messages"
+msgstr "Laden fan eardere priveeberjochten is mislearre"
+
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
+msgid "Failed to load suggested feeds"
+msgstr "Laden fan foarstelde feeds is mislearre"
+
+#: src/screens/Search/Explore.tsx:373
+msgid "Failed to load suggested follows"
+msgstr "It is net slagge om in list te laden mei folchsuggestjes"
+
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
+msgid "Failed to mark all requests as read"
+msgstr "Alle fersiken as lêzen markearje mislearre"
+
+#: src/state/queries/pinned-post.ts:75
+msgid "Failed to pin post"
+msgstr "Fêstsetten fan berjocht is mislearre"
+
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr "Fuortsmiten emoji-reaksje mislearre"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr "Fuortsmiten fan ferifikaasje mislearre"
+
+#: src/lib/media/save-image.ts:28
+msgid "Failed to save image: {0}"
+msgstr "It bewarjen fan de ôfbylding is mislearre: {0}"
+
+#: src/state/queries/notifications/settings.ts:39
+msgid "Failed to save notification preferences, please try again"
+msgstr "Bewarjen fan meldingsfoarkarren is mislearre, probearje it opnij"
+
+#: src/screens/ModerationInteractionSettings/index.tsx:108
+msgid "Failed to save settings. Please try again."
+msgstr "Ynstellingen bewarjen mislearre. Probearje it opnij."
+
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr "Dyn ynteressen bewarje mislearre."
+
+#: src/components/dms/MessageItem.tsx:310
+msgid "Failed to send"
+msgstr "Ferstjoeren mislearre"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr "E-mailberjocht ferstjoere mislearre, probearje it opnij."
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:254
+#: src/screens/Messages/components/ChatDisabled.tsx:87
+msgid "Failed to submit appeal, please try again."
+msgstr "It yntsjinjen fan beswier is mislearre, probearje it opnij."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
+msgid "Failed to toggle thread mute, please try again"
+msgstr "It wikseljen tusken wol/net-negearje fan it petear is mislearre, probearje it opnij"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr "Ynstellingen e-mail-2FA bywurkjen mislearre"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr "E-mailadres bywurkjen mislearre, probearje it opnij."
+
+#: src/components/FeedCard.tsx:285
+msgid "Failed to update feeds"
+msgstr "Net slagge om de feeds by te wurkjen"
+
+#: src/screens/Messages/Settings.tsx:34
+msgid "Failed to update settings"
+msgstr "Ynstellingen bywurkje mislearre"
+
+#: src/lib/media/video/upload.ts:72
+#: src/lib/media/video/upload.web.ts:74
+#: src/lib/media/video/upload.web.ts:78
+#: src/lib/media/video/upload.web.ts:88
+msgid "Failed to upload video"
+msgstr "Fideo oplade mislearre"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr "E-mailadres ferifiearjen mislearre, probearje it opnij."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
+msgid "Failed to verify handle. Please try again."
+msgstr "Kin handle net ferifiearje. Probearje nochris."
+
+#: src/Navigation.tsx:263
+msgid "Feed"
+msgstr "Feed"
+
+#: src/components/FeedCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:253
+msgid "Feed by {0}"
+msgstr "Feed troch {0}"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
+msgid "Feed menu"
+msgstr "Feedmenu"
+
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
+msgid "Feed toggle"
+msgstr "Feed wikselje"
+
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
+msgid "Feedback"
+msgstr "Feedback"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
+msgctxt "toast"
+msgid "Feedback sent!"
+msgstr "Feedback ferstjoerd!"
+
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
+#: src/view/screens/SavedFeeds.tsx:96
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
+msgid "Feeds"
+msgstr "Feeds"
+
+#: src/view/screens/SavedFeeds.tsx:198
+msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
+msgstr "Feeds binne personalisearre algoritmen dy’t brûkers mei in bytsje programmearkennis bouwe. <0/> foar mear ynformaasje."
+
+#: src/components/FeedCard.tsx:282
+#: src/view/screens/SavedFeeds.tsx:82
+msgctxt "toast"
+msgid "Feeds updated!"
+msgstr "Feeds bywurke!"
+
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
+msgid "Feeds we think you might like."
+msgstr "Feeds dêr’tsto neffens ús wol oer meist."
+
+#: src/screens/Settings/components/OTAInfo.tsx:58
+msgid "Fetch update"
+msgstr "Update ophelje"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:43
+msgid "File saved successfully!"
+msgstr "Bestân mei sukses bewarre!"
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:66
+msgid "Filter from feeds"
+msgstr "Filterje op feeds"
+
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
+msgid "Filter search by language"
+msgstr "Filter sykje op taal"
+
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
+msgid "Filter search by language (currently: {currentLanguageLabel})"
+msgstr "Filter sykje op taal (op dit stuit: {currentLanguageLabel})"
+
+#: src/screens/Onboarding/StepFinished.tsx:314
+msgid "Finalizing"
+msgstr "Foltôgje"
+
+#: src/view/com/posts/CustomFeedEmptyState.tsx:48
+#: src/view/com/posts/FollowingEmptyState.tsx:53
+#: src/view/com/posts/FollowingEndOfFeed.tsx:54
+msgid "Find accounts to follow"
+msgstr "Sykje accounts om te folgjen"
+
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
+msgid "Find people to follow"
+msgstr "Sykje minsken om te folgjen"
+
+#: src/screens/Search/Shell.tsx:476
+msgid "Find posts, users, and feeds on Bluesky"
+msgstr "Sykje berjochten, brûkers en feeds op Bluesky"
+
+#: src/screens/StarterPack/Wizard/index.tsx:195
+msgid "Finish"
+msgstr "Foltôgje"
+
+#: src/screens/Onboarding/index.tsx:35
+msgid "Fitness"
+msgstr "Fitness"
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117
+msgctxt "Name of app icon variant"
+msgid "Flat Black"
+msgstr "Plat swart"
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93
+msgctxt "Name of app icon variant"
+msgid "Flat Blue"
+msgstr "Plat blau"
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105
+msgctxt "Name of app icon variant"
+msgid "Flat White"
+msgstr "Plat wyt"
+
+#: src/screens/Onboarding/StepFinished.tsx:294
+msgid "Flexible"
+msgstr "Fleksibel"
+
+#. User is not following this account, click to follow
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
+#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
+msgid "Follow"
+msgstr "Folgje"
+
+#: src/view/com/profile/FollowButton.tsx:72
+msgctxt "action"
+msgid "Follow"
+msgstr "Folgje"
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
+#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
+msgid "Follow {0}"
+msgstr "{0} folgje"
+
+#: src/screens/VideoFeed/index.tsx:827
+msgid "Follow {handle}"
+msgstr "{handle} folgje"
+
+#: src/components/ProgressGuide/List.tsx:52
+#: src/state/shell/progress-guide.tsx:229
+msgid "Follow 10 accounts"
+msgstr "10 accounts folgje"
+
+#: src/components/ProgressGuide/List.tsx:69
+msgid "Follow 7 accounts"
+msgstr "7 accounts folgje"
+
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
+msgid "Follow account"
+msgstr "Account folgje"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
+msgid "Follow all"
+msgstr "Alle folgje"
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
+#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
+msgid "Follow Back"
+msgstr "Weromfolgje"
+
+#: src/view/com/profile/FollowButton.tsx:81
+msgctxt "action"
+msgid "Follow Back"
+msgstr "Weromfolgje"
+
+#: src/components/KnownFollowers.tsx:234
+msgid "Followed by <0>{0}0>"
+msgstr "Folge troch <0>{0}0>"
+
+#: src/components/KnownFollowers.tsx:220
+msgid "Followed by <0>{0}0> and {1, plural, one {# other} other {# others}}"
+msgstr "Folge troch <0>{0}0> en {1, plural, one {# oar} other {# oaren}}"
+
+#: src/components/KnownFollowers.tsx:207
+msgid "Followed by <0>{0}0> and <1>{1}1>"
+msgstr "Folge troch <0>{0}0> en <1>{1}1>"
+
+#: src/components/KnownFollowers.tsx:189
+msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
+msgstr "Folge troch <0>{0}0>, <1>{1}1> en {2, plural, one {# oar} other {# oaren}}"
+
+#: src/Navigation.tsx:217
+msgid "Followers of @{0} that you know"
+msgstr "Folgers fan @{0} dy’tsto kinst"
+
+#: src/screens/Profile/KnownFollowers.tsx:104
+#: src/screens/Profile/KnownFollowers.tsx:121
+msgid "Followers you know"
+msgstr "Folgers dy’tsto kinst"
+
+#. User is following this account, click to unfollow
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
+#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
+#: src/view/screens/Feeds.tsx:602
+#: src/view/screens/SavedFeeds.tsx:422
+msgid "Following"
+msgstr "Folgjend"
+
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
+msgid "Following {0}"
+msgstr "Folget {0}"
+
+#: src/screens/VideoFeed/index.tsx:826
+msgid "Following {handle}"
+msgstr "Do folgest {handle}"
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
+msgid "Following feed preferences"
+msgstr "Folchfeedfoarkarren"
+
+#: src/Navigation.tsx:334
+#: src/screens/Settings/FollowingFeedPreferences.tsx:53
+msgid "Following Feed Preferences"
+msgstr "Folchfeedfoarkarren"
+
+#: src/screens/Profile/Header/Handle.tsx:32
+msgid "Follows you"
+msgstr "Folget dy"
+
+#: src/components/Pills.tsx:175
+msgid "Follows You"
+msgstr "Folget dy"
+
+#: src/screens/Settings/AppearanceSettings.tsx:140
+msgid "Font"
+msgstr "Lettertype"
+
+#: src/screens/Settings/AppearanceSettings.tsx:160
+msgid "Font size"
+msgstr "Lettergrutte"
+
+#: src/screens/Onboarding/index.tsx:40
+#: src/screens/Onboarding/state.ts:102
+msgid "Food"
+msgstr "Iten en drinken"
+
+#: src/view/com/modals/DeleteAccount.tsx:125
+msgid "For security reasons, we'll need to send a confirmation code to your email address."
+msgstr "Om feilichheidsredenen moatte wy in befêstigingskoade nei dyn e-mailadres stjoere."
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:209
+msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one."
+msgstr "Om feilichheidsredenen kinsto dit net mear besjen. Do moatst in nij app-wachtwurd generearje asto dit app-wachtwurd kwytrekkest."
+
+#: src/screens/Settings/AppearanceSettings.tsx:142
+msgid "For the best experience, we recommend using the theme font."
+msgstr "Foar de beste ûnderfining riede wy dy oan it temalettertype te brûken."
+
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr "Foar dy"
+
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr "Foar altyd"
+
+#: src/screens/Login/index.tsx:153
+#: src/screens/Login/index.tsx:168
+msgid "Forgot Password"
+msgstr "Wachtwurd ferjitten"
+
+#: src/screens/Login/LoginForm.tsx:248
+msgid "Forgot password?"
+msgstr "Wachtwurd ferjitten?"
+
+#: src/screens/Login/LoginForm.tsx:259
+msgid "Forgot?"
+msgstr "Ferjitten?"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:54
+#: src/lib/moderation/useReportOptions.ts:54
+msgid "Frequently Posts Unwanted Content"
+msgstr "Publisearret faak net-winske ynhâld"
+
+#: src/screens/Hashtag.tsx:120
+msgid "From @{sanitizedAuthor}"
+msgstr "Fan @{sanitizedAuthor}"
+
+#: src/view/com/posts/PostFeedItem.tsx:326
+msgctxt "from-feed"
+msgid "From <0/>"
+msgstr "Fan <0/>"
+
+#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50
+msgid "Gallery"
+msgstr "Galerij"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
+msgid "Generate a starter pack"
+msgstr "In startpakket generearje"
+
+#: src/view/shell/Drawer.tsx:347
+msgid "Get help"
+msgstr "Krij help"
+
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr "Oan de slach"
+
+#: src/components/ProgressGuide/List.tsx:35
+msgid "Getting started"
+msgstr "Oan de slach"
+
+#: src/components/MediaPreview.tsx:116
+msgid "GIF"
+msgstr "GIF"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:232
+msgid "Give your profile a face"
+msgstr "Jou dyn profyl in gesicht"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39
+#: src/lib/moderation/useReportOptions.ts:39
+msgid "Glaring violations of law or terms of service"
+msgstr "Dúdlike oertrêdingen fan de wet of tsjinstbetingsten"
+
+#: src/components/Layout/Header/index.tsx:127
+#: src/components/moderation/ScreenHider.tsx:154
+#: src/components/moderation/ScreenHider.tsx:163
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
+#: src/screens/VideoFeed/components/Header.tsx:163
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
+#: src/view/com/auth/LoggedOut.tsx:72
+#: src/view/screens/NotFound.tsx:57
+#: src/view/screens/ProfileList.tsx:1038
+msgid "Go back"
+msgstr "Tebek"
+
+#: src/components/Error.tsx:78
+#: src/screens/List/ListHiddenScreen.tsx:224
+#: src/screens/Profile/ErrorState.tsx:62
+#: src/screens/Profile/ErrorState.tsx:66
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
+#: src/view/screens/NotFound.tsx:56
+#: src/view/screens/ProfileList.tsx:1043
+msgid "Go Back"
+msgstr "Tebek"
+
+#: src/components/dms/ReportDialog.tsx:192
+#: src/components/ReportDialog/SelectReportOptionView.tsx:78
+#: src/components/ReportDialog/SubmitView.tsx:110
+#: src/screens/Onboarding/Layout.tsx:99
+#: src/screens/Onboarding/Layout.tsx:188
+#: src/screens/Signup/BackNextButtons.tsx:35
+msgid "Go back to previous step"
+msgstr "Tebek nei de foarige stap"
+
+#: src/view/screens/NotFound.tsx:57
+msgid "Go home"
+msgstr "Nei startside"
+
+#: src/view/screens/NotFound.tsx:56
+msgid "Go Home"
+msgstr "Nei startside"
+
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr "Gean live"
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr "Gean live"
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr "Gean live foar"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr "Gean nei it profyl fan {firstAuthorName}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
+msgid "Go to conversation with {0}"
+msgstr "Nei petear mei {0}"
+
+#: src/screens/Login/ForgotPasswordForm.tsx:165
+#: src/view/com/modals/ChangePassword.tsx:179
+msgid "Go to next"
+msgstr "Nei folgjende"
+
+#: src/components/dms/ConvoMenu.tsx:227
+msgid "Go to profile"
+msgstr "Nei profyl"
+
+#: src/components/dms/ConvoMenu.tsx:224
+msgid "Go to user's profile"
+msgstr "Nei brûkersprofyl"
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:46
+#: src/lib/moderation/useGlobalLabelStrings.ts:50
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
+msgid "Graphic Media"
+msgstr "Grafyske media"
+
+#: src/state/shell/progress-guide.tsx:218
+#: src/state/shell/progress-guide.tsx:228
+msgid "Half way there!"
+msgstr "Healweis!"
+
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
+msgid "Handle"
+msgstr "Handle"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
+msgid "Handle already taken. Please try a different one."
+msgstr "Handle al yn gebrûk. Probearje in oare."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
+msgid "Handle changed!"
+msgstr "Handle wizige!"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
+msgid "Handle too long. Please try a shorter one."
+msgstr "Handle te lang. Probearje in koartere."
+
+#: src/screens/Settings/AccessibilitySettings.tsx:87
+msgid "Haptics"
+msgstr "Haptyske feedback"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:34
+#: src/lib/moderation/useReportOptions.ts:34
+msgid "Harassment, trolling, or intolerance"
+msgstr "Pesterijen, trolling of yntolerânsje"
+
+#: src/Navigation.tsx:418
+msgid "Hashtag"
+msgstr "Hashtag"
+
+#: src/components/RichTextTag.tsx:51
+msgid "Hashtag {tag}"
+msgstr "Hashtag {tag}"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr "Hasto in koade? <0>Klik hjir.0>"
+
+#: src/screens/Signup/index.tsx:195
+msgid "Having trouble?"
+msgstr "Hasto problemen?"
+
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
+msgid "Help"
+msgstr "Help"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:235
+msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
+msgstr "Lit minsken witte datsto gjin bot bist troch in foto op te laden of in avatar te meitsjen."
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187
+msgid "Here is your app password!"
+msgstr "Hjir is dyn app-wachtwurd!"
+
+#: src/components/VideoPostCard.tsx:178
+#: src/components/VideoPostCard.tsx:454
+msgid "Hidden"
+msgstr "Ferstoppe"
+
+#: src/screens/VideoFeed/index.tsx:625
+msgid "Hidden by your moderation settings."
+msgstr "Ferstoppe troch dyn moderaasjeynstellingen."
+
+#: src/components/ListCard.tsx:130
+msgid "Hidden list"
+msgstr "Ferburgen list"
+
+#: src/components/interstitials/Trending.tsx:131
+#: src/components/interstitials/TrendingVideos.tsx:140
+#: src/components/moderation/ContentHider.tsx:200
+#: src/components/moderation/LabelPreference.tsx:135
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
+#: src/lib/moderation/useLabelBehaviorDescription.ts:15
+#: src/lib/moderation/useLabelBehaviorDescription.ts:20
+#: src/lib/moderation/useLabelBehaviorDescription.ts:25
+#: src/lib/moderation/useLabelBehaviorDescription.ts:30
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
+msgid "Hide"
+msgstr "Ferstopje"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
+msgctxt "action"
+msgid "Hide"
+msgstr "Ferstopje"
+
+#: src/components/dialogs/Embed.tsx:128
+msgid "Hide customization options"
+msgstr "Oanpassingsopsjes ferstoppe"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
+msgid "Hide post for me"
+msgstr "Berjocht foar my ferstopje"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
+msgid "Hide reply for everyone"
+msgstr "Reaksje foar elkenien ferstopje"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
+msgid "Hide reply for me"
+msgstr "Reaksje foar my ferstopje"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr "Dizze kaart ferstopje"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+msgid "Hide this post?"
+msgstr "Dit berjocht ferstopje?"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
+msgid "Hide this reply?"
+msgstr "Dizze reaksje ferstopje?"
+
+#: src/components/interstitials/Trending.tsx:113
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
+msgid "Hide trending topics"
+msgstr "Populêre ûnderwerpen ferstopje"
+
+#: src/components/interstitials/Trending.tsx:129
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
+msgid "Hide trending topics?"
+msgstr "Populêre ûnderwerpen ferstopje?"
+
+#: src/components/interstitials/TrendingVideos.tsx:138
+msgid "Hide trending videos?"
+msgstr "Populêre fideo’s ferstopje?"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
+msgid "Hide user list"
+msgstr "Brûkerslist ferstopje"
+
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr "Ferifikaasjebadges ferstopje"
+
+#: src/components/moderation/ContentHider.tsx:151
+#: src/components/moderation/PostHider.tsx:79
+msgid "Hides the content"
+msgstr "Ferstoppet de ynhâld"
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:117
+msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue."
+msgstr "Hmm, der is in probleem bard by it ferbinen mei de feedserver. Stel de feedeigener op de hichte fan dit probleem."
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:105
+msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue."
+msgstr "Hmm, de feedserver liket ferkeard konfigurearre te wêzen. Stel de feedeigener op de hichte fan dit probleem."
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:111
+msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue."
+msgstr "Hmm, de feedserver liket offlie te wêzen. Stel de feedeigener op de hichte fan dit probleem."
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:108
+msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue."
+msgstr "Hmm, de feedserver hat in ûnjildich antwurd werom jûn. Stel de feedeigener op de hichte fan dit probleem."
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:102
+msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
+msgstr "Hmm, wy hawwe problemen mei it finen fan dizze feed. Dizze is mooglik fuortsmiten."
+
+#: src/screens/Moderation/index.tsx:58
+msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
+msgstr "Hmm, it liket derop dat wy problemen hawwe mei it laden fan dizze gegevens. Sjoch hjirûnder foar mear ynformaasje. Nim kontakt mei ús op as dit probleem bliuwt."
+
+#: src/screens/Profile/ErrorState.tsx:31
+msgid "Hmmmm, we couldn't load that moderation service."
+msgstr "Hmm, wy koene dy moderaasjetsjinst net lade."
+
+#: src/view/com/composer/state/video.ts:413
+msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
+msgstr "Wachtsje even! Wy jouwe stadichoan tagong ta fideo en do stiest noch hieltyd yn de rige. Kom fluch werom!"
+
+#: src/Navigation.tsx:647
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
+msgid "Home"
+msgstr "Startside"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
+msgid "Host:"
+msgstr "Host:"
+
+#: src/screens/Login/ForgotPasswordForm.tsx:83
+#: src/screens/Login/LoginForm.tsx:184
+msgid "Hosting provider"
+msgstr "Hostingprovider"
+
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr "Populêr"
+
+#: src/screens/Settings/ThreadPreferences.tsx:67
+#: src/screens/Settings/ThreadPreferences.tsx:70
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
+msgid "Hot replies first"
+msgstr "Populêre antwurden earst"
+
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
+msgid "How should we open this link?"
+msgstr "Hoe moatte wy dizze keppeling iepenje?"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
+msgid "I have a code"
+msgstr "Ik haw in koade"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
+msgid "I have my own domain"
+msgstr "Ik haw myn eigen domein"
+
+#: src/components/dms/BlockedByListDialog.tsx:57
+#: src/components/dms/ReportConversationPrompt.tsx:21
+msgid "I understand"
+msgstr "Ik begryp it"
+
+#: src/view/com/lightbox/Lightbox.web.tsx:186
+msgid "If alt text is long, toggles alt text expanded state"
+msgstr "As de alt-tekst lang is wurdt de alt-tekst yn- of útklapt"
+
+#: src/screens/Signup/StepInfo/Policies.tsx:112
+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 "Asto neffens de wetten fan dyn lân noch gjin folwoeksene bist moat dyn âlder of wetlike fâd dizze nammens dy lêze."
+
+#: src/view/screens/ProfileList.tsx:765
+msgid "If you delete this list, you won't be able to recover it."
+msgstr "Asto dizze list fuotsmytst, kinsto dizze net mear werstelle."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
+msgstr "Asto in eigen domein hast, kinsto dat as handle brûke. Sa kinsto dyn identiteit sels ferifiearje. <0>Klik hjir foar mear ynformaasje.0>"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr "Asto dyn e-mailadres bywurkje moatst, <0>klik hjir0>."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
+msgid "If you remove this post, you won't be able to recover it."
+msgstr "Asto dit berjocht fuortsmytst, kinsto it net mear werstelle."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr "Asto dyn e-mailadres bywurkest, wurdt e-mail-2FA útskeakele."
+
+#: src/view/com/modals/ChangePassword.tsx:160
+msgid "If you want to change your password, we will send you a code to verify that this is your account."
+msgstr "Asto dyn wachtwoord wizigje wolst stjoere wy dy in koade om te ferifiearjen dat dit dyn account is."
+
+#: src/view/com/auth/server-input/index.tsx:208
+msgid "If you're a developer, you can host your own server."
+msgstr "Asto in ûntwikkeler bist, kinsto dyn eigen server hoste."
+
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+msgid "If you're trying to change your handle or email, do so before you deactivate."
+msgstr "Asto dyn handle of e-mailadres probearrest te wizigjen, doch dit dan eardatsto de-aktivearrest."
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:38
+#: src/lib/moderation/useReportOptions.ts:38
+msgid "Illegal and Urgent"
+msgstr "Yllegaal en driuwend"
+
+#: src/view/com/util/images/Gallery.tsx:71
+msgid "Image"
+msgstr "Ofbylding"
+
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr "Ofbyldingsbuffer wiske"
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr "Ofbyldingsbuffer wiske, {0} frijmakke"
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr "Ofbylding bewarre"
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr "Ofbyldingen kinne net bewarre wurden, útsein as der tastimming is foar tagong ta dyn fotobiblioteek."
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
+#: src/lib/moderation/useReportOptions.ts:49
+msgid "Impersonation or false claims about identity or affiliation"
+msgstr "Imitaasje fan identiteit of falske bewearingen oer identiteit of affiliaasje"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68
+#: src/lib/moderation/useReportOptions.ts:68
+msgid "Impersonation, misinformation, or false claims"
+msgstr "Imitaasje fan identiteit, ferkearde ynformaasje of falske bewearingen"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91
+#: src/lib/moderation/useReportOptions.ts:91
+msgid "Inappropriate messages or explicit links"
+msgstr "Unpaslike priveeberjochten of eksplisite keppelingen"
+
+#. Title message shown in chat requests inbox when it's empty
+#: src/screens/Messages/Inbox.tsx:208
+msgid "Inbox zero!"
+msgstr "Postfek YN nul!"
+
+#: src/screens/Login/LoginForm.tsx:164
+msgid "Incorrect username or password"
+msgstr "Unjildige brûkersnamme of wachtwurd"
+
+#: src/screens/Login/SetNewPasswordForm.tsx:131
+msgid "Input code sent to your email for password reset"
+msgstr "Ynfierkoade ferstjoerd nei dyn e-mailadres foar it opnij ynstellen fan dyn wachtwurd"
+
+#: src/view/com/modals/DeleteAccount.tsx:228
+msgid "Input confirmation code for account deletion"
+msgstr "Fier de befêstigingskoade yn foar it fuortsmiten fan de account"
+
+#: src/screens/Login/SetNewPasswordForm.tsx:155
+msgid "Input new password"
+msgstr "Fier nij wachtwurd yn"
+
+#: src/view/com/modals/DeleteAccount.tsx:247
+msgid "Input password for account deletion"
+msgstr "Fier wachtwurd yn foar fuortsmiten account"
+
+#: src/screens/Login/LoginForm.tsx:289
+msgid "Input the code which has been emailed to you"
+msgstr "Fer de koade yn dy’t nei dy e-maild is"
+
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
+msgid "Interaction limited"
+msgstr "Ynteraksje beheind"
+
+#: src/screens/Moderation/index.tsx:213
+msgid "Interaction settings"
+msgstr "Ynteraksjeynstellingen"
+
+#: src/screens/Login/LoginForm.tsx:156
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:70
+msgid "Invalid 2FA confirmation code."
+msgstr "Unjildige 2FA-befêstigingskoade."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
+msgid "Invalid handle. Please try a different one."
+msgstr "Unjildige handle. Probearje in oare."
+
+#: src/view/com/post-thread/PostThreadItem.tsx:339
+msgid "Invalid or unsupported post record"
+msgstr "Unjildich of net-stipe berjochtrecord"
+
+#: src/components/moderation/ReportDialog/index.tsx:73
+msgid "Invalid report subject"
+msgstr "Unjildich rapportûnderwerp"
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:91
+msgid "Invalid Verification Code"
+msgstr "Unjildige ferifikaasjekoade"
+
+#: src/view/com/modals/InviteCodes.tsx:94
+msgid "Invite a Friend"
+msgstr "In freon útnûgje"
+
+#: src/screens/Signup/StepInfo/index.tsx:163
+msgid "Invite code"
+msgstr "Utnûgingskoade"
+
+#: src/screens/Signup/state.ts:339
+msgid "Invite code not accepted. Check that you input it correctly and try again."
+msgstr "Utnûgingskoade net akseptearre. Kontrolearje oftsto dizze korrekt ynfierd hast en probearje it opnij."
+
+#: src/view/com/modals/InviteCodes.tsx:171
+msgid "Invite codes: {0} available"
+msgstr "Utnûgingskoaden: {0} beskikber"
+
+#: src/view/com/modals/InviteCodes.tsx:170
+msgid "Invite codes: 1 available"
+msgstr "Utnûgingskoaden: 1 beskikber"
+
+#: src/components/StarterPack/ShareDialog.tsx:77
+msgid "Invite people to this starter pack!"
+msgstr "Nûgje minsken út foar dit startpakket!"
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:34
+msgid "Invite your friends to follow your favorite feeds and people"
+msgstr "Nûgje freonen út om dyn favorite feeds en persoanen te folgjen"
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:31
+msgid "Invites, but personal"
+msgstr "Utnûgingen, mar dan persoanlik"
+
+#: src/screens/Signup/StepInfo/index.tsx:289
+msgid "It's correct"
+msgstr "Dat is korrekt"
+
+#: src/screens/StarterPack/Wizard/index.tsx:435
+msgid "It's just you right now! Add more people to your starter pack by searching above."
+msgstr "Do bist no noch de iennige! Foegje mear persoanen ta oan dyn startpakket troch hjirboppe te sykjen."
+
+#: src/view/com/composer/Composer.tsx:1612
+msgid "Job ID: {0}"
+msgstr "Taak-ID: {0}"
+
+#. Link to a page with job openings at Bluesky
+#: src/view/com/auth/SplashScreen.web.tsx:180
+msgid "Jobs"
+msgstr "Fakatueres"
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
+msgid "Join Bluesky"
+msgstr "Lid wurde fan Bluesky"
+
+#: src/components/StarterPack/QrCode.tsx:68
+#: src/view/shell/NavSignupCard.tsx:40
+msgid "Join the conversation"
+msgstr "Doh mei oan it petear"
+
+#: src/screens/Onboarding/index.tsx:21
+#: src/screens/Onboarding/state.ts:104
+msgid "Journalism"
+msgstr "Sjoernalistyk"
+
+#: src/components/moderation/ContentHider.tsx:231
+msgid "Labeled by {0}."
+msgstr "Labele troch {0}."
+
+#: src/components/moderation/ContentHider.tsx:229
+msgid "Labeled by the author."
+msgstr "Labele troch de auteur."
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:75
+#: src/view/screens/Profile.tsx:223
+msgid "Labels"
+msgstr "Labels"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
+msgid "Labels added"
+msgstr "Labels tafoege"
+
+#: src/screens/Profile/Sections/Labels.tsx:160
+msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
+msgstr "Labels binne oantekeningen oer brûkers en ynhâld. Se kinne brûkt wurde om it te ferstopjen, te warskôgjen en it netwurk te kategorisearjen."
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:72
+msgid "Labels on your account"
+msgstr "Labels op dyn account"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:74
+msgid "Labels on your content"
+msgstr "Labels op dyn ynhâld"
+
+#: src/view/com/composer/select-language/SelectLangBtn.tsx:107
+msgid "Language selection"
+msgstr "Taalseleksje"
+
+#: src/Navigation.tsx:190
+msgid "Language Settings"
+msgstr "Taalynstellingen"
+
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
+msgid "Languages"
+msgstr "Talen"
+
+#: src/screens/Settings/AppearanceSettings.tsx:172
+msgid "Larger"
+msgstr "Grutter"
+
+#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
+#: src/screens/Topic.tsx:77
+msgid "Latest"
+msgstr "Lêste"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
+msgid "learn more"
+msgstr "mear ynfo"
+
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr "Mear ynfo"
+
+#: src/components/moderation/ScreenHider.tsx:140
+msgid "Learn More"
+msgstr "Mear ynfo"
+
+#: src/view/com/auth/SplashScreen.web.tsx:168
+msgid "Learn more about Bluesky"
+msgstr "Mear ynfo oer Bluesky"
+
+#: src/view/com/auth/server-input/index.tsx:218
+msgid "Learn more about self hosting your PDS."
+msgstr "Mear ynfo oer it sels hosten fan dyn PDS."
+
+#: src/components/moderation/ContentHider.tsx:149
+msgid "Learn more about the moderation applied to this content"
+msgstr "Mear info oer de moderaasje tapast op dizze ynhâld"
+
+#: src/components/moderation/ContentHider.tsx:215
+msgid "Learn more about the moderation applied to this content."
+msgstr "Mear info oer de moderaasje tapast op dizze ynhâld."
+
+#: src/components/moderation/PostHider.tsx:100
+#: src/components/moderation/ScreenHider.tsx:127
+msgid "Learn more about this warning"
+msgstr "Mear ynfo oer dizze warskôging"
+
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr "Mear ynfo oer ferifikaasje op Bluesky"
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
+msgid "Learn more about what is public on Bluesky."
+msgstr "Mear ynfo oer wat iepenbier is op Bluesky."
+
+#: src/components/moderation/ContentHider.tsx:239
+#: src/view/com/auth/server-input/index.tsx:220
+msgid "Learn more."
+msgstr "Mear ynfo."
+
+#: src/components/dms/LeaveConvoPrompt.tsx:48
+msgid "Leave"
+msgstr "Ferlitte"
+
+#: src/components/dms/MessagesListBlockedFooter.tsx:74
+#: src/components/dms/MessagesListBlockedFooter.tsx:81
+msgid "Leave chat"
+msgstr "Chat ferlitte"
+
+#: src/components/dms/ConvoMenu.tsx:203
+#: src/components/dms/ConvoMenu.tsx:206
+#: src/components/dms/ConvoMenu.tsx:266
+#: src/components/dms/ConvoMenu.tsx:269
+#: src/components/dms/LeaveConvoPrompt.tsx:42
+msgid "Leave conversation"
+msgstr "Petear ferlitte"
+
+#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84
+msgid "Leave them all unchecked to see any language."
+msgstr "Alle útskeakele litte om elke taal te sjen."
+
+#: src/view/com/modals/LinkWarning.tsx:65
+msgid "Leaving Bluesky"
+msgstr "Bluesky ferlitte"
+
+#: src/screens/SignupQueued.tsx:155
+msgid "left to go."
+msgstr "noch te gean."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
+msgid "Let me choose"
+msgstr "Lit my kieze"
+
+#: src/screens/Login/index.tsx:154
+#: src/screens/Login/index.tsx:169
+msgid "Let's get your password reset!"
+msgstr "Litte wy dyn wachtwurd opnij ynstelle!"
+
+#: src/screens/Onboarding/StepFinished.tsx:314
+msgid "Let's go!"
+msgstr "Los!"
+
+#: src/components/dialogs/Embed.tsx:162
+#: src/components/dialogs/Embed.tsx:164
+#: src/screens/Settings/AppearanceSettings.tsx:101
+msgid "Light"
+msgstr "Ljocht"
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:14
+msgctxt "Name of app icon variant"
+msgid "Light"
+msgstr "Ljocht"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
+msgid "Like"
+msgstr "Mei ’k wol oer"
+
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
+msgid "Like ({0, plural, one {# like} other {# likes}})"
+msgstr "Mei ’k wol oer ({0, plural, one {# mei-’k-wol-oer} other {# mei-’k-wol-oers}})"
+
+#: src/components/ProgressGuide/List.tsx:63
+msgid "Like 10 posts"
+msgstr "Mei wol oer 10 berjochten"
+
+#: src/state/shell/progress-guide.tsx:214
+#: src/state/shell/progress-guide.tsx:219
+msgid "Like 10 posts to train the Discover feed"
+msgstr "Mei wol oer 10 berjochten om de Untdekken-feed te trainen"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
+msgid "Like this feed"
+msgstr "Mei wol oer dizze feed"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
+msgid "Like this labeler"
+msgstr "Mei wol oer dizze labeler"
+
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
+msgid "Liked by"
+msgstr "Mei hjir wol oer"
+
+#: src/screens/Post/PostLikedBy.tsx:38
+#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
+#: src/view/screens/ProfileFeedLikedBy.tsx:30
+msgid "Liked By"
+msgstr "Mei ’k wol oer troch"
+
+#: src/components/FeedCard.tsx:218
+#: src/view/com/feeds/FeedSourceCard.tsx:303
+msgid "Liked by {0, plural, one {# user} other {# users}}"
+msgstr "Mei ’k wol oer troch {0, plural, one {# brûker} other {# brûkers}}"
+
+#: src/components/LabelingServiceCard/index.tsx:96
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
+msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
+msgstr "Mei ’k wol oer troch {likeCount, plural, one {# brûker} other {# brûkers}}"
+
+#: src/view/screens/Profile.tsx:229
+msgid "Likes"
+msgstr "Mei-’k-wol-oers"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:232
+msgid "Likes on this post"
+msgstr "Mei-’k-wol-oers op dit berjocht"
+
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
+msgid "Linear"
+msgstr "Lineêr"
+
+#: src/Navigation.tsx:223
+msgid "List"
+msgstr "List"
+
+#: src/view/com/modals/CreateOrEditList.tsx:239
+msgid "List Avatar"
+msgstr "Avatarlist"
+
+#: src/view/screens/ProfileList.tsx:438
+msgctxt "toast"
+msgid "List blocked"
+msgstr "List blokkearre"
+
+#: src/components/ListCard.tsx:150
+#: src/view/com/feeds/FeedSourceCard.tsx:255
+msgid "List by {0}"
+msgstr "List troch {0}"
+
+#: src/view/com/profile/ProfileSubpageHeader.tsx:156
+msgid "List by <0/>"
+msgstr "List troch <0/>"
+
+#: src/view/com/profile/ProfileSubpageHeader.tsx:154
+msgid "List by you"
+msgstr "List fan dy"
+
+#: src/view/screens/ProfileList.tsx:485
+msgctxt "toast"
+msgid "List deleted"
+msgstr "List fuortsmiten"
+
+#: src/screens/List/ListHiddenScreen.tsx:129
+msgid "List has been hidden"
+msgstr "List is ferstoppe"
+
+#: src/view/screens/ProfileList.tsx:176
+msgid "List Hidden"
+msgstr "List ferstoppe"
+
+#: src/view/screens/ProfileList.tsx:402
+msgctxt "toast"
+msgid "List muted"
+msgstr "List negearre"
+
+#: src/view/com/modals/CreateOrEditList.tsx:253
+msgid "List Name"
+msgstr "Listnamme"
+
+#: src/view/screens/ProfileList.tsx:456
+msgctxt "toast"
+msgid "List unblocked"
+msgstr "List net-blokkearre"
+
+#: src/view/screens/ProfileList.tsx:420
+msgctxt "toast"
+msgid "List unmuted"
+msgstr "List net-negearre"
+
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
+msgid "Lists"
+msgstr "Listen"
+
+#: src/components/dms/BlockedByListDialog.tsx:39
+msgid "Lists blocking this user:"
+msgstr "Listen dy’t dizze brûker blokkearje:"
+
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr "LIVE"
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr "Live-funksje is yn beta-test"
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr "Live-keppeling"
+
+#: src/screens/Search/Explore.tsx:86
+msgid "Load more"
+msgstr "Mear lade"
+
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
+msgid "Load more suggested feeds"
+msgstr "Mear foarstelde feeds lade"
+
+#: src/view/screens/Notifications.tsx:270
+msgid "Load new notifications"
+msgstr "Nije meldingen lade"
+
+#: src/screens/Profile/ProfileFeed/index.tsx:224
+#: src/screens/Profile/Sections/Feed.tsx:98
+#: src/view/com/feeds/FeedPage.tsx:155
+#: src/view/screens/ProfileList.tsx:878
+msgid "Load new posts"
+msgstr "Nije berjochten lade"
+
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+msgid "Loading..."
+msgstr "Lade…"
+
+#: src/Navigation.tsx:293
+msgid "Log"
+msgstr "Lochboek"
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78
+msgid "Logged-out visibility"
+msgstr "Sichtberheid ôfmelden"
+
+#: src/view/shell/desktop/RightNav.tsx:130
+msgid "Logo by @sawaratsuki.bsky.social"
+msgstr "Logo troch @sawaratsuki.bsky.social"
+
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
+msgid "Logo by <0>@sawaratsuki.bsky.social0>"
+msgstr "Logo troch <0>@sawaratsuki.bsky.social0>"
+
+#: src/components/RichTextTag.tsx:53
+msgid "Long press to open tag menu for #{tag}"
+msgstr "Yndrukt hâlde om tagmenu te iepenjen foar #{tag}"
+
+#: src/screens/Login/SetNewPasswordForm.tsx:120
+msgid "Looks like XXXXX-XXXXX"
+msgstr "Liket op XXXXX-XXXXX"
+
+#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39
+msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below."
+msgstr "It liket derop datsto gjin feeds bewarre hast! Brûk ús oanrekommandaasjes of blêdzje hjirûnder fierder."
+
+#: src/screens/Home/NoFeedsPinned.tsx:83
+msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄"
+msgstr "It liket derop datsto al dyn feeds losmakke hast. Mar meitsje dy gjin soargen, do kinst der hjirûnder in pear tafoegje 😄"
+
+#: src/screens/Feeds/NoFollowingFeed.tsx:37
+msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
+msgstr "It liket derop datsto in feed mist dy’tsto folgest.<0>Klik hjir om der ien ta te foegjen.0>"
+
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr "E-mailynstellingen foar dyn account oanpasse"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
+msgid "Make one for me"
+msgstr "Meitsje ien foar my"
+
+#: src/view/com/modals/LinkWarning.tsx:79
+msgid "Make sure this is where you intend to go!"
+msgstr "Wês wis dat dit is wêr’tsto hinne wolst!"
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
+msgid "Manage saved feeds"
+msgstr "Bewarre feeds beheare"
+
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr "Ferifikaasjeynstellingen beheare"
+
+#: src/components/dialogs/MutedWords.tsx:108
+msgid "Manage your muted words and tags"
+msgstr "Dyn negearre wurden en tags beheare"
+
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
+msgid "Mark all as read"
+msgstr "Alles as lêzen markearje"
+
+#: src/components/dms/ConvoMenu.tsx:215
+#: src/components/dms/ConvoMenu.tsx:218
+msgid "Mark as read"
+msgstr "As lêzen markearje"
+
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
+msgid "Marked all as read"
+msgstr "Alles as lêzen markearre"
+
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr "Miskien letter"
+
+#: src/view/screens/Profile.tsx:227
+msgid "Media"
+msgstr "Media"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
+msgid "Media that may be disturbing or inappropriate for some audiences."
+msgstr "Media dy’t foar bepaalde doelgroepen oanstjitjouwend of ûngepast wêze kinne."
+
+#: src/components/WhoCanReply.tsx:263
+msgid "mentioned users"
+msgstr "fermelde brûkers"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423
+msgid "Mentioned users"
+msgstr "Fermelde brûkers"
+
+#: src/view/screens/Notifications.tsx:99
+msgid "Mentions"
+msgstr "Fermeldingen"
+
+#: src/components/Menu/index.tsx:105
+msgid "Menu"
+msgstr "Menu"
+
+#: src/components/dms/MessageProfileButton.tsx:96
+msgid "Message {0}"
+msgstr "Berjocht nei {0}"
+
+#: src/components/dms/MessageContextMenu.tsx:82
+msgctxt "toast"
+msgid "Message deleted"
+msgstr "Berjocht fuortsmiten"
+
+#: src/screens/Messages/components/ChatListItem.tsx:197
+msgid "Message deleted"
+msgstr "Berjocht fuortsmiten"
+
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr "Berjocht fan @{0}: {1}"
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:201
+msgid "Message from server: {0}"
+msgstr "Berjocht fan server: {0}"
+
+#: src/screens/Messages/components/MessageInput.tsx:152
+msgid "Message input field"
+msgstr "Ynfierfjild priveeberjocht"
+
+#: src/screens/Messages/components/MessageInput.tsx:79
+#: src/screens/Messages/components/MessageInput.web.tsx:60
+msgid "Message is too long"
+msgstr "Berjocht is te lang"
+
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr "Berjochtopsjes"
+
+#: src/Navigation.tsx:662
+msgid "Messages"
+msgstr "Berjochten"
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81
+msgctxt "Name of app icon variant"
+msgid "Midnight"
+msgstr "Middernacht"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47
+#: src/lib/moderation/useReportOptions.ts:47
+msgid "Misleading Account"
+msgstr "Misliedende account"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:67
+#: src/lib/moderation/useReportOptions.ts:67
+msgid "Misleading Post"
+msgstr "Misliedend berjocht"
+
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
+msgid "Moderation"
+msgstr "Moderaasje"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:138
+msgid "Moderation details"
+msgstr "Moderaasjedetails"
+
+#: src/components/ListCard.tsx:149
+#: src/view/com/modals/UserAddRemoveLists.tsx:222
+msgid "Moderation list by {0}"
+msgstr "Moderaasjelist troch {0}"
+
+#: src/view/com/profile/ProfileSubpageHeader.tsx:169
+msgid "Moderation list by <0/>"
+msgstr "Moderaasjelist troch <0/>"
+
+#: src/view/com/modals/UserAddRemoveLists.tsx:220
+#: src/view/com/profile/ProfileSubpageHeader.tsx:167
+msgid "Moderation list by you"
+msgstr "Moderaasjelist troch dy"
+
+#: src/view/com/modals/CreateOrEditList.tsx:175
+msgctxt "toast"
+msgid "Moderation list created"
+msgstr "Moderaasjelist oanmakke"
+
+#: src/view/com/modals/CreateOrEditList.tsx:161
+msgctxt "toast"
+msgid "Moderation list updated"
+msgstr "Moderaasjelist bywurke"
+
+#: src/screens/Moderation/index.tsx:243
+msgid "Moderation lists"
+msgstr "Moderaasjelisten"
+
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
+msgid "Moderation Lists"
+msgstr "Moderaasjelisten"
+
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr "moderaasjeynstellingen"
+
+#: src/Navigation.tsx:283
+msgid "Moderation states"
+msgstr "Moderaasjetastannen"
+
+#: src/screens/Moderation/index.tsx:197
+msgid "Moderation tools"
+msgstr "Moderaasje-ark"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:52
+#: src/lib/moderation/useModerationCauseDescription.ts:47
+msgid "Moderator has chosen to set a general warning on the content."
+msgstr "De moderator hat derfoar keazen om in algemiene warskôging yn te stellen foar de ynhâld."
+
+#: src/view/com/post-thread/PostThreadItem.tsx:721
+msgid "More"
+msgstr "Mear"
+
+#: src/view/shell/desktop/Feeds.tsx:102
+#: src/view/shell/desktop/Feeds.tsx:105
+msgid "More feeds"
+msgstr "Mear feeds"
+
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
+msgid "More options"
+msgstr "Mear opsjes"
+
+#: src/screens/Settings/ThreadPreferences.tsx:94
+msgid "Most-liked first"
+msgstr "Meast mei-’k-wol-oers earst"
+
+#: src/screens/Settings/ThreadPreferences.tsx:91
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
+msgid "Most-liked replies first"
+msgstr "Meast mei’k-wol-oers antwurden earst"
+
+#: src/screens/Onboarding/state.ts:105
+msgid "Movies"
+msgstr "Films"
+
+#: src/screens/Onboarding/state.ts:106
+msgid "Music"
+msgstr "Muzyk"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95
+msgctxt "video"
+msgid "Mute"
+msgstr "Negearje"
+
+#: src/components/RichTextTag.tsx:140
+#: src/components/RichTextTag.tsx:153
+msgid "Mute {tag}"
+msgstr "{tag} negearje"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
+msgid "Mute account"
+msgstr "Account negearje"
+
+#: src/view/screens/ProfileList.tsx:657
+msgid "Mute accounts"
+msgstr "Accounts negearje"
+
+#: src/components/dms/ConvoMenu.tsx:232
+#: src/components/dms/ConvoMenu.tsx:238
+msgid "Mute conversation"
+msgstr "Petear negearje"
+
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
+msgstr "Negearje yn:"
+
+#: src/view/screens/ProfileList.tsx:779
+msgid "Mute list"
+msgstr "List negearje"
+
+#: src/view/screens/ProfileList.tsx:774
+msgid "Mute these accounts?"
+msgstr "Dizze accounts negearje?"
+
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr "Dit wurd foar 24 oeren negearje"
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr "Dit wurd foar 30 dagen negearje"
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr "Dit wurd foar 7 dagen negearje"
+
+#: src/components/dialogs/MutedWords.tsx:258
+msgid "Mute this word in post text and tags"
+msgstr "Dit wurd yn berjochttekst en tags negearje"
+
+#: src/components/dialogs/MutedWords.tsx:274
+msgid "Mute this word in tags only"
+msgstr "Dit wurd allinnich yn tags negearje"
+
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr "Dit wurd negearje oantsto it negearjen annulearrest"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
+msgid "Mute thread"
+msgstr "Petear negearje"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
+msgid "Mute words & tags"
+msgstr "Wurden en tags negearje"
+
+#: src/screens/Moderation/index.tsx:258
+msgid "Muted accounts"
+msgstr "Negearre accounts"
+
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
+msgid "Muted Accounts"
+msgstr "Negearre accounts"
+
+#: src/view/screens/ModerationMutedAccounts.tsx:204
+msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
+msgstr "Fan negearre accounts wurde de berjochten fuortsmiten út dyn feed en út dyn meldingen. Negearre accounts binne folslein privee."
+
+#: src/lib/moderation/useModerationCauseDescription.ts:92
+msgid "Muted by \"{0}\""
+msgstr "Negearre troch ‘{0}’"
+
+#: src/screens/Moderation/index.tsx:228
+msgid "Muted words & tags"
+msgstr "Negearre wurden en tags"
+
+#: src/view/screens/ProfileList.tsx:776
+msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
+msgstr "Negearjen is privee. Negearre accounts kinne mei dy kommunisearje, mar do sjochst harren berjochten net en ûntfangst gjin meldingen fan harren."
+
+#: src/components/dialogs/BirthDateSettings.tsx:35
+#: src/components/dialogs/BirthDateSettings.tsx:38
+msgid "My Birthday"
+msgstr "Myn bertedei"
+
+#: src/view/screens/Feeds.tsx:702
+msgid "My Feeds"
+msgstr "Myn feeds"
+
+#: src/view/com/modals/CreateOrEditList.tsx:268
+msgid "Name"
+msgstr "Namme"
+
+#: src/view/com/modals/CreateOrEditList.tsx:133
+msgid "Name is required"
+msgstr "Namme is fereaske"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:98
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:106
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:114
+#: src/lib/moderation/useReportOptions.ts:59
+#: src/lib/moderation/useReportOptions.ts:98
+#: src/lib/moderation/useReportOptions.ts:106
+#: src/lib/moderation/useReportOptions.ts:114
+msgid "Name or Description Violates Community Standards"
+msgstr "Namme of omskriuwing skeint mienskipsnoarmen"
+
+#: src/screens/Onboarding/index.tsx:22
+#: src/screens/Onboarding/state.ts:107
+msgid "Nature"
+msgstr "Natuer"
+
+#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
+msgid "Navigate to {0}"
+msgstr "Navigearje nei {0}"
+
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr "Navigearje nei startpakket"
+
+#: src/screens/Login/ForgotPasswordForm.tsx:166
+#: src/screens/Login/LoginForm.tsx:344
+#: src/view/com/modals/ChangePassword.tsx:180
+msgid "Navigates to the next screen"
+msgstr "Navigearje nei folgjende skerm"
+
+#: src/view/shell/Drawer.tsx:77
+msgid "Navigates to your profile"
+msgstr "Navigearret nei dyn profyl"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
+msgid "Need to change it?"
+msgstr "Moatsto it wizigje?"
+
+#: src/components/moderation/ReportDialog/index.tsx:288
+#: src/components/ReportDialog/SelectReportOptionView.tsx:128
+msgid "Need to report a copyright violation?"
+msgstr "Wolsto in ynbreuk op it auteursrjocht melde?"
+
+#: src/screens/Onboarding/StepFinished.tsx:282
+msgid "Never lose access to your followers or data."
+msgstr "Ferlies nea tagong ta dyn folgers of gegevens."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
+msgid "Nevermind, create a handle for me"
+msgstr "Makket net út, meitsje in handle foar my oan"
+
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Nij"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
+msgctxt "action"
+msgid "New"
+msgstr "Nij"
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
+msgid "New chat"
+msgstr "Nije chat"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr "Nij e-mailadres"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr "Nije funksje"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+msgid "New handle"
+msgstr "Nije handle"
+
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
+msgid "New list"
+msgstr "Nije list"
+
+#: src/components/dms/NewMessagesPill.tsx:92
+msgid "New messages"
+msgstr "Nije berjochten"
+
+#: src/view/com/modals/CreateOrEditList.tsx:230
+msgid "New Moderation List"
+msgstr "Nije moderaasjelist"
+
+#: src/view/com/modals/ChangePassword.tsx:224
+msgid "New password"
+msgstr "Nij wachtwurd"
+
+#: src/view/com/modals/ChangePassword.tsx:229
+msgid "New Password"
+msgstr "Nij wachtwurd"
+
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
+#: src/view/screens/Notifications.tsx:165
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
+msgid "New post"
+msgstr "Nij berjocht"
+
+#: src/view/com/feeds/FeedPage.tsx:166
+msgctxt "action"
+msgid "New post"
+msgstr "Nij berjocht"
+
+#: src/view/shell/desktop/LeftNav.tsx:526
+msgctxt "action"
+msgid "New Post"
+msgstr "Nij berjocht"
+
+#: src/components/NewskieDialog.tsx:83
+msgid "New user info dialog"
+msgstr "Nije-brûker-ynformaasjedialooch"
+
+#: src/view/com/modals/CreateOrEditList.tsx:225
+msgid "New User List"
+msgstr "Nije brûkerslist"
+
+#: src/screens/Settings/ThreadPreferences.tsx:83
+#: src/screens/Settings/ThreadPreferences.tsx:86
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
+msgid "Newest replies first"
+msgstr "Nijste antwurden earst"
+
+#: src/screens/Onboarding/index.tsx:20
+#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
+msgid "News"
+msgstr "Nijs"
+
+#: src/screens/Login/ForgotPasswordForm.tsx:137
+#: src/screens/Login/ForgotPasswordForm.tsx:143
+#: src/screens/Login/LoginForm.tsx:343
+#: src/screens/Login/LoginForm.tsx:350
+#: src/screens/Login/SetNewPasswordForm.tsx:178
+#: src/screens/Login/SetNewPasswordForm.tsx:184
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165
+#: src/screens/Signup/BackNextButtons.tsx:67
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:341
+#: src/screens/StarterPack/Wizard/index.tsx:348
+#: src/view/com/modals/ChangePassword.tsx:265
+#: src/view/com/modals/ChangePassword.tsx:267
+msgid "Next"
+msgstr "Folgjende"
+
+#: src/view/com/lightbox/Lightbox.web.tsx:169
+msgid "Next image"
+msgstr "Folgjende ôfbylding"
+
+#: src/screens/Settings/AppPasswords.tsx:108
+msgid "No app passwords yet"
+msgstr "Noch gjin app-wachtwurden"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
+msgid "No DNS Panel"
+msgstr "Gjin DNS-paniel"
+
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr "Gjin ferrintiid ynsteld"
+
+#: src/components/dialogs/GifSelect.tsx:231
+msgid "No featured GIFs found. There may be an issue with Tenor."
+msgstr "Gjin oanrekommandearre GIF’s fûn. Der is mooglik in probleem mei Tenor."
+
+#: src/screens/StarterPack/Wizard/StepFeeds.tsx:119
+msgid "No feeds found. Try searching for something else."
+msgstr "Gjin feeds fûn. Probearje nei wat oars te sykjen."
+
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr "Gjin ôfbylding"
+
+#: src/components/LikedByList.tsx:84
+#: src/view/com/post-thread/PostLikedBy.tsx:84
+msgid "No likes yet"
+msgstr "Noch gjin mei-’k-wol-oers"
+
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
+msgid "No longer following {0}"
+msgstr "Do folgest {0} net mear"
+
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr "Net langer as {MAX_SERVICE_HANDLE_LENGTH, plural, other {# karakters}}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:139
+msgid "No messages yet"
+msgstr "Noch gjin berjochten"
+
+#: src/view/com/notifications/NotificationFeed.tsx:116
+msgid "No notifications yet!"
+msgstr "Noch gjin meldingen!"
+
+#: src/screens/Messages/Settings.tsx:101
+#: src/screens/Messages/Settings.tsx:104
+msgid "No one"
+msgstr "Net ien"
+
+#: src/components/WhoCanReply.tsx:246
+msgid "No one but the author can quote this post."
+msgstr "Allinnich de auteur mei dit berjocht sitearje."
+
+#: src/screens/Profile/Sections/Feed.tsx:66
+msgid "No posts yet."
+msgstr "Noch gjin berjochten."
+
+#: src/view/com/post-thread/PostQuotes.tsx:105
+msgid "No quotes yet"
+msgstr "Noch gjin sitaten"
+
+#: src/view/com/post-thread/PostRepostedBy.tsx:90
+msgid "No reposts yet"
+msgstr "Noch gjin opnij-pleatsingen"
+
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
+msgid "No result"
+msgstr "Gjin resultaat"
+
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
+msgid "No results"
+msgstr "Gjin resultaten"
+
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr "Gjin resultaten foar ‘{0}’."
+
+#: src/components/Lists.tsx:189
+msgid "No results found"
+msgstr "Gjin resultaten fûn"
+
+#: src/view/screens/Feeds.tsx:473
+msgid "No results found for \"{query}\""
+msgstr "Gjin resultaten fûn foar ‘{query}’"
+
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
+msgid "No results found for {query}"
+msgstr "Gjin resultaten fûn foar {query}"
+
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr "Gjin resultaten."
+
+#: src/components/dialogs/GifSelect.tsx:229
+msgid "No search results found for \"{search}\"."
+msgstr "Gjin resultaten fûn foar ‘{search}’."
+
+#: src/components/dialogs/EmbedConsent.tsx:104
+#: src/components/dialogs/EmbedConsent.tsx:111
+msgid "No thanks"
+msgstr "Nee, tank"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405
+msgid "Nobody"
+msgstr "Gjinien"
+
+#: src/components/LikedByList.tsx:86
+#: src/view/com/post-thread/PostLikedBy.tsx:86
+msgid "Nobody has liked this yet. Maybe you should be the first!"
+msgstr "Gjinien mei hjir wol oer. Miskien moatsto de earste wêze!"
+
+#: src/view/com/post-thread/PostQuotes.tsx:107
+msgid "Nobody has quoted this yet. Maybe you should be the first!"
+msgstr "Gjinien hat dit sitearre. Miskien moatsto de earste wêze!"
+
+#: src/view/com/post-thread/PostRepostedBy.tsx:92
+msgid "Nobody has reposted this yet. Maybe you should be the first!"
+msgstr "Gjinien hat dit opnij pleatst. Miskien moatsto de earste wêze!"
+
+#: src/screens/StarterPack/Wizard/StepProfiles.tsx:104
+msgid "Nobody was found. Try searching for someone else."
+msgstr "Gjinien fûn, Probearje in oar te sykjen."
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:42
+msgid "Non-sexual Nudity"
+msgstr "Net-seksuele neakens"
+
+#: src/components/KnownFollowers.tsx:255
+msgid "Not followed by anyone you're following"
+msgstr "Net folge troch ien dy’tsto folgest"
+
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
+msgid "Not Found"
+msgstr "Net fûn"
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
+msgid "Note about sharing"
+msgstr "Opmerking oer diele"
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88
+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 "Opmerking: Bluesky is in iepen en iepenbier netwurk. Dizze ynstelling beheint allinnich de sichtberheid fan dyn ynhâld op de Bluesky-app en -website. Oare apps respektearje dizze ynstelling mooglik net. Dyn ynhâld kin noch hieltyd toand wurde oan ôfmelde brûkers troch oare apps en websites."
+
+#: src/screens/Messages/ChatList.tsx:265
+msgid "Nothing here"
+msgstr "Neat hjir"
+
+#: src/screens/Settings/NotificationSettings.tsx:64
+msgid "Notification filters"
+msgstr "Meldingsfilters"
+
+#: src/Navigation.tsx:443
+#: src/view/screens/Notifications.tsx:134
+msgid "Notification settings"
+msgstr "Meldingsynstellingen"
+
+#: src/screens/Settings/NotificationSettings.tsx:46
+msgid "Notification Settings"
+msgstr "Meldingsynstellingen"
+
+#: src/screens/Messages/Settings.tsx:123
+msgid "Notification sounds"
+msgstr "Meldingslûden"
+
+#: src/screens/Messages/Settings.tsx:120
+msgid "Notification Sounds"
+msgstr "Meldingslûden"
+
+#: src/Navigation.tsx:657
+#: src/view/screens/Notifications.tsx:128
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
+msgid "Notifications"
+msgstr "Meldingen"
+
+#: src/lib/hooks/useTimeAgo.ts:135
+msgid "now"
+msgstr "no"
+
+#: src/components/dms/MessageItem.tsx:274
+msgid "Now"
+msgstr "No"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
+msgid "Nudity"
+msgstr "Neakens"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:78
+#: src/lib/moderation/useReportOptions.ts:78
+msgid "Nudity or adult content not labeled as such"
+msgstr "Neakens of ynhâld foar folwoeksenen dy’t net as sadanich labele is"
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:11
+msgid "Off"
+msgstr "Ut"
+
+#: src/components/dialogs/GifSelect.tsx:268
+#: src/view/com/util/ErrorBoundary.tsx:57
+msgid "Oh no!"
+msgstr "Och heden!"
+
+#: src/screens/Onboarding/StepInterests/index.tsx:124
+msgid "Oh no! Something went wrong."
+msgstr "Och heden! Der is wat misgien."
+
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
+#: src/screens/Settings/AppIconSettings/index.tsx:48
+#: src/screens/Settings/AppIconSettings/index.tsx:229
+msgid "OK"
+msgstr "OK"
+
+#: src/screens/Login/PasswordUpdatedForm.tsx:37
+#: src/view/com/post-thread/PostThreadItem.tsx:975
+msgid "Okay"
+msgstr "Oké"
+
+#: src/screens/Settings/ThreadPreferences.tsx:75
+#: src/screens/Settings/ThreadPreferences.tsx:78
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
+msgid "Oldest replies first"
+msgstr "Aldste antwurden earst"
+
+#: src/components/StarterPack/QrCode.tsx:82
+msgid "on<0><1/><2><3/>2>0>"
+msgstr "op<0><1/><2><3/>2>0>"
+
+#: src/screens/Settings/Settings.tsx:358
+msgid "Onboarding reset"
+msgstr "Yntroduksje opnij toane"
+
+#: src/view/com/composer/Composer.tsx:342
+msgid "One or more GIFs is missing alt text."
+msgstr "Alt-tekst ûntbrekt by ien of mear GIF’s."
+
+#: src/view/com/composer/Composer.tsx:339
+msgid "One or more images is missing alt text."
+msgstr "Alt-tekst ûntbrekt by ien of mear ôfbyldingen."
+
+#: src/view/com/composer/Composer.tsx:349
+msgid "One or more videos is missing alt text."
+msgstr "Alt-tekst ûntbrekt by ien of mear fideo’s."
+
+#: src/screens/Onboarding/StepProfile/index.tsx:115
+msgid "Only .jpg and .png files are supported"
+msgstr "Allinnich .jpg- en .png-bestannen wurde stipe"
+
+#: src/components/WhoCanReply.tsx:226
+msgid "Only {0} can reply."
+msgstr "Allinnich {0} kin reagearje."
+
+#: src/screens/Signup/StepHandle.tsx:166
+msgid "Only contains letters, numbers, and hyphens"
+msgstr "Befettet allinnich letters, sifers en keppeltekens"
+
+#: src/lib/media/picker.shared.ts:32
+msgid "Only image files are supported"
+msgstr "Allinnich ôfbyldingsbestannen wurde stipe"
+
+#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40
+msgid "Only WebVTT (.vtt) files are supported"
+msgstr "Allinnich WebVTT (.vtt)-bestannen wurde stipe"
+
+#: src/components/Lists.tsx:94
+msgid "Oops, something went wrong!"
+msgstr "Och heden! Der is wat misgien!"
+
+#: src/components/Lists.tsx:173
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
+#: src/screens/Settings/AppPasswords.tsx:59
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
+#: src/screens/Settings/NotificationSettings.tsx:54
+#: src/view/screens/Profile.tsx:125
+msgid "Oops!"
+msgstr "Wûpsty!"
+
+#: src/screens/Onboarding/StepFinished.tsx:278
+msgid "Open"
+msgstr "Iepenje"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:284
+msgid "Open avatar creator"
+msgstr "Avatar-makker iepenje"
+
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
+msgid "Open conversation options"
+msgstr "Petearopsjes iepenje"
+
+#: src/components/Layout/Header/index.tsx:159
+msgid "Open drawer menu"
+msgstr "Menu iepenje"
+
+#: src/screens/Messages/components/MessageInput.web.tsx:181
+#: src/view/com/composer/Composer.tsx:1272
+msgid "Open emoji picker"
+msgstr "Emoji-kiezer iepenje"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
+msgid "Open feed info screen"
+msgstr "Feed-ynfoskerm iepenje"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
+msgid "Open feed options menu"
+msgstr "Menu Feedopsjes iepenje"
+
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr "Folsleine emojilist iepenje"
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
+msgid "Open link to {niceUrl}"
+msgstr "Keppeling nei {niceUrl} iepenje"
+
+#: src/components/dms/ActionsWrapper.tsx:35
+msgid "Open message options"
+msgstr "Berjochtopsjes iepenje"
+
+#: src/screens/Settings/Settings.tsx:395
+msgid "Open moderation debug page"
+msgstr "Moderaasje-debugside iepenje"
+
+#: src/screens/Moderation/index.tsx:224
+msgid "Open muted words and tags settings"
+msgstr "Negearre wurden en tags-ynstellingen iepenje"
+
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr "Pakket iepenje"
+
+#: src/components/PostControls/PostMenu/index.tsx:62
+msgid "Open post options menu"
+msgstr "Berjochtoptiesmenu iepenje"
+
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr "Profyl iepenje"
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr "Dielmenu iepenje"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
+msgid "Open starter pack menu"
+msgstr "Startpakketmenu iepenje"
+
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
+msgid "Open storybook page"
+msgstr "Ferhaleboekside iepenje"
+
+#: src/screens/Settings/Settings.tsx:381
+msgid "Open system log"
+msgstr "Systeemlochboek iepenje"
+
+#: src/view/com/util/forms/DropdownButton.tsx:162
+msgid "Opens {numItems} options"
+msgstr "Iepenet {numItems} opsjes"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:62
+msgid "Opens a dialog to add a content warning to your post"
+msgstr "Iepenet in dialoochfinster om in ynhâldswarskôging oan dyn berjocht ta te foegjen"
+
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:61
+msgid "Opens a dialog to choose who can reply to this thread"
+msgstr "Iepenet on dialoochfinster om te bepalen wa’t op dit petear reagearje mei"
+
+#: src/view/screens/Log.tsx:59
+msgid "Opens additional details for a debug entry"
+msgstr "Iepenet oanfoljende details foar in debug-item"
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+msgid "Opens alt text dialog"
+msgstr "Iepenet Alt-tekstfinster"
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+msgid "Opens camera on device"
+msgstr "Iepenet kamera op apparaat"
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
+msgid "Opens captions and alt text dialog"
+msgstr "Iepenet ûnderskriften en Alt-tekstfinster"
+
+#: src/screens/Settings/AccountSettings.tsx:138
+msgid "Opens change handle dialog"
+msgstr "Iepenet it dialoochfinster ‘Handle wizigje’"
+
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35
+msgid "Opens composer"
+msgstr "Iepenet composer"
+
+#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51
+msgid "Opens device photo gallery"
+msgstr "Iepenet fotogalerij fan apparaat"
+
+#: src/view/com/composer/Composer.tsx:1273
+msgid "Opens emoji picker"
+msgstr "Iepenet de emoji-kiezer"
+
+#: src/view/com/auth/SplashScreen.tsx:49
+#: src/view/com/auth/SplashScreen.web.tsx:111
+msgid "Opens flow to create a new Bluesky account"
+msgstr "Iepenet proses om in nij Bluesky-account oan te meitsjen"
+
+#: src/view/com/auth/SplashScreen.tsx:63
+#: src/view/com/auth/SplashScreen.web.tsx:125
+msgid "Opens flow to sign in to your existing Bluesky account"
+msgstr "Iepenet it proses om dy oan te melden by dyn besteande Bluesky-account"
+
+#: src/view/com/composer/photos/SelectGifBtn.tsx:36
+msgid "Opens GIF select dialog"
+msgstr "Iepenet dialoochfinster foar GIF-seleksje"
+
+#: src/screens/Settings/Settings.tsx:218
+msgid "Opens helpdesk in browser"
+msgstr "Iepenet de helpdesk yn dyn browser"
+
+#: src/view/com/modals/InviteCodes.tsx:173
+msgid "Opens list of invite codes"
+msgstr "Iepenet list mei útnûgingskoaden"
+
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr "Iepenet live-statusdialooch"
+
+#: src/screens/Login/LoginForm.tsx:249
+msgid "Opens password reset form"
+msgstr "Iepenet formulier om it wachtwud opnij yn te stellen"
+
+#: src/view/com/modals/LinkWarning.tsx:93
+msgid "Opens the linked website"
+msgstr "Iepenet de keppele website"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
+msgid "Opens this profile"
+msgstr "Iepenet dit profyl"
+
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+msgid "Opens video picker"
+msgstr "Iepenet fideokiezer"
+
+#: src/components/dms/ReportDialog.tsx:221
+#: src/components/ReportDialog/SubmitView.tsx:168
+msgid "Optionally provide additional information below:"
+msgstr "Fier opsjoneel hjirûnder oanfoljende ynformaasje yn:"
+
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr "Opsjes:"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
+msgid "Or combine these options:"
+msgstr "Of kombinearje dizze opsjes:"
+
+#: src/screens/Deactivated.tsx:200
+msgid "Or, continue with another account."
+msgstr "Of gean troch mei in oare account."
+
+#: src/screens/Deactivated.tsx:187
+msgid "Or, sign in to one of your other accounts."
+msgstr "Of meld dy oan by ien fan dyn oare accounts."
+
+#: src/screens/Settings/components/OTAInfo.tsx:52
+msgid "OTA status: ..."
+msgstr "OTA-status:…"
+
+#: src/screens/Settings/components/OTAInfo.tsx:48
+msgid "OTA status: Available!"
+msgstr "OTA-status: beskikber!"
+
+#: src/screens/Settings/components/OTAInfo.tsx:50
+msgid "OTA status: Error fetching update"
+msgstr "OTA-status: flater by opheljen fan update"
+
+#: src/screens/Settings/components/OTAInfo.tsx:54
+msgid "OTA status: None available"
+msgstr "OTA-status: Neat beskikber"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
+#: src/lib/moderation/useReportOptions.ts:27
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
+msgid "Other"
+msgstr "Oars"
+
+#: src/components/AccountList.tsx:88
+msgid "Other account"
+msgstr "Oare account"
+
+#: src/view/com/composer/select-language/SelectLangBtn.tsx:93
+msgid "Other..."
+msgstr "Oars…"
+
+#: src/components/dms/ReportDialog.tsx:348
+msgid "Our moderation team has received your report."
+msgstr "Us moderaasjeteam hat dyn melding ûntfongen."
+
+#: src/screens/Messages/components/ChatDisabled.tsx:28
+msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
+msgstr "Us moderators hawwe de meldingen besjoen en besletten dyn tagong ta chats op Bluesky út te skeakeljen."
+
+#: src/components/Lists.tsx:190
+#: src/view/screens/NotFound.tsx:47
+msgid "Page not found"
+msgstr "Side net fûn"
+
+#: src/view/screens/NotFound.tsx:44
+msgid "Page Not Found"
+msgstr "Side net fûn"
+
+#: src/screens/Login/LoginForm.tsx:228
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
+#: src/view/com/modals/DeleteAccount.tsx:239
+#: src/view/com/modals/DeleteAccount.tsx:246
+msgid "Password"
+msgstr "Wachtwurd"
+
+#: src/view/com/modals/ChangePassword.tsx:154
+msgid "Password Changed"
+msgstr "Wachtwurd wizige"
+
+#: src/view/com/modals/ChangePassword.tsx:99
+msgid "Password must be at least 8 characters long."
+msgstr "Wachtwurd moat op syn minst 8 tekens lang wêze."
+
+#: src/screens/Login/index.tsx:181
+msgid "Password updated"
+msgstr "Wachtwurd bywurke"
+
+#: src/screens/Login/PasswordUpdatedForm.tsx:23
+msgid "Password updated!"
+msgstr "Wachtwurd bywurke!"
+
+#: src/view/com/util/post-embeds/GifEmbed.tsx:43
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369
+msgid "Pause"
+msgstr "Pauzearje"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320
+msgid "Pause video"
+msgstr "Fideo pauzearje"
+
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
+msgid "People"
+msgstr "Persoanen"
+
+#: src/Navigation.tsx:210
+msgid "People followed by @{0}"
+msgstr "Persoanen folge troch @{0}"
+
+#: src/Navigation.tsx:203
+msgid "People following @{0}"
+msgstr "Persoanen dy’t @{0} folgje"
+
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr "Tagong ta dyn fotobiblioteek is wegere. Skeakelje dit yn dyn systeemynstellingen yn."
+
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
+msgid "Person toggle"
+msgstr "Persoan wikselje"
+
+#: src/screens/Onboarding/index.tsx:28
+#: src/screens/Onboarding/state.ts:109
+msgid "Pets"
+msgstr "Bisten"
+
+#: src/screens/Onboarding/state.ts:110
+msgid "Photography"
+msgstr "Fotografy"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
+msgid "Pictures meant for adults."
+msgstr "Ofbyldingen bedoeld foar folwoeksenen."
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
+msgid "Pin feed"
+msgstr "Feed fêstmeitsje"
+
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr "Feed fêstmeitsje"
+
+#: src/view/screens/ProfileList.tsx:714
+msgid "Pin to home"
+msgstr "Fêstsette op startside"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
+msgid "Pin to Home"
+msgstr "Fêstsette op startside"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
+msgid "Pin to your profile"
+msgstr "Fêstmeitsje oan dyn profyl"
+
+#: src/view/com/posts/PostFeedItem.tsx:407
+msgid "Pinned"
+msgstr "Fêstset"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
+msgid "Pinned {0} to Home"
+msgstr "{0} fêstset op startside"
+
+#: src/view/screens/SavedFeeds.tsx:123
+msgid "Pinned Feeds"
+msgstr "Fêstsette feeds"
+
+#: src/view/screens/ProfileList.tsx:361
+msgid "Pinned to your feeds"
+msgstr "Fêstset oan dyn feeds"
+
+#: src/view/com/util/post-embeds/GifEmbed.tsx:43
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370
+msgid "Play"
+msgstr "Ofspylje"
+
+#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107
+msgid "Play {0}"
+msgstr "{0} ôfspylje"
+
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:134
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321
+msgid "Play video"
+msgstr "Fideo ôfspylje"
+
+#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
+msgid "Play Video"
+msgstr "Fideo ôfspylje"
+
+#: src/view/com/util/post-embeds/GifEmbed.tsx:42
+msgid "Plays or pauses the GIF"
+msgstr "Spilet of pauzearret de GIF"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141
+msgid "Plays or pauses the video"
+msgstr "Spilet of pauzearret de fideo"
+
+#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106
+msgid "Plays the GIF"
+msgstr "Spilet de GIF ôf"
+
+#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59
+msgid "Plays the video"
+msgstr "Spilet de fideo ôf"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr "Foegje alle belutsene ynhâldswarkôgingen foar de media dy’tsto pleatst ta."
+
+#: src/screens/Signup/state.ts:286
+msgid "Please choose your handle."
+msgstr "Dyn handle kieze."
+
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
+msgid "Please choose your password."
+msgstr "Kies dyn wachtwurd."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr "Klik op de keppeling yn it e-mailberjocht dat wy sakrekt ferstjoerd hawwe, om dyn e-mailadres te feifiearjen. Dit is in wichtige stap om alle funksjes fan Bluesky brûke te kinnen."
+
+#: src/screens/Signup/state.ts:301
+msgid "Please complete the verification captcha."
+msgstr "Fier de ferifikaasje-captcha yn."
+
+#: src/screens/Signup/StepInfo/index.tsx:109
+msgid "Please double-check that you have entered your email address correctly."
+msgstr "Kontrolearje nochris oft jo jo e-mailadres korrekt ynfierd hawwe."
+
+#: src/screens/Login/SetNewPasswordForm.tsx:58
+msgid "Please enter a password."
+msgstr "Fier in wachtwurd yn."
+
+#: src/view/com/modals/ChangePassword.tsx:94
+msgid "Please enter a password. It must be at least 8 characters long."
+msgstr "Fier in wachtwurd yn. It moat op syn minst 8 tekens lang wêze."
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114
+msgid "Please enter a unique name for this app password or use our randomly generated one."
+msgstr "Fier in unike namme yn foar dit app-wachtwurd of brûk ús willekeurich generearre wachtwurd."
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr "Fier in falide koade yn."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr "Fier in falide e-mailadres yn."
+
+#: src/components/dialogs/MutedWords.tsx:86
+msgid "Please enter a valid word, tag, or phrase to mute"
+msgstr "Fier in jildich wurd, tag of wurdgroep yn om te negearjen"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr "Fier hjirûnder de koade dy’t wy nei <0>{0}0> ferstjoerd hawwe yn."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr "Fier de befeiligingskoade dy’t wy nei dyn foarige e-mailadres ferstjoerd hawwe yn."
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
+msgid "Please enter your email."
+msgstr "Fier dyn e-mailadres yn."
+
+#: src/screens/Signup/StepInfo/index.tsx:84
+msgid "Please enter your invite code."
+msgstr "Fier dyn útnûgingskoade yn."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr "Fier dyn nije e-mailadres yn."
+
+#: src/screens/Login/LoginForm.tsx:99
+msgid "Please enter your password"
+msgstr "Fier dyn wachtwurd yn"
+
+#: src/view/com/modals/DeleteAccount.tsx:235
+msgid "Please enter your password as well:"
+msgstr "Fier dyn wachtwurd ek yn:"
+
+#: src/screens/Login/LoginForm.tsx:94
+msgid "Please enter your username"
+msgstr "Fier dyn brûkersnamme yn"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:290
+msgid "Please explain why you think this label was incorrectly applied by {0}"
+msgstr "Lis út wêromsto tinkst dat dit label net krekt tapast is troch {0}"
+
+#: src/screens/Messages/components/ChatDisabled.tsx:110
+msgid "Please explain why you think your chats were incorrectly disabled"
+msgstr "Lis út wêromsto tinkst dat dyn chats ûnrjochtlik útskeakele binne"
+
+#: src/components/moderation/ReportDialog/action.ts:31
+msgid "Please select a moderation service"
+msgstr "Selektearje in moderaasjetsjinst"
+
+#: src/components/moderation/ReportDialog/action.ts:28
+msgid "Please select a reason for this report"
+msgstr "Selektearje in reden foar dit rapport"
+
+#: src/lib/hooks/useAccountSwitcher.ts:45
+#: src/lib/hooks/useAccountSwitcher.ts:55
+msgid "Please sign in as @{0}"
+msgstr "Meld dy oan as @{0}"
+
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr "Ferifiearje dyn e-mailadres"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
+msgid "Please Verify Your Email"
+msgstr "Ferifiearje dyn e-mailadres"
+
+#: src/screens/Onboarding/index.tsx:34
+#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
+msgid "Politics"
+msgstr "Polityk"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
+msgid "Porn"
+msgstr "Porno"
+
+#: src/view/com/composer/Composer.tsx:987
+msgctxt "action"
+msgid "Post"
+msgstr "Pleatse"
+
+#: src/view/com/post-thread/PostThread.tsx:540
+msgctxt "description"
+msgid "Post"
+msgstr "Berjocht"
+
+#: src/view/com/composer/Composer.tsx:985
+msgctxt "action"
+msgid "Post All"
+msgstr "Alles pleatse"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:224
+msgid "Post by {0}"
+msgstr "Berjocht fan {0}"
+
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
+msgid "Post by @{0}"
+msgstr "Berjocht fan @{0}"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
+msgctxt "toast"
+msgid "Post deleted"
+msgstr "Berjocht fuortsmiten"
+
+#: src/lib/api/index.ts:186
+msgid "Post failed to upload. Please check your Internet connection and try again."
+msgstr "Berjocht kin net opladen wurde. Kontrolearje dyn ynternetferbining en probearje it opnij."
+
+#: src/screens/VideoFeed/index.tsx:529
+msgid "Post has been deleted"
+msgstr "Berjocht is fuortsmiten"
+
+#: src/view/com/post-thread/PostThread.tsx:269
+msgid "Post hidden"
+msgstr "Berjocht ferstoppe"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
+msgid "Post Hidden by Muted Word"
+msgstr "Berjocht ferstoppe troch negearre wurd"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
+#: src/lib/moderation/useModerationCauseDescription.ts:115
+msgid "Post Hidden by You"
+msgstr "Berjocht troch dy ferstoppe"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100
+msgid "Post interaction settings"
+msgstr "Ynstellingen foar berjochtynteraksje"
+
+#: src/Navigation.tsx:170
+#: src/screens/ModerationInteractionSettings/index.tsx:34
+msgid "Post Interaction Settings"
+msgstr "Ynstellingen foar berjochtynteraksje"
+
+#: src/view/com/composer/select-language/SelectLangBtn.tsx:89
+msgid "Post language"
+msgstr "Taal fan it berjocht"
+
+#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:77
+msgid "Post Languages"
+msgstr "Talen fan it berjocht"
+
+#: src/view/com/post-thread/PostThread.tsx:264
+#: src/view/com/post-thread/PostThread.tsx:276
+msgid "Post not found"
+msgstr "Berjocht net fûn"
+
+#: src/state/queries/pinned-post.ts:59
+msgctxt "toast"
+msgid "Post pinned"
+msgstr "Berjocht fêstset"
+
+#: src/state/queries/pinned-post.ts:61
+msgctxt "toast"
+msgid "Post unpinned"
+msgstr "Berjocht losmakke"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
+msgid "Posts"
+msgstr "Berjochten"
+
+#: 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 "Berjochten kinne negearre wurde op basis fan tekst, tags of beide. Wy riede oan om faak foarkommende wurden dy’t yn in protte berjochten foarkomme te mijen, omdat dit der ta liede kin dat der gjin berjochten mear toand wurde."
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:68
+msgid "Posts hidden"
+msgstr "Berjocht ferstoppe"
+
+#: src/view/com/modals/LinkWarning.tsx:60
+msgid "Potentially Misleading Link"
+msgstr "Mooglik misliedende keppeling"
+
+#: src/state/queries/notifications/settings.ts:44
+msgctxt "toast"
+msgid "Preference saved"
+msgstr "Foarkar bewarre"
+
+#: src/screens/Messages/components/MessageListError.tsx:19
+msgid "Press to attempt reconnection"
+msgstr "Druk om opnij ferbining te meitsjen"
+
+#: src/components/Error.tsx:60
+#: src/components/Lists.tsx:99
+#: src/screens/Messages/components/MessageListError.tsx:24
+#: src/screens/Signup/BackNextButtons.tsx:47
+msgid "Press to retry"
+msgstr "Druk om opnij te probearjen"
+
+#: src/components/KnownFollowers.tsx:125
+msgid "Press to view followers of this account that you also follow"
+msgstr "Druk om de folgers fan dizze account te besjen dy’tsto ek folgest"
+
+#: src/view/com/lightbox/Lightbox.web.tsx:150
+msgid "Previous image"
+msgstr "Foarige ôfbylding"
+
+#: src/screens/Settings/LanguageSettings.tsx:120
+msgid "Primary Language"
+msgstr "Primêre taal"
+
+#: src/screens/Settings/ThreadPreferences.tsx:112
+#: src/screens/Settings/ThreadPreferences.tsx:117
+msgid "Prioritize your Follows"
+msgstr "Prioriteit oan dyn folgers jaan"
+
+#: src/screens/Settings/NotificationSettings.tsx:67
+msgid "Priority notifications"
+msgstr "Prioriteitsmeldingen"
+
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
+msgid "Privacy"
+msgstr "Privacy"
+
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
+msgid "Privacy and security"
+msgstr "Privacy en befeiliging"
+
+#: src/Navigation.tsx:379
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
+msgid "Privacy and Security"
+msgstr "Privacy en befeiliging"
+
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
+#: src/view/screens/PrivacyPolicy.tsx:31
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
+msgid "Privacy Policy"
+msgstr "Privacybelied"
+
+#: src/view/com/composer/Composer.tsx:1675
+msgid "Processing video..."
+msgstr "Fideo ferwurkje…"
+
+#: src/lib/api/index.ts:60
+#: src/screens/Login/ForgotPasswordForm.tsx:149
+msgid "Processing..."
+msgstr "Ferwurkje…"
+
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
+msgid "profile"
+msgstr "profyl"
+
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
+msgid "Profile"
+msgstr "Profyl"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
+msgctxt "toast"
+msgid "Profile updated"
+msgstr "Profyl bywurke"
+
+#: src/screens/Onboarding/StepFinished.tsx:264
+msgid "Public"
+msgstr "Iepenbier"
+
+#: src/view/com/lists/MyLists.tsx:77
+msgid "Public, sharable lists of users to mute or block in bulk."
+msgstr "Iepenbiere, dielbere listen fan brûkers om yn bulk te dôvjen of te blokkearjen."
+
+#: src/view/com/lists/MyLists.tsx:72
+msgid "Public, sharable lists which can be used to drive feeds."
+msgstr "Iepenbiere, dielbere listen dy’t brûkt wurde kinne om reklame te meitsjen."
+
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr "Berjocht pleatse"
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr "Berjochten pleatse"
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr "Antwurden publisearje"
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr "Antwurd publisearje"
+
+#: src/components/StarterPack/QrCodeDialog.tsx:134
+msgid "QR code copied to your clipboard!"
+msgstr "QR-koade nei dyn klamboerd kopiearre!"
+
+#: src/components/StarterPack/QrCodeDialog.tsx:112
+msgid "QR code has been downloaded!"
+msgstr "QR-koade is download!"
+
+#: src/components/StarterPack/QrCodeDialog.tsx:113
+msgid "QR code saved to your camera roll!"
+msgstr "QR-koade bewarre yn dyn fotobiblioteek!"
+
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
+msgid "Quote post"
+msgstr "Berjocht sitearje"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
+msgid "Quote post was re-attached"
+msgstr "Sitaatberjocht is opnij tafoege"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
+msgid "Quote post was successfully detached"
+msgstr "Sitaatberjocht is mei sukses losmakke"
+
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
+msgid "Quote posts disabled"
+msgstr "Sitaatberjochten útskeakele"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329
+msgid "Quote settings"
+msgstr "Sitaatynstellingen"
+
+#: src/screens/Post/PostQuotes.tsx:38
+msgid "Quotes"
+msgstr "Sitaten"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:258
+msgid "Quotes of this post"
+msgstr "Sitaten fan dit berjocht"
+
+#: src/screens/Settings/ThreadPreferences.tsx:99
+#: src/screens/Settings/ThreadPreferences.tsx:102
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
+msgid "Random (aka \"Poster's Roulette\")"
+msgstr "In ferskaat (ek bekend as ‘Berjochterûlette’)"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
+msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
+msgstr "Oer de snelheidslimyt – do hast yn koarte tiid te faak probearre dyn handle te wizigjen. Wachtsje in minút eardatsto it opnij probearrest."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
+msgid "Re-attach quote"
+msgstr "Sitaat opnij tafoegje"
+
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr "Mei {emoji} reagearje"
+
+#: src/screens/Deactivated.tsx:141
+msgid "Reactivate your account"
+msgstr "Dyn account opnij aktivearje"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr "Blogartikel lêze"
+
+#: src/screens/VideoFeed/index.tsx:963
+msgid "Read less"
+msgstr "Minder ynfo"
+
+#: src/screens/VideoFeed/index.tsx:963
+msgid "Read more"
+msgstr "Mear ynfo"
+
+#: src/view/com/auth/SplashScreen.web.tsx:173
+msgid "Read the Bluesky blog"
+msgstr "Lês it Bluesky-blog"
+
+#: src/screens/Signup/StepInfo/Policies.tsx:58
+#: src/screens/Signup/StepInfo/Policies.tsx:84
+msgid "Read the Bluesky Privacy Policy"
+msgstr "Lês it Bluesky-privacybelied"
+
+#: src/screens/Signup/StepInfo/Policies.tsx:51
+#: src/screens/Signup/StepInfo/Policies.tsx:71
+msgid "Read the Bluesky Terms of Service"
+msgstr "Lês de Bluesky-tsjinstbetingsten"
+
+#: src/screens/Takendown.tsx:162
+#: src/screens/Takendown.tsx:170
+msgid "Reason for appeal"
+msgstr "Reden fan berop"
+
+#: src/components/dms/ReportDialog.tsx:212
+msgid "Reason:"
+msgstr "Reden:"
+
+#: src/screens/Search/components/SearchHistory.tsx:49
+msgid "Recent Searches"
+msgstr "Resinte sykopdrachten"
+
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
+msgid "Recommended"
+msgstr "Oanrekommandearre"
+
+#: src/screens/Messages/components/MessageListError.tsx:20
+msgid "Reconnect"
+msgstr "Opnij ferbine"
+
+#. Reject a chat request, this opens a menu with options
+#: src/screens/Messages/components/RequestButtons.tsx:124
+msgid "Reject"
+msgstr "Ofwize"
+
+#: src/screens/Messages/components/RequestButtons.tsx:112
+msgid "Reject chat request"
+msgstr "Chatfersyk ôfwize"
+
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
+msgid "Reload conversations"
+msgstr "Petearen opnij lade"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:343
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
+#: src/screens/Settings/Settings.tsx:543
+#: src/view/com/feeds/FeedSourceCard.tsx:322
+#: src/view/com/modals/UserAddRemoveLists.tsx:235
+#: src/view/com/posts/PostFeedErrorMessage.tsx:213
+msgid "Remove"
+msgstr "Fuortsmite"
+
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:58
+msgid "Remove {displayName} from starter pack"
+msgstr "{displayName} út startpakket fuortsmite"
+
+#: src/screens/Search/components/SearchHistory.tsx:94
+msgid "Remove {historyItem}"
+msgstr "{historyItem} fuortsmite"
+
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
+msgid "Remove account"
+msgstr "Account fuortsmite"
+
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15
+msgid "Remove attachment"
+msgstr "Bylage fuortsmite"
+
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
+msgid "Remove Avatar"
+msgstr "Avatar fuortsmite"
+
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
+msgid "Remove Banner"
+msgstr "Banner fuortsmite"
+
+#: src/screens/Messages/components/MessageInputEmbed.tsx:209
+msgid "Remove embed"
+msgstr "Ynlsluting fuortsmite"
+
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
+#: src/view/com/posts/PostFeedErrorMessage.tsx:169
+msgid "Remove feed"
+msgstr "Feed fuortsmite"
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:210
+msgid "Remove feed?"
+msgstr "Feed fuortsmite?"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
+#: src/view/com/feeds/FeedSourceCard.tsx:190
+#: src/view/com/feeds/FeedSourceCard.tsx:268
+#: src/view/screens/ProfileList.tsx:528
+#: src/view/screens/SavedFeeds.tsx:342
+msgid "Remove from my feeds"
+msgstr "Ut myn feeds fuortsmite"
+
+#: src/screens/Settings/Settings.tsx:535
+msgid "Remove from quick access?"
+msgstr "Ut flugge tagong fuortsmite?"
+
+#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
+msgid "Remove from saved feeds"
+msgstr "Ut bewarre feeds fuortsmite"
+
+#: src/components/FeedCard.tsx:338
+#: src/view/com/feeds/FeedSourceCard.tsx:317
+msgid "Remove from your feeds?"
+msgstr "Ut myn feeds fuortsmite?"
+
+#: src/view/com/composer/photos/Gallery.tsx:203
+msgid "Remove image"
+msgstr "Ofbylding fuortsmite"
+
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr "Live-status fuortsmite"
+
+#: src/components/dialogs/MutedWords.tsx:523
+msgid "Remove mute word from your list"
+msgstr "In negearre wurd út dyn list fuortsmite"
+
+#: src/screens/Search/components/SearchHistory.tsx:167
+msgid "Remove profile"
+msgstr "Profyl fuortsmite"
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290
+msgid "Remove quote"
+msgstr "Sitaat fuortsmite"
+
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
+msgid "Remove repost"
+msgstr "Opnij-pleatsing fuortsmite"
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
+msgid "Remove subtitle file"
+msgstr "Undertitelbestân fuortsmite"
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:211
+msgid "Remove this feed from your saved feeds"
+msgstr "Dizze feed út dyn bewarre feeds fuortsmite"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr "Brûker út list fuortsmite"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr "Ferifikaasje fuortsmite"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr "Dyn ferifikaasje foar dizze account fuortsmite?"
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
+msgid "Removed by author"
+msgstr "Troch auteur fuortsmiten"
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108
+msgid "Removed by you"
+msgstr "Troch dy fuortsmiten"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
+#: src/view/com/modals/UserAddRemoveLists.tsx:170
+msgid "Removed from list"
+msgstr "Ut list fuortsmiten"
+
+#: src/view/com/feeds/FeedSourceCard.tsx:138
+msgid "Removed from my feeds"
+msgstr "Ut myn feeds fuortsmiten"
+
+#: src/screens/List/ListHiddenScreen.tsx:94
+msgid "Removed from saved feeds"
+msgstr "Ut myn bewarre feeds fuortsmiten"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
+#: src/view/com/posts/FeedShutdownMsg.tsx:44
+#: src/view/screens/ProfileList.tsx:392
+msgid "Removed from your feeds"
+msgstr "Ut myn feeds fuortsmiten"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr "Ferifikaasje fuortsmiten"
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
+msgid "Removes quoted post"
+msgstr "Smyt sitearre berjocht fuort"
+
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
+msgid "Replace with Discover"
+msgstr "Ferfange troch Untdekke"
+
+#: src/view/screens/Profile.tsx:226
+msgid "Replies"
+msgstr "Antwurden"
+
+#: src/components/WhoCanReply.tsx:73
+msgid "Replies disabled"
+msgstr "Antwurden útskeakele"
+
+#: src/components/WhoCanReply.tsx:224
+msgid "Replies to this post are disabled."
+msgstr "Antwurden op dit berjocht binne útskeakele."
+
+#: src/view/com/composer/Composer.tsx:983
+msgctxt "action"
+msgid "Reply"
+msgstr "Reagearje"
+
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
+msgid "Reply ({0, plural, one {# reply} other {# replies}})"
+msgstr "Beäntwurdzje ({0, plural, one {# antwurd} other {# antwurden}})"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:116
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "Reply Hidden by Thread Author"
+msgstr "Reaksje ferstoppe troch auteur fan petear"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:124
+msgid "Reply Hidden by You"
+msgstr "Reaksje ferstoppe troch dy"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385
+msgid "Reply settings"
+msgstr "Reaksjeynstellingen"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370
+msgid "Reply settings are chosen by the author of the thread"
+msgstr "Reaksjeynstellingen wurde keazen troch de auteur fan it petear"
+
+#: src/view/com/post-thread/PostThread.tsx:651
+msgid "Reply sorting"
+msgstr "Reaksjsortearring"
+
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
+msgctxt "description"
+msgid "Reply to <0><1/>0>"
+msgstr "Reagearje op <0><1/>0>"
+
+#: src/view/com/posts/PostFeedItem.tsx:596
+msgctxt "description"
+msgid "Reply to a blocked post"
+msgstr "Reagearje op in blokkearre berjocht"
+
+#: src/view/com/posts/PostFeedItem.tsx:598
+msgctxt "description"
+msgid "Reply to a post"
+msgstr "Reagearje op in berjocht"
+
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
+msgctxt "description"
+msgid "Reply to you"
+msgstr "Reagearje op dy"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
+msgctxt "toast"
+msgid "Reply visibility updated"
+msgstr "Sichtberheid fan reaksje bywurke"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
+msgid "Reply was successfully hidden"
+msgstr "Reaksje is mei sukses ferstoppe"
+
+#: src/components/dms/MessageContextMenu.tsx:172
+#: src/components/dms/MessagesListBlockedFooter.tsx:85
+#: src/components/dms/MessagesListBlockedFooter.tsx:92
+msgid "Report"
+msgstr "Melde"
+
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
+msgid "Report account"
+msgstr "Account melde"
+
+#: src/components/dms/ConvoMenu.tsx:255
+#: src/components/dms/ConvoMenu.tsx:258
+#: src/components/dms/ReportConversationPrompt.tsx:17
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
+msgid "Report conversation"
+msgstr "Petear melde"
+
+#: src/components/moderation/ReportDialog/index.tsx:71
+#: src/components/moderation/ReportDialog/index.tsx:198
+#: src/components/ReportDialog/index.tsx:44
+msgid "Report dialog"
+msgstr "Dialooch melde"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
+msgid "Report feed"
+msgstr "Feed melde"
+
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
+msgstr "List melde"
+
+#: src/components/dms/MessageContextMenu.tsx:170
+msgid "Report message"
+msgstr "Priveeberjocht melde"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
+msgid "Report post"
+msgstr "Berjocht melde"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
+msgid "Report starter pack"
+msgstr "Startpakket melde"
+
+#: src/components/dms/ReportDialog.tsx:345
+msgid "Report submitted"
+msgstr "Melding yntsjinne"
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:41
+msgid "Report this content"
+msgstr "Dizze ynhâld melde"
+
+#: src/components/moderation/ReportDialog/copy.ts:31
+#: src/components/ReportDialog/SelectReportOptionView.tsx:54
+msgid "Report this feed"
+msgstr "Dizze feed melde"
+
+#: src/components/moderation/ReportDialog/copy.ts:25
+#: src/components/ReportDialog/SelectReportOptionView.tsx:51
+msgid "Report this list"
+msgstr "Dizze list melde"
+
+#: src/components/dms/ReportDialog.tsx:59
+#: src/components/dms/ReportDialog.tsx:180
+#: src/components/moderation/ReportDialog/copy.ts:43
+#: src/components/ReportDialog/SelectReportOptionView.tsx:60
+msgid "Report this message"
+msgstr "Dit priveeberjocht melde"
+
+#: src/components/moderation/ReportDialog/copy.ts:19
+#: src/components/ReportDialog/SelectReportOptionView.tsx:48
+msgid "Report this post"
+msgstr "Dit berjocht melde"
+
+#: src/components/moderation/ReportDialog/copy.ts:37
+#: src/components/ReportDialog/SelectReportOptionView.tsx:57
+msgid "Report this starter pack"
+msgstr "Dit startpakket melde"
+
+#: src/components/moderation/ReportDialog/copy.ts:13
+#: src/components/ReportDialog/SelectReportOptionView.tsx:45
+msgid "Report this user"
+msgstr "Dizze brûker melde"
+
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
+msgctxt "action"
+msgid "Repost"
+msgstr "Opnij pleatse"
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
+msgid "Repost"
+msgstr "Opnij pleatse"
+
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
+msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
+msgstr "Opnij pleatse ({0, plural, one {# werpleatsing} other {# werpleatsingen}})"
+
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
+msgid "Repost or quote post"
+msgstr "Opnij pleatse of berjocht sitearje"
+
+#: src/screens/Post/PostRepostedBy.tsx:38
+msgid "Reposted By"
+msgstr "Opnij pleatst troch"
+
+#: src/view/com/posts/PostFeedItem.tsx:347
+msgid "Reposted by {0}"
+msgstr "Opnij pleatst troch {0}"
+
+#: src/view/com/posts/PostFeedItem.tsx:366
+msgid "Reposted by <0><1/>0>"
+msgstr "Opnij pleatst troch <0><1/>0>"
+
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
+msgid "Reposted by you"
+msgstr "Opnij pleatst troch dy"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:237
+msgid "Reposts of this post"
+msgstr "Opnij-pleatsingen fan dit berjocht"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr "Wiziging oanfreegje"
+
+#: src/view/com/modals/ChangePassword.tsx:253
+#: src/view/com/modals/ChangePassword.tsx:255
+msgid "Request Code"
+msgstr "Koade oanfreegje"
+
+#: src/screens/Settings/AccessibilitySettings.tsx:60
+#: src/screens/Settings/AccessibilitySettings.tsx:65
+msgid "Require alt text before posting"
+msgstr "Alt-tekst fereaskje foar it pleatsen"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
+msgid "Require an email code to sign in to your account."
+msgstr "In e-mailkoade is nedig om dy oan te melden by dyn account."
+
+#: src/screens/Signup/StepInfo/index.tsx:177
+msgid "Required for this provider"
+msgstr "Fereaske foar dizze provider"
+
+#: src/components/LabelingServiceCard/index.tsx:80
+msgid "Required in your region"
+msgstr "Fereaske yn dyn regio"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr "Opnij ferstjoere"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
+msgid "Resend email"
+msgstr "E-mailberocht opnij ferstjoere"
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:130
+msgid "Resend Email"
+msgstr "E-mailberocht opnij ferstjoere"
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:122
+msgid "Resend Verification Email"
+msgstr "Ferifikaasje-e-mailberocht opnij ferstjoere"
+
+#: src/view/com/modals/ChangePassword.tsx:197
+msgid "Reset code"
+msgstr "Koade opnij ynstelle"
+
+#: src/view/com/modals/ChangePassword.tsx:204
+msgid "Reset Code"
+msgstr "Koade opnij ynstelle"
+
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
+msgid "Reset onboarding state"
+msgstr "Yntroduksje-status opnij ynstelle"
+
+#: src/screens/Login/ForgotPasswordForm.tsx:80
+msgid "Reset password"
+msgstr "Wachtwurd opnij ynstelle"
+
+#: src/screens/Login/LoginForm.tsx:324
+msgid "Retries signing in"
+msgstr "Nij besykjen oan te melden"
+
+#: src/view/com/util/error/ErrorMessage.tsx:62
+#: src/view/com/util/error/ErrorScreen.tsx:99
+msgid "Retries the last action, which errored out"
+msgstr "Werhellet de lêste aksje, dêr’t in flater by barde"
+
+#: src/components/dms/MessageItem.tsx:321
+#: src/components/Error.tsx:65
+#: src/components/Lists.tsx:110
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/screens/Login/LoginForm.tsx:323
+#: src/screens/Login/LoginForm.tsx:330
+#: src/screens/Messages/ChatList.tsx:254
+#: src/screens/Messages/components/MessageListError.tsx:25
+#: src/screens/Messages/Inbox.tsx:197
+#: src/screens/Onboarding/StepInterests/index.tsx:217
+#: src/screens/Onboarding/StepInterests/index.tsx:220
+#: src/screens/Signup/BackNextButtons.tsx:53
+#: src/view/com/util/error/ErrorMessage.tsx:60
+#: src/view/com/util/error/ErrorScreen.tsx:97
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
+msgid "Retry"
+msgstr "Opnij probearje"
+
+#: src/components/moderation/ReportDialog/index.tsx:226
+msgid "Retry loading report options"
+msgstr "Laadopsje foar rapport opnij lade"
+
+#: src/components/Error.tsx:73
+#: src/screens/List/ListHiddenScreen.tsx:219
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
+msgid "Return to previous page"
+msgstr "Tebek nei foarige side"
+
+#: src/view/screens/NotFound.tsx:61
+msgid "Returns to home page"
+msgstr "Tebek nei de startside"
+
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
+#: src/view/screens/NotFound.tsx:60
+#: src/view/screens/ProfileList.tsx:1039
+msgid "Returns to previous page"
+msgstr "Tebek nei de foarige side"
+
+#: src/screens/StarterPack/Wizard/index.tsx:287
+msgid "Returns to the previous step"
+msgstr "Tebek nei de foarige stap"
+
+#: src/components/dialogs/BirthDateSettings.tsx:121
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
+#: src/view/screens/SavedFeeds.tsx:109
+msgid "Save"
+msgstr "Bewarje"
+
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
+msgctxt "action"
+msgid "Save"
+msgstr "Bewarje"
+
+#: src/components/dialogs/BirthDateSettings.tsx:115
+msgid "Save birthday"
+msgstr "Jierdei bewarje"
+
+#: src/view/screens/SavedFeeds.tsx:105
+#: src/view/screens/SavedFeeds.tsx:109
+msgid "Save changes"
+msgstr "Wizigingen bewarje"
+
+#: src/view/com/modals/EditProfile.tsx:252
+msgid "Save Changes"
+msgstr "Wizigingen bewarje"
+
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
+msgid "Save image"
+msgstr "Ofbylding bewarje"
+
+#: src/view/com/modals/CropImage.web.tsx:104
+msgid "Save image crop"
+msgstr "Bysneden ôfbylding bewarje"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+msgid "Save new handle"
+msgstr "Nije handle bewarje"
+
+#: src/components/StarterPack/QrCodeDialog.tsx:186
+msgid "Save QR code"
+msgstr "QR-koade bewarje"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
+msgid "Save to my feeds"
+msgstr "Yn myn feeds bewarje"
+
+#: src/view/screens/SavedFeeds.tsx:164
+msgid "Saved Feeds"
+msgstr "Feeds bewarje"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
+msgid "Saved to your feeds"
+msgstr "Bewarre yn dyn feeds"
+
+#: src/view/com/modals/EditProfile.tsx:245
+msgid "Saves any changes to your profile"
+msgstr "Alle wizigingen fan dyn profyl bewarje"
+
+#: src/view/com/modals/CropImage.web.tsx:105
+msgid "Saves image crop settings"
+msgstr "Bewarret ynstellingen foar bysnijen fan ôfbyldingen"
+
+#: src/components/dms/ChatEmptyPill.tsx:33
+#: src/components/NewskieDialog.tsx:105
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
+msgid "Say hello!"
+msgstr "Sis hallo!"
+
+#: src/screens/Onboarding/index.tsx:33
+#: src/screens/Onboarding/state.ts:112
+msgid "Science"
+msgstr "Wittenskip"
+
+#: src/view/screens/ProfileList.tsx:996
+msgid "Scroll to top"
+msgstr "Nei boppe"
+
+#: src/components/dialogs/SearchablePeopleList.tsx:513
+#: src/components/forms/SearchInput.tsx:34
+#: src/components/forms/SearchInput.tsx:36
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
+msgid "Search"
+msgstr "Sykje"
+
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
+msgid "Search @{0}'s posts"
+msgstr "Berjochten fan @{0} trochsykje"
+
+#: src/components/ProgressGuide/FollowDialog.tsx:683
+msgid "Search by name or interest"
+msgstr "Sykje op namme of ynteresse"
+
+#: src/view/screens/Feeds.tsx:444
+msgid "Search feeds"
+msgstr "Feeds trochsykje"
+
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
+msgid "Search for \"{interestsDisplayName}\"{activeText}"
+msgstr "Sykje nei ‘{interestsDisplayName}’{activeText}"
+
+#: src/view/shell/desktop/Search.tsx:131
+msgid "Search for \"{query}\""
+msgstr "Sykje nei ‘{query}’"
+
+#: src/screens/Search/components/AutocompleteResults.tsx:45
+msgid "Search for \"{searchText}\""
+msgstr "Sykje nei ‘{searchText}’"
+
+#: src/screens/StarterPack/Wizard/index.tsx:474
+msgid "Search for feeds that you want to suggest to others."
+msgstr "Sykje nei feeds dy’tsto oan oaren foarstelle wolst."
+
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr "Nei mear accounts sykje"
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr "Nei mear feeds sykje"
+
+#: src/screens/Search/Shell.tsx:334
+msgid "Search for posts, users, or feeds"
+msgstr "Berjochten, brûkers of feeds sykje"
+
+#: src/components/dialogs/GifSelect.tsx:177
+msgid "Search GIFs"
+msgstr "GIF’s sykje"
+
+#: src/screens/Profile/ProfileSearch.tsx:36
+msgid "Search my posts"
+msgstr "Myn berjochten trochsykje"
+
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
+msgid "Search posts"
+msgstr "Berjochten trochsykje"
+
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
+msgid "Search profiles"
+msgstr "Profilen sykje"
+
+#: src/components/dialogs/GifSelect.tsx:178
+msgid "Search Tenor"
+msgstr "Sykje op Tenor"
+
+#: src/screens/Profile/ProfileSearch.tsx:38
+msgid "Search..."
+msgstr "Sykje…"
+
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
+msgid "Searches for profiles"
+msgstr "Siket nei profilen"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr "Befeiligingsstap fereaske"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
+msgid "Security Step Required"
+msgstr "Befeiligingsstap fereaske"
+
+#: src/components/RichTextTag.tsx:111
+msgid "See {tag} posts"
+msgstr "{tag}-berjochten besjen"
+
+#: src/components/RichTextTag.tsx:124
+msgid "See {tag} posts by user"
+msgstr "{tag}-berjochten fan brûker besjen"
+
+#: src/components/RichTextTag.tsx:118
+msgid "See #{tag} posts"
+msgstr "#{tag}-berjochten besjen"
+
+#: src/components/RichTextTag.tsx:132
+msgid "See #{tag} posts by user"
+msgstr "#{tag}-berjochten fan brûker besjen"
+
+#: src/view/com/auth/SplashScreen.web.tsx:178
+msgid "See jobs at Bluesky"
+msgstr "Fakatueres by Bluesky bejen"
+
+#: src/view/screens/SavedFeeds.tsx:205
+msgid "See this guide"
+msgstr "Besjoch dizze gids"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194
+msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause"
+msgstr "Sykslider. Brûk de pylktoetsen om foarút en efterút te sykjen en spaasje om ôf te spyljen/pauzearjen"
+
+#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67
+msgid "Select a color"
+msgstr "In kleur selektearje"
+
+#: src/screens/Login/ChooseAccountForm.tsx:77
+msgid "Select account"
+msgstr "Account selektearje"
+
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr "Selektearje in app-taal"
+
+#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
+msgid "Select an avatar"
+msgstr "In avatar selektearje"
+
+#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65
+msgid "Select an emoji"
+msgstr "In emoji selektearje"
+
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr "Selektearje in opsje"
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr "Selektearje app-taal"
+
+#: src/screens/Settings/LanguageSettings.tsx:164
+msgid "Select content languages"
+msgstr "Ynhâldstalen selektearje"
+
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr "Doer selektearje"
+
+#: src/screens/Login/index.tsx:144
+msgid "Select from an existing account"
+msgstr "Fan in besteand account selektearje"
+
+#: src/view/com/composer/photos/SelectGifBtn.tsx:35
+msgid "Select GIF"
+msgstr "GIF selektearje"
+
+#: src/components/dialogs/GifSelect.tsx:306
+msgid "Select GIF \"{0}\""
+msgstr "GIF ‘{0}’ selektearje"
+
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr "Selektearje hoe lang asto dit wurd negearje wolst."
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
+msgid "Select language..."
+msgstr "Taal selektearje…"
+
+#: src/screens/Settings/LanguageSettings.tsx:178
+msgid "Select languages"
+msgstr "Taal selektearje"
+
+#: src/components/moderation/ReportDialog/index.tsx:307
+msgid "Select moderation service"
+msgstr "Moderaasjetsjinst selektearje"
+
+#: src/components/ReportDialog/SelectLabelerView.tsx:28
+msgid "Select moderator"
+msgstr "Moderator selektearje"
+
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr "Selektearje primêre taal"
+
+#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
+#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
+msgid "Select subtitle file (.vtt)"
+msgstr "Undertitelbestân (.vtt) selektearje"
+
+#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83
+msgid "Select the {emojiName} emoji as your avatar"
+msgstr "Dyn avatar as de {emojiName}-emoji selektearje"
+
+#: src/components/ReportDialog/SubmitView.tsx:141
+msgid "Select the moderation service(s) to report to"
+msgstr "De moderaasjetsjinst(en) wêroan’tsto melde wolst selektearje"
+
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
+msgid "Select video"
+msgstr "Fideo selektearje"
+
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr "Op hokker ynhâld dit negearre wurd fan tapassing wêze moat selektearje."
+
+#: src/screens/Settings/LanguageSettings.tsx:91
+msgid "Select which language to use for the app's user interface."
+msgstr "Selektearje de taal dy’t brûkt wurde moat foar de brûkersinterface fan de app."
+
+#: src/screens/Settings/LanguageSettings.tsx:157
+msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
+msgstr "Selektearje hokker talen asto opnimme wolst yn dyn abonnearre feeds. Alle talen wurde werjûn as der gjin talen selektearre binne."
+
+#: src/screens/Signup/StepInfo/index.tsx:270
+msgid "Select your date of birth"
+msgstr "Dyn bertedatum selektearje"
+
+#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
+msgid "Select your interests from the options below"
+msgstr "Selektearje dyn ynteressen út de ûndersteande opsjes"
+
+#: src/screens/Settings/LanguageSettings.tsx:124
+msgid "Select your preferred language for translations in your feed."
+msgstr "Selektearje de taal wêryn’tsto de oersettingen yn dyn feed werjaan wolst."
+
+#: src/view/com/util/forms/DropdownButton.tsx:297
+msgid "Selects option {0} of {numItems}"
+msgstr "Selektearret opsje {0} fan {numItems}"
+
+#: src/components/dms/ChatEmptyPill.tsx:38
+msgid "Send a neat website!"
+msgstr "Stjoer in kreaze website!"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
+msgstr "Befêstiging ferstjoere"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
+msgid "Send confirmation email"
+msgstr "Befêstigings-emailberjocht ferstjoere"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
+#: src/view/com/modals/DeleteAccount.tsx:145
+msgid "Send email"
+msgstr "E-mailberocht ferstjoere"
+
+#: src/view/com/modals/DeleteAccount.tsx:158
+msgctxt "action"
+msgid "Send Email"
+msgstr "E-mailberocht ferstjoere"
+
+#: src/view/shell/Drawer.tsx:336
+msgid "Send feedback"
+msgstr "Feedback ferstjoere"
+
+#: src/screens/Messages/components/MessageInput.tsx:192
+#: src/screens/Messages/components/MessageInput.web.tsx:235
+msgid "Send message"
+msgstr "Berjocht ferstjoere"
+
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr "Berjocht nei {name} ferstjoere"
+
+#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
+msgid "Send post to..."
+msgstr "Berjocht ferstjoere nei…"
+
+#: src/components/dms/ReportDialog.tsx:271
+#: src/components/dms/ReportDialog.tsx:274
+#: src/components/ReportDialog/SubmitView.tsx:221
+#: src/components/ReportDialog/SubmitView.tsx:225
+msgid "Send report"
+msgstr "Melding ferstjoere"
+
+#: src/components/ReportDialog/SelectLabelerView.tsx:42
+msgid "Send report to {0}"
+msgstr "Melding nei {0} ferstjoere"
+
+#: src/components/moderation/ReportDialog/index.tsx:646
+msgid "Send report to {title}"
+msgstr "Melding nei {title} ferstjoere"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
+msgid "Send verification email"
+msgstr "Ferifikaasje-e-mailberjocht ferstjoere"
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
+msgid "Send via direct message"
+msgstr "As priveeberjocht ferstjoere"
+
+#: src/view/com/modals/DeleteAccount.tsx:147
+msgid "Sends email with confirmation code for account deletion"
+msgstr "Stjoert in e-mailberjocht mei in befêstigingskoade foar it fuortsmiten fan de account"
+
+#: src/view/com/auth/server-input/index.tsx:167
+msgid "Server address"
+msgstr "Serveradres"
+
+#: src/screens/Settings/AppIconSettings/index.tsx:178
+msgid "Set app icon to {0}"
+msgstr "App-piktogram ynstelle op {0}"
+
+#: src/screens/Moderation/index.tsx:325
+msgid "Set birthdate"
+msgstr "Bertedatum ynstelle"
+
+#: src/screens/Login/SetNewPasswordForm.tsx:106
+msgid "Set new password"
+msgstr "Nij wachtwurd ynstelle"
+
+#: src/screens/Onboarding/Layout.tsx:47
+msgid "Set up your account"
+msgstr "Dyn account ynstelle"
+
+#: src/screens/Login/ForgotPasswordForm.tsx:107
+msgid "Sets email for password reset"
+msgstr "Stelt e-mail yn foar it opnij ynstellen fan wachtwurden"
+
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
+msgid "Settings"
+msgstr "Ynstellingen"
+
+#: src/screens/ModerationInteractionSettings/index.tsx:102
+msgctxt "toast"
+msgid "Settings saved"
+msgstr "Ynstellingen bewarre"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
+msgid "Sexual activity or erotic nudity."
+msgstr "Seksuele aktiviteit of eroatysk neaken."
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:38
+msgid "Sexually Suggestive"
+msgstr "Seksueel suggestyf"
+
+#: src/components/StarterPack/QrCodeDialog.tsx:182
+#: src/screens/Hashtag.tsx:126
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
+#: src/screens/Topic.tsx:102
+#: src/view/screens/ProfileList.tsx:513
+msgid "Share"
+msgstr "Diele"
+
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
+msgctxt "action"
+msgid "Share"
+msgstr "Diele"
+
+#: src/components/dms/ChatEmptyPill.tsx:37
+msgid "Share a cool story!"
+msgstr "In aardich ferhaal diele!"
+
+#: src/components/dms/ChatEmptyPill.tsx:36
+msgid "Share a fun fact!"
+msgstr "In aardichheidsje diele!"
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
+msgid "Share anyway"
+msgstr "Dochs diele"
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr "Auteurs-DID diele"
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
+msgid "Share link"
+msgstr "Keppeling diele"
+
+#: src/view/com/modals/LinkWarning.tsx:89
+#: src/view/com/modals/LinkWarning.tsx:95
+msgid "Share Link"
+msgstr "Keppeling diele"
+
+#: src/components/StarterPack/ShareDialog.tsx:68
+msgid "Share link dialog"
+msgstr "Keppelingdialooch diele"
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr "Berjocht at:// URI diele"
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
+msgid "Share QR code"
+msgstr "QR-koade diele"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
+msgid "Share this feed"
+msgstr "Dizze feed diele"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
+msgid "Share this starter pack"
+msgstr "Dit startpakket diele"
+
+#: src/components/StarterPack/ShareDialog.tsx:80
+msgid "Share this starter pack and help people join your community on Bluesky."
+msgstr "Diel dit startpakket en help minsken lid te wurden fan dyn mienskip op Bluesky."
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr "Diele fia…"
+
+#: src/components/dms/ChatEmptyPill.tsx:34
+msgid "Share your favorite feed!"
+msgstr "Dyn favorite feed diele!"
+
+#: src/Navigation.tsx:288
+msgid "Shared Preferences Tester"
+msgstr "Dielde foarkarren-tester"
+
+#: src/view/com/modals/LinkWarning.tsx:92
+msgid "Shares the linked website"
+msgstr "Dielt de keppele website"
+
+#: src/components/moderation/ContentHider.tsx:200
+#: src/components/moderation/LabelPreference.tsx:137
+#: src/components/moderation/PostHider.tsx:124
+msgid "Show"
+msgstr "Toane"
+
+#: src/view/com/util/post-embeds/GifEmbed.tsx:178
+msgid "Show alt text"
+msgstr "Alt-tekst toane"
+
+#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:175
+#: src/screens/List/ListHiddenScreen.tsx:190
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
+msgid "Show anyway"
+msgstr "Dochs toane"
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:27
+#: src/lib/moderation/useLabelBehaviorDescription.ts:63
+msgid "Show badge"
+msgstr "Badge toane"
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:61
+msgid "Show badge and filter from feeds"
+msgstr "Badge en filter út feeds toane"
+
+#: src/components/dialogs/Embed.tsx:129
+msgid "Show customization options"
+msgstr "Oanpassingsopsjes toane"
+
+#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22
+msgid "Show hidden replies"
+msgstr "Ferstoppe reaksjes toane"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
+msgid "Show less like this"
+msgstr "Minder hjirfan toane"
+
+#: src/screens/List/ListHiddenScreen.tsx:186
+msgid "Show list anyway"
+msgstr "List dochs toane"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
+msgid "Show More"
+msgstr "Mear toane"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
+msgid "Show more like this"
+msgstr "Mear hjirfan toane"
+
+#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22
+msgid "Show muted replies"
+msgstr "Negearre reaksjes toane"
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:104
+#: src/screens/Settings/FollowingFeedPreferences.tsx:114
+msgid "Show quote posts"
+msgstr "Sitaatberjochten toane"
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:68
+#: src/screens/Settings/FollowingFeedPreferences.tsx:78
+msgid "Show replies"
+msgstr "Antwurden toane"
+
+#: src/view/com/post-thread/PostThread.tsx:625
+msgid "Show replies as"
+msgstr "Antwurden toane as"
+
+#: src/screens/Settings/ThreadPreferences.tsx:151
+msgid "Show replies as threaded"
+msgstr "Antwurden as petear toane"
+
+#: src/screens/Settings/ThreadPreferences.tsx:126
+msgid "Show replies by people you follow before all other replies"
+msgstr "Antwurden fan minsken dy’tsto folgest foar alle oare antwurden toane"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
+msgid "Show reply for everyone"
+msgstr "Reaksje foar elkenien toane"
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:86
+#: src/screens/Settings/FollowingFeedPreferences.tsx:96
+msgid "Show reposts"
+msgstr "Opnij-pleatsingen toane"
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:129
+#: src/screens/Settings/FollowingFeedPreferences.tsx:139
+msgid "Show samples of your saved feeds in your Following feed"
+msgstr "Foarbylden fan dyn bewarre feeds yn dyn Following-feed toane"
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:58
+msgid "Show warning"
+msgstr "Warskôging toane"
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:56
+msgid "Show warning and filter from feeds"
+msgstr "Warskôging en filter út feeds toane"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:916
+msgid "Shows information about when this post was created"
+msgstr "Toant ynformaasje oer wannear’t dit bejoicht oanmakke is"
+
+#: src/screens/Settings/Settings.tsx:114
+msgid "Shows other accounts you can switch to"
+msgstr "Toant oare accounts wêrneisto wikselje kinst"
+
+#: src/components/moderation/ContentHider.tsx:152
+#: src/components/moderation/PostHider.tsx:79
+msgid "Shows the content"
+msgstr "Toant de ynhâld"
+
+#: src/components/dialogs/Signin.tsx:97
+#: src/components/dialogs/Signin.tsx:99
+#: src/screens/Login/index.tsx:122
+#: src/screens/Login/index.tsx:143
+#: src/screens/Login/LoginForm.tsx:181
+#: src/view/com/auth/SplashScreen.tsx:61
+#: src/view/com/auth/SplashScreen.tsx:69
+#: src/view/com/auth/SplashScreen.web.tsx:123
+#: src/view/com/auth/SplashScreen.web.tsx:131
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
+#: src/view/shell/NavSignupCard.tsx:57
+#: src/view/shell/NavSignupCard.tsx:62
+msgid "Sign in"
+msgstr "Oanmelde"
+
+#: src/components/AccountList.tsx:129
+msgid "Sign in as {0}"
+msgstr "Oanmelden as {0}"
+
+#: src/screens/Login/ChooseAccountForm.tsx:80
+msgid "Sign in as..."
+msgstr "Oanmelde as…"
+
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr "Oanmelde of registrearje in account"
+
+#: src/components/dialogs/Signin.tsx:75
+msgid "Sign in or create your account to join the conversation!"
+msgstr "Meld dy oan of registrearje in account om diel te nimmen oan it petear!"
+
+#: src/components/AccountList.tsx:68
+msgid "Sign in to account that is not listed"
+msgstr "Oanmelde by in account dat net yn de list stiet"
+
+#: src/components/dialogs/Signin.tsx:46
+msgid "Sign in to Bluesky or create a new account"
+msgstr "Meld dy oan by Bluesky of meitsje in nij account"
+
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
+#: src/screens/SignupQueued.tsx:93
+#: src/screens/SignupQueued.tsx:96
+#: src/screens/Takendown.tsx:85
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
+msgid "Sign out"
+msgstr "Ofmelde"
+
+#: src/screens/Takendown.tsx:88
+msgid "Sign Out"
+msgstr "Ofmelde"
+
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
+msgid "Sign out?"
+msgstr "Ofmelde?"
+
+#: src/components/moderation/ScreenHider.tsx:91
+#: src/lib/moderation/useGlobalLabelStrings.ts:28
+msgid "Sign-in Required"
+msgstr "Oanmelden fereaske"
+
+#: src/lib/hooks/useAccountSwitcher.ts:41
+#: src/screens/Login/ChooseAccountForm.tsx:53
+msgid "Signed in as @{0}"
+msgstr "Oanmeld as @{0}"
+
+#: src/components/FeedInterstitials.tsx:337
+msgid "Similar accounts"
+msgstr "Fergelykbere accounts"
+
+#: src/screens/Onboarding/StepInterests/index.tsx:231
+#: src/screens/StarterPack/Wizard/index.tsx:195
+msgid "Skip"
+msgstr "Oerslaan"
+
+#: src/screens/Onboarding/StepInterests/index.tsx:228
+msgid "Skip this flow"
+msgstr "Dizze flow oerslaan"
+
+#: src/screens/Settings/AppearanceSettings.tsx:164
+msgid "Smaller"
+msgstr "Lytser"
+
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr "Snûzet it omtinken"
+
+#: src/screens/Onboarding/index.tsx:37
+#: src/screens/Onboarding/state.ts:100
+msgid "Software Dev"
+msgstr "Softwareûntwikkeler"
+
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr "Guon fan dyn ferifikaasjes binne ûnjildich."
+
+#: src/components/FeedInterstitials.tsx:474
+msgid "Some other feeds you might like"
+msgstr "Inkelde oare feeds dêr’tsto miskien wol oer meist"
+
+#: src/components/WhoCanReply.tsx:74
+msgid "Some people can reply"
+msgstr "Guon minsken kinne reagearje"
+
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr "Ien hat mei {0} reagearre"
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr "Ien hat mei {0} reagearre op {1}"
+
+#: src/components/moderation/ReportDialog/index.tsx:76
+msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
+msgstr "Der is wat net hielendal krekt mei de gegevens dy’tsto probearrest te melden. Nim kontakt op mei stipe."
+
+#: src/screens/Messages/Conversation.tsx:129
+msgid "Something went wrong"
+msgstr "Der is wat misgien"
+
+#: src/components/moderation/ReportDialog/index.tsx:223
+#: src/screens/Deactivated.tsx:94
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+msgid "Something went wrong, please try again"
+msgstr "Der is wat misgien, probearje it nochris"
+
+#: src/components/ReportDialog/index.tsx:54
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
+msgid "Something went wrong, please try again."
+msgstr "Der is wat misgien, probearje it nochris."
+
+#: src/components/Lists.tsx:174
+#: src/screens/Settings/NotificationSettings.tsx:55
+msgid "Something went wrong!"
+msgstr "Der is wat misgien!"
+
+#: src/components/moderation/ReportDialog/index.tsx:178
+msgid "Something went wrong. Please try again."
+msgstr "Der is wat misgien. Probearje it nochris."
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
+msgid "Something wrong? Let us know."
+msgstr "Klopt er wat net? Lit it ús witte."
+
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
+msgid "Sorry! Your session expired. Please sign in again."
+msgstr "Sorry, dyn sesje is ferrûn. Meld dy opnij oan."
+
+#: src/screens/Settings/ThreadPreferences.tsx:55
+msgid "Sort replies"
+msgstr "Reaksjes sortearje"
+
+#: src/screens/Settings/ThreadPreferences.tsx:62
+msgid "Sort replies by"
+msgstr "Reaksjes sortearje op"
+
+#: src/screens/Settings/ThreadPreferences.tsx:59
+msgid "Sort replies to the same post by:"
+msgstr "Reaksjes op itselde berjocht sortearje op:"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:178
+#: src/components/moderation/ModerationDetailsDialog.tsx:186
+msgid "Source: <0>{sourceName}0>"
+msgstr "Boarne: <0>{sourceName}0>"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:85
+#: src/lib/moderation/useReportOptions.ts:72
+#: src/lib/moderation/useReportOptions.ts:85
+msgid "Spam"
+msgstr "Spam"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55
+#: src/lib/moderation/useReportOptions.ts:55
+msgid "Spam; excessive mentions or replies"
+msgstr "Spam; oermjittich protte fermeldingen of reaksjes"
+
+#: src/screens/Onboarding/index.tsx:27
+#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
+msgid "Sports"
+msgstr "Sport"
+
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr "Start in petear, en it sil hjir ferskine."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
+msgid "Start a new chat"
+msgstr "In nije chat starte"
+
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
+msgid "Start adding people"
+msgstr "Begjin mei minsken ta te foegjen"
+
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
+msgid "Start adding people!"
+msgstr "Begjin mei minsken ta te foegjen!"
+
+#: src/components/dialogs/SearchablePeopleList.tsx:382
+msgid "Start chat with {displayName}"
+msgstr "Chat starte mei {displayName}"
+
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
+#: src/screens/StarterPack/Wizard/index.tsx:186
+msgid "Starter Pack"
+msgstr "Startpakket"
+
+#: src/components/StarterPack/StarterPackCard.tsx:90
+msgid "Starter pack by {0}"
+msgstr "Startpakket troch {0}"
+
+#: src/view/com/profile/ProfileSubpageHeader.tsx:182
+msgid "Starter pack by <0/>"
+msgstr "Startpakket troch <0/>"
+
+#: src/components/StarterPack/StarterPackCard.tsx:89
+#: src/view/com/profile/ProfileSubpageHeader.tsx:180
+msgid "Starter pack by you"
+msgstr "Startpakket troch dy"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
+msgid "Starter pack is invalid"
+msgstr "Startpakket is ûnjildich"
+
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
+msgid "Starter Packs"
+msgstr "Startpakketten"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
+msgid "Starter packs let you easily share your favorite feeds and people with your friends."
+msgstr "Mei startpakketten kinsto ienfâldich dyn favorite feeds en persoanen met dyn freonen diele."
+
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
+msgid "Status Page"
+msgstr "Statusside"
+
+#: src/screens/Signup/index.tsx:148
+msgid "Step {0} of {1}"
+msgstr "Stap {0} fan {1}"
+
+#: src/screens/Settings/Settings.tsx:363
+msgid "Storage cleared, you need to restart the app now."
+msgstr "Unthâld wiske, do moatst de app no opnij opstarte."
+
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
+msgid "Storybook"
+msgstr "Ferhaleboek"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:324
+#: src/components/moderation/LabelsOnMeDialog.tsx:325
+#: src/screens/Messages/components/ChatDisabled.tsx:142
+#: src/screens/Messages/components/ChatDisabled.tsx:143
+msgid "Submit"
+msgstr "Yntsjinje"
+
+#: src/screens/Takendown.tsx:70
+msgid "Submit appeal"
+msgstr "Beswier yntsjinje"
+
+#: src/screens/Takendown.tsx:76
+msgid "Submit Appeal"
+msgstr "Beswier yntsjinje"
+
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
+msgid "Submit report"
+msgstr "Melding yntsjinje"
+
+#: src/view/screens/ProfileList.tsx:741
+msgid "Subscribe"
+msgstr "Abonnearje"
+
+#: src/screens/Profile/Sections/Labels.tsx:198
+msgid "Subscribe to @{0} to use these labels:"
+msgstr "Abonnearje dy op @{0} om dizze labels te brûken:"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
+msgid "Subscribe to Labeler"
+msgstr "Abonnearje op labeler"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
+msgid "Subscribe to this labeler"
+msgstr "Abonnearje op dizze labeler"
+
+#: src/view/screens/ProfileList.tsx:737
+msgid "Subscribe to this list"
+msgstr "Abonnearje op dizze list"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
+msgid "Success!"
+msgstr "Slagge!"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr "Mei sukses ferifiearre"
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
+msgstr "Foarstelde accounts"
+
+#: src/components/FeedInterstitials.tsx:339
+msgid "Suggested for you"
+msgstr "Foarsteld foar dy"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
+msgid "Suggestive"
+msgstr "Suggestyf"
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60
+msgctxt "Name of app icon variant"
+msgid "Sunrise"
+msgstr "Sinneopgong"
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70
+msgctxt "Name of app icon variant"
+msgid "Sunset"
+msgstr "Sinneûndergong"
+
+#: src/Navigation.tsx:298
+#: src/view/screens/Support.tsx:31
+#: src/view/screens/Support.tsx:34
+msgid "Support"
+msgstr "Stipe"
+
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
+msgid "Switch account"
+msgstr "Fan account wikselje"
+
+#: src/components/dialogs/SwitchAccount.tsx:46
+#: src/components/dialogs/SwitchAccount.tsx:49
+msgid "Switch Account"
+msgstr "Fan account wikselje"
+
+#: src/view/shell/desktop/LeftNav.tsx:110
+msgid "Switch accounts"
+msgstr "Fan accounts wikselje"
+
+#: src/view/shell/desktop/LeftNav.tsx:294
+msgid "Switch to {0}"
+msgstr "Wikselje nei {0}"
+
+#: src/components/dialogs/Embed.tsx:157
+#: src/components/dialogs/Embed.tsx:159
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:147
+msgid "System"
+msgstr "Systeem"
+
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
+msgid "System log"
+msgstr "Systeemlochboek"
+
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
+msgstr "Allinnich tags"
+
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr "Tik om kontekstmenu te sluten"
+
+#: src/components/ProgressGuide/Toast.tsx:156
+msgid "Tap to dismiss"
+msgstr "Tik om te sluten"
+
+#: src/state/shell/progress-guide.tsx:233
+msgid "Task complete - 10 follows!"
+msgstr "Taak foltôge – 10 persoanen folge!"
+
+#: src/state/shell/progress-guide.tsx:223
+msgid "Task complete - 10 likes!"
+msgstr "Taak foltôge – 10 mei-’k-wol-oers!"
+
+#: src/components/ProgressGuide/List.tsx:64
+msgid "Teach our algorithm what you like"
+msgstr "Lear ús algoritme wêr’tsto wol oer meist"
+
+#: src/screens/Onboarding/index.tsx:36
+#: src/screens/Onboarding/state.ts:114
+msgid "Tech"
+msgstr "Technology"
+
+#: src/components/dms/ChatEmptyPill.tsx:35
+msgid "Tell a joke!"
+msgstr "Fertel in grap!"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
+msgid "Tell us a bit about yourself"
+msgstr "Fertel ús wat oer dysels"
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:69
+msgid "Tell us a little more"
+msgstr "Fertel ús wat mear"
+
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
+msgid "Terms"
+msgstr "Betingsten"
+
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
+#: src/view/screens/TermsOfService.tsx:31
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
+msgid "Terms of Service"
+msgstr "Tsjinstbetingsten"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:60
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
+#: src/lib/moderation/useReportOptions.ts:60
+#: src/lib/moderation/useReportOptions.ts:99
+#: src/lib/moderation/useReportOptions.ts:107
+#: src/lib/moderation/useReportOptions.ts:115
+msgid "Terms used violate community standards"
+msgstr "De brûkte termen skeine mienskipsnoarmen"
+
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
+msgstr "Tekst en tags"
+
+#: src/components/dms/ReportDialog.tsx:229
+msgid "Text field"
+msgstr "Tekstfjild"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:288
+#: src/screens/Messages/components/ChatDisabled.tsx:108
+msgid "Text input field"
+msgstr "Tekstynfierfjild"
+
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr "Dank foar dyn kommentaar! It is nei de feedbehearder stjoerd."
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
+msgid "Thank you! Your email has been successfully verified."
+msgstr "Tank! Dyn e-mailadres is mei sukes ferifiearre."
+
+#: src/components/ReportDialog/SubmitView.tsx:83
+msgid "Thank you. Your report has been sent."
+msgstr "Tank. Dyn melding is ferstjoerd."
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:82
+msgid "Thanks, you have successfully verified your email address. You can close this dialog."
+msgstr "Tank, do hast dyn e-mailadres mei sukses ferifiearre. Do kinst dit dialoochfinster slute."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
+msgid "That contains the following:"
+msgstr "Dat it folgjende befettet:"
+
+#: src/screens/Signup/StepHandle.tsx:55
+msgid "That handle is already taken."
+msgstr "Dy handle is al yn gebrûk."
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
+#: src/screens/StarterPack/Wizard/index.tsx:104
+#: src/screens/StarterPack/Wizard/index.tsx:114
+msgid "That starter pack could not be found."
+msgstr "Dat startpakket kin net fûn wurde."
+
+#: src/view/com/post-thread/PostQuotes.tsx:132
+msgid "That's all, folks!"
+msgstr "Dat is alles minsken!"
+
+#: src/screens/VideoFeed/index.tsx:1111
+msgid "That's everything!"
+msgstr "Dat wie alles!"
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
+msgid "The account will be able to interact with you after unblocking."
+msgstr "De account kin nei it deblokkearjen mei dy kommunisearje."
+
+#: src/screens/Settings/AppIconSettings/index.tsx:41
+#: src/screens/Settings/AppIconSettings/index.tsx:222
+msgid "The app will be restarted"
+msgstr "De app wurdt opnij opstart"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:119
+#: src/lib/moderation/useModerationCauseDescription.ts:128
+msgid "The author of this thread has hidden this reply."
+msgstr "De auteur fan dit petear hat dizze reaksje ferstoppe."
+
+#: src/screens/Moderation/index.tsx:377
+msgid "The Bluesky web application"
+msgstr "De Bluesky-webapplikaasje"
+
+#: src/view/screens/CommunityGuidelines.tsx:38
+msgid "The Community Guidelines have been moved to <0/>"
+msgstr "De mienskipsrjochtlinen binne ferpleatst nei <0/>"
+
+#: src/view/screens/CopyrightPolicy.tsx:35
+msgid "The Copyright Policy has been moved to <0/>"
+msgstr "It auteursrjochtbelied is ferpleatst nei <0/>"
+
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
+msgstr "De Untdekke-feed"
+
+#: src/state/shell/progress-guide.tsx:224
+msgid "The Discover feed now knows what you like"
+msgstr "De Untdekke-feed wit no wêr’tsto wol oer meist"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr "It e-mailadres datsto ynfierd hast is itselde as dyn aktuele e-mailadres."
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
+msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
+msgstr "De ûnderfining is better yn de app. Download Bluesky no en wy pakke it op dêr’tsto bleaun wiest."
+
+#: src/view/com/posts/FeedShutdownMsg.tsx:67
+msgid "The feed has been replaced with Discover."
+msgstr "De feed is ferfongen troch Untdekke."
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:59
+msgid "The following labels were applied to your account."
+msgstr "De folgjende labels binne op dyn account tapast."
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:60
+msgid "The following labels were applied to your content."
+msgstr "De folgjende labels binne op dyn ynhâld tapast."
+
+#: src/screens/ModerationInteractionSettings/index.tsx:42
+msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer."
+msgstr "De folgjende ynstellingen wurde brûkt as standert by it meitsjen fan nije berjochten. Do kinst dizze foar in spesifyk berjocht út it opstelfinster bewurkje."
+
+#: src/view/com/post-thread/PostThread.tsx:265
+#: src/view/com/post-thread/PostThread.tsx:277
+msgid "The post may have been deleted."
+msgstr "It berjocht is mooglik fuortsmiten."
+
+#: src/view/screens/PrivacyPolicy.tsx:35
+msgid "The Privacy Policy has been moved to <0/>"
+msgstr "It privacybelied is ferpleatst nei <0/>"
+
+#: src/view/com/composer/state/video.ts:395
+msgid "The selected video is larger than 100 MB."
+msgstr "De selektearre fideo is grutter as 100 MB."
+
+#: src/lib/hooks/useCleanError.ts:40
+#: src/lib/strings/errors.ts:18
+msgid "The server appears to be experiencing issues. Please try again in a few moments."
+msgstr "It liket derop dat der problemen mei de server binne. Probearje it oer inkelde eagenblikken opnij."
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
+msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
+msgstr "It startpakket datsto probearrest te besjen is ûnjildich. Do kinst dit startpakket yn stee dêrfan fuortsmite."
+
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr "It ûnderwerp fan it kontekstmenu"
+
+#: src/view/screens/Support.tsx:37
+msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
+msgstr "It stipeformulier is ferpleatst. Asto help nedich hast, kom by <0/> of besykje {HELP_DESK_URL} om kontakt mei ús op te nimmen."
+
+#: src/view/screens/TermsOfService.tsx:35
+msgid "The Terms of Service have been moved to"
+msgstr "De Tsjinstbetingsten binne ferpleatst nei"
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:94
+msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one."
+msgstr "De ferifikaasjekoade dy’tsto opjûn hast is ûnjildich. Kontrolearje oftsto de krekte ferifikaasjekeppeling brûkt hast of freegje in nije oan."
+
+#: src/screens/Settings/AppearanceSettings.tsx:151
+msgid "Theme"
+msgstr "Tema"
+
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+msgid "There is no time limit for account deactivation, come back any time."
+msgstr "Der is gjin tiidslimyt foar it de-aktivearjen fan de account; do kinst op elk momint weromkomme."
+
+#: src/components/dialogs/GifSelect.tsx:226
+msgid "There was an issue connecting to Tenor."
+msgstr "Der is in probleem bard by it ferbinen mei Tenor."
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
+#: src/view/screens/SavedFeeds.tsx:85
+msgid "There was an issue contacting the server"
+msgstr "Der is in probleem bard by it ferbinen mei de server"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
+msgid "There was an issue contacting the server, please check your internet connection and try again."
+msgstr "Der is in probleem bard by it ferbinen mei de server. Kontrolearje dyn ynternetferbining en probearje it opnij."
+
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
+msgid "There was an issue contacting your server"
+msgstr "Der is in probleem bard by it ferbinen mei dyn server"
+
+#: src/view/com/notifications/NotificationFeed.tsx:124
+msgid "There was an issue fetching notifications. Tap here to try again."
+msgstr "Der is in probleem bard by it opheljen fan meldingen. Tik hjir om it opnij te probearjen."
+
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
+msgid "There was an issue fetching posts. Tap here to try again."
+msgstr "Der is in probleem bard by it opheljen fan berjochten. Tik hjir om it opnij te probearjen."
+
+#: src/view/com/lists/ListMembers.tsx:151
+msgid "There was an issue fetching the list. Tap here to try again."
+msgstr "Der is in probleem bard by it opheljen fan de list. Tik hjir om it opnij te probearjen."
+
+#: src/screens/Settings/AppPasswords.tsx:60
+msgid "There was an issue fetching your app passwords"
+msgstr "Der is in probleem bard by it opheljen fan dyn app-wachtwurden"
+
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
+msgid "There was an issue fetching your lists. Tap here to try again."
+msgstr "Der is in probleem bard by it opheljen fan dyn list. Tik hjir om it opnij te probearjen."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
+msgid "There was an issue fetching your service info"
+msgstr "Der is in probleem bard by it opheljen fan dyn tsjinstgegevens"
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:145
+msgid "There was an issue removing this feed. Please check your internet connection and try again."
+msgstr "Der is in probleem bard by it fuortsmiten fan dizze feed. Kontrolearje dyn ynternetferbining en probearje it opnij."
+
+#: src/components/dms/ReportDialog.tsx:259
+#: src/components/ReportDialog/SubmitView.tsx:88
+msgid "There was an issue sending your report. Please check your internet connection."
+msgstr "Der is in probleem bard by it ferstjoeren fan dyn melding. Kontrolearje dyn ynternetferbining."
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
+#: src/view/com/posts/FeedShutdownMsg.tsx:52
+#: src/view/com/posts/FeedShutdownMsg.tsx:71
+msgid "There was an issue updating your feeds, please check your internet connection and try again."
+msgstr "Der is in probleem bard by it bywurkjen fan dyn feeds. Kontrolearje dyn ynternetferbining en probearje it opnij."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
+#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
+#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
+msgid "There was an issue! {0}"
+msgstr "Der is in probleem bard! {0}"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
+msgid "There was an issue. Please check your internet connection and try again."
+msgstr "Der is in probleem bard. Kontrolearje dyn ynternetferbining en probearje it opnij."
+
+#: src/components/dialogs/GifSelect.tsx:270
+#: src/view/com/util/ErrorBoundary.tsx:59
+msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
+msgstr "Der is in ûnferwacht probleem bard yn de applikaasje. Lit it ús witte as dit by dy bard is!"
+
+#: src/screens/SignupQueued.tsx:130
+msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
+msgstr "Der is in grutte oanrin fan nije brûkers nei Bluesky! Wy aktivearje dyn account sa gau as mooglik."
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:62
+msgid "These settings only apply to the Following feed."
+msgstr "Dizze ynstellingen binne allinnich fan tapassing op de folgjende feed."
+
+#: src/components/moderation/ScreenHider.tsx:111
+msgid "This {screenDescription} has been flagged:"
+msgstr "Dizze {screenDescription} is markearre:"
+
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr "Dizze account hat in finkje, omdat it ferifiearre is toch fertroude boarnen."
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr "Dizze account hat ien of mear besochte ferifikaasjes, mar it is no noch net ferifiearre."
+
+#: src/components/moderation/ScreenHider.tsx:106
+msgid "This account has requested that users sign in to view their profile."
+msgstr "Dizze account fersiket brûkers harren oan te melden eardat it profyl te besjen is."
+
+#: src/components/dms/BlockedByListDialog.tsx:34
+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 "Dizze account wurdt blokkearre troch ien of mear fan dyn moderaasjelisten. Om dizze account net mear te blokkearjen: gean streekrjocht nei de listen en smyt dizze brûker fuort."
+
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr "Dizze aksje kin op elk momint ûngedien makke wurde."
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:271
+msgid "This appeal will be sent to <0>{sourceName}0>."
+msgstr "Dit beswier wurdt ferstjoerd nei <0>{sourceName}0>."
+
+#: src/screens/Messages/components/ChatDisabled.tsx:104
+msgid "This appeal will be sent to Bluesky's moderation service."
+msgstr "Dit beswier wurdt trochstjoerd nei de moderaasjetsjinst fan Bluesky."
+
+#: src/screens/Messages/components/MessageListError.tsx:18
+msgid "This chat was disconnected"
+msgstr "Dizze chat is ferbrutsen"
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:19
+msgid "This content has been hidden by the moderators."
+msgstr "Dizze ynhâld is ferstoppe troch de moderators."
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:24
+msgid "This content has received a general warning from moderators."
+msgstr "Dizze ynhâld hat in algemiene warskôging krigen fan moderators."
+
+#: src/components/dialogs/EmbedConsent.tsx:63
+msgid "This content is hosted by {0}. Do you want to enable external media?"
+msgstr "Dizze ynhâld wurdt host troch {0}. Wolsto eksterne media ynskeakelje?"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/lib/moderation/useModerationCauseDescription.ts:84
+msgid "This content is not available because one of the users involved has blocked the other."
+msgstr "Dizze ynhâld is net beskikber, omdat ien fan de belutsene brûkers de oare blokkearre hat."
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:114
+msgid "This content is not viewable without a Bluesky account."
+msgstr "Dizze ynhâld is net sichtber sûnder in Bluesky-account."
+
+#: src/screens/Messages/components/ChatListItem.tsx:362
+msgid "This conversation is with a deleted or a deactivated account. Press for options"
+msgstr "Dit petear is mei in fuortsmiten of de-aktivearre account. Druk foar opsjes"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr "Dit e-maialdres is al mei dyn account assosjearre."
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:96
+msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
+msgstr "Dizze funksje is yn bèta. Do kinst mear lêze oer repository-eksporten yn <0>dit blogberjocht0>."
+
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr "Dizze funksje is net beskikber by gebrûk fan in app-wachtwurd. Meld dy oan mei dyn haadwachtwurd."
+
+#: src/lib/strings/errors.ts:21
+msgid "This feature is not available while using an App Password. Please sign in with your main password."
+msgstr "Dizze funksje is net beskikber by gebrûk fan in app-wachtwurd. Meld dy oan mei dyn haadwachtwurd."
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:120
+msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later."
+msgstr "Dizze feed ûntvangt op dit stuit in protte ferkear en is tydlik net beskikber. Probearje it letter opnij."
+
+#: src/view/com/posts/CustomFeedEmptyState.tsx:38
+msgid "This feed is empty! You may need to follow more users or tune your language settings."
+msgstr "Dizze feed is leech! Mooglik moatsto mear brûkers folgje of dyn taalynstellingen oanpasse."
+
+#: src/components/StarterPack/Main/PostsList.tsx:36
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
+msgid "This feed is empty."
+msgstr "Dizze feed is leech."
+
+#: src/view/com/posts/FeedShutdownMsg.tsx:99
+msgid "This feed is no longer online. We are showing <0>Discover0> instead."
+msgstr "Dizze feed is net langer online. Wy toane <0>Untdekke0> yn stee fan dizze feed."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
+msgid "This handle is reserved. Please try a different one."
+msgstr "Dizze handle is reservearre. Probearje in oare."
+
+#: src/components/dialogs/BirthDateSettings.tsx:41
+msgid "This information is not shared with other users."
+msgstr "Dizze ynformaasje wurdt net dield mei oare brûkers."
+
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr "Dit is net in falide keppeling"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:168
+msgid "This label was applied by the author."
+msgstr "Dit label is oanbrocht troch de auteur."
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:165
+msgid "This label was applied by you."
+msgstr "Dit label is oanbrocht troch dy."
+
+#: src/screens/Profile/Sections/Labels.tsx:185
+msgid "This labeler hasn't declared what labels it publishes, and may not be active."
+msgstr "Dizze labeler hat net oanjûn hokker labels hy publisearret en is mooglik net aktyf."
+
+#: src/view/com/modals/LinkWarning.tsx:72
+msgid "This link is taking you to the following website:"
+msgstr "Dizze keppeling bringt dy nei de folgjende website:"
+
+#: src/screens/List/ListHiddenScreen.tsx:151
+msgid "This list – created by <0>{0}0> – contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr "Dizze list – makke troch <0>{0}0> – befettet mooglik skeiningen fan Bluesky-mienskipsrjochtlinen yn de namme of omskriuwing."
+
+#: src/screens/List/ListHiddenScreen.tsx:146
+msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr "Dizze list – makke troch dy – befettet mooglik skeiningen fan Bluesky-mienskipsrjochtlinen yn de namme of omskriuwing."
+
+#: src/view/screens/ProfileList.tsx:962
+msgid "This list is empty."
+msgstr "Dizze list is leech."
+
+#: src/screens/Profile/ErrorState.tsx:40
+msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
+msgstr "Dizze moderaasjetsjinst is net beskikber. Sjoch hjirûnder foar mear details. Nim kontakt mei ús op as dit probleem bliuwt."
+
+#: src/view/com/post-thread/PostThreadItem.tsx:956
+msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
+msgstr "Dit berjocht beweart makke te wêzen op <0>{0}0>, mar waard foar it earst sjoen troch Bluesky op <1>{1}1>."
+
+#: src/components/WhoCanReply.tsx:217
+msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
+msgstr "Der sit in ûnbekend type reaksjebeheining op dit berjocht. Mooglik is dyn app ferâldere."
+
+#: src/view/com/post-thread/PostThreadItem.tsx:163
+msgid "This post has been deleted."
+msgstr "Dit berjocht is fuortsmiten."
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
+msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
+msgstr "Dit bericht is allinnich sichtber foar oanmelde brûkers. It is net sichtber foar minsken dy’t net oanmeld binne."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr "Dit berjocht wurdt ferstoppe foar feeds en petearen. Dit kin net ûngedien makke wurde."
+
+#: src/view/com/composer/Composer.tsx:424
+msgid "This post's author has disabled quote posts."
+msgstr "De auteur fan dit berjocht hat it pleatsen fan sitaten útskeakele."
+
+#: src/view/com/profile/ProfileMenu.tsx:482
+msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
+msgstr "Dit profyl is allinnich sichtber foar oanmelde brûkers. It is net sichtber foar minsken dy’t net oanmeld binne."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr "Dizze reaksje wurdt sortearre yn in ferstoppe seksje ûnderoan it petear en negearret meldingen foar folgjende reaksjes – sawol foar dy as foar oaren."
+
+#: src/screens/Signup/StepInfo/Policies.tsx:37
+msgid "This service has not provided terms of service or a privacy policy."
+msgstr "Dizze tsjinst hat gjin tsjinstbetingsten of in privacybelied."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
+msgid "This should create a domain record at:"
+msgstr "Dit soe in domeinrecord oanmeitsje moatte op:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr "Dizze brûker hat gjin werjeftenamme en kin dertroch net ferifiearre wurde."
+
+#: src/view/com/profile/ProfileFollowers.tsx:95
+msgid "This user doesn't have any followers."
+msgstr "Dizze brûker hat gjin folgers."
+
+#: src/components/dms/MessagesListBlockedFooter.tsx:68
+msgid "This user has blocked you"
+msgstr "Dizze brûker hat dy blokkearre"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:79
+#: src/lib/moderation/useModerationCauseDescription.ts:75
+msgid "This user has blocked you. You cannot view their content."
+msgstr "Dizze brûker hat dy blokkearre. Do kinst de ynhâld net besjen."
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:30
+msgid "This user has requested that their content only be shown to signed-in users."
+msgstr "Dizze brûker hat in fersyk yntsjinne om de ynhâld allinnich te toanen oan oanmelde brûkers."
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:59
+msgid "This user is included in the <0>{0}0> list which you have blocked."
+msgstr "Dizze brûker stiet yn de list <0>{0}0> dy’tsto blokkearre hast."
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:91
+msgid "This user is included in the <0>{0}0> list which you have muted."
+msgstr "Dizze brûker stiet yn de list <0>{0}0> dy’tsto negearre hast."
+
+#: src/components/NewskieDialog.tsx:65
+msgid "This user is new here. Press for more info about when they joined."
+msgstr "Dizze brûker is hjir nij. Druk foar mear ynfo oer wannear’t se lid wurden binne."
+
+#: src/view/com/profile/ProfileFollows.tsx:95
+msgid "This user isn't following anyone."
+msgstr "Dizze brûker folget net ien."
+
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
+msgstr "Hjirmei wurdt ‘{0}’ út dyn negearre wurden fuortsmiten. Do kinst it letter altyd wer tafoegje."
+
+#: src/screens/Settings/Settings.tsx:537
+msgid "This will remove @{0} from the quick access list."
+msgstr "Hjirmei wurdt @{0} fuortsmiten út de flugge tagongslist."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr "Hjirmei wurdt dyn berjocht foar alle brûkers út it sitaat fuortsmiten en ferfongen troch in plakhâlder."
+
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
+msgid "Thread options"
+msgstr "Konversaasje-opsjes"
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
+msgid "Thread preferences"
+msgstr "Petearfoarkarren"
+
+#: src/screens/Settings/ThreadPreferences.tsx:45
+msgid "Thread Preferences"
+msgstr "Petearfoarkarren"
+
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
+msgid "Threaded"
+msgstr "As petear"
+
+#: src/screens/Settings/ThreadPreferences.tsx:142
+msgid "Threaded mode"
+msgstr "Petearmodus"
+
+#: src/Navigation.tsx:341
+msgid "Threads Preferences"
+msgstr "Petearfoarkarren"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34
+msgid "Time remaining: {0, plural, one {# second} other {# seconds}}"
+msgstr "Restearjende tiid: {0, plural, one {# sekonde} other {# sekonden}}"
+
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:99
+msgid "To disable the email 2FA method, please verify your access to the email address."
+msgstr "Do moatst dyn tagong ta it e-mailadres ferifiearje om de 2FA-metoade foar e-mail út te skeakeljen."
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr "Do moatst dyn tagong ta <0>{0}0> ferifiearje om de 2FA-metoade foar e-mail út te skeakeljen"
+
+#: src/components/dms/ReportConversationPrompt.tsx:19
+msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
+msgstr "Om in petear te melden meldsto ien fan de berjochten fia it petearskerm. Sa kinne ús moderators de kontekst fan dyn probleem begripe."
+
+#: src/components/ReportDialog/SelectLabelerView.tsx:31
+msgid "To whom would you like to send this report?"
+msgstr "Oan wa wolsto dizze melding stjoere?"
+
+#: src/components/dms/DateDivider.tsx:44
+msgid "Today"
+msgstr "Hjoed"
+
+#: src/view/com/util/forms/DropdownButton.tsx:258
+msgid "Toggle dropdown"
+msgstr "Menu toane/ferstopje"
+
+#: src/screens/Moderation/index.tsx:354
+msgid "Toggle to enable or disable adult content"
+msgstr "Wikselje om ynhâld foar folwoeksenen yn of út te skeakeljen"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158
+msgid "Toggles the sound"
+msgstr "Set it lûd oan of út"
+
+#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
+#: src/screens/Topic.tsx:71
+msgid "Top"
+msgstr "Populêr"
+
+#: src/Navigation.tsx:423
+msgid "Topic"
+msgstr "Underwerp"
+
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
+msgid "Translate"
+msgstr "Oersette"
+
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
+msgid "Trending"
+msgstr "Populêr"
+
+#: src/components/interstitials/TrendingVideos.tsx:88
+msgid "Trending Videos"
+msgstr "Populêre fideo’s"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr "Fertrouwen ûntstiet út relaasjes, mienskippen en dielde kontekst, dus wy starte ek mei <0>fertroude ferifiearders0>: organisaasjes dy’t daliks ferifikaasje útjaan kinne."
+
+#: src/view/com/util/error/ErrorScreen.tsx:103
+msgctxt "action"
+msgid "Try again"
+msgstr "Probearje opnij"
+
+#: src/screens/Onboarding/state.ts:115
+msgid "TV"
+msgstr "TV"
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56
+msgid "Two-factor authentication (2FA)"
+msgstr "Twafaktorautentikaasje (2FA)"
+
+#: src/screens/Signup/StepHandle.tsx:126
+msgid "Type your desired username"
+msgstr "Fier dyn winske brûkersnamme yn"
+
+#: src/screens/Messages/components/MessageInput.tsx:153
+msgid "Type your message here"
+msgstr "Typ hjir dyn priveebericht"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
+msgid "Type:"
+msgstr "Type:"
+
+#: src/lib/hooks/useCleanError.ts:27
+#: src/lib/strings/errors.ts:11
+msgid "Unable to connect. Please check your internet connection and try again."
+msgstr "Kin gjin ferbinding meitsje. Kontrolearje dyn ynternetferbining en probearje opnij."
+
+#: src/screens/Login/ForgotPasswordForm.tsx:68
+#: src/screens/Login/index.tsx:79
+#: src/screens/Login/LoginForm.tsx:169
+#: src/screens/Login/SetNewPasswordForm.tsx:81
+#: src/screens/Signup/index.tsx:72
+#: src/view/com/modals/ChangePassword.tsx:71
+#: src/view/com/modals/ChangePassword.tsx:117
+msgid "Unable to contact your service. Please check your Internet connection."
+msgstr "Kin gjin kontakt meitsje mei dyn tsjinst. Kontrolearje dyn ynternetferbining."
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
+msgid "Unable to delete"
+msgstr "Kin net fuortsmite"
+
+#: src/components/dms/MessagesListBlockedFooter.tsx:97
+#: src/components/dms/MessagesListBlockedFooter.tsx:104
+#: src/components/dms/MessagesListBlockedFooter.tsx:112
+#: src/components/dms/MessagesListBlockedFooter.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
+msgid "Unblock"
+msgstr "Deblokkearje"
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
+msgctxt "action"
+msgid "Unblock"
+msgstr "Deblokkearje"
+
+#: src/components/dms/ConvoMenu.tsx:247
+#: src/components/dms/ConvoMenu.tsx:250
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
+msgid "Unblock account"
+msgstr "Account deblokkearje"
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
+msgid "Unblock Account?"
+msgstr "Account deblokkearje?"
+
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr "List deblokkearje"
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
+msgid "Undo repost"
+msgstr "Opnij pleatsen ûngedien meitsje"
+
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
+msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
+msgstr "Opnij pleatsen ûngedien meitsje ({0, plural, one {# opnijpleatsing} other {# opnijpleatsingen}})"
+
+#: src/view/com/profile/FollowButton.tsx:63
+msgctxt "action"
+msgid "Unfollow"
+msgstr "Untfolgje"
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
+msgid "Unfollow {0}"
+msgstr "{0} ûntfolgje"
+
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
+msgid "Unfollow account"
+msgstr "Account ûntfolgje"
+
+#: src/screens/VideoFeed/index.tsx:831
+msgid "Unfollows the user"
+msgstr "Untfolget de brûker"
+
+#: src/components/moderation/ReportDialog/index.tsx:369
+msgid "Unfortunately, none of your subscribed labelers supports this report type."
+msgstr "Spitigernôch stipet gjin fan dyn abonnearre labelers dit rapporttype."
+
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr "Unbekende ferifiearder"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
+msgid "Unlike"
+msgstr "Mei ’k net mear oer"
+
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
+msgid "Unlike ({0, plural, one {# like} other {# likes}})"
+msgstr "Mei ik net mear oer ({0, plural, one {# mei-’k-net-mear-oer} other {# mei-’k-net-mear-oers}})"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94
+msgctxt "video"
+msgid "Unmute"
+msgstr "Net mear negearje"
+
+#: src/view/screens/ProfileList.tsx:730
+msgid "Unmute"
+msgstr "Net mear negearje"
+
+#: src/components/RichTextTag.tsx:140
+#: src/components/RichTextTag.tsx:153
+msgid "Unmute {tag}"
+msgstr "{tag} net mear negearje"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
+msgid "Unmute account"
+msgstr "Account net mear negearje"
+
+#: src/components/dms/ConvoMenu.tsx:236
+msgid "Unmute conversation"
+msgstr "Petear net mear negearje"
+
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr "List net mear negearje"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
+msgid "Unmute thread"
+msgstr "Petear net mear negearje"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318
+msgid "Unmute video"
+msgstr "Fideo net mear negearje"
+
+#: src/view/screens/ProfileList.tsx:714
+msgid "Unpin"
+msgstr "Losmeitsje"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
+msgid "Unpin feed"
+msgstr "Feed losmeitsje"
+
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr "Feed losmeitsje"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+msgid "Unpin from home"
+msgstr "Fan startside losmeitsje"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
+msgid "Unpin from profile"
+msgstr "Fan profyl losmeitsje"
+
+#: src/view/screens/ProfileList.tsx:585
+msgid "Unpin moderation list"
+msgstr "Moderaasjelist losmeitsje"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
+msgid "Unpinned {0} from Home"
+msgstr "{0} fan startside losmakke"
+
+#: src/view/screens/ProfileList.tsx:362
+msgid "Unpinned from your feeds"
+msgstr "Fan dyn feeds losmakke"
+
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr "E-mailomtinken aktyf meitsje"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
+msgid "Unsubscribe"
+msgstr "Ofmelde"
+
+#: src/screens/List/ListHiddenScreen.tsx:198
+#: src/screens/List/ListHiddenScreen.tsx:208
+msgid "Unsubscribe from list"
+msgstr "Fan list ôfmelde"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
+msgid "Unsubscribe from this labeler"
+msgstr "Fan dizze labeler ôfmelde"
+
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr "Fan lis ôfmeld"
+
+#: src/view/com/composer/Composer.tsx:769
+msgid "Unsupported video type"
+msgstr "Net stipe type fideo"
+
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
+msgid "Unsupported video type: {0}"
+msgstr "Net stipe type fideo: {0}"
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:77
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:90
+#: src/lib/moderation/useReportOptions.ts:77
+#: src/lib/moderation/useReportOptions.ts:90
+msgid "Unwanted Sexual Content"
+msgstr "Net-winske seksuele ynhâld"
+
+#: src/screens/Settings/components/OTAInfo.tsx:58
+#: src/screens/Settings/components/OTAInfo.tsx:74
+msgid "Update"
+msgstr "Bywurkje"
+
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
+msgid "Update <0>{displayName}0> in Lists"
+msgstr "<0>{displayName}0> yn listen bywurkje"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr "E-mailadres bywurkje"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
+msgid "Update to {domain}"
+msgstr "Bywurkje nei {domain}"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
+msgstr "Dyn e-mailadres bywurkje"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
+msgctxt "toast"
+msgid "Updating quote attachment failed"
+msgstr "Bywurkjen fan sitaatbylage is mislearre"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
+msgctxt "toast"
+msgid "Updating reply visibility failed"
+msgstr "Bywurkjen fan sichtberheid fan reaksje is mislearre"
+
+#: src/screens/Login/SetNewPasswordForm.tsx:190
+msgid "Updating..."
+msgstr "Bywurkje…"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:288
+msgid "Upload a photo instead"
+msgstr "Laad yn stee dêrfan in foto op"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
+msgid "Upload a text file to:"
+msgstr "Laad in tekstbestân op nei:"
+
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
+msgid "Upload from Camera"
+msgstr "Fan kamera ôf oplade"
+
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
+msgid "Upload from Files"
+msgstr "Fan bestannen út oplade"
+
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
+msgid "Upload from Library"
+msgstr "Fan bibloteek út oplade"
+
+#: src/lib/api/index.ts:302
+msgid "Uploading images..."
+msgstr "Ofbyldingen oplade…"
+
+#: src/lib/api/index.ts:356
+#: src/lib/api/index.ts:380
+msgid "Uploading link thumbnail..."
+msgstr "Keppelingminiatuer oplade…"
+
+#: src/view/com/composer/Composer.tsx:1672
+msgid "Uploading video..."
+msgstr "Fideo oplade…"
+
+#: src/screens/Settings/AppPasswords.tsx:67
+msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
+msgstr "Brûk app-wachtwurden om oan te melden by oare Bluesky-clients sûnder datsto folsleine tagong ta dyn account of wachtwurd hoechst te jaan."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
+msgid "Use default provider"
+msgstr "Standert provider brûke"
+
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
+msgid "Use in-app browser"
+msgstr "Yn-app-browser brûke"
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
+msgid "Use in-app browser to open links"
+msgstr "Yn-app-browser brûke om keppelingen te iepenjen"
+
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
+msgid "Use my default browser"
+msgstr "Myn standert browser brûke"
+
+#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53
+msgid "Use recommended"
+msgstr "Oanrekommandearre brûke"
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190
+msgid "Use this to sign in to the other app along with your handle."
+msgstr "Brûk dit om dy tegearre mei dyn handle oan te melden by de oare app."
+
+#: src/view/com/modals/InviteCodes.tsx:201
+msgid "Used by:"
+msgstr "Brûkt troch:"
+
+#: src/components/dms/ReportDialog.tsx:324
+msgctxt "toast"
+msgid "User blocked"
+msgstr "Brûker blokkearre"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:71
+#: src/lib/moderation/useModerationCauseDescription.ts:63
+msgid "User Blocked"
+msgstr "Brûker blokkearre"
+
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+msgid "User Blocked by \"{0}\""
+msgstr "Brûker blokkearre troch ‘{0}’"
+
+#: src/components/dms/BlockedByListDialog.tsx:27
+msgid "User blocked by list"
+msgstr "Brûker blokkearre troch list"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:57
+msgid "User Blocked by List"
+msgstr "Brûker blokkearre troch list"
+
+#: src/lib/moderation/useModerationCauseDescription.ts:73
+msgid "User Blocking You"
+msgstr "Brûker blokkearre troch dy"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:77
+msgid "User Blocks You"
+msgstr "Brûker blokkearret dy"
+
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+msgid "User list by {0}"
+msgstr "Brûkerslist troch {0}"
+
+#: src/view/com/modals/UserAddRemoveLists.tsx:212
+msgid "User list by you"
+msgstr "Brûkerslist troch dy"
+
+#: src/view/com/modals/CreateOrEditList.tsx:174
+msgctxt "toast"
+msgid "User list created"
+msgstr "Brûkerslist oanmakke"
+
+#: src/view/com/modals/CreateOrEditList.tsx:160
+msgctxt "toast"
+msgid "User list updated"
+msgstr "Brûkerslist bywurke"
+
+#: src/screens/Login/LoginForm.tsx:201
+msgid "Username or email address"
+msgstr "Brûkersnamme of e-mailadres"
+
+#: src/components/WhoCanReply.tsx:280
+msgid "users followed by <0>@{0}0>"
+msgstr "brûkers folge troch <0>@{0}0>"
+
+#: src/components/WhoCanReply.tsx:267
+msgid "users following <0>@{0}0>"
+msgstr "brûkers dy’t <0>@{0}0> folgje"
+
+#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:95
+msgid "Users I follow"
+msgstr "Brûkers dy’t ik folgje"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456
+msgid "Users in \"{0}\""
+msgstr "Brûkers yn ‘{0}’"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
+msgid "Users you follow"
+msgstr "Brûkers dy’tsto folgest"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
+msgid "Value:"
+msgstr "Wearde:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr "Ferifikaasje mislearre, probearje it opnij."
+
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr "Ferifikaasjeynstellingen"
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr "Ferifikaasjeynstellingen"
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr "Ferifikaasjes op Bluesky wurkje oars as op oare platfoarms. <0>Mear ynfo hjir.0>"
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr "Ferifiearre troch:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr "Account ferifiearje"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr "Koade ferifiearje"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
+msgid "Verify DNS Record"
+msgstr "DNS-record ferifiearje"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr "E-mailadres ferifiearje"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr "E-mailkoade ferifiearje"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
+#: src/components/intents/VerifyEmailIntentDialog.tsx:67
+msgid "Verify email dialog"
+msgstr "Dialoochfinster E-mailadres ferifiearje"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
+msgid "Verify Text File"
+msgstr "Tekstbestân ferifiearje"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr "Dizze account ferifiearje?"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
+msgid "Verify your email"
+msgstr "Ferifiearje dyn e-mailadres"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
+msgid "Verify Your Email"
+msgstr "Ferifiearje dyn e-mailadres"
+
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
+msgid "Version {appVersion}"
+msgstr "Ferzje {appVersion}"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134
+msgid "Video"
+msgstr "Fideo"
+
+#: src/view/com/composer/state/video.ts:358
+msgid "Video failed to process"
+msgstr "Fideo kin net ferwurke wurde"
+
+#: src/Navigation.tsx:474
+msgid "Video Feed"
+msgstr "Fideofeed"
+
+#: src/components/VideoPostCard.tsx:122
+msgid "Video from {0}: {text}"
+msgstr "Fideo fan {0}: {text}"
+
+#: src/screens/Onboarding/index.tsx:39
+#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
+msgid "Video Games"
+msgstr "Fideospultsjes"
+
+#: src/screens/VideoFeed/index.tsx:1069
+msgid "Video is paused"
+msgstr "Fideo is pauzearre"
+
+#: src/screens/VideoFeed/index.tsx:1069
+msgid "Video is playing"
+msgstr "Fideo spilet"
+
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191
+msgid "Video not found."
+msgstr "Fideo net fûn."
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
+msgid "Video settings"
+msgstr "Fideo-ynstellingen"
+
+#: src/view/com/composer/Composer.tsx:1682
+msgid "Video uploaded"
+msgstr "Fideo opladen"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83
+msgid "Video: {0}"
+msgstr "Fideo: {0}"
+
+#: src/view/screens/Profile.tsx:228
+msgid "Videos"
+msgstr "Fideo’s"
+
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
+msgid "Videos must be less than 3 minutes long"
+msgstr "Fideo’s moatte minder as 3 minuten lang wêze"
+
+#: src/screens/Profile/Header/Shell.tsx:211
+msgid "View {0}'s avatar"
+msgstr "Avatar fan {0} besjen"
+
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
+msgid "View {0}'s profile"
+msgstr "Profyl fan {0} besjen"
+
+#: src/components/dms/MessagesListHeader.tsx:181
+msgid "View {displayName}'s profile"
+msgstr "Profyl fan {displayName} besjen"
+
+#: src/components/ProfileHoverCard/index.web.tsx:478
+msgid "View blocked user's profile"
+msgstr "Profyl fan blokkearre brûker besjen"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:100
+msgid "View blogpost for more details"
+msgstr "Blogartikel foar mear details besjen"
+
+#: src/view/screens/Log.tsx:57
+msgid "View debug entry"
+msgstr "Debug-item besjen"
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:137
+#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
+msgid "View details"
+msgstr "Details besjen"
+
+#: src/components/moderation/ReportDialog/index.tsx:271
+#: src/components/ReportDialog/SelectReportOptionView.tsx:132
+msgid "View details for reporting a copyright violation"
+msgstr "Details foar melden fan in auteursrjochtskeining besjen"
+
+#: src/view/com/posts/ViewFullThread.tsx:59
+msgid "View full thread"
+msgstr "Folslein petear besjen"
+
+#: src/components/moderation/LabelsOnMe.tsx:46
+msgid "View information about these labels"
+msgstr "Ynformaasje oer dizze labels besjen"
+
+#: src/components/interstitials/TrendingVideos.tsx:191
+#: src/components/interstitials/TrendingVideos.tsx:210
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
+msgid "View more"
+msgstr "Mear besjen"
+
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
+#: src/view/com/posts/PostFeedErrorMessage.tsx:175
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
+msgid "View profile"
+msgstr "Profyl besjen"
+
+#: src/view/com/profile/ProfileSubpageHeader.tsx:119
+msgid "View the avatar"
+msgstr "Avatar besjen"
+
+#: src/components/LabelingServiceCard/index.tsx:164
+msgid "View the labeling service provided by @{0}"
+msgstr "De labeltsjinst fan @{0} besjen"
+
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr "Ferifikaasjes fan dizze account besjen"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
+msgid "View users who like this feed"
+msgstr "Brûkers dy’t oer dizze feed meie besjen"
+
+#: src/components/VideoPostCard.tsx:398
+msgid "View video"
+msgstr "Fideo besjen"
+
+#: src/screens/Moderation/index.tsx:268
+msgid "View your blocked accounts"
+msgstr "Dyn blokkearre accounts besjen"
+
+#: src/screens/Moderation/index.tsx:208
+msgid "View your default post interaction settings"
+msgstr "Dyn standert ynstellingen foar ynteraksje-berjochten besjen"
+
+#: src/view/com/home/HomeHeaderLayout.web.tsx:56
+#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77
+msgid "View your feeds and explore more"
+msgstr "Dyn feeds besjen en ûntdek mear"
+
+#: src/screens/Moderation/index.tsx:238
+msgid "View your moderation lists"
+msgstr "Dyn moderaasjelisten besjen"
+
+#: src/screens/Moderation/index.tsx:253
+msgid "View your muted accounts"
+msgstr "Dyn negearre accounts besjen"
+
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr "Dyn ferifikaasjes besjen"
+
+#: src/view/com/util/images/AutoSizedImage.tsx:199
+#: src/view/com/util/images/AutoSizedImage.tsx:221
+msgid "Views full image"
+msgstr "Toant folsleine ôfbylding"
+
+#: src/components/VideoPostCard.tsx:121
+msgid "Views video in immersive mode"
+msgstr "Toant fideo yn folslein skerm"
+
+#: src/view/com/modals/LinkWarning.tsx:89
+#: src/view/com/modals/LinkWarning.tsx:95
+msgid "Visit Site"
+msgstr "Website besjen"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80
+msgid "Volume"
+msgstr "Folume"
+
+#: src/components/moderation/LabelPreference.tsx:136
+#: src/lib/moderation/useLabelBehaviorDescription.ts:17
+#: src/lib/moderation/useLabelBehaviorDescription.ts:22
+msgid "Warn"
+msgstr "Warskôgje"
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:48
+msgid "Warn content"
+msgstr "Warskôgje oer ynhâld"
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:46
+msgid "Warn content and filter from feeds"
+msgstr "Warskôgje oer ynhâld en filterje út feeds"
+
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr "No besjen"
+
+#: src/screens/Hashtag.tsx:205
+msgid "We couldn't find any results for that hashtag."
+msgstr "Wy koene gjin resultaten fine foar dy hashtag."
+
+#: src/screens/Topic.tsx:178
+msgid "We couldn't find any results for that topic."
+msgstr "Wy koene gjin resultaten fine foar dit ûnderwerp."
+
+#: src/screens/Messages/Conversation.tsx:130
+msgid "We couldn't load this conversation"
+msgstr "Wy koene dit petear net lade"
+
+#: src/screens/SignupQueued.tsx:160
+msgid "We estimate {estimatedTime} until your account is ready."
+msgstr "Wy skatte {estimatedTime} oant dat dyn account klear is."
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:107
+msgid "We have sent another verification email to <0>{0}0>."
+msgstr "Wy hawwe in nije ferifikaasje-e-mailberjocht ferstjoerd nei <0>{0}0>."
+
+#: src/screens/Onboarding/StepFinished.tsx:256
+msgid "We hope you have a wonderful time. Remember, Bluesky is:"
+msgstr "Wy hoopje datsto in geweldige tiid hast. Ferjit net, Bluesky is:"
+
+#: src/view/com/posts/DiscoverFallbackHeader.tsx:29
+msgid "We ran out of posts from your follows. Here's the latest from <0/>."
+msgstr "Wy hawwe gjin berjochten mear fan folge accounts. Hjir is it lêste nijs fan <0/>."
+
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr "Wy rekommandearje oan om op syn minst twa ynteressen te selektearjen."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Wy hawwe in e-mailberjocht nei <0>{0}0> mei in keppeling ferstjoerd. Klik derop om it e-mailferifikaasjeproses te foltôgjen."
+
+#: src/view/com/composer/state/video.ts:417
+msgid "We were unable to determine if you are allowed to upload videos. Please try again."
+msgstr "Wy hawwe net bepale kinnen oftsto fideo’s oplade meist. Probearj it opnij."
+
+#: src/components/dialogs/BirthDateSettings.tsx:52
+msgid "We were unable to load your birth date preferences. Please try again."
+msgstr "Wy kinne dyn bertedatumfoarkarren net lade. Probearje it opnij."
+
+#: src/screens/Moderation/index.tsx:428
+msgid "We were unable to load your configured labelers at this time."
+msgstr "Wy koene dyn konfigurearre labelers op dit stuit net lade."
+
+#: src/screens/Onboarding/StepInterests/index.tsx:129
+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 "Wy koene gjin ferbining meitsje. Probearje it opnij om troch te gean mei it ynstellen fan dyn account. As it mislearren bliuwt, kinsto dizze stappen oerslaan."
+
+#: src/screens/SignupQueued.tsx:164
+msgid "We will let you know when your account is ready."
+msgstr "Wy litte dy witte wannear’t dyn account klear is."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Wy stjoere in e-mailberjocht nei <0>{0}0> mei in keppeling. Klik derop om it e-mailferifikaasjeproses te foltôgjen."
+
+#: src/screens/Onboarding/StepInterests/index.tsx:134
+msgid "We'll use this to help customize your experience."
+msgstr "Wy brûke dizze ynformaasje om dyn ûnderfining te personalisearjen."
+
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
+msgid "We're having network issues, try again"
+msgstr "Der binne netwurkproblemen, probearje it opnij"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr "Wy yntrodusearje in nije ferifikaasjelaach op Bluesky – in iefâldich-te-sjen finkje."
+
+#: src/screens/Signup/index.tsx:109
+msgid "We're so excited to have you join us!"
+msgstr "Wy binne och sa bliid datsto by ús bist!"
+
+#: src/view/screens/ProfileList.tsx:117
+msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
+msgstr "It spyt ús, mar wy kinne dizze list net ophelje. Nim kontakt op mei de opsteller fan de list, @{handleOrDid}, as dit barren bliuwt."
+
+#: 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 "It spyt ús, mar wy koene dyn negearre wurden op dit stuit net lade. Probearje it opnij."
+
+#: src/screens/Search/SearchResults.tsx:222
+msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
+msgstr "It spyt ús, mar dyn sykopdracht kin net foltôge wurde. Probearje it oer in pear minuten opnij."
+
+#: src/view/com/composer/Composer.tsx:421
+msgid "We're sorry! The post you are replying to has been deleted."
+msgstr "It spyt ús! It berjocht wêropsto reagearrest is fuortsmiten."
+
+#: src/components/Lists.tsx:194
+#: src/view/screens/NotFound.tsx:50
+msgid "We're sorry! We can't find the page you were looking for."
+msgstr "It spyt ús! Wy kinne de side dy’tsto sochtst net fine."
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
+msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
+msgstr "It spyt ús! Do kinst dy mar op tweintich labelers abonnearje en do hast dizze limyt berikt."
+
+#: src/screens/Deactivated.tsx:125
+msgid "Welcome back!"
+msgstr "Wolkom werom!"
+
+#: src/components/NewskieDialog.tsx:103
+msgid "Welcome, friend!"
+msgstr "Wolkom, freon!"
+
+#: src/screens/Onboarding/StepInterests/index.tsx:126
+msgid "What are your interests?"
+msgstr "Wat binne dyn ynteressen?"
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:41
+msgid "What do you want to call your starter pack?"
+msgstr "Hoe wolsto dyn startpakket neame?"
+
+#: src/view/com/auth/SplashScreen.tsx:38
+#: src/view/com/auth/SplashScreen.web.tsx:99
+#: src/view/com/composer/Composer.tsx:732
+msgid "What's up?"
+msgstr "Hoe giet it?"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr "Asto op in finkje tikkest, silsto sjen hokker organisaasjes ferliene ferifikaasje hawwe."
+
+#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
+msgid "Which languages are used in this post?"
+msgstr "Hokker talen wurde yn dit berjocht brûkt?"
+
+#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:79
+msgid "Which languages would you like to see in your algorithmic feeds?"
+msgstr "Hokker talen wolsto yn dyn algoritmyske feeds sjen?"
+
+#: src/components/WhoCanReply.tsx:183
+msgid "Who can interact with this post?"
+msgstr "Wa kin reagearje op dit berjocht?"
+
+#: src/components/WhoCanReply.tsx:91
+msgid "Who can reply"
+msgstr "Wa kin reagearje"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr "Wa kin ferifiearje?"
+
+#: src/screens/Home/NoFeedsPinned.tsx:79
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
+msgid "Whoops!"
+msgstr "Wûpsty!"
+
+#: src/components/interstitials/TrendingVideos.tsx:127
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
+msgid "Whoops! Trending videos failed to load."
+msgstr "Wûpsty! Populêre fideo’s laden mislearre."
+
+#: src/screens/Takendown.tsx:173
+msgid "Why are you appealing?"
+msgstr "Wêrom tsjinnesto beswier yn?"
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:42
+msgid "Why should this content be reviewed?"
+msgstr "Wêrom moat dizze ynhâld beoardiele wurde?"
+
+#: src/components/moderation/ReportDialog/copy.ts:32
+#: src/components/ReportDialog/SelectReportOptionView.tsx:55
+msgid "Why should this feed be reviewed?"
+msgstr "Wêrom moat dizze feed beoardiele wurde?"
+
+#: src/components/moderation/ReportDialog/copy.ts:26
+#: src/components/ReportDialog/SelectReportOptionView.tsx:52
+msgid "Why should this list be reviewed?"
+msgstr "Wêrom moat dizze list beoardiele wurde?"
+
+#: src/components/moderation/ReportDialog/copy.ts:44
+#: src/components/ReportDialog/SelectReportOptionView.tsx:61
+msgid "Why should this message be reviewed?"
+msgstr "Wêrom moat dit berjocht beoardiele wurde?"
+
+#: src/components/moderation/ReportDialog/copy.ts:20
+#: src/components/ReportDialog/SelectReportOptionView.tsx:49
+msgid "Why should this post be reviewed?"
+msgstr "Wêrom moat dit berjocht beoardiele wurde?"
+
+#: src/components/moderation/ReportDialog/copy.ts:38
+#: src/components/ReportDialog/SelectReportOptionView.tsx:58
+msgid "Why should this starter pack be reviewed?"
+msgstr "Wêrom moat dit startpakket beoardiele wurde?"
+
+#: src/components/moderation/ReportDialog/copy.ts:14
+#: src/components/ReportDialog/SelectReportOptionView.tsx:46
+msgid "Why should this user be reviewed?"
+msgstr "Wêrom moat dizze brûker beoardiele wurde?"
+
+#: src/screens/Messages/components/MessageInput.tsx:154
+#: src/screens/Messages/components/MessageInput.web.tsx:214
+msgid "Write a message"
+msgstr "Skriuw in berjocht"
+
+#: src/view/com/composer/Composer.tsx:823
+msgid "Write post"
+msgstr "Skriuw berjocht"
+
+#: src/view/com/composer/Composer.tsx:730
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
+msgid "Write your reply"
+msgstr "Skriuw dyn reaksje"
+
+#: src/screens/Onboarding/index.tsx:25
+#: src/screens/Onboarding/state.ts:116
+msgid "Writers"
+msgstr "Skriuwers"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+msgid "Wrong DID returned from server. Received: {0}"
+msgstr "Ferkearde DID weromstjoerd troch server. Untfongen: {0}"
+
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr "www.mylivestream.tv"
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
+msgid "Yes"
+msgstr "Ja"
+
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
+msgid "Yes, deactivate"
+msgstr "Ja, de-aktivearje"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
+msgid "Yes, delete this starter pack"
+msgstr "Ja, smyt dit startpakket fuort"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
+msgid "Yes, detach"
+msgstr "Ja, losmeitsje"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
+msgid "Yes, hide"
+msgstr "Ja, ferstopje"
+
+#: src/screens/Deactivated.tsx:147
+msgid "Yes, reactivate my account"
+msgstr "Ja, myn account opnij aktivearje"
+
+#: src/components/dms/DateDivider.tsx:46
+msgid "Yesterday"
+msgstr "Juster"
+
+#: src/components/NewskieDialog.tsx:43
+msgid "You"
+msgstr "Do"
+
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr "Do bist in fertroude ferifiearder"
+
+#: src/components/forms/HostingProvider.tsx:45
+msgid "You are creating an account on"
+msgstr "Do makkest in account op"
+
+#: src/screens/SignupQueued.tsx:157
+msgid "You are in line."
+msgstr "Do stiest yn de rige."
+
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr "Do bist live"
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr "Do bist net langer live"
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr "It is dy net tastien live te gean"
+
+#: src/view/com/composer/state/video.ts:410
+msgid "You are not allowed to upload videos."
+msgstr "Do meist gjin fideo’s oplade."
+
+#: src/view/com/profile/ProfileFollows.tsx:94
+msgid "You are not following anyone."
+msgstr "Do folgest net ien."
+
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr "Do bist no live!"
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr "Do bist ferfiearre"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr "Do bist ferifiearre. Do silst dyn ferifikaasjestatus ferlieze asto dyn werjeftenamme wizigest. <0>Mear ynfo.0>"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr "Do bist ferifiearre. Do silst dyn ferifikaasjestatus ferlieze asto dyn handle wizigest. <0>Mear ynfo.0>"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr "Do kinst dyn ynteressen altyd yn de ynstellingen ûnder ‘Ynhâld en media’ oanpasse."
+
+#: src/view/com/posts/FollowingEmptyState.tsx:63
+#: src/view/com/posts/FollowingEndOfFeed.tsx:64
+msgid "You can also discover new Custom Feeds to follow."
+msgstr "Do kinst ek nije personalisearre feeds ûntdekke om te folgjen."
+
+#: src/view/com/modals/DeleteAccount.tsx:198
+msgid "You can also temporarily deactivate your account instead, and reactivate it at any time."
+msgstr "Do kinst dyn account yn stee dêrfan ek tydlik de-aktivearje en op elk winske momint opnij aktivearje."
+
+#: src/screens/Messages/Settings.tsx:111
+msgid "You can continue ongoing conversations regardless of which setting you choose."
+msgstr "Do kinst rinnende petearen trochsette, nettsjinsteande hokker ynstelling do kiest."
+
+#: src/screens/Login/index.tsx:182
+#: src/screens/Login/PasswordUpdatedForm.tsx:26
+msgid "You can now sign in with your new password."
+msgstr "Do kinst dy no oanmelde mei dyn nije wachtwurd."
+
+#: src/screens/Deactivated.tsx:133
+msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
+msgstr "Do kinst dyn account opnij aktivearje om troch gean te kinnen mei oanmelden. Dyn profyl en berjochten binne dan sichtber foar oare brûkers."
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81
+msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings0>."
+msgstr "Do kinst standert ynteraksjeynstellingen ynstelle yn <0>Ynstellingen → Moderaasje → Ynteraksje-ynstellingen0>."
+
+#: src/components/interstitials/Trending.tsx:130
+#: src/components/interstitials/TrendingVideos.tsx:139
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
+msgid "You can update this later from your settings."
+msgstr "Do kinst dit letter bywurkje fan dyn ynstellingen út."
+
+#: src/view/com/profile/ProfileFollowers.tsx:94
+msgid "You do not have any followers."
+msgstr "Do hast gjin folgers."
+
+#: src/screens/Profile/KnownFollowers.tsx:109
+msgid "You don't follow any users who follow @{name}."
+msgstr "Do folgest gjin brûkers dy’t @{name} folgje."
+
+#: src/screens/Messages/Inbox.tsx:220
+msgid "You don't have any chat requests at the moment."
+msgstr "Do hast op dit stuit gjin chatfersiken."
+
+#: src/view/com/modals/InviteCodes.tsx:67
+msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer."
+msgstr "Do hast noch gjin útnûgingskoaden! Wy stjoere dy der in pear asto wat langer op Bluesky bist."
+
+#: src/view/screens/SavedFeeds.tsx:137
+msgid "You don't have any pinned feeds."
+msgstr "Do hast gjin fêstsette feeds."
+
+#: src/view/screens/SavedFeeds.tsx:177
+msgid "You don't have any saved feeds."
+msgstr "Do hast gjin bewarre feeds."
+
+#: src/view/com/post-thread/PostThread.tsx:271
+msgid "You have blocked the author or you have been blocked by the author."
+msgstr "Do hast de auteur blokkearre of do bist troch de auteur blokkearre."
+
+#: src/components/dms/MessagesListBlockedFooter.tsx:66
+msgid "You have blocked this user"
+msgstr "Do hast dizze brûker blokkeerre"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:73
+#: src/lib/moderation/useModerationCauseDescription.ts:57
+#: src/lib/moderation/useModerationCauseDescription.ts:65
+msgid "You have blocked this user. You cannot view their content."
+msgstr "Do hast dizze brûker blokkeerre. Do kinst de ynhâld net besjen."
+
+#: src/screens/Login/SetNewPasswordForm.tsx:49
+#: src/screens/Login/SetNewPasswordForm.tsx:95
+#: src/view/com/modals/ChangePassword.tsx:87
+#: src/view/com/modals/ChangePassword.tsx:133
+msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
+msgstr "Do hat in ûnjildige koade ynfierd. Dizze soe der sa út sjen moatte XXXXX-XXXXX."
+
+#: src/lib/moderation/useModerationCauseDescription.ts:116
+msgid "You have hidden this post"
+msgstr "Do hast dit berjocht ferstoppe"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:111
+msgid "You have hidden this post."
+msgstr "Do hast dit berjocht ferstoppe."
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:104
+#: src/lib/moderation/useModerationCauseDescription.ts:99
+msgid "You have muted this account."
+msgstr "Do hast dizze account negearre."
+
+#: src/lib/moderation/useModerationCauseDescription.ts:93
+msgid "You have muted this user"
+msgstr "Do hast dizze brûker negearre"
+
+#: src/screens/Messages/ChatList.tsx:275
+msgid "You have no conversations yet. Start one!"
+msgstr "Do hast noch gjin petearen. Begjin der ien!"
+
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
+msgid "You have no feeds."
+msgstr "Do hast gjin feeds."
+
+#: src/view/com/lists/MyLists.tsx:81
+#: src/view/com/lists/ProfileLists.tsx:135
+msgid "You have no lists."
+msgstr "Do hast gjin listen."
+
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
+msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
+msgstr "Do hast noch gjin accounts blokkearre. Om in account te blokkearjen giesto nei it profyl en selektearresto ‘Account blokkearje’ yn it menu fan de account."
+
+#: src/view/screens/ModerationMutedAccounts.tsx:179
+msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
+msgstr "Do hast noch gjin accounts negearre. Om in account te negearjen giesto nei it profyl en selektearresto ‘Account negearje’ yn it menu fan de account."
+
+#: src/components/Lists.tsx:57
+msgid "You have reached the end"
+msgstr "Do bist oan it ein kaam"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr "Do hast dyn e-mailadres mei sukses ferifiearre. Do kinst dit dialoochfinster slute."
+
+#: src/lib/media/video/upload.shared.ts:56
+msgid "You have temporarily reached the limit for video uploads. Please try again later."
+msgstr "Do bist tydlik oer de limyt foar fideo-oplaads hinne. Probearje it letter opnij."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
+msgid "You haven't created a starter pack yet!"
+msgstr "Do hast noch gjin startpakket makke!"
+
+#: src/components/dialogs/MutedWords.tsx:398
+msgid "You haven't muted any words or tags yet"
+msgstr "Do negearrest noch gjin wurden of tags"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:127
+msgid "You hid this reply."
+msgstr "Do hast dizze reaksje ferstoppe."
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
+msgid "You may appeal non-self labels if you feel they were placed in error."
+msgstr "Do kinst beswier meitsje tsjin labels pleatst troch oaren asto fynst dat se ûnrjochtlik pleatst binne."
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:84
+msgid "You may appeal these labels if you feel they were placed in error."
+msgstr "Do kinst beswier meitsje tsjin labels asto fynst dat se ûnrjochtlik pleatst binne."
+
+#: src/screens/StarterPack/Wizard/State.tsx:76
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr "Do meist mar oant {STARTER_PACK_MAX_SIZE, plural, one {}other {{STARTER_PACK_MAX_SIZE} profilen}} tafoegje"
+
+#: src/screens/StarterPack/Wizard/State.tsx:95
+msgid "You may only add up to 3 feeds"
+msgstr "Do meist maksimaal 3 feeds tafoegje"
+
+#: src/lib/media/picker.shared.ts:25
+msgid "You may only select up to 4 images"
+msgstr "Do meist maksimaal 4 ôfbyldingen selektearje"
+
+#: src/screens/Signup/StepInfo/Policies.tsx:106
+msgid "You must be 13 years of age or older to create an account."
+msgstr "Do moatst op syn minst 13 jier âld wêze om in account oant te meitsjen."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+msgid "You must be following at least seven other people to generate a starter pack."
+msgstr "Do moatst op syn minst 7 oare persoanen folgje om in startpakket te generearjen."
+
+#: src/components/StarterPack/QrCodeDialog.tsx:61
+msgid "You must grant access to your photo library to save a QR code"
+msgstr "Do moatst tagong ta dyn fotobiblioteek jaan om in QR-koade te bewarjen"
+
+#: src/components/ReportDialog/SubmitView.tsx:211
+msgid "You must select at least one labeler for a report"
+msgstr "Do moatst minimaal ien labeler selektearje foar in melding"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr "Do moatst dyn e-mailadres ferifiearje eardatsto e-mail-2FA ynskeakelje kinst."
+
+#: src/screens/Deactivated.tsx:128
+msgid "You previously deactivated @{0}."
+msgstr "Do hast @{0} earder de-aktivearre."
+
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr "Do wolst de app wierskynlik no opnij starte."
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr "Do hast mei {0} reagearre"
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr "Do hast mei {0} op {1} reagearre"
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
+msgid "You will be signed out of all your accounts."
+msgstr "Do wurdst by al dyn accounts ôfmeld."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
+msgid "You will no longer receive notifications for this thread"
+msgstr "Do ûntfangst gjin meldingen mear foar dit petear"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
+msgid "You will now receive notifications for this thread"
+msgstr "Do ûntfangst no meldingen foar dit petear"
+
+#: src/screens/Login/SetNewPasswordForm.tsx:108
+msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
+msgstr "Do ûntfangst in e-mailberjocht mei in ‘opnij-ynstelle-koade’. Fier hjir dy koade yn en fier dernei dyn nije wachtwurd yn."
+
+#: src/screens/Messages/components/ChatListItem.tsx:154
+msgid "You: {0}"
+msgstr "Do: {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:183
+msgid "You: {defaultEmbeddedContentMessage}"
+msgstr "Do: {defaultEmbeddedContentMessage}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:176
+msgid "You: {short}"
+msgstr "Do: {short}"
+
+#: src/screens/Signup/index.tsx:125
+msgid "You'll follow the suggested users and feeds once you finish creating your account!"
+msgstr "Do folgest de foarstelde brûkers en feeds, sa gau asto klear bist mei it oanmeitsjen fan dyn account!"
+
+#: src/screens/Signup/index.tsx:130
+msgid "You'll follow the suggested users once you finish creating your account!"
+msgstr "Do folgest de foarstelde brûkers, sa gau asto klear bist mei it oanmeitsjen fan dyn account!"
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:236
+msgid "You'll follow these people and {0} others"
+msgstr "Do folgest dizze persoanen en {0} oaren"
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+msgid "You'll follow these people right away"
+msgstr "Do folgest dizze persoanen daliks"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
+msgid "You'll receive an email at <0>{0}0> to verify it's you."
+msgstr "Do ûntfangst in e-mailberjocht op <0>{0}0> om te ferifiearjen datsto it bist."
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:274
+msgid "You'll stay updated with these feeds"
+msgstr "Do bliuwst op de hichte fia dizze feeds"
+
+#: src/screens/SignupQueued.tsx:127
+msgid "You're in line"
+msgstr "Do stiest yn de rige"
+
+#: src/screens/Onboarding/StepFinished.tsx:253
+msgid "You're ready to go!"
+msgstr "Do bist de klear foar!"
+
+#: src/screens/Deactivated.tsx:89
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
+msgstr "Do bist oanmeld mei in app-wachtwurd. Meld dy oan mei dyn haadwachtwurd om troch te gean mei it de-aktivearjen fan dyn account."
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:108
+#: src/lib/moderation/useModerationCauseDescription.ts:108
+msgid "You've chosen to hide a word or tag within this post."
+msgstr "Do hast derfoar keazen om in wurd of tag yn dit berjocht te ferstopjen."
+
+#: src/state/shell/progress-guide.tsx:234
+msgid "You've found some people to follow"
+msgstr "Do hastt inkelde minsken fûn om te folgjen"
+
+#: src/view/com/posts/FollowingEndOfFeed.tsx:44
+msgid "You've reached the end of your feed! Find some more accounts to follow."
+msgstr "Do hast it ein fan dyn feed berikt! Sykje noch mear accounts om te folgjen."
+
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr "Do bist oer it maksimaal tal tasteane fersiken. Probearje it letter nochris."
+
+#: src/view/com/composer/state/video.ts:421
+msgid "You've reached your daily limit for video uploads (too many bytes)"
+msgstr "Do bist oer dyn deistige limyt foar fideo-oplaads (te folle bytes)"
+
+#: src/view/com/composer/state/video.ts:425
+msgid "You've reached your daily limit for video uploads (too many videos)"
+msgstr "Do bist oer dyn deistige limyt foar fideo-oplaads (te folle fideo’s)"
+
+#: src/screens/VideoFeed/index.tsx:1120
+msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
+msgstr "Do hast gjin fideo’s mear om te besjen. Miskien is it in goed momint om skoft te hâlden?"
+
+#: src/screens/Signup/index.tsx:158
+msgid "Your account"
+msgstr "Dyn account"
+
+#: src/view/com/modals/DeleteAccount.tsx:84
+msgid "Your account has been deleted"
+msgstr "Dyn account is fuortsmiten"
+
+#: src/screens/Takendown.tsx:146
+msgid "Your account has been suspended"
+msgstr "Dyn account is opskoarten"
+
+#: src/view/com/composer/state/video.ts:429
+msgid "Your account is not yet old enough to upload videos. Please try again later."
+msgstr "Dyn account is noch net âld genôch om fideo’s op te laden. Probearje it letter nochris."
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:67
+msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately."
+msgstr "Dyn accountrepository, dy’t alle iepenbiere gegevensrecords befettet, kin download wurde as in ‘CAR’-bestân. Dit bestân befettet gjin media-ynslutingen, lykas ôfbyldingen, en gjin priveegegevens. Dy moatte ôfsûnderlik ophelle wurde."
+
+#: src/screens/Takendown.tsx:214
+msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service0>. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error."
+msgstr "Dyn account is yn striid mei de <0>Tsjinstbetingsten fan Bluesky Social0>. Do hast in e-mailberjocht ûntfongen mei ynformaasje oer de presize oertrêding en de doer fan dyn eventuele skorsing. Asto fan miening bist dat dit in fersin betreft, kinsto beswier meitsje tsjin dizze beslissing."
+
+#: src/screens/Takendown.tsx:154
+msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
+msgstr "Dyn beswier is yntsjinne. Asto yn it gelyk stelst wurdst, ûntfangsto in e-mailberjocht."
+
+#: src/screens/Signup/StepInfo/index.tsx:257
+msgid "Your birth date"
+msgstr "Dyn bertedatum"
+
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr "Dyn browser stipet de fideo-yndieling net. Probearje in oare browser."
+
+#: src/screens/Messages/components/ChatDisabled.tsx:25
+msgid "Your chats have been disabled"
+msgstr "Dyn chats binne útskeakele"
+
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr "Dyn kar sil foar takomstige keppelingen ûnthâlden wurde. Do kinst it op elk momint yn de ynstellingen oanpasse."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
+msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
+msgstr "Dyn aktuele handle <0>{0}0> bliuwt automatysk foar dy reservearre. Do kinst fan dizze account út altyd hjir nei weromskeakelje."
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr "Dyn e-mailadres is bywurke, mar it is noch net ferifiearre. Ferifiearje as folgjende stap dyn nije e-mailadres."
+
+#: src/screens/Login/ForgotPasswordForm.tsx:51
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
+#: src/view/com/modals/ChangePassword.tsx:55
+msgid "Your email appears to be invalid."
+msgstr "Dyn e-mailadres liket ûnjildich te wêzen."
+
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr "Dyn e-mailadres is noch net ferifiearre. Ferifiearje dyn e-mailadres om alle funksjes fan Bluesky brûke te kinnen."
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
+msgid "Your email has not yet been verified. This is an important security step which we recommend."
+msgstr "Dyn e-mailadres is noch net ferifiearre. Dit is in wichtige befeiligingsstap dy’t wy oanrekommandearje."
+
+#: src/state/shell/progress-guide.tsx:213
+msgid "Your first like!"
+msgstr "Dyn earste mei-’k-wol-oer!"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:443
+msgid "Your followers"
+msgstr "Dyn folgers"
+
+#: src/view/com/posts/FollowingEmptyState.tsx:43
+msgid "Your following feed is empty! Follow more users to see what's happening."
+msgstr "Dyn folgjende feed is leech! Folgje mear brûkers om te sjen wat der bart."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
+msgid "Your full handle will be <0>@{0}0>"
+msgstr "Dyn folsleine handle wurdt <0>@{0}0>"
+
+#: src/screens/Signup/StepHandle.tsx:137
+msgid "Your full username will be <0>@{0}0>"
+msgstr "Dyn folsleine brûkersnamme wurdt <0>@{0}0>"
+
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr "Dyn ynteressen"
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr "Dyn ynteressen wurde bywurke!"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr "Dyn ynteressen helpe ús dat te finen, dêr’tsto oer meist!"
+
+#: src/components/dialogs/MutedWords.tsx:369
+msgid "Your muted words"
+msgstr "Dyn negearre wurden"
+
+#: src/view/com/modals/ChangePassword.tsx:169
+msgid "Your password has been changed successfully!"
+msgstr "Dyn wachtwurd is mei sukses wizige!"
+
+#: src/screens/Signup/StepInfo/index.tsx:127
+msgid "Your password must be at least 8 characters long."
+msgstr "Dyn wachtwurd moat op syn minst 8 tekens lang wêze."
+
+#: src/view/com/composer/Composer.tsx:481
+msgid "Your post has been published"
+msgstr "Dyn berjocht is publisearre"
+
+#: src/view/com/composer/Composer.tsx:478
+msgid "Your posts have been published"
+msgstr "Dyn berjochten binne publisearre"
+
+#: src/screens/Onboarding/StepFinished.tsx:268
+msgid "Your posts, likes, and blocks are public. Mutes are private."
+msgstr "Dyn berjochten, mei-’k-wol-oers en blokkearringen binne iepenbier. Negearringen binne privee."
+
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
+msgstr "Dyn profyl, berjochten, feeds en listen binne net langer sichtber foar oare Bluesky-brûkers. Do kinst dyn account op elk momint opnij aktivearje troch oan te melden."
+
+#: src/view/com/composer/Composer.tsx:480
+msgid "Your reply has been published"
+msgstr "Dyn reaksje is publisearre"
+
+#: src/components/moderation/ReportDialog/index.tsx:391
+msgid "Your report will be sent to <0>{0}0>."
+msgstr "Dyn melding wurdt nei <0>{0}0> ferstjoerd."
+
+#: src/components/dms/ReportDialog.tsx:200
+msgid "Your report will be sent to the Bluesky Moderation Service"
+msgstr "Dyn melding wurdt nei de Bluesky-moderaasjetsjinst ferstjoerd"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr "Dyn selektearre ynteressen helpe ús dy ynhâld dy’t dy ynteressearret te toanen."
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr "Dyn ferifikaasjes"
diff --git a/src/locale/locales/ga/messages.po b/src/locale/locales/ga/messages.po
index 4e0404e774..a7b0e495d5 100644
--- a/src/locale/locales/ga/messages.po
+++ b/src/locale/locales/ga/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ga\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 03:35\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Irish\n"
"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(gníomhach)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(tá ábhar leabaithe ann)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(gan ríomhphost)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {# athphostáil} two {# athphostáil} few {# athphostái
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {soicind amháin} two {# shoicind} few {# shoicind} many {# soicind} other {# soicind}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -90,17 +90,17 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {leantóir} two {leantóir} few {leantóir} many {leantóir} other {leantóir}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
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/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {moladh} two {mholadh} few {mholadh} many {moladh} other {moladh}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {moladh} two {mholadh} few {mholadh} many {moladh} other
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/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {postáil athluaite} two {phostáil athluaite} few {phostáil athluaite} many {bpostáil athluaite} other {postáil athluaite}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
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/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr ""
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr ""
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0>i <1>gclibeanna1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>i <1>dtéacs agus i gclibeanna1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr ""
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "Chláraigh {0} an tseachtain seo"
@@ -139,11 +156,16 @@ msgstr "{0} as {1}"
msgid "{0} out of 50"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "D'úsáid {0} duine an pacáiste fáilte seo!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr ""
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "abhatár {0}"
@@ -175,7 +197,7 @@ msgstr "{0}n"
msgid "{0}s"
msgstr "{0}s"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, one {uair} two {uair} few {uair} many {uair}
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {nóiméad} two {nóiméad} few {nóiméad} many {nóiméad} other {nóiméad}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "Lean {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}}0> thú"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "Mhol {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}}0> do shainfhotha"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "Mhol {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}}0> do phostáil"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "D'athphostáil {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}}0> do phostáil"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "Chláraigh {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}}0> le do phacáiste fáilte"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "Lean {firstAuthorLink} thú"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "Lean {firstAuthorLink} thú"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "Mhol {firstAuthorLink} do shainfhotha"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "Mhol {firstAuthorLink} do phostáil"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "D'athphostáil {firstAuthorLink} do phostáil"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "Chláraigh {firstAuthorLink} le do phacáiste fáilte"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "Lean {firstAuthorName} agus {additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} thú"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "Mhol {firstAuthorName} agus {additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} do shainfhotha"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "Mhol {firstAuthorName} agus {additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} do phostáil"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "D'athphostáil {firstAuthorName} agus {additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} do phostáil"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "Chláraigh {firstAuthorName} agus {additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} le do phacáiste fáilte"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "Lean {firstAuthorName} thú"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "Lean {firstAuthorName} thú"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "Mhol {firstAuthorName} do shainfhotha"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "Mhol {firstAuthorName} do phostáil"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "D'athphostáil {firstAuthorName} do phostáil"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "Chláraigh {firstAuthorName} le do phacáiste fáilte"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} á leanúint"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "Ní féidir TD a chur chuig {handle}"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr ""
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr ""
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -301,6 +404,34 @@ msgstr "Chláraigh {profileName} le Bluesky {0} ó shin"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "Chláraigh {profileName} le Bluesky le pacáiste fáilte {0} ó shin"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr ""
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr ""
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr ""
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr ""
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr ""
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "Cuireadh <0>{0}, 0><1>{1}, 1>agus {2, plural, one {duine amháin eile} two {beirt eile} few {# dhuine eile} many {# nduine eile} other {# duine eile}} i do phacáiste fáilte"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
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:108
+#: src/view/shell/Drawer.tsx:127
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}}"
@@ -343,7 +474,7 @@ msgstr "<0>Turgnamhach:0> Nuair atá an sainrogha cumasaithe, ní bhfaighidh t
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "Cuireadh <0>tusa0> agus<1> 1><2>{0} 2>i do phacáiste fáilte"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Leasainm Neamhbhailí"
@@ -363,19 +494,28 @@ msgstr "30 lá"
msgid "7 days"
msgstr "7 lá"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr ""
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Maidir leis"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr "Glac Leis"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr ""
@@ -385,40 +525,40 @@ msgid "Accept Request"
msgstr "Glac leis an iarratas"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Inrochtaineacht"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Socruithe Inrochtaineachta"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Cuntas"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "Cuntas blocáilte"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "Cuntas leanta"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "Balbhaíodh an cuntas"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
@@ -429,33 +569,37 @@ msgstr "Balbhaíodh an Cuntas"
msgid "Account Muted by List"
msgstr "Balbhaíodh an Cuntas trí Liosta"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Roghanna cuntais"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Baineadh an cuntas ón mearliosta"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "Cuntas díbhlocáilte"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "Cuntas díleanta"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
+msgstr "Níl an cuntas balbhaithe a thuilleadh"
+
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Cuir leis"
@@ -473,8 +617,12 @@ msgstr "Cuir {displayName} leis an bpacáiste fáilte"
msgid "Add a content warning"
msgstr "Cuir rabhadh faoin ábhar leis"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "Cuir cuntas leis an liosta seo"
@@ -485,7 +633,7 @@ msgstr "Cuir cuntas leis seo"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Cuir cuntas leis seo"
msgid "Add alt text"
msgstr "Cuir téacs malartach leis seo"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Cuir téacs malartach leis seo (roghnach)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Cuir cuntas eile leis"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Cuir postáil eile leis"
@@ -518,8 +666,12 @@ msgstr "Cuir pasfhocal aipe leis"
msgid "Add App Password"
msgstr "Cuir pasfhocal aipe leis seo"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr "Cuir tuilleadh sonraí leis (roghnach)"
@@ -531,15 +683,23 @@ msgstr ""
msgid "Add muted words and tags"
msgstr "Cuir focail agus clibeanna a balbhaíodh leis seo"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Cuir postáil nua leis"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Cuir daoine leis"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr ""
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Cuir fothaí molta leis seo"
@@ -552,27 +712,28 @@ msgstr "Cuir roinnt fothaí le do phacáiste fáilte!"
msgid "Add the default feed of only people you follow"
msgstr "Ná cuir ach fotha réamhshocraithe de na daoine a leanann tú leis seo"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Cuir an taifead DNS seo a leanas le d'fhearann:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Cuir an fotha seo le do chuid fothaí"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Cuir le liostaí"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Cuir le mo chuid fothaí"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Curtha leis an liosta"
@@ -581,22 +742,22 @@ msgstr "Curtha leis an liosta"
msgid "Added to my feeds"
msgstr "Curtha le mo chuid fothaí"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr "Tuilleadh sonraí (300 carachtar ar a mhéad)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Daoine fásta"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Ábhar do dhaoine fásta"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "Ní féidir ábhar do dhaoine fásta a chur ar fáil ach tríd an nGréasán ag <0>bsky.app0>."
@@ -604,30 +765,35 @@ msgstr "Ní féidir ábhar do dhaoine fásta a chur ar fáil ach tríd an nGréa
msgid "Adult content is disabled."
msgstr "Tá ábhar do dhaoine fásta curtha ar ceal."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Lipéid d'ábhar do dhaoine fásta"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Ardleibhéal"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr ""
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Uile"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "Leanadh na cuntais go léir!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "Gach teanga"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
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."
@@ -671,10 +837,10 @@ msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Téacs malartach"
@@ -688,19 +854,18 @@ msgstr "Cuireann an téacs malartach síos ar na híomhánna do dhaoine atá dal
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "Giorrófar an téacs malartach. Uasteorainn: {0} carachtar."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr ""
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "Cuireadh teachtaireacht ríomhphoist chuig {0}. Tá cód dearbhaithe faoi iamh. Is féidir leat an cód a chur isteach thíos anseo."
-#: src/view/com/modals/ChangeEmail.tsx:114
-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/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "Seoladh teachtaireacht rphoist chugat! Cuir isteach an cód dearbhaithe ón ríomhphost."
@@ -716,7 +881,11 @@ msgstr "Tharla earráid"
msgid "An error occurred while compressing the video."
msgstr "Tharla earráid agus an físeán á chomhbhrú."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Tharla earráid agus do phacáiste fáilte á chruthú. An bhfuil fonn ort triail eile a bhaint as?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "Tharla earráid agus an físeán á lódáil. Bain triail eile as."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "Tharla earráid agus an cód QR á shábháil!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "Tharla earráid agus an físeán á roghnú"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "Tharla earráid agus na cuntais go léir á leanúint"
@@ -746,12 +914,17 @@ msgstr "Tharla earráid agus na cuntais go léir á leanúint"
msgid "An error occurred while uploading the video."
msgstr "Tharla earráid agus an físeán á uaslódáil."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Rud nach bhfuil ar fáil sna roghanna seo"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "Tharla fadhb agus an comhrá á thosú"
@@ -761,13 +934,17 @@ msgstr "Tharla fadhb agus an comhrá á oscailt"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Tharla fadhb. Déan iarracht eile, le do thoil."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "tharla earráid nach eol dúinn"
@@ -790,6 +967,10 @@ msgstr "Ainmhithe"
msgid "Animated GIF"
msgstr "GIF beo"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Iompar Frithshóisialta"
msgid "Anybody can interact"
msgstr "Tá gach duine in ann idirghníomhú leis"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "Deilbhín na haipe"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "Teanga na haipe"
@@ -817,7 +998,7 @@ msgstr "Pasfhocal Aipe"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "Pasfhocal na haipe scriosta"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
@@ -836,7 +1017,7 @@ msgstr "Caithfidh ainm pasfhocal aipe a bheith ar a laghad ceithre charachtar ar
msgid "App passwords"
msgstr "Pasfhocail aipe"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Pasfhocail aipe"
@@ -854,7 +1035,7 @@ msgstr "Achomharc in aghaidh lipéid \"{0}\""
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "Achomharc déanta"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -872,10 +1053,10 @@ msgstr ""
msgid "Appeal this decision"
msgstr "Déan achomharc i gcoinne an chinnidh seo"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Cuma"
@@ -884,12 +1065,12 @@ msgstr "Cuma"
msgid "Apply default recommended feeds"
msgstr "Bain úsáid as fothaí réamhshocraithe a moladh"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Cartlannaithe ó {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Postáil sa chartlann"
@@ -897,15 +1078,15 @@ msgstr "Postáil sa chartlann"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "An bhfuil tú cinnte gur mhaith leat an pasfhocal aipe \"{0}\" a scriosadh?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
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:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "An bhfuil tú cinnte gur mhaith leat an pacáiste fáilte seo a scriosadh?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "An bhfuil tú cinnte gur mhaith leat do chuid athruithe a chur ar ceal?"
@@ -921,15 +1102,15 @@ msgstr "An bhfuil tú cinnte gur mhaith leat imeacht ón gcomhrá seo? Scriosfar
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:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "An bhfuil tú cinnte gur mhaith leat é seo a bhaint de do chuid fothaí?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
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/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "An bhfuil tú cinnte gur mhaith leat an phostáil seo a scriosadh?"
@@ -937,7 +1118,7 @@ msgstr "An bhfuil tú cinnte gur mhaith leat an phostáil seo a scriosadh?"
msgid "Are you sure?"
msgstr "Lánchinnte?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -946,11 +1127,16 @@ msgstr ""
msgid "Art"
msgstr "Ealaín"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Lomnochtacht ealaíonta nó gan a bheith gáirsiúil."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "3 charachtar ar a laghad"
@@ -963,12 +1149,12 @@ msgstr ""
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Bogadh roghanna seinnte uathoibríoch go dtí <0>Socruithe Ábhair agus Meáin0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Seinn físeáin agus GIFanna go huathoibríoch"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Seinn físeáin agus GIFanna go huathoibríoch"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Ar ais"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr ""
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Ní mór duit do ríomhphost a dheimhniú roimh liosta a chruthú."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Ní mór duit do ríomhphost a dheimhniú roimh phostáil a chruthú."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Ní mór duit do ríomhphost a dheimhniú roimh phacáiste fáilte a chruthú."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "Ní cheadófar duit teachtaireacht a chur chuig úsáideoir eile roimh do ríomhphost a dheimhniú."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BÉITE"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
+msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Breithlá"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Blocáil"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Blocáil an cuntas seo"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "Blocáil an cuntas seo?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Blocáil na cuntais seo"
@@ -1054,7 +1241,7 @@ msgstr "Blocáil agus Scrios"
msgid "Block and/or delete this conversation"
msgstr "Blocáil agus/nó scrios an comhrá seo"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Liosta blocála"
@@ -1062,7 +1249,7 @@ msgstr "Liosta blocála"
msgid "Block or report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "An bhfuil fonn ort na cuntais seo a bhlocáil?"
@@ -1079,21 +1266,21 @@ msgstr "Blocáil an t-úsáideoir"
msgid "Blocked"
msgstr "Blocáilte"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Cuntais bhlocáilte"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Cuntais bhlocáilte"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Ní féidir leis na cuntais bhlocáilte freagra a thabhairt ar do chomhráite, tagairt a dhéanamh duit, ná aon phlé eile a bheith acu leat."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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."
@@ -1101,19 +1288,19 @@ msgstr "Ní féidir leis na cuntais bhlocáilte freagra a thabhairt ar do chomhr
msgid "Blocked post."
msgstr "Postáil bhlocáilte."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
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:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Tá an bhlocáil poiblí. Ní féidir leis na cuntais bhlocáilte freagra a thabhairt ar do chomhráite, tagairt a dhéanamh duit, ná aon phlé eile a bheith acu leat."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
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:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blag"
@@ -1122,7 +1309,7 @@ msgstr "Blag"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Ní féidir le Bluesky an dáta maíte a dheimhniú."
@@ -1148,7 +1335,7 @@ msgstr "Déanann mathshlua meidhréis ar Bluesky!"
msgid "Bluesky Social Terms of Service"
msgstr "Téarmaí Seirbhíse Bluesky Social"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Roghnóidh Bluesky roinnt cuntas molta ó dhaoine i do líonra."
@@ -1156,6 +1343,10 @@ msgstr "Roghnóidh Bluesky roinnt cuntas molta ó dhaoine i do líonra."
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Ní thaispeánfaidh Bluesky do phróifíl ná do chuid postálacha d’úsáideoirí atá logáilte amach. Is féidir nach gcloífidh aipeanna eile leis an iarratas seo. I bhfocail eile, ní bheidh do chuntas anseo príobháideach."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr ""
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "Déan íomhánna doiléir agus scag ó fhothaí iad"
msgid "Books"
msgstr "Leabhair"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "Tabhair súil ar thuilleadh cuntas ar an leathanach Taiscéalaíocht"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "Tabhair súil ar thuilleadh fothaí ar an leathanach Taiscéalaíocht"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Tabhair súil ar thuilleadh moltaí"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "Tabhair súil ar thuilleadh moltaí ar an leathanach Taiscéalaíocht"
@@ -1214,20 +1405,26 @@ msgstr "Tabhair súil ar phostálacha a bhfuil clib {displayName} leo"
msgid "Browse starter pack {displayName}"
msgstr ""
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr ""
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "Tabhair súil ar an topaic {displayName}"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Gnó"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "Le {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Le <0>{0}0>"
@@ -1243,44 +1440,51 @@ msgstr "Má chruthaíonn tú cuntas, glacann tú leis na <0>Téarmaí Seirbhíse
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Má chruthaíonn tú cuntas, glacann tú leis na <0>Téarmaí Seirbhíse0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr ""
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Ceamara"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Cealaigh"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "Ná scrios an chuntas"
msgid "Cancel image crop"
msgstr "Cealaigh bearradh na híomhá"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Cuir athrú na próifíle ar ceal"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Ná déan athlua na postála"
@@ -1308,8 +1512,7 @@ msgstr "Ná déan athlua na postála"
msgid "Cancel reactivation and sign out"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Cealaigh an cuardach"
@@ -1317,24 +1520,23 @@ msgstr "Cealaigh an cuardach"
msgid "Cancels opening the linked website"
msgstr "Cuireann sé seo oscailt an tsuímh gréasáin atá nasctha ar ceal"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "Ní féidir plé le húsáideoir blocáilte"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Fotheidil (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Fotheidil agus téacs malartach"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Athraigh"
@@ -1347,46 +1549,41 @@ msgstr "Athraigh deilbhín na haipe"
msgid "Change app icon to \"{0}\""
msgstr "Athraigh deilbhín na haipe go \"{0}\""
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Athraigh do sheoladh ríomhphoist"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Athraigh do sheoladh ríomhphoist"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Athraigh mo leasainm"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Athraigh mo ríomhphost"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Athraigh mo phasfhocal"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Athraigh do ríomhphost"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Athraigh do sheoladh ríomhphoist"
@@ -1394,20 +1591,20 @@ msgstr "Athraigh do sheoladh ríomhphoist"
msgid "Changes app icon"
msgstr ""
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr ""
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Comhrá"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
msgstr ""
@@ -1415,22 +1612,21 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "Balbhaíodh an comhrá"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr ""
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Socruithe comhrá"
@@ -1441,10 +1637,10 @@ msgstr "Socruithe Comhrá"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "Díbhalbhaíodh an comhrá"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr ""
@@ -1461,7 +1657,7 @@ msgstr ""
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Féach ar do bhosca ríomhphoist le haghaidh teachtaireachta leis an gcód dearbhaithe atá le cur isteach thíos."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Roghnaigh modh deimhnithe fearainn"
@@ -1469,7 +1665,7 @@ msgstr "Roghnaigh modh deimhnithe fearainn"
msgid "Choose Feeds"
msgstr "Roghnaigh Fothaí"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Roghnaigh ar mo shon"
@@ -1477,10 +1673,6 @@ msgstr "Roghnaigh ar mo shon"
msgid "Choose People"
msgstr "Roghnaigh Daoine"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Roghnaigh lipéid le cur i bhfeidhm ar an ábhar atá tú ar tí postáil. Mura roghnaíonn tú lipéad ar bith, glacfar leis go bhfuil an phostáil feiliúnach do chách."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Roghnaigh na halgartaim le haghaidh do chuid sainfhothaí."
@@ -1493,27 +1685,31 @@ msgstr "Roghnaigh an dath seo mar abhatár duit"
msgid "Choose your account provider"
msgstr ""
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Tóg d'amlíne féin! Is féidir teacht ar ábhar a thaitneoidh leat le fothaí a thógann an pobal."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Roghnaigh do phasfhocal"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "Do leasainm"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Glan na sonraí ar fad atá i dtaisce."
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Glan na sonraí ar fad atá i dtaisce. Ansin atosaigh."
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr ""
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Glan an cuardach"
@@ -1522,6 +1718,14 @@ msgstr "Glan an cuardach"
msgid "click here"
msgstr "cliceáil anseo"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Cliceáil chun cosc a chur ar phostálacha athluaite den phostáil seo."
@@ -1534,7 +1738,7 @@ msgstr "Cliceáil chun postálacha athluaite den phostáil seo a cheadú."
msgid "Click to open tag menu for {tag}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Cliceáil le triail eile a bhaint as teachtaireacht ar theip uirthi"
@@ -1546,24 +1750,34 @@ msgstr "Aeráid"
msgid "Clip 🐴 clop 🐴"
msgstr "Trup, Trup a Chapaillín 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Dún"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Dún an dialóg oscailte"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Dún an tarraiceán íochtair"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Dún an dialóg"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr ""
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "Dún an roghnóir emoji"
@@ -1600,7 +1816,13 @@ msgstr "Dún an íomhá"
msgid "Close image viewer"
msgstr "Dún amharcóir na n-íomhánna"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr ""
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Dún an dialóg seo"
@@ -1608,8 +1830,12 @@ msgstr "Dún an dialóg seo"
msgid "Closes password update alert"
msgstr "Dúnann sé seo an rabhadh faoi uasdátú an phasfhocail"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr ""
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr ""
@@ -1617,11 +1843,11 @@ msgstr ""
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/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Laghdaigh an liosta úsáideoirí"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
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"
@@ -1644,7 +1870,7 @@ msgstr "Greann"
msgid "Comics"
msgstr "Greannáin"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Treoirlínte an phobail"
@@ -1653,23 +1879,23 @@ msgstr "Treoirlínte an phobail"
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:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Freagair an dúshlán"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Cum postáil nua"
-#: src/view/com/composer/Composer.tsx:834
-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/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr ""
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Scríobh freagra"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Físeán á chomhbhrú..."
@@ -1681,23 +1907,17 @@ msgstr "Socraigh scagadh an ábhair le haghaidh catagóir: {name}"
msgid "Configured in <0>moderation settings0>."
msgstr "Le socrú i <0>socruithe na modhnóireachta0>."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Dearbhaigh"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Dearbhaigh an t-athrú"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Dearbhaigh socruithe le haghaidh teanga an ábhair"
@@ -1706,26 +1926,27 @@ msgstr "Dearbhaigh socruithe le haghaidh teanga an ábhair"
msgid "Confirm delete account"
msgstr "Dearbhaigh scriosadh an chuntais"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Dearbhaigh d'aois:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Dearbhaigh do bhreithlá"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Cód dearbhaithe"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Cód Dearbhaithe"
@@ -1733,22 +1954,22 @@ msgstr "Cód Dearbhaithe"
msgid "Connecting..."
msgstr "Ag nascadh…"
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Teagmháil le Support"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "Ábhar agus Meáin"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Ábhar agus meáin"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Ábhar agus Meáin"
@@ -1756,15 +1977,15 @@ msgstr "Ábhar agus Meáin"
msgid "Content Blocked"
msgstr "Ábhar Blocáilte"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Scagthaí ábhair"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Teangacha ábhair"
@@ -1785,16 +2006,16 @@ msgstr "Rabhadh ábhair"
msgid "Content warnings"
msgstr "Rabhadh ábhair"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
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:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Lean ar aghaidh"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Lean ort mar {0} (atá logáilte isteach faoi láthair)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Lean leis an snáithe..."
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Lean ar aghaidh go dtí an chéad chéim eile"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Scriosadh an comhrá"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Scriosadh an comhrá"
@@ -1826,16 +2047,17 @@ msgstr "Cócaireacht"
msgid "Copied"
msgstr "Cóipeáilte"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Leagan cóipeáilte sa ghearrthaisce"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Cóipeáilte sa ghearrthaisce"
@@ -1844,25 +2066,29 @@ msgstr "Cóipeáilte sa ghearrthaisce"
msgid "Copied!"
msgstr "Cóipeáilte!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Cóipeáil"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr ""
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Cóipeáil an Pasfhocal Aipe"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr ""
@@ -1871,57 +2097,69 @@ msgstr ""
msgid "Copy code"
msgstr "Cóipeáil an cód"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Cóipeáil an DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Cóipeáil an t-óstainm"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Cóipeáil an nasc"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Cóipeáil an Nasc"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Cóipeáil an nasc leis an liosta"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Cóipeáil an nasc leis an bpostáil"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Cóipeáil téacs na teachtaireachta"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Cóipeáil téacs na postála"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Cóipeáil an cód QR"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "Cóipeáil an taifead TXT"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "An polasaí maidir le cóipcheart"
@@ -1931,11 +2169,11 @@ msgstr "An polasaí maidir le cóipcheart"
msgid "Could not leave chat"
msgstr "Níor éiríodh ar an gcomhrá a fhágáil"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "Ní féidir an fotha a lódáil"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "Ní féidir an liosta a lódáil"
@@ -1947,28 +2185,28 @@ msgstr "Níor éiríodh ar an gcomhrá a bhalbhú"
msgid "Could not process your video"
msgstr "Níorbh fhéidir d'fhíseán a phróiseáil"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Cruthaigh"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "Cruthaigh cód QR le haghaidh pacáiste fáilte"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Cruthaigh pacáiste fáilte"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Cruthaigh pacáiste fáilte ar mo shon"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Cruthaigh pacáiste fáilte ar mo shon"
msgid "Create account"
msgstr "Cláraigh"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Cruthaigh cuntas"
@@ -1985,11 +2223,16 @@ msgstr "Cruthaigh cuntas"
msgid "Create an account"
msgstr "Cruthaigh cuntas"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Cruthaigh abhatár nua ina ionad sin"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Cruthaigh ceann eile"
@@ -1998,7 +2241,7 @@ msgstr "Cruthaigh ceann eile"
msgid "Create new account"
msgstr "Cruthaigh cuntas nua"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Cruthaigh tuairisc do {0}"
@@ -2053,17 +2296,17 @@ msgstr "Modh dorcha"
msgid "Dark theme"
msgstr "Téama dorcha"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Dáta breithe"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Díghníomhaigh mo chuntas"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Dífhabhtaigh Modhnóireacht"
@@ -2079,19 +2322,19 @@ msgstr "Réamhshocrú"
msgid "Default icons"
msgstr "Deilbhíní réamhshocraithe"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Scrios"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Scrios an cuntas"
@@ -2107,19 +2350,19 @@ msgstr "Scrios pasfhocal na haipe"
msgid "Delete app password?"
msgstr "Scrios pasfhocal na haipe?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr ""
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Scrios taifead dearbhaithe comhrá"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "Scrios an comhrá"
@@ -2127,19 +2370,19 @@ msgstr "Scrios an comhrá"
msgid "Delete Conversation"
msgstr "Scrios an Comhrá"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Scrios domsa"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
-msgstr "Scrios an liosta"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Scrios an teachtaireacht seo"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Scrios an teachtaireacht seo domsa"
@@ -2147,26 +2390,26 @@ msgstr "Scrios an teachtaireacht seo domsa"
msgid "Delete my account"
msgstr "Scrios mo chuntas"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Scrios an phostáil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Scrios an pacáiste fáilte"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "An bhfuil fonn ort an pacáiste fáilte seo a scriosadh?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "An bhfuil fonn ort an liosta seo a scriosadh?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "An bhfuil fonn ort an phostáil seo a scriosadh?"
@@ -2174,8 +2417,8 @@ msgstr "An bhfuil fonn ort an phostáil seo a scriosadh?"
msgid "Deleted"
msgstr "Scriosta"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Cuntas Scriosta"
@@ -2183,48 +2426,48 @@ msgstr "Cuntas Scriosta"
msgid "Deleted post."
msgstr "Scriosadh an phostáil."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Cur síos"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "Tá an cur síos rófhada"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "Tá an cur síos rófhada. Ní cheadaítear níos mó ná {DESCRIPTION_MAX_GRAPHEMES} carachtar."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Téacs malartach tuairisciúil"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Dícheangail an phostáil athluaite"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "An bhfuil fonn ort an phostáil athluaite a dhícheangal?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
msgstr ""
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Roghanna d'fhorbróirí"
@@ -2236,6 +2479,15 @@ msgstr "Dialóg: cé atá in ann idirghníomhú leis an bpostáil seo"
msgid "Dim"
msgstr "Breacdhorcha"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr ""
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "Ná húsáid 2FA trí ríomhphost"
@@ -2254,25 +2506,25 @@ msgstr "Ná húsáid fotheidil"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Díchumasaithe"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Ná sábháil"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "Faigh réidh leis na hathruithe?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "Faigh réidh leis an dréacht?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "Faigh réidh leis an bpostáil?"
@@ -2281,24 +2533,24 @@ msgstr "Faigh réidh leis an bpostáil?"
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"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Aimsigh sainfhothaí nua"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Aimsigh fothaí nua"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Aimsigh Fothaí Nua"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Ruaig"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Ruaig an earráid"
@@ -2306,6 +2558,10 @@ msgstr "Ruaig an earráid"
msgid "Dismiss getting started guide"
msgstr "Scoir an treoir tosaithe"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr ""
@@ -2315,27 +2571,27 @@ msgstr ""
msgid "Display larger alt text badges"
msgstr "Déan suaitheantais théacs malartaigh níos mó"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Ainm taispeána"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Ainm Taispeána"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "Tá an t-ainm taispeána rófhada"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "Tá an t-ainm taispeána rófhada. Ní cheadaítear níos mó ná {DISPLAY_NAME_MAX_GRAPHEMES} carachtar."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "Painéal DNS"
@@ -2347,37 +2603,45 @@ msgstr "Ná cuir an focal balbhaithe i bhfeidhm ar úsáideoirí a leanann tú"
msgid "Does not include nudity."
msgstr "Níl lomnochtacht ann."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "Ní thosaíonn ná chríochnaíonn sé le fleiscín"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "Fearann dearbhaithe!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Déanta"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Déanta"
msgid "Done{extraText}"
msgstr "Déanta{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr ""
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Tapáil faoi dhó chun an fhuinneog a dhúnadh"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr ""
@@ -2413,23 +2681,23 @@ msgstr "Scaoil anseo chun íomhánna a chur leis"
msgid "Duration:"
msgstr "Fad:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "m.sh. cáit"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "m.sh. Cáit Ní Dhuibhir"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "m.sh. Cáit Ní Dhuibhir"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "m.sh. cait.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "m.sh. Ealaíontóir agus léitheoir craosach; is maith liom madraí!"
@@ -2437,19 +2705,19 @@ msgstr "m.sh. Ealaíontóir agus léitheoir craosach; is maith liom madraí!"
msgid "E.g. artistic nudes."
msgstr "Noicht ealaíonta, mar shampla"
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "m.sh. Na cuntais is fearr"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "m.sh. Seoltóirí turscair"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "m.sh. Na cuntais nach dteipeann orthu riamh"
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "m.sh. Úsáideoirí a fhreagraíonn le fógraí"
@@ -2457,20 +2725,21 @@ 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/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Eagar"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Eagar"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Cuir an t-abhatár in eagar"
@@ -2478,31 +2747,41 @@ msgstr "Cuir an t-abhatár in eagar"
msgid "Edit Feeds"
msgstr "Cuir Fothaí in Eagar"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Cuir an íomhá seo in eagar"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Cuir na socruithe idirghníomhaíochta in eagar"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Athraigh mionsonraí an liosta"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Athraigh liosta na modhnóireachta"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Athraigh mo chuid fothaí"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Cuir mo phróifíl in eagar"
@@ -2515,23 +2794,23 @@ msgstr "Cuir Daoine in Eagar"
msgid "Edit post interaction settings"
msgstr "Cuir socruithe idirghníomhaíochta na postála in eagar"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Athraigh an phróifíl"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Athraigh an Phróifíl"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Cuir an pacáiste fáilte in eagar"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Athraigh an liosta d’úsáideoirí"
@@ -2539,15 +2818,15 @@ msgstr "Athraigh an liosta d’úsáideoirí"
msgid "Edit who can reply"
msgstr "Cé atá in ann freagra a thabhairt"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Cuir an t-ainm taispeána in eagar"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Athraigh an cur síos i do phróifíl"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Cuir do phacáiste fáilte in eagar"
@@ -2560,16 +2839,15 @@ msgstr "Oideachas"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "Cuireadh cruthaitheoir an liosta seo cosc ortsa, nó chuir tusa cosc ar an gcruthaitheoir."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "Ríomhphost"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "Níl 2FA trí ríomhphost ar fáil a thuilleadh"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
@@ -2583,19 +2861,16 @@ msgstr "Seoladh ríomhphoist"
msgid "Email Resent"
msgstr "Athsheoladh an ríomhphost"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "Seoladh ríomhphoist uasdátaithe"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
msgstr ""
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
@@ -2608,8 +2883,8 @@ msgstr "Leabaigh an cód HTML"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Leabaigh an phostáil"
@@ -2617,12 +2892,13 @@ msgstr "Leabaigh an phostáil"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Leabaigh an phostáil seo i do shuíomh gréasáin féin. Cóipeáil an píosa cóid seo a leanas isteach san HTML ar do shuíomh."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "Fís-seinnteoir leabaithe"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Cumasaigh"
@@ -2630,13 +2906,13 @@ msgstr "Cumasaigh"
msgid "Enable {0} only"
msgstr "Cuir {0} amháin ar fáil"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Cuir ábhar do dhaoine fásta ar fáil"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr "Cumasaigh 2FA ríomhphoist"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2660,30 +2936,30 @@ msgstr "Cuir fotheidil ar siúl"
msgid "Enable this source only"
msgstr "Cuir an foinse seo amháin ar fáil"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "Cuir treochtaí ar siúl"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr ""
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Cumasaithe"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Deireadh an fhotha"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Deimhnigh gur roghnaigh tú teanga do gach comhad fotheideal."
@@ -2696,14 +2972,15 @@ msgstr "Cuir pasfhocal isteach"
msgid "Enter a word or tag"
msgstr "Cuir focal na clib isteach"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
msgid "Enter Code"
msgstr "Cuir an cód isteach"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Cuir isteach an cód dearbhaithe"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
msgstr "Mód lánscáileáin"
@@ -2712,7 +2989,7 @@ msgstr "Mód lánscáileáin"
msgid "Enter the code you received to change your password."
msgstr "Cuir isteach an cód a fuair tú chun do phasfhocal a athrú."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Cuir isteach an fearann is maith leat a úsáid"
@@ -2720,20 +2997,20 @@ msgstr "Cuir isteach an fearann is maith leat a úsáid"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Cuir isteach an seoladh ríomhphoist a d’úsáid tú le do chuntas a chruthú. Cuirfidh muid “cód athshocraithe” chugat le go mbeidh tú in ann do phasfhocal a athrú."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Cuir isteach do bhreithlá"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Cuir isteach do sheoladh ríomhphoist"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Cuir isteach do sheoladh ríomhphoist nua thuas"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Cuir isteach do sheoladh ríomhphoist nua thíos."
@@ -2749,7 +3026,11 @@ msgstr "Cuir isteach do leasainm agus do phasfhocal"
msgid "Enters full screen"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Earráid"
@@ -2758,15 +3039,18 @@ msgstr "Earráid"
msgid "Error occurred while saving file"
msgstr "Tharla earráid le linn comhad a shábháil"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "Earráid agus an freagra ar an captcha á phróiseáil."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Earráid:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Chuile dhuine"
@@ -2818,30 +3102,22 @@ msgstr "Fágann sé seo próiseas laghdú an íomhá"
msgid "Exits image view"
msgstr "Fágann sé seo an radharc ar an íomhá"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Fágann sé seo an cuardach"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Taispeáin an téacs malartach ina iomláine"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Leathnaigh an liosta úsáideoirí"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "Leathnaigh nó laghdaigh an téacs iomlán a bhfuil tú ag freagairt"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr ""
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "Bhíothas ag súil go dtiocfadh taifead ón URI"
@@ -2864,6 +3140,10 @@ msgstr "Téann sé seo as feidhm {0}"
msgid "Expires in {0}"
msgstr ""
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "Meáin is féidir a bheith gáirsiúil nó goilliúnach."
msgid "Explicit sexual images."
msgstr "Íomhánna gnéasacha."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Easpórtáil mo chuid sonraí"
@@ -2882,8 +3169,8 @@ msgstr "Easpórtáil mo chuid sonraí"
msgid "Export My Data"
msgstr "Easpórtáil mo chuid sonraí"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "Meáin sheachtracha"
@@ -2897,17 +3184,22 @@ msgstr "Meáin sheachtracha"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Is féidir le meáin sheachtracha cumas a thabhairt do shuíomhanna ar an nGréasán eolas fútsa agus faoi do ghléas a chnuasach. Ní sheoltar ná iarrtar aon eolas go dtí go mbrúnn tú an cnaipe “play”."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Roghanna maidir le meáin sheachtracha"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "Theip ar athrú an leasainm. Bain triail eile as."
@@ -2915,7 +3207,7 @@ msgstr "Theip ar athrú an leasainm. Bain triail eile as."
msgid "Failed to create app password. Please try again."
msgstr "Theip ar phasfhocal aipe a chruthú. Bain triail eile as."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr ""
@@ -2924,35 +3216,37 @@ msgstr ""
msgid "Failed to create starter pack"
msgstr "Theip ar chruthú an phacáiste fáilte"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "Teip ar chruthú an liosta. Seiceáil do nasc leis an idirlíon agus déan iarracht eile."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Teip ar theachtaireacht a scriosadh"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "Teip ar scriosadh na postála. Déan iarracht eile."
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "Theip ar scriosadh an phacáiste fáilte"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "Teip ar lódáil roghanna na bhfothaí"
@@ -2964,17 +3258,19 @@ msgstr "Theip ar lódáil na GIFanna"
msgid "Failed to load past messages"
msgstr "Teip ar theachtaireachtaí roimhe seo a lódáil"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "Teip ar lódáil na bhfothaí molta"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "Teip ar lódáil na gcuntas molta"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr ""
@@ -2982,7 +3278,16 @@ msgstr ""
msgid "Failed to pin post"
msgstr "Theip ar ghreamú na postála"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr ""
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Níor sábháladh an íomhá: {0}"
@@ -2994,20 +3299,39 @@ msgstr "Teip ar na socruithe a shábháil. Déan iarracht eile."
msgid "Failed to save settings. Please try again."
msgstr ""
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "Teip ar sheoladh"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/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/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "Teip ar bhalbhú an tsnáithe a athrú; bain triail eile as"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr ""
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "Theip ar uasdátú na bhfothaí"
@@ -3022,20 +3346,24 @@ msgstr "Teip ar shocruithe a uasdátú"
msgid "Failed to upload video"
msgstr "Theip ar uaslódáil an fhíseáin"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "Theip ar dhearbhú an leasainm. Bain triail eile as."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Fotha"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Fotha le {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "Roghchlár an fhotha"
@@ -3043,26 +3371,26 @@ msgstr "Roghchlár an fhotha"
msgid "Feed toggle"
msgstr "Scoránú an fhotha"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Aiseolas"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "Seoladh an t-aiseolas!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Fothaí"
@@ -3070,13 +3398,13 @@ msgstr "Fothaí"
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."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "Uasdátaíodh na fothaí!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "Fothaí a mbeadh spéis agat iontu."
@@ -3092,11 +3420,11 @@ msgstr "Sábháladh an comhad!"
msgid "Filter from feeds"
msgstr "Scag ó mo chuid fothaí"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr ""
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr ""
@@ -3110,13 +3438,13 @@ msgstr "Ag cur crích air"
msgid "Find accounts to follow"
msgstr "Aimsigh fothaí le leanúint"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "Aimsigh daoine le leanúint"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
@@ -3148,11 +3476,11 @@ msgid "Flexible"
msgstr "Solúbtha"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Lean"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Lean"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Lean {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Lean {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "Lean 10 gcuntas"
msgid "Follow 7 accounts"
msgstr "Lean 7 gcuntas"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Lean iad uile"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Lean Ar Ais"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Lean Ar Ais"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "Lean níos mó cuntas le ceangal a dhéanamh le do chuid suimeanna agus le do líonra a thógáil."
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "Leanta ag <0>{0}0>"
@@ -3224,7 +3544,7 @@ msgstr "Leanta ag <0>{0}0> agus <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Leanta ag <0>{0}0>, <1>{1}1>, agus {2, plural, one {duine amháin eile} two {beirt eile} few {# dhuine eile} many {# nduine eile} other {# duine eile}}"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Leantóirí de chuid @{0} a bhfuil aithne agat orthu"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Leantóirí a bhfuil aithne agat orthu"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Á leanúint"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "Ag leanúint {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Ag leanacht {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Roghanna le haghaidh an fhotha Following"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Roghanna don Fhotha Following"
@@ -3301,6 +3617,10 @@ msgstr "De bharr cúrsaí slándála, ní bheidh tú in ann breathnú air seo ar
msgid "For the best experience, we recommend using the theme font."
msgstr "Don eispéireas is fearr, molaimid an cló téama."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Go brách"
@@ -3327,7 +3647,7 @@ msgstr "Is minic a phostálann siad ábhar nach bhfuil de dhíth"
msgid "From @{sanitizedAuthor}"
msgstr "Ó @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Ó <0/>"
@@ -3336,28 +3656,30 @@ msgstr "Ó <0/>"
msgid "Gallery"
msgstr "Gailearaí"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Cruthaigh pacáiste fáilte"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Faigh cabhair"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "Ar aghaidh leat anois!"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr ""
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Tús maith"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
-msgstr ""
+msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Tabhair gnúis do do phróifíl"
@@ -3366,17 +3688,17 @@ 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/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Ar ais"
@@ -3384,10 +3706,10 @@ msgstr "Ar ais"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Ar ais"
@@ -3408,7 +3730,27 @@ msgstr "Abhaile"
msgid "Go Home"
msgstr "Abhaile"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Téigh go comhrá le {0}"
@@ -3427,8 +3769,8 @@ msgstr "Téigh go próifíl an úsáideora"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Meáin Ghrafacha"
@@ -3437,21 +3779,21 @@ msgstr "Meáin Ghrafacha"
msgid "Half way there!"
msgstr "Leath bealaigh ann!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Leasainm"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "Tá an leasainm seo in úsáid cheana. Bain triail as ceann eile."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "Athraíodh an leasainm!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "Tá an leasainm seo rófhada. Bain triail as ceann níos giorra."
@@ -3464,7 +3806,7 @@ msgstr "Haptaic"
msgid "Harassment, trolling, or intolerance"
msgstr "Ciapadh, trolláil, nó éadulaingt"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Haischlib"
@@ -3472,19 +3814,24 @@ msgstr "Haischlib"
msgid "Hashtag {tag}"
msgstr ""
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "Fadhb ort?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Cúnamh"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Tabhair le fios dúinn nach bot thú trí pictiúr a uaslódáil nó abhatár a chruthú."
@@ -3497,7 +3844,7 @@ msgstr "Seo duit do phasfhocal aipe!"
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr ""
@@ -3509,18 +3856,17 @@ msgstr "Liosta i bhfolach"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Cuir i bhfolach"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Cuir i bhfolach"
@@ -3529,38 +3875,40 @@ msgstr "Cuir i bhfolach"
msgid "Hide customization options"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Cuir an phostáil seo i bhfolach domsa"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Cuir an freagra i bhfolach do chách"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Cuir an freagra i bhfolach domsa"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "An bhfuil fonn ort an phostáil seo a chur i bhfolach?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "An bhfuil fonn ort an freagra seo a chur i bhfolach?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Cuir treochtaí i bhfolach"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "An bhfuil fonn ort treochtaí a chur i bhfolach?"
@@ -3569,10 +3917,15 @@ msgstr "An bhfuil fonn ort treochtaí a chur i bhfolach?"
msgid "Hide trending videos?"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Cuir liosta na gcuntas i bhfolach"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "Hmm. Thug freastalaí an fhotha drochfhreagra. Cuir é seo in iúl d’
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Hmm. Ní féidir linn an fotha seo a aimsiú. Is féidir gur scriosadh é."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Hmmm, is cosúil go bhfuil fadhb againn le lódáil na sonraí seo. Féach thíos le haghaidh tuilleadh sonraí. Má mhaireann an fhadhb seo, téigh i dteagmháil linn, le do thoil."
@@ -3610,15 +3963,15 @@ msgstr "Hmmm, ní raibh muid in ann an tseirbhís modhnóireachta sin a lódáil
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Foighne ort! Tá físeáin á seoladh de réir a chéile, agus tá tú fós ag fanacht ar d'uain. Déan iarracht go luath!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Baile"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "Óstach:"
@@ -3627,34 +3980,33 @@ msgstr "Óstach:"
msgid "Hosting provider"
msgstr "Soláthraí óstála"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr ""
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "Freagraí teo chun tosaigh"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "Conas ar cheart dúinn an nasc seo a oscailt?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Tá cód agam"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Tá cód agam"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Tá cód dearbhaithe agam"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Tá fearann de mo chuid féin agam"
@@ -3667,22 +4019,30 @@ msgstr "Tuigim"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Má tá an téacs malartach rófhada, athraíonn sé seo go téacs leathnaithe"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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:758
+#: src/view/screens/ProfileList.tsx:765
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/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Má tá fearann de do chuid féin agat, is féidir é sin a úsáid mar leasainm, agus sa chaoi sin, d'aitheantas féin a dhearbhú. <0>Tuilleadh eolais.0>"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Má bhaineann tú an phostáil seo, ní bheidh tú in ann í a fháil ar ais."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr ""
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Más mian leat do phasfhocal a athrú, seolfaimid cód duit chun dearbhú gur leatsa an cuntas seo."
@@ -3704,9 +4064,22 @@ msgstr "Mídhleathach agus Práinneach"
msgid "Image"
msgstr "Íomhá"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "Sábháladh an íomhá ar do rolla ceamara!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr ""
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr ""
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr ""
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "Teachtaireachtaí míchuí nó nascanna graosta"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr ""
@@ -3752,15 +4125,11 @@ msgstr "Cuir isteach an pasfhocal chun an cuntas a scriosadh"
msgid "Input the code which has been emailed to you"
msgstr "Cuir isteach an cód a chuir muid chugat i dteachtaireacht r-phoist"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "Cuir isteach an leasainm nó an seoladh ríomhphoist a d’úsáid tú nuair a chláraigh tú"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Idirghníomhaíocht teoranta"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr ""
@@ -3769,11 +4138,11 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Tá an cód 2FA seo neamhbhailí."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Leasainm neamhbhailí. Bain triail as ceann eile."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "Taifead postála atá neamhbhailí nó gan bhunús"
@@ -3789,11 +4158,11 @@ msgstr "Cód Deimhnithe Neamhbhailí"
msgid "Invite a Friend"
msgstr "Tabhair cuireadh chuig cara leat"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Cód cuiridh"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
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."
@@ -3805,7 +4174,7 @@ msgstr "Cóid chuiridh: {0} ar fáil"
msgid "Invite codes: 1 available"
msgstr "Cóid chuiridh: 1 ar fáil"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "Tabhair cuireadh do dhaoine chuig an pacáiste fáilte!"
@@ -3817,7 +4186,7 @@ msgstr "Tabhair cuireadh do do chuid cairde na fothaí agus na daoine is fearr l
msgid "Invites, but personal"
msgstr "Cuirí, ach pearsanta"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "Tá. Tá sé ceart"
@@ -3825,19 +4194,19 @@ msgstr "Tá. Tá sé ceart"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Níl ann ach tusa anois! Cuardaigh thuas le tuilleadh daoine a chur le do phacáiste fáilte."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "ID an Jab: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Jabanna"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Cláraigh le Bluesky"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "Lipéadaithe ag an údar."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Lipéid"
@@ -3868,7 +4237,7 @@ msgstr "Lipéid"
msgid "Labels added"
msgstr "Cuireadh lipéid leis"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "Nótaí faoi úsáideoirí nó ábhar is ea lipéid. Is féidir úsáid a bhaint astu leis an líonra a cheilt, a chatagóiriú, agus fainic a chur air."
@@ -3884,13 +4253,13 @@ msgstr "Lipéid ar do chuid ábhair"
msgid "Language selection"
msgstr "Rogha teanga"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Socruithe teanga"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Teangacha"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Níos Mó"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "Is Déanaí"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "tuilleadh eolais"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Le tuilleadh a fhoghlaim"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Tuilleadh eolais maidir le Bluesky"
@@ -3933,6 +4311,11 @@ msgstr "Foghlaim níos mó faoin modhnóireacht a dhéantar ar an ábhar seo."
msgid "Learn more about this warning"
msgstr "Le tuilleadh a fhoghlaim faoin rabhadh seo"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr ""
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "Ag fágáil slán ag Bluesky"
msgid "left to go."
msgstr "le déanamh fós."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Lig dom roghnú"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Sorcha"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "Moladh"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Mol ({0, plural, one {# mholadh} two {# mholadh} few {# mholadh} many {# moladh} other {# moladh}})"
@@ -4013,17 +4397,16 @@ msgstr "Mol 10 bpostáil."
msgid "Like 10 posts to train the Discover feed"
msgstr "Mol 10 bpostáil leis an bhfotha Discover a thraenáil"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Mol an fotha seo"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr ""
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Molta ag"
@@ -4033,43 +4416,43 @@ msgstr "Molta ag"
msgid "Liked By"
msgstr "Molta ag"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Molta ag {0, plural, one {úsáideoir amháin} two {# úsáideoir} few {# úsáideoir} many {# n-úsáideoir} other {# úsáideoir}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Molta ag {likeCount, plural, one {úsáideoir amháin} two {# úsáideoir} few {# úsáideoir} many {# n-úsáideoir} other {# úsáideoir}}"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "Moltaí"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "Moltaí don phostáil seo"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "Líneach"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Liosta"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Abhatár an Liosta"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "Liosta blocáilte"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4084,44 +4467,44 @@ msgstr "Liosta le <0/>"
msgid "List by you"
msgstr "Liosta de do chuid"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "Scriosadh an liosta"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
msgstr "Cuireadh an liosta i bhfolach"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "Cuireadh an liosta i bhfolach"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "Balbhaíodh an liosta"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Ainm an liosta"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "Liosta díbhlocáilte"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "Liosta nach bhfuil balbhaithe níos mó"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Liostaí"
@@ -4129,34 +4512,47 @@ msgstr "Liostaí"
msgid "Lists blocking this user:"
msgstr "Liostaí a bhlocálann an t-úsáideoir seo:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr ""
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr ""
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Lódáil tuilleadh"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "Lódáil tuilleadh fothaí molta"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Lódáil tuilleadh cuntas le leanúint"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Lódáil fógraí nua"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Lódáil postálacha nua"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Ag lódáil …"
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Logleabhar"
@@ -4164,12 +4560,12 @@ msgstr "Logleabhar"
msgid "Logged-out visibility"
msgstr "Feiceálacht le linn a bheith logáilte amach"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "@sawaratsuki.bsky.social a rinne an lógó"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "<0>@sawaratsuki.bsky.social0> a rinne an lógó"
@@ -4193,7 +4589,11 @@ msgstr "Is cosúil gur éirigh tú as na fothaí uilig a bhí agat. Ná bíodh i
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Is cosúil go bhfuil fotha leanúna ar iarraidh ort. <0>Cliceáil anseo le ceann a fháil.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "Déan ceann domsa"
@@ -4201,18 +4601,22 @@ msgstr "Déan ceann domsa"
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/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "Bainistigh na fothaí a shábháil tú"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Bainistigh do chuid clibeanna agus na focail a bhalbhaigh tú"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr ""
@@ -4221,16 +4625,23 @@ msgstr ""
msgid "Mark as read"
msgstr "Marcáil léite"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr ""
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Meáin"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Meáin a d'fhéadfadh a bheith mí-oiriúnach nó a chuirfeadh isteach ar dhaoine áirithe."
@@ -4246,23 +4657,27 @@ msgstr "Úsáideoirí luaite"
msgid "Mentions"
msgstr "Luaite"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Clár"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Teachtaireacht {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Scriosadh an teachtaireacht"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Scriosadh an teachtaireacht"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr ""
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Teachtaireacht ón bhfreastalaí: {0}"
@@ -4276,7 +4691,11 @@ msgstr "Réimse ionchur teachtaireachtaí"
msgid "Message is too long"
msgstr "Tá an teachtaireacht rófhada"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr ""
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Teachtaireachtaí"
@@ -4295,10 +4714,10 @@ msgstr "Cuntas atá Míthreorach"
msgid "Misleading Post"
msgstr "Postáil atá Míthreorach"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Modhnóireacht"
@@ -4320,22 +4739,22 @@ msgstr "Liosta modhnóireachta le <0/>"
msgid "Moderation list by you"
msgstr "Liosta modhnóireachta leat"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "Liosta modhnóireachta cruthaithe"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "Liosta modhnóireachta uasdátaithe"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Liostaí modhnóireachta"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Liostaí modhnóireachta"
@@ -4343,11 +4762,11 @@ msgstr "Liostaí modhnóireachta"
msgid "moderation settings"
msgstr "socruithe modhnóireachta"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "Stádais modhnóireachta"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Uirlisí modhnóireachta"
@@ -4356,7 +4775,7 @@ msgstr "Uirlisí modhnóireachta"
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:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Tuilleadh"
@@ -4365,9 +4784,9 @@ msgstr "Tuilleadh"
msgid "More feeds"
msgstr "Tuilleadh fothaí"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Tuilleadh roghanna"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "Líon is mó moltaí chun tosaigh"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Freagraí a fuair an méid is mó moltaí ar dtús"
@@ -4400,14 +4819,14 @@ msgstr "Balbhaigh"
msgid "Mute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr ""
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Balbhaigh cuntais"
@@ -4420,11 +4839,11 @@ msgstr "Balbhaigh an comhrá"
msgid "Mute in:"
msgstr "Balbhaigh i:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Balbhaigh an liosta"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "An bhfuil fonn ort na cuntais seo a bhalbhú?"
@@ -4452,26 +4871,26 @@ msgstr "Balbhaigh an focal seo i gclibeanna amháin"
msgid "Mute this word until you unmute it"
msgstr "Balbhaigh an focal seo go ndíbhalbhóidh mé é"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Balbhaigh an snáithe seo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Balbhaigh focail ⁊ clibeanna"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Cuntais a balbhaíodh"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Cuntais a balbhaíodh"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
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."
@@ -4479,11 +4898,11 @@ msgstr "Baintear na postálacha ó na cuntais a chuir tú i bhfolach as d’fhot
msgid "Muted by \"{0}\""
msgstr "Curtha i bhfolach ag \"{0}\""
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Focail ⁊ clibeanna a cuireadh i bhfolach"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Tá an balbhú príobháideach. Is féidir leis na cuntais a bhalbhaigh tú do chuid postálacha a fheiceáil agus is féidir leo scríobh chugat ach ní fheicfidh tú a gcuid postálacha eile ná aon fhógraí uathu."
@@ -4492,15 +4911,15 @@ msgstr "Tá an balbhú príobháideach. Is féidir leis na cuntais a bhalbhaigh
msgid "My Birthday"
msgstr "Mo Bhreithlá"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "Mo Chuid Fothaí"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Ainm"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "Tá an t-ainm riachtanach"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Nádúr"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "Téigh go {0}"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "Téann sé seo chuig an gcéad scáileán eile"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Téann sé seo chuig do phróifíl"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "An gcaithfidh tú é a athrú?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "An bhfuil tú ag iarraidh sárú cóipchirt a thuairisciú?"
@@ -4547,30 +4971,43 @@ msgstr "An bhfuil tú ag iarraidh sárú cóipchirt a thuairisciú?"
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."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "Is cuma, cruthaigh leasainm dom"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Nua"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Nua"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "Comhrá nua"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "Leasainm nua"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "Liosta nua"
@@ -4578,7 +5015,7 @@ msgstr "Liosta nua"
msgid "New messages"
msgstr "Teachtaireachtaí nua"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Liosta modhnóireachta nua"
@@ -4590,12 +5027,12 @@ msgstr "Pasfhocal Nua"
msgid "New Password"
msgstr "Pasfhocal Nua"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Postáil nua"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "Postáil nua"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Postáil nua"
@@ -4613,19 +5050,20 @@ msgstr "Postáil nua"
msgid "New user info dialog"
msgstr "Dialóg: eolas faoi úsáideoir nua"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Liosta Nua d’Úsáideoirí"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "Na freagraí is déanaí ar dtús"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Nuacht"
@@ -4655,11 +5093,15 @@ msgstr "An chéad íomhá eile"
msgid "No app passwords yet"
msgstr "Níl aon phasfhocal aipe ann fós"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "Gan Phainéal DNS"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "Níor aimsíodh GIFanna speisialta. D'fhéadfadh sé gur tharla fadhb le Tenor."
@@ -4668,21 +5110,25 @@ 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 "Ní fuarthas aon fhothaí. Bain triail as rud éigin eile a chuardach."
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr ""
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "Gan moladh fós"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "Ní leantar {0} níos mó"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "Níl aon teachtaireacht ann fós"
@@ -4711,31 +5157,38 @@ msgstr "Gan phostáil athluaite fós"
msgid "No reposts yet"
msgstr "Gan athphostáil fós"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Gan torthaí"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "Toradh ar bith"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr ""
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "Gan torthaí"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "Gan torthaí ar “{query}”"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "Gan torthaí ar {query}"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "Gan torthaí ar \"{search}\"."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Duine ar bith"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "Níor mhol éinne fós é. Ar cheart duitse tosú?"
@@ -4775,19 +5227,15 @@ msgstr "Lomnochtacht Neamhghnéasach"
msgid "Not followed by anyone you're following"
msgstr ""
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "Ní bhfuarthas é sin"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "Ní anois"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Nóta faoi roinnt"
@@ -4795,7 +5243,7 @@ msgstr "Nóta faoi roinnt"
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á logáilte amach ar aipeanna agus suíomhanna eile."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Tada anseo"
@@ -4803,7 +5251,7 @@ msgstr "Tada anseo"
msgid "Notification filters"
msgstr "Scagairí fógra"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Socruithe fógra"
@@ -4820,11 +5268,11 @@ msgstr "Fuaimeanna fógra"
msgid "Notification Sounds"
msgstr "Fuaimeanna Fógra"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Fógraí"
@@ -4832,12 +5280,12 @@ msgstr "Fógraí"
msgid "now"
msgstr "anois"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Anois"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Lomnochtacht"
@@ -4859,21 +5307,23 @@ msgstr "Úps!"
msgid "Oh no! Something went wrong."
msgstr "Úps! Theip ar rud éigin."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
-msgstr ""
+msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "Maith go leor"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "Na freagraí is sine ar dtús"
@@ -4881,19 +5331,19 @@ msgstr "Na freagraí is sine ar dtús"
msgid "on<0><1/><2><3/>2>0>"
msgstr "ar<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Atosú an chláraithe"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "Téacs malartach de dhíth ar GIF nó ar GIFanna."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "Tá téacs malartach de dhíth ar íomhá amháin nó níos mó acu."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "Téacs malartach de dhíth ar fhíseán nó ar fhíseáin"
@@ -4905,11 +5355,11 @@ msgstr "Ní oibríonn ach comhaid .jpg agus .png"
msgid "Only {0} can reply."
msgstr "Ní féidir ach le {0} freagra a thabhairt."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Níl ann ach litreacha, uimhreacha, agus fleiscíní"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "Ní thacaítear ach le comhaid íomhá"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "Úps! Theip ar rud éigin!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "Úps!"
@@ -4935,67 +5385,80 @@ msgstr "Úps!"
msgid "Open"
msgstr "Oscail"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "Oscail roghchlár giorrúcháin phróifíl {name}"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Oscail an cruthaitheoir abhatáir"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "Oscail na roghanna comhrá"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "Oscail an roghchlár tarraiceáin"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Oscail roghnóir na n-emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "Oscail eolas faoin fhotha"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "Oscail roghchlár na bhfothaí"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr ""
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "Oscail nasc le {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "Oscail na roghanna teachtaireachta"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "Oscail leathanach chun modhnóireacht a dhífhabhtú"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Oscail socruithe na gclibeanna agus na bhfocal a bhalbhaigh tú"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "Oscail roghchlár na bpostálacha"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "Oscail clár an phacáiste fáilte"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Oscail leathanach an Storybook"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Oscail logleabhar an chórais"
@@ -5015,19 +5478,19 @@ msgstr "Osclaíonn sé seo dialóg leis na daoine a roghnú a bhfuil cead acu fr
msgid "Opens additional details for a debug entry"
msgstr "Osclaíonn sé seo tuilleadh sonraí le haghaidh iontráil dífhabhtaithe"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Osclaíonn sé seo an ceamara ar an ngléas"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr ""
@@ -5039,7 +5502,7 @@ msgstr "Osclaíonn sé seo an t-eagarthóir"
msgid "Opens device photo gallery"
msgstr "Osclaíonn sé seo gailearaí na ngrianghraf ar an ngléas"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr ""
@@ -5057,7 +5520,7 @@ msgstr ""
msgid "Opens GIF select dialog"
msgstr "Osclaíonn sé seo fuinneog chun GIF a roghnú"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr ""
@@ -5065,6 +5528,10 @@ msgstr ""
msgid "Opens list of invite codes"
msgstr "Osclaíonn sé seo liosta na gcód cuiridh"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Osclaíonn sé seo an fhoirm leis an bpasfhocal a athrú"
@@ -5073,12 +5540,12 @@ msgstr "Osclaíonn sé seo an fhoirm leis an bpasfhocal a athrú"
msgid "Opens the linked website"
msgstr "Osclaíonn sé seo an suíomh gréasáin atá nasctha"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Osclaíonn sé an phróifíl seo"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Osclaíonn sé seo an roghnóir físeán"
@@ -5121,11 +5588,11 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Eile"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Cuntas eile"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Leathanach gan aimsiú"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "Sos"
msgid "Pause video"
msgstr "Cuir an físeán ar shos"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "Daoine"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "Na daoine atá leanta ag @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "Na leantóirí atá ag @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "Tá cead de dhíth le rolla an cheamara a oscailt."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "Ní bhfuarthas cead le rolla an cheamara a oscailt. Athraigh socruithe an chórais len é seo a chur ar fáil, le do thoil."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr ""
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "Peataí"
msgid "Photography"
msgstr "Grianghrafadóireacht"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Pictiúir le haghaidh daoine fásta."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "Greamaigh an fotha"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
msgstr ""
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Greamaigh le baile"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Greamaigh le Baile"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Greamaigh le do phróifíl"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Greamaithe"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "Greamaíodh {0} le Baile"
@@ -5263,7 +5722,7 @@ msgstr "Greamaíodh {0} le Baile"
msgid "Pinned Feeds"
msgstr "Fothaí greamaithe"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "Greamaithe le do chuid fothaí"
@@ -5302,24 +5761,28 @@ msgstr "Seinneann sé seo an GIF"
msgid "Plays the video"
msgstr ""
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr ""
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Roghnaigh do leasainm, le do thoil."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Roghnaigh do phasfhocal, le do thoil."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr ""
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Déan an captcha, le do thoil."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Dearbhaigh do ríomhphost roimh é a athrú. Riachtanas sealadach é seo le linn dúinn acmhainní a chur isteach le haghaidh uasdátú an ríomhphoist. Scriosfar é seo roimh i bhfad."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr ""
@@ -5335,19 +5798,41 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Cuir isteach ainm uathúil ar an bpasfhocal aipe seo, nó bain úsáid as an ainm randamach a chruthaigh muid."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr ""
+
#: 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 balbhú"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr ""
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Cuir isteach do sheoladh ríomhphoist, le do thoil."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Cuir isteach do chód cuiridh."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr ""
@@ -5381,24 +5866,25 @@ msgstr ""
msgid "Please sign in as @{0}"
msgstr "Logáil isteach mar @{0}"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Dearbhaigh do ríomhphost, le do thoil."
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Polaitíocht"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr ""
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Pornagrafaíocht"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Postáil"
@@ -5408,32 +5894,32 @@ msgctxt "description"
msgid "Post"
msgstr "Postáil"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Postáil Uile"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "Postáil ó {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "Postáil ó @{0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "Scriosadh an phostáil"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Níor uaslódáladh an phostáil. Seiceáil do cheangal leis an idirlíon agus bain triail eile as."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr ""
@@ -5455,7 +5941,7 @@ msgstr "Postáil a chuir tú i bhfolach"
msgid "Post interaction settings"
msgstr "Socruithe idirghníomhaíochta na postála"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr ""
@@ -5476,15 +5962,16 @@ msgstr "Ní bhfuarthas an phostáil"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "Greamaíodh an phostáil"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "Díghreamaíodh an phostáil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Postálacha"
@@ -5503,7 +5990,7 @@ msgstr "Is féidir go bhfuil an nasc seo míthreorach."
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "Sábháladh an rogha"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -5524,7 +6011,7 @@ msgstr "Brúigh leis na daoine a leanann an cuntas seo a leanann tú féin a fhe
msgid "Previous image"
msgstr "An íomhá roimhe seo"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Príomhtheanga"
@@ -5537,31 +6024,31 @@ msgstr "Cuir na cuntais a leanaim chun tosaigh"
msgid "Priority notifications"
msgstr "Fógraí tábhachtacha"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Príobháideacht"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "Príobháideacht agus slándáil"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Príobháideacht agus Slándáil"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Polasaí Príobháideachta"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Físeán á phróiseáil..."
@@ -5570,23 +6057,23 @@ msgstr "Físeán á phróiseáil..."
msgid "Processing..."
msgstr "Á phróiseáil..."
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "próifíl"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Próifíl"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "Próifíl uasdátaithe"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
@@ -5600,6 +6087,26 @@ msgstr "Liostaí poiblí inroinnte chun úsáideoirí a bhlocáil ar an mórchó
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "Liostaí poiblí inroinnte ar féidir leo fothaí a bheathú."
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr ""
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr ""
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr ""
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr ""
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "Cóipeáladh an cód QR sa ghearrthaisce"
@@ -5612,25 +6119,25 @@ msgstr "Íoslódáladh an cód QR!"
msgid "QR code saved to your camera roll!"
msgstr "Sábháladh an cód QR i do rolla cheamara!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Postáil athluaite"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "Athcheanglaíodh an phostáil athluaite"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "Dícheanglaíodh an phostáil athluaite"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "Ní féidir postálacha a athlua"
@@ -5642,39 +6149,48 @@ msgstr "Socruithe maidir le postálacha athluaite"
msgid "Quotes"
msgstr "Postálacha athluaite"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "Postálacha athluaite den phostáil seo"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Randamach"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "Rinne tú an iomarca iarrachtaí do leasainm a athrú taobh istigh de thréimhse ghearr. Fan cúpla nóiméad sula ndéanann tú iarracht eile."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "Athcheangail an phostáil athluaite"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr ""
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Athghníomhaigh do chuntas"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Léigh blag Bluesky"
@@ -5697,11 +6213,11 @@ msgstr ""
msgid "Reason:"
msgstr "Fáth:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Cuardaigh a Rinneadh le Déanaí"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "Molta"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "Athnasc"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Athlódáil comhráite"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Scrios"
msgid "Remove {displayName} from starter pack"
msgstr "Bain {displayName} den phacáiste fáilte"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr ""
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Bain an cuntas de"
@@ -5752,13 +6268,13 @@ msgstr "Bain an cuntas de"
msgid "Remove attachment"
msgstr "Bain an ceangaltán de"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Bain an tAbhatár Amach"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "Bain an Fógra Meirge Amach"
@@ -5776,24 +6292,25 @@ msgstr "Bain an fotha de"
msgid "Remove feed?"
msgstr "An bhfuil fonn ort an fotha a bhaint?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Bain de mo chuid fothaí"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "An bhfuil fonn ort é a bhaint den mhearliosta?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "Bain de mo chuid fothaí sábháilte"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr ""
@@ -5802,11 +6319,16 @@ msgstr ""
msgid "Remove image"
msgstr "Bain an íomhá de"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Bain focal balbhaithe de do liosta"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Bain an phróifíl"
@@ -5814,12 +6336,12 @@ msgstr "Bain an phróifíl"
msgid "Remove quote"
msgstr "Bain an phostáil athluaite"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Scrios an athphostáil"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Bain an comhad fotheideal"
@@ -5827,6 +6349,21 @@ msgstr "Bain an comhad fotheideal"
msgid "Remove this feed from your saved feeds"
msgstr "Bain an fotha seo de do chuid fothaí sábháilte"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr ""
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "Bainte ag an údar"
@@ -5835,7 +6372,7 @@ msgstr "Bainte ag an údar"
msgid "Removed by you"
msgstr "Bainte agat"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Baineadh den liosta é"
@@ -5845,18 +6382,17 @@ msgid "Removed from my feeds"
msgstr "Baineadh de do chuid fothaí é"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Baineadh de do chuid fothaí sábháilte é"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Baineadh de do chuid fothaí é"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
msgstr ""
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
@@ -5868,7 +6404,7 @@ msgstr "Baineann sé seo an phostáil athluaite"
msgid "Replace with Discover"
msgstr "Cuir an fotha Discover ina áit"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Freagraí"
@@ -5880,12 +6416,13 @@ msgstr "Cuireadh bac ar fhreagraí"
msgid "Replies to this post are disabled."
msgstr "Ní féidir freagraí a thabhairt ar an bpostáil seo."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Freagair"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Freagair ({0, plural, one {# fhreagra} two {# fhreagra} few {# fhreagra} many {# bhfreagra} other {# freagra}})"
@@ -5907,86 +6444,86 @@ msgstr "Socruithe freagraí"
msgid "Reply settings are chosen by the author of the thread"
msgstr "Is é údar an tsnáithe a roghnaíonn socruithe a bhaineann le freagraí"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "Freagraí a shórtáil"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Freagra ar <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Freagra ar phostáil bhlocáilte"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "Freagra ar phostáil"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Freagra ort"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "Nuashonraíodh infheictheacht na bhfreagraí"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "Cuireadh an freagra i bhfolach"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Tuairiscigh"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Tuairiscigh an comhrá seo"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "Tuairiscigh comhrá"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Déan gearán faoi fhotha"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
-msgstr "Déan gearán faoi liosta"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Tuairiscigh an teachtaireacht seo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Déan gearán faoi phostáil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "Déan gearán faoi phacáiste fáilte"
@@ -6030,25 +6567,26 @@ msgstr "Tuairiscigh an pacáiste fáilte seo"
msgid "Report this user"
msgstr "Déan gearán faoin úsáideoir seo"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Athphostáil"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Athphostáil"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Athphostáil ({0, plural, one {# athphostáil} two {# athphostáil} few {# athphostáil} many {# n-athphostáil} other {# athphostáil}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Athphostáil nó athluaigh an phostáil"
@@ -6056,27 +6594,27 @@ msgstr "Athphostáil nó athluaigh an phostáil"
msgid "Reposted By"
msgstr "Athphostáilte ag"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "Athphostáilte ag {0}"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "Athphostáilte ag <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "Athphostáilte agat"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "Athphostálacha den phostáil seo"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "Iarr Athrú"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr ""
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6088,11 +6626,11 @@ msgstr "Iarr Cód"
msgid "Require alt text before posting"
msgstr "Bíodh téacs malartach ann roimh phostáil i gcónaí"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Riachtanach don soláthraí seo"
@@ -6100,13 +6638,19 @@ msgstr "Riachtanach don soláthraí seo"
msgid "Required in your region"
msgstr "Riachtanach i do réigiún"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "Athsheol an ríomhphost"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "Athsheol an ríomhphost"
@@ -6123,8 +6667,8 @@ msgstr "Cód athshocraithe"
msgid "Reset Code"
msgstr "Cód Athshocraithe"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "Athshocraigh an próiseas cláraithe"
@@ -6141,16 +6685,16 @@ msgstr ""
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:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "Baineann sé seo triail eile as an ngníomh is déanaí, ar theip air"
msgid "Retry"
msgstr "Bain triail eile as"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr ""
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Fill ar an leathanach roimhe seo"
@@ -6175,11 +6719,11 @@ msgstr "Fill ar an leathanach roimhe seo"
msgid "Returns to home page"
msgstr "Filleann sé seo abhaile"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "Filleann sé seo ar an leathanach roimhe seo"
@@ -6190,24 +6734,26 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Sábháil"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Sábháil"
@@ -6221,12 +6767,12 @@ msgstr "Sábháil do bhreithlá"
msgid "Save changes"
msgstr "Sábháil na hathruithe"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Sábháil na hAthruithe"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Sábháil an íomhá"
@@ -6234,16 +6780,16 @@ msgstr "Sábháil an íomhá"
msgid "Save image crop"
msgstr "Sábháil an pictiúr bearrtha"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Sábháil an leasainm nua"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "Sábháil an cód QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Sábháil i mo chuid fothaí"
@@ -6251,16 +6797,12 @@ msgstr "Sábháil i mo chuid fothaí"
msgid "Saved Feeds"
msgstr "Fothaí Sábháilte"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "Sábháladh i do rolla ceamara é"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "Sábháilte le mo chuid fothaí"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "Sábhálann sé seo aon athrú ar do phróifíl"
@@ -6270,8 +6812,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/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "Abair heileo!"
@@ -6280,45 +6822,42 @@ msgstr "Abair heileo!"
msgid "Science"
msgstr "Eolaíocht"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "Fill ar an mbarr"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Cuardaigh"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "Cuardach de réir ainm nó spéiseanna"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "Cuardaigh fothaí"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "Déan cuardach ar \"{interestsDisplayName}\"{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Déan cuardach ar “{query}”"
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "Déan cuardach ar \"{searchText}\""
@@ -6326,29 +6865,33 @@ msgstr "Déan cuardach ar \"{searchText}\""
msgid "Search for feeds that you want to suggest to others."
msgstr "Cuardaigh fothaí ar mhaith leat moladh do dhaoine eile."
-#: src/view/screens/Search/Search.tsx:875
-msgid "Search for posts, users, or feeds"
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Cuardaigh úsáideoirí"
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr ""
+
+#: src/screens/Search/Shell.tsx:334
+msgid "Search for posts, users, or feeds"
+msgstr ""
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "Cuardaigh GIFanna"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Cuardaigh próifílí"
@@ -6356,16 +6899,20 @@ msgstr "Cuardaigh próifílí"
msgid "Search Tenor"
msgstr "Cuardaigh Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Céim Slándála de dhíth"
@@ -6385,7 +6932,7 @@ msgstr ""
msgid "See #{tag} posts by user"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Féach ar phostanna le Bluesky"
@@ -6405,6 +6952,10 @@ msgstr "Roghnaigh dath"
msgid "Select account"
msgstr "Roghnaigh cuntas"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Roghnaigh abhatár"
@@ -6413,10 +6964,22 @@ msgstr "Roghnaigh abhatár"
msgid "Select an emoji"
msgstr "Roghnaigh emoji"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Roghnaigh teangacha ábhair"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr ""
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Roghnaigh ó chuntas atá ann"
@@ -6433,15 +6996,15 @@ msgstr "Roghnaigh GIF \"{0}\""
msgid "Select how long to mute this word for."
msgstr "Cá fhad a bheidh an focal seo balbhaithe?"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Roghnaigh teanga..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Roghnaigh teangacha"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr ""
@@ -6449,6 +7012,10 @@ msgstr ""
msgid "Select moderator"
msgstr "Roghnaigh modhnóir"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "Roghnaigh an emoji {emojiName} mar abhatár"
msgid "Select the moderation service(s) to report to"
msgstr "Roghnaigh na seirbhísí modhnóireachta le tuairisciú chuige"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Roghnaigh físeán"
@@ -6470,23 +7037,24 @@ msgstr "Roghnaigh físeán"
msgid "Select what content this mute word should apply to."
msgstr "Roghnaigh an t-ábhar a gcuirfear an focal balbhaithe seo i bhfeidhm air."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
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."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Roghnaigh do dháta breithe"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "Roghnaigh na rudaí a bhfuil suim agat iontu as na roghanna thíos"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
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."
@@ -6498,19 +7066,17 @@ msgstr ""
msgid "Send a neat website!"
msgstr "Seol suíomh gréasáin spéisiúil!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr "Seol Dearbhú"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Seol ríomhphost dearbhaithe"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Seol ríomhphost dearbhaithe"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Seol ríomhphost"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Seol ríomhphost"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Seol aiseolas"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Seol teachtaireacht"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr ""
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Seol an phostáil seo chuig..."
@@ -6544,17 +7114,20 @@ msgstr "Seol an tuairisc"
msgid "Send report to {0}"
msgstr "Seol an tuairisc chuig {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Seol ríomhphost dearbhaithe"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Seol mar theachtaireacht dhíreach"
@@ -6570,7 +7143,7 @@ msgstr "Seoladh an fhreastalaí"
msgid "Set app icon to {0}"
msgstr "Athraigh deilbhín na haipe go {0}"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "Socraigh do bhreithlá"
@@ -6586,10 +7159,10 @@ msgstr "Socraigh do chuntas"
msgid "Sets email for password reset"
msgstr "Socraíonn sé seo an seoladh ríomhphoist le haghaidh athshocrú an phasfhocail"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Socruithe"
@@ -6598,7 +7171,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Gníomhaíocht ghnéasach nó lomnochtacht gháirsiúil."
@@ -6606,21 +7179,15 @@ msgstr "Gníomhaíocht ghnéasach nó lomnochtacht gháirsiúil."
msgid "Sexually Suggestive"
msgstr "Graosta"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Comhroinn"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Comhroinn"
@@ -6633,15 +7200,19 @@ msgstr "Inis scéal suimiúil!"
msgid "Share a fun fact!"
msgstr "Roinn rud éigin fútsa féin!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Comhroinn mar sin féin"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "Comhroinn an nasc"
@@ -6650,32 +7221,46 @@ msgstr "Comhroinn an nasc"
msgid "Share Link"
msgstr "Comhroinn Nasc"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "Dialóg le nasc a roinnt"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Comhroinn an cód QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "Comhroinn an fotha seo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "Roinn an pacáiste fáilte seo"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "Roinn an pacáiste fáilte seo agus cuidigh le daoine páirt a ghlacadh i do phobal ar Bluesky."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr ""
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "Roinn an fotha is fearr leat!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "Tástáil Roghanna Comhroinnte"
@@ -6685,7 +7270,7 @@ msgstr "Roinneann sé seo na suíomh gréasáin atá nasctha"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Taispeáin"
@@ -6696,8 +7281,8 @@ msgstr "Taispeáin an téacs malartach"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Taispeáin mar sin féin"
@@ -6718,8 +7303,8 @@ msgstr ""
msgid "Show hidden replies"
msgstr "Taispeáin freagraí i bhfolach"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "Níos lú den sórt seo"
@@ -6727,14 +7312,14 @@ msgstr "Níos lú den sórt seo"
msgid "Show list anyway"
msgstr "Taispeáin an liosta mar sin féin"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Tuilleadh"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Níos mó den sórt seo"
@@ -6752,7 +7337,7 @@ msgstr "Taispeáin postálacha athluaite"
msgid "Show replies"
msgstr "Taispeáin freagraí"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "Taispeáin freagraí mar"
@@ -6764,8 +7349,8 @@ msgstr "Taispeáin freagraí i snáitheanna"
msgid "Show replies by people you follow before all other replies"
msgstr "Taispeáin freagraí ó na daoine a leanaim roimh aon fhreagra eile"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "Taispeáin freagra do chách"
@@ -6787,11 +7372,11 @@ msgstr "Taispeáin rabhadh"
msgid "Show warning and filter from feeds"
msgstr "Taispeáin rabhadh agus scag ó na fothaí é"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr ""
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr ""
@@ -6809,8 +7394,8 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr ""
msgid "Sign in"
msgstr "Logáil isteach"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Logáil isteach mar {0}"
@@ -6826,16 +7411,16 @@ msgstr "Logáil isteach mar {0}"
msgid "Sign in as..."
msgstr "Logáil isteach mar..."
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr ""
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "Logáil isteach nó cláraigh chun páirt a ghlacadh sa chomhrá!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr ""
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr ""
@@ -6843,15 +7428,15 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Logáil amach"
@@ -6859,8 +7444,8 @@ msgstr "Logáil amach"
msgid "Sign Out"
msgstr ""
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "Logáil amach?"
@@ -6874,11 +7459,6 @@ msgstr "Caithfidh tú logáil isteach"
msgid "Signed in as @{0}"
msgstr "Logáilte isteach mar @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "Cláraigh gan phacáiste fáilte"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Cuntais eile atá cosúil leis seo"
@@ -6896,12 +7476,21 @@ msgstr "Ná bac leis an bpróiseas seo"
msgid "Smaller"
msgstr "Níos Lú"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Forbairt Bogearraí"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "Fothaí eile a mbeadh suim agat iontu"
@@ -6909,23 +7498,31 @@ msgstr "Fothaí eile a mbeadh suim agat iontu"
msgid "Some people can reply"
msgstr "Tá daoine áirithe in ann freagra a thabhairt"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Theip ar rud éigin"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Chuaigh rud éigin amú, bain triail eile as"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Chuaigh rud éigin ó rath. Bain triail eile as."
@@ -6934,16 +7531,16 @@ msgstr "Chuaigh rud éigin ó rath. Bain triail eile as."
msgid "Something went wrong!"
msgstr "Theip ar rud éigin!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "Rud éigin mícheart? Abair linn."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr ""
@@ -6978,34 +7575,39 @@ msgstr "Turscar; an iomarca tagairtí nó freagraí"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Spórt"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Tosaigh comhrá nua"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "Cuir tús le daoine a leanúint"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "Cuir tús le daoine a leanúint!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Tosaigh comhrá le {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Pacáiste Fáilte"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "Pacáiste fáilte le {0}"
@@ -7013,38 +7615,39 @@ msgstr "Pacáiste fáilte le {0}"
msgid "Starter pack by <0/>"
msgstr "Pacáiste fáilte le <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "Pacáiste fáilte a chruthaigh tusa"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "Tá an pacáiste fáilte neamhbhailí"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "Pacáistí Fáilte"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Tig leat na fothaí agus na daoine is fearr leat a roinnt le do chuid cairde le pacáiste fáilte."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Leathanach Stádais"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "Céim {0} as {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
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:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr ""
@@ -7063,46 +7666,51 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Liostáil"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "Glac síntiús le @{0} leis na lipéid seo a úsáid:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "Glac síntiús le lipéadóir"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "Glac síntiús leis an lipéadóir seo"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "Liostáil leis an liosta seo"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "D'éirigh leis!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
-msgstr "Cuntais mholta"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
+msgstr ""
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Molta duit"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Gáirsiúil"
@@ -7116,16 +7724,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Tacaíocht"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Athraigh an cuntas"
@@ -7134,11 +7742,11 @@ msgstr "Athraigh an cuntas"
msgid "Switch Account"
msgstr "Athraigh an cuntas"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr ""
@@ -7149,9 +7757,9 @@ msgstr ""
msgid "System"
msgstr "Córas"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Logleabhar an chórais"
@@ -7159,6 +7767,12 @@ msgstr "Logleabhar an chórais"
msgid "Tags only"
msgstr "Clibeanna amháin"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Tapáil le dúnadh"
@@ -7184,7 +7798,7 @@ msgstr "Teic"
msgid "Tell a joke!"
msgstr "Inis scéal grinn!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "Abair linn beagáinín fút féin"
@@ -7192,17 +7806,17 @@ msgstr "Abair linn beagáinín fút féin"
msgid "Tell us a little more"
msgstr "Abair beagán níos mó"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Téarmaí"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Téarmaí Seirbhíse"
@@ -7230,7 +7844,11 @@ msgstr ""
msgid "Text input field"
msgstr "Réimse téacs"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "Go raibh maith agat! D'éirigh linn do sheoladh ríomhphoist a dheimhniú."
@@ -7242,7 +7860,7 @@ msgstr "Go raibh maith agat. Seoladh do thuairisc."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Go raibh maith agat! D'éirigh linn do sheoladh ríomhphoist a dheimhniú. Is féidir leat an fhuinneog seo a dhúnadh anois."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "Ina bhfuil an méid seo a leanas:"
@@ -7250,10 +7868,10 @@ msgstr "Ina bhfuil an méid seo a leanas:"
msgid "That handle is already taken."
msgstr "Tá an leasainm sin in úsáid cheana féin."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "Níorbh fhéidir an pacáiste fáilte sin a aimsiú."
msgid "That's all, folks!"
msgstr "Sin é é!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "Beidh an cuntas seo in ann caidreamh a dhéanamh leat tar éis duit é a dhíbhlocáil"
@@ -7282,7 +7900,7 @@ msgstr "Atosófar an aip"
msgid "The author of this thread has hidden this reply."
msgstr "Chuir údar an tsnáithe seo an freagra seo i bhfolach."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "Feidhmchlár gréasáin Bluesky"
@@ -7302,6 +7920,10 @@ msgstr "An fotha Discover"
msgid "The Discover feed now knows what you like"
msgstr "Tá an fotha Discover eolach ar a bhfuil ag taitneamh leat anois"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Tá an t-eispéireas níos fearr san aip. Íoslódáil Bluesky anois agus tosóidh muid arís san áit ar stop tú."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "Bogadh an Polasaí Príobháideachta go dtí <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "Tá an físeán seo níos mó ná 50MB."
+msgid "The selected video is larger than 100 MB."
+msgstr "Tá an físeán seo níos mó ná 100 MB."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "Is dóigh go bhfuil fadhb leis an bhfreastalaí. Bain triail eile as i gceann cúpla nóiméad."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "Tá an pacáiste fáilte sin neamhbhailí. Tig leat é a scriosadh."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr ""
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "Bogadh an fhoirm tacaíochta go dtí <0/>. Má tá cuidiú ag teastáil uait, <0/> le do thoil, nó tabhair cuairt ar {HELP_DESK_URL} le dul i dteagmháil linn."
@@ -7367,15 +7994,15 @@ msgstr "Níl srian ama le díghníomhú cuntais, fill uair ar bith."
msgid "There was an issue connecting to Tenor."
msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh le Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh leis an bhfreastalaí"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh leis an bhfreastalaí. Seiceáil do cheangal leis an idirlíon agus bain triail eile as."
@@ -7388,11 +8015,12 @@ msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh le do fhreastalaí"
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/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
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."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
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."
@@ -7400,12 +8028,12 @@ msgstr "Bhí fadhb ann maidir leis an liosta a fháil. Tapáil anseo le triail e
msgid "There was an issue fetching your app passwords"
msgstr "Bhí fadhb ann agus do chuid pasfhocal aipe á n-íoslódáil"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
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/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "Bhí fadhb ann agus d'fhaisnéis seirbhíse á híoslódáil"
@@ -7418,26 +8046,26 @@ msgstr "Bhí fadhb ann maidir leis an bhfotha seo a bhaint. Seiceáil do cheanga
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Níor seoladh do thuairisc. Seiceáil do cheangal leis an idirlíon, le do thoil."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "Bhí fadhb ann maidir le do chuid fothaí a nuashonrú. Seiceáil do cheangal leis an idirlíon agus bain triail eile as."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "Bhí fadhb ann! {0}"
@@ -7445,10 +8073,10 @@ msgstr "Bhí fadhb ann! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
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."
@@ -7469,6 +8097,14 @@ msgstr "Cuirtear na socruithe seo i bhfeidhm ar an bhfotha Following amháin."
msgid "This {screenDescription} has been flagged:"
msgstr "Cuireadh bratach leis an {screenDescription} seo:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:106
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."
@@ -7477,6 +8113,10 @@ msgstr "Ní mór duit logáil isteach le próifíl an chuntais seo a fheiceáil.
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 "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/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Cuirfear an t-achomharc seo chuig <0>{sourceName}0>."
@@ -7510,14 +8150,22 @@ msgstr "Níl an t-ábhar seo le feiceáil toisc gur bhlocáil duine de na húsá
msgid "This content is not viewable without a Bluesky account."
msgstr "Níl an t-ábhar seo le feiceáil gan chuntas Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "Tá an ghné seo á tástáil fós. Tig leat níos mó faoi chartlanna easpórtáilte a léamh sa <0>bhlagphost seo0>."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr ""
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "Níl an ghné seo ar fáil má tá tú ag baint úsáide as Pasfhocal Aipe. Logáil isteach le do ghnáth-phasfhocal, le do thoil."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Tá an fotha seo folamh! Is féidir go mbeidh ort tuilleadh úsáideoirí a leanúint nó do shocruithe teanga a athrú."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Tá an fotha seo folamh."
@@ -7540,7 +8188,7 @@ msgstr "Tá an fotha seo folamh."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Níl an fotha seo ar líne níos mó. Tá <0>Discover0> á thaispeáint againn ina ionad."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "Tá an leasainm seo coimeádta. Bain triail as ceann eile."
@@ -7548,9 +8196,10 @@ msgstr "Tá an leasainm seo coimeádta. Bain triail as ceann eile."
msgid "This information is not shared with other users."
msgstr "Ní roinntear an t-eolas seo le húsáideoirí eile."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "Tá sé seo tábhachtach má bhíonn ort do ríomhphost nó do phasfhocal a athrú."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr ""
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,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/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "Ní dúirt an lipéadóir seo céard iad na lipéid a fhoilsíonn sé, agus is féidir nach bhfuil sé i mbun gnó."
@@ -7576,7 +8225,7 @@ msgstr ""
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr ""
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "Tá an liosta seo folamh."
@@ -7584,7 +8233,7 @@ msgstr "Tá an liosta seo folamh."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Níl an tseirbhís modhnóireachta ar fáil. Féach tuilleadh sonraí thíos. Má mhaireann an fhadhb seo, téigh i dteagmháil linn."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Deir an phostáil seo gur cruthaíodh í ar <0>{0}0>, ach chonacthas í ar Bluesky den chéad uair ar <1>{1}1>."
@@ -7592,28 +8241,29 @@ msgstr "Deir an phostáil seo gur cruthaíodh í ar <0>{0}0>, ach chonacthas
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "Scriosadh an phostáil seo."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Ní bheidh an phostáil seo le feiceáil ar do chuid fothaí ná snáitheanna. Ní féidir dul ar ais air seo."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "Chuir údar na postála seo cosc ar phostálacha athluaite."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr "Cuirfear an freagra seo i rannán speisialta a bheidh i bhfolach ag bun an tsnáithe seo, agus ní bhfaighidh tusa nó éinne eile fógraí maidir le freagraí eile."
@@ -7621,10 +8271,14 @@ msgstr "Cuirfear an freagra seo i rannán speisialta a bheidh i bhfolach ag bun
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."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "Ba cheart dó seo taifead fearainn a chruthú ag:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr ""
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "Níl aon leantóirí ag an úsáideoir seo."
@@ -7662,21 +8316,21 @@ msgstr "Níl éinne á leanúint ag an úsáideoir seo."
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 balbhaithe. Tig leat é a chur ar ais níos déanaí."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "Leis seo, bainfear @{0} den mhearliosta."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "Leis seo, bainfear do phostáil seo den phostáil athluaite seo do gach úsáideoir, agus cuirfear ionadchoinneálaí ina háit."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "Roghanna snáitheanna"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Roghanna snáitheanna"
@@ -7684,8 +8338,8 @@ msgstr "Roghanna snáitheanna"
msgid "Thread Preferences"
msgstr "Roghanna Snáitheanna"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "Modh snáithithe"
@@ -7693,7 +8347,7 @@ msgstr "Modh snáithithe"
msgid "Threaded mode"
msgstr "Modh snáithithe"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Roghanna Snáitheanna"
@@ -7705,14 +8359,15 @@ msgstr ""
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "Chun 2FA trí ríomhphoist a dhíchumasú, dearbhaigh gur leatsa an seoladh ríomhphoist."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr ""
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "Chun comhrá a thuairisciú, tuairiscigh teachtaireacht amháin as tríd an scáileán comhrá. Cuireann sé sin ar cumas ár modhnóirí comhthéacs do dheacrachta a thuiscint."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Ní mór duit do sheoladh ríomhphoist a dhearbhú sular féidir leat físeáin a uaslódáil go Bluesky."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "Cé chuige ar mhaith leat an tuairisc seo a sheoladh?"
@@ -7725,7 +8380,7 @@ msgstr "Inniu"
msgid "Toggle dropdown"
msgstr "Scoránaigh an bosca anuas"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "Scoránaigh le ábhar do dhaoine fásta a cheadú nó gan a cheadú"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr ""
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Barr"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "Ábhar"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Aistrigh"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "Treochtaí"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr ""
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr ""
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "Teilifís"
msgid "Two-factor authentication (2FA)"
msgstr "Fíordheimhniú déshraithe (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Cuir isteach do leasainm"
@@ -7783,18 +8440,11 @@ msgstr "Cuir isteach do leasainm"
msgid "Type your message here"
msgstr "Scríobh do theachtaireacht anseo"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Clóscríobh:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Díbhlocáil an liosta"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Díbhalbhaigh an liosta"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "Ní féidir ceangal a bhunú. Seiceáil do cheangal leis an idirlíon agus bain triail eile as."
@@ -7809,7 +8459,7 @@ msgstr "Ní féidir ceangal a bhunú. Seiceáil do cheangal leis an idirlíon ag
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:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "Ní féidir é a scriosadh"
@@ -7817,36 +8467,41 @@ msgstr "Ní féidir é a scriosadh"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Díbhlocáil"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Díbhlocáil"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Díbhlocáil an cuntas"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "An bhfuil fonn ort an cuntas seo a dhíbhlocáil?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Cuir stop leis an athphostáil"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Cuir stop leis an athphostáil ({0, plural, one {# athphostáil} two {# athphostáil} few {# athphostáil} many {# n-athphostáil} other {# athphostáil}})"
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Dílean"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "Dílean {0}"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "Dímhol"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Dímhol ({0, plural, one {# mholadh} two {# mholadh} few {# mholadh} many {# moladh} other {# moladh}})"
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr ""
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Díbhalbhaigh"
@@ -7895,10 +8555,10 @@ msgstr "Díbhalbhaigh"
msgid "Unmute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr ""
@@ -7906,8 +8566,12 @@ msgstr ""
msgid "Unmute conversation"
msgstr "Ná balbhaigh an comhrá seo níos mó"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Ná balbhaigh an snáithe seo níos mó"
@@ -7915,38 +8579,47 @@ msgstr "Ná balbhaigh an snáithe seo níos mó"
msgid "Unmute video"
msgstr "Ná balbhaigh an físeán seo níos mó"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Díghreamaigh"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "Díghreamaigh an fotha"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Díghreamaigh ón mbaile"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "Díghreamaigh ón bpróifíl"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Díghreamaigh an liosta modhnóireachta"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "Díghreamaíodh {0} ón mBaile"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Díghreamaithe ó do chuid fothaí"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Díliostáil"
@@ -7955,7 +8628,7 @@ msgstr "Díliostáil"
msgid "Unsubscribe from list"
msgstr "Díliostáil ón liosta seo"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Díliostáil ón lipéadóir seo"
@@ -7963,11 +8636,11 @@ msgstr "Díliostáil ón lipéadóir seo"
msgid "Unsubscribed from list"
msgstr "Dhíliostáil tú ón liosta seo"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "Físeán nach dtacaítear leis"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "Físeán nach dtacaítear leis: {0}"
@@ -7987,49 +8660,60 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "Nuashonraigh <0>{displayName}0> i Liostaí"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Uasdátú chuig {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
-msgctxt "toast"
-msgid "Updating quote attachment failed"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
+msgctxt "toast"
+msgid "Updating quote attachment failed"
+msgstr "Theip ar uasdátú an cheangaltáin athluaite"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "Theip ar infheictheacht an fhreagra a uasdátú"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "Á uasdátú…"
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Uaslódáil grianghraf in ionad"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Uaslódáil comhad téacs chuig:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Uaslódáil ó Cheamara"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Uaslódáil ó Chomhaid"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Uaslódáil ó Leabharlann"
@@ -8042,7 +8726,7 @@ msgstr "Íomhánna á n-uaslódáil..."
msgid "Uploading link thumbnail..."
msgstr "Mionsamhail á huaslódáil..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "Físeán á uaslódáil..."
@@ -8050,22 +8734,22 @@ msgstr "Físeán á uaslódáil..."
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Bain úsáid as pasfhocail aipe chun logáil isteach i gcliaint Bluesky eile gan rochtain iomlán a thabhairt ar do chuntas nó ar do phasfhocal."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Úsáid an soláthraí réamhshocraithe"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Úsáid an brabhsálaí san aip seo"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Úsáid an brabhsálaí san aip seo chun nascanna a oscailt"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Úsáid an brabhsálaí réamhshocraithe atá agam"
@@ -8119,15 +8803,15 @@ msgstr "Liosta úsáideoirí le {0}"
msgid "User list by you"
msgstr "Liosta úsáideoirí leat"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "Liosta úsáideoirí cruthaithe"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "Liosta úsáideoirí uasdátaithe"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8150,58 +8834,88 @@ msgstr "Úsáideoirí a leanaim"
msgid "Users in \"{0}\""
msgstr "Úsáideoirí in ”{0}“"
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "Úsáideoirí ar thaitin an t-ábhar nó an próifíl seo leo"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Luach:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "Ríomhphost dearbhaithe ag teastáil"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr ""
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr ""
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Dearbhaigh taifead DNS"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Dialóg: dearbhú ríomhphoist"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Dearbhaigh an Ríomhphost Nua"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Dearbhaigh anois"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Dearbhaigh comhad téacs"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Dearbhaigh do sheoladh ríomhphoist"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Dearbhaigh do sheoladh ríomhphoist"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Leagan {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "Físeán"
msgid "Video failed to process"
msgstr "Theip ar phróiseáil an fhíseáin"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr ""
@@ -8224,14 +8938,15 @@ msgstr ""
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Físchluichí"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr ""
@@ -8239,11 +8954,11 @@ msgstr ""
msgid "Video not found."
msgstr "Físeán gan aimsiú."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Socruithe físe"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Uaslódáladh an físeán"
@@ -8251,31 +8966,32 @@ msgstr "Uaslódáladh an físeán"
msgid "Video: {0}"
msgstr "Físeán: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "Féach ar an abhatár atá ag {0}"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "Amharc ar phróifíl {0}"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "Amharc ar phróifíl {displayName}"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "Féach ar phróifíl an úsáideora bhlocáilte"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "Féach ar an iontráil dífhabhtaithe"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Féach ar shonraí"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
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/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Féach ar an snáithe iomlán"
@@ -8308,18 +9024,17 @@ msgstr "Féach ar eolas faoi na lipéid seo"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Féach ar an bpróifíl"
@@ -8331,7 +9046,11 @@ msgstr "Féach ar an abhatár"
msgid "View the labeling service provided by @{0}"
msgstr "Féach ar an tseirbhís lipéadaithe atá curtha ar fáil ag @{0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "Féach ar úsáideoirí ar thaitin an fotha seo leo"
@@ -8339,11 +9058,11 @@ msgstr "Féach ar úsáideoirí ar thaitin an fotha seo leo"
msgid "View video"
msgstr ""
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Cuntais bhlocáilte"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr ""
@@ -8352,14 +9071,18 @@ msgstr ""
msgid "View your feeds and explore more"
msgstr "Tabhair súil ar do chuid fothaí agus déan tuilleadh taiscéalaíochta"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Féach ar do chuid liostaí modhnóireachta"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "Féach ar na cuntais a bhalbhaigh tú"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "Tabhair foláireamh faoi ábhar"
msgid "Warn content and filter from feeds"
msgstr "Tabhair foláireamh faoi ábhar agus scag as fothaí"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr ""
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "Níor aimsigh muid toradh ar bith don haischlib sin."
@@ -8400,7 +9128,7 @@ msgstr "Níor aimsigh muid toradh ar bith don haischlib sin."
msgid "We couldn't find any results for that topic."
msgstr "Níor aimsigh muid toradh ar bith don ábhar sin."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "Theip orainn an comhrá seo a lódáil"
@@ -8420,6 +9148,14 @@ msgstr "Tá súil againn go mbeidh an-chraic agat anseo. Ná déan dearmad go bh
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/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Nílimid cinnte an bhfuil cead agat físeáin a uaslódáil. Bain triail eile as."
@@ -8428,7 +9164,7 @@ msgstr "Nílimid cinnte an bhfuil cead agat físeáin a uaslódáil. Bain triail
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:428
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."
@@ -8440,20 +9176,28 @@ 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/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
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."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "Tá fadhbanna líonra againn, bain triail as arís"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr ""
+
+#: src/screens/Signup/index.tsx:109
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:115
+#: src/view/screens/ProfileList.tsx:117
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}."
@@ -8461,11 +9205,11 @@ msgstr "Ár leithscéal, ach ní féidir linn an liosta seo a thaispeáint. Má
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 bhalbhaigh tú a lódáil an uair seo. Bain triail as arís."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
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:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Ár leithscéal, ach scriosadh an phostáil atá tú ag freagairt."
@@ -8474,7 +9218,7 @@ msgstr "Ár leithscéal, ach scriosadh an phostáil atá tú ag freagairt."
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ú."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Ár leithscéal! Ní féidir leat ach fiche lipéadóirí a leanúint agus tá fiche ceann agat cheana féin."
@@ -8494,16 +9238,16 @@ msgstr "Cad iad na rudaí a bhfuil suim agat iontu?"
msgid "What do you want to call your starter pack?"
msgstr "Cén t-ainm ar mhaith leat a thabhairt ar do phacáiste fáilte?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "A bhfuil i mbéal an phobail."
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "Aon scéal?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr ""
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "Cad iad na teangacha sa phostáil seo?"
@@ -8520,14 +9264,18 @@ msgstr "Cé atá in ann idirghníomhú leis an bpostáil seo?"
msgid "Who can reply"
msgstr "Cé atá in ann freagra a thabhairt"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "Úps!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr ""
@@ -8574,11 +9322,11 @@ msgstr "Cén fáth gur cheart athbhreithniú a dhéanamh ar an úsáideoir seo?"
msgid "Write a message"
msgstr "Scríobh teachtaireacht"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Scríobh postáil"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Scríobh freagra"
@@ -8588,11 +9336,16 @@ msgstr "Scríobh freagra"
msgid "Writers"
msgstr "Scríbhneoirí"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "Tháinig DID mícheart ón fhreastalaí. Fuarthas: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Tá"
@@ -8601,15 +9354,15 @@ msgstr "Tá"
msgid "Yes, deactivate"
msgstr "Tá, díghníomhaigh"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Scrios an pacáiste fáilte seo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Tá, dícheangail"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Tá, cuir i bhfolach é"
@@ -8625,7 +9378,11 @@ msgstr "Inné"
msgid "You"
msgstr "Tusa"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr ""
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
msgstr ""
@@ -8633,6 +9390,19 @@ msgstr ""
msgid "You are in line."
msgstr "Tá tú sa scuaine."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr ""
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr ""
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr ""
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "Níl cead agat físeáin a uaslódáil."
@@ -8641,6 +9411,27 @@ msgstr "Níl cead agat físeáin a uaslódáil."
msgid "You are not following anyone."
msgstr "Níl éinne á leanúint agat."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr ""
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "Tig leat é seo a uasdátú ó do shocruithe."
@@ -8682,7 +9472,7 @@ msgstr "Níl aon leantóir agat."
msgid "You don't follow any users who follow @{name}."
msgstr "Ní leanann tú aon leantóirí de chuid @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr ""
@@ -8736,24 +9526,24 @@ msgstr "Bhalbhaigh tú an cuntas seo."
msgid "You have muted this user"
msgstr "Bhalbhaigh tú an t-úsáideoir seo"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
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:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "Níl aon fhothaí agat."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "Níl aon liostaí agat."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Níor bhlocáil tú aon chuntas fós. Le cuntas a bhlocáil, téigh go dtí a bpróifíl agus roghnaigh “Blocáil an cuntas seo” ar an gclár ansin."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Níor bhalbhaigh tú aon chuntas fós. Le cuntas a bhalbhú, téigh go dtí a bpróifíl agus roghnaigh “Balbhaigh an cuntas seo” ar an gclár ansin."
@@ -8761,11 +9551,15 @@ msgstr "Níor bhalbhaigh tú aon chuntas fós. Le cuntas a bhalbhú, téigh go d
msgid "You have reached the end"
msgstr "Tá deireadh sroichte agat"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr ""
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Tá tú tar éis uasteorainn uaslódálacha físeáin a bhaint amach. Bain triail eile as ar ball."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "Níl pacáiste fáilte cruthaithe agat fós!"
@@ -8787,22 +9581,22 @@ 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:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "Ní féidir leat ach suas le {STARTER_PACK_MAX_SIZE} próifíl a chur leis seo"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Ní féidir leat ach suas le 3 fhotha a chur leis seo"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "Ní féidir leat ach suas le 4 íomhá a roghnú"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-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ú."
+msgid "You must be 13 years of age or older to create an account."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Ní mór duit seachtar ar a laghad a leanúint le pacáiste fáilte a chruthú."
@@ -8810,28 +9604,40 @@ msgstr "Ní mór duit seachtar ar a laghad a leanúint le pacáiste fáilte a ch
msgid "You must grant access to your photo library to save a QR code"
msgstr "Ní mór duit fáil ar do leabharlann grianghraf a cheadú le cód QR a shábháil"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "Ní mór duit fáil ar do leabharlann grianghraf a cheadú le íomhá a shábháil."
-
#: src/components/ReportDialog/SubmitView.tsx:211
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"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr ""
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "Rinne tú díghníomhú ar @{0} cheana."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "Logálfar amach as gach cuntas thú."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
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/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Gheobhaidh tú fógraí don snáithe seo anois."
@@ -8839,23 +9645,23 @@ msgstr "Gheobhaidh tú fógraí don snáithe seo anois."
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Gheobhaidh tú teachtaireacht ríomhphoist le “cód athshocraithe” ann. Cuir an cód sin isteach anseo, ansin cuir do phasfhocal nua isteach."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "Tusa {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Tusa: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "Tusa: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "Leanfaidh tú na húsáideoirí agus na fothaí a moladh tar éis duit do chuntas a chruthú!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "Leanfaidh tú na húsáideoirí a moladh tar éis duit do chuntas a chruthú!"
@@ -8867,7 +9673,7 @@ msgstr "Leanfaidh tú na daoine seo agus {0} duine eile"
msgid "You'll follow these people right away"
msgstr "Leanfaidh tú na daoine seo láithreach"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "Gheobhaidh tú ríomhphost ag <0>{0}0> le dearbhú gur tusa atá ann."
@@ -8901,6 +9707,10 @@ msgstr "Tig leat na daoine seo a leanúint"
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/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Tá tú tar éis an uasteorainn laethúil ar uaslódálacha físeáin a bhaint amach (an iomarca beart)"
@@ -8909,11 +9719,11 @@ msgstr "Tá tú tar éis an uasteorainn laethúil ar uaslódálacha físeáin a
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Tá tú tar éis an uasteorainn laethúil ar uaslódálacha físeáin a bhaint amach (an iomarca físeán)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "Do chuntas"
@@ -8941,7 +9751,7 @@ msgstr ""
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "Do bhreithlá"
@@ -8953,26 +9763,30 @@ msgstr "Ní thacaíonn do bhrabhsálaí leis an bhformáid físe. Bain triail as
msgid "Your chats have been disabled"
msgstr "Cuireadh do chuid comhráite ar ceal"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "Sábhálfar do rogha, ach is féidir é athrú níos déanaí sna socruithe."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "Coimeádfar an leasainm atá agat faoi láthair, <0>{0}0>, in áirithe duitse. Beidh tú in ann athrú ar ais ón gcuntas seo am ar bith."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Is cosúil go bhfuil do ríomhphost neamhbhailí."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "Uasdátaíodh do sheoladh ríomhphoist ach níor dearbhaíodh é. An chéad chéim eile anois ná do sheoladh nua a dhearbhú, le do thoil."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
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 é."
@@ -8988,14 +9802,31 @@ 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/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "Do leasainm iomlán anseo: <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr ""
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr ""
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Na focail a bhalbhaigh tú"
@@ -9004,15 +9835,15 @@ msgstr "Na focail a bhalbhaigh tú"
msgid "Your password has been changed successfully!"
msgstr "Athraíodh do phasfhocal!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "Foilsíodh do phostáil"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "Foilsíodh do chuid postálacha"
@@ -9024,14 +9855,22 @@ msgstr "Tá do chuid postálacha, moltaí, agus blocálacha poiblí. Is príobh
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:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Foilsíodh do fhreagra"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Seolfar do thuairisc go dtí Seirbhís Modhnóireachta Bluesky"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr ""
diff --git a/src/locale/locales/gd/messages.po b/src/locale/locales/gd/messages.po
index f340407963..940f3f904b 100644
--- a/src/locale/locales/gd/messages.po
+++ b/src/locale/locales/gd/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: gd\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 16:40\n"
+"PO-Revision-Date: 2025-05-30 23:41\n"
"Last-Translator: \n"
"Language-Team: Scottish Gaelic\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n>2 && n<20) ? 2 : 3;\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(gnìomhach)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(tha susbaint leabaichte ann)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(gun phost-d)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {air ath-phostadh # turas} two {air ath-phostadh # thura
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# diog} two {# dhiog} few {# diogan} other {# diog}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# nì gun leughadh} two {# nì gun leughadh} few {# nithean gun leughadh} other {# nì gun leughadh}}"
@@ -90,31 +90,40 @@ msgstr "{0, plural, one {# nì gun leughadh} two {# nì gun leughadh} few {# nit
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# mhìos} two {# mhìos} few {# mìosan} other {# mìos}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
-msgstr "{0, plural, one {# gam leantainn} two {# gam leantainn} few {# gam leantainn} other {# gam leantainn}}"
+msgstr "{0, plural, one {gam leantainn} two {gam leantainn} few {gam leantainn} other {gam leantainn}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
-msgstr "{0, plural, one {a’ leantainn #} two {a’ leantainn #} few {a’ leantainn #} other {a’ leantainn #}}"
+msgstr "{0, plural, one {A’ leantainn #} two {A’ leantainn #} few {A’ leantainn #} other {A’ leantainn #}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {’s toil le # seo} two {’s toil le # seo} few {’s toil le # seo} other {’s toil le # seo}}"
#: src/screens/Profile/Header/Metrics.tsx:58
msgid "{0, plural, one {post} other {posts}}"
-msgstr "{0, plural, one {# phost} two {# phost} few {# puist} other {# post}}"
+msgstr "{0, plural, one {phost} two {phost} few {puist} other {post}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
-msgstr "{0, plural, one {# luaidh} two {# luaidh} few {# luaidhean} other {# luaidh}}"
+msgstr "{0, plural, one {luaidh} two {luaidh} few {luaidhean} other {luaidh}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
-msgstr "{0, plural, one {air ath-phostadh # turas} two {air ath-phostadh # thuras} few {air ath-phostadh # turais} other {air ath-phostadh # turas}}"
+msgstr "{0, plural, one {air ath-phostadh} two {air ath-phostadh} few {air ath-phostadh} other {air ath-phostadh}}"
+
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, one {{1} phost} two {{1} phost} few {{1} puist}other {{1} post}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "Chleachd {0, plural, one {# duine} two {# dhuine} few {# daoine} other {# duin}} a’ phacaid tòiseachaidh seo!"
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
@@ -126,6 +135,14 @@ msgstr "{0} <0>sna <1>tagaichean1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>san <1>teacsa ⁊ sna tagaichean1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr "Tha {0} beò"
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr "Chan e URL dligheach a th’ ann an {0}"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} air a dhol an sàs an t-seachdain seo"
@@ -137,13 +154,18 @@ msgstr "{0} à {1}"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
-msgstr ""
+msgstr "{0} à 50"
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "Chleachd {0} a’ phacaid tòiseachaidh seo!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "Chuir {0} {1} mar fhrith-fhreagairt"
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "Chuir {0} {1} mar fhrith-fhreagairt dha {2}"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "An t-avatar aig {0}"
@@ -175,7 +197,7 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}d"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# nì gun leughadh} two {# nì gun leughadh} few {# nithean gun leughadh} other {# nì gun leughadh}}"
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, one {uair a thìde} two {uair a thìde} few {
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {mhionaid} two {mhionaid} few {mionaidean} other {mionaid}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "Tha {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}0> gad leantainn a-nis"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "Tha an t-inbhir gnàthaichte agad a’ còrdadh ri {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}0>"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "’S toil le {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}0> am post agad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr "’S toil le {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}0> an ath-phostadh agad"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr "Thug {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}0> air falbh an dearbhadh a rinn iad air a’ chunntas agad"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "Dh’ath-phostaich {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}0> am post agad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr "Dh’ath-phostaich {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}0> an ath-phostadh agad"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "Chlàraich {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}0> aig a’ phacaid tòiseachaidh agad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr "Rinn {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}0> dearbhadh ort"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "Tha {firstAuthorLink} gad leantainn a-nis"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "Tha {firstAuthorLink} gad leantainn cuideachd a-nis"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "’S toil le {firstAuthorLink} an t-inbhir gnàthaichte agad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "Is toil le {firstAuthorLink} am post agad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr "Is toil le {firstAuthorLink} an ath-phostadh agad"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr "Thug {firstAuthorLink} air falbh an dearbhadh a rinn iad air a’ chunntas agad"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "Dh’ath-phostaich {firstAuthorLink} am post agad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr "Dh’ath-phostaich {firstAuthorLink} an ath-phostadh agad"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "Chlàraich {firstAuthorLink} aig a’ phacaid tòiseachaidh agad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr "Rinn {firstAuthorLink} dearbhadh ort"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "Tha {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} gad leantainn"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "Tha an t-inbhir gnàthaichte agad a’ còrdadh ri {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "’S toil le {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} am post agad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr "’S toil le {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} an ath-phostadh agad"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr "Thug {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} air falbh an dearbhadh a rinn iad air a’ chunntas agad"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "Dh’ath-phostaich {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} am post agad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr "Dh’ath-phostaich {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} an ath-phostadh agad"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "Chlàraich {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} aig a’ phacaid tòiseachaidh agad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr "Rinn {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} dearbhadh ort"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "Tha {firstAuthorName} gad leantainn a-nis"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "Tha {firstAuthorName} gad leantainn cuideachd a-nis"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "’S toil le {firstAuthorName} an t-inbhir gnàthaichte agad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "Is toil le {firstAuthorName} am post agad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr "Is toil le {firstAuthorName} an ath-phostadh agad"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr "Thug {firstAuthorName} air falbh an dearbhadh a rinn iad air a’ chunntas agad"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "Dh’ath-phostaich {firstAuthorName} am post agad"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr "Dh’ath-phostaich {firstAuthorName} an ath-phostadh agad"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "Chlàraich {firstAuthorName} aig a’ phacaid tòiseachaidh agad"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr "Rinn {firstAuthorName} dearbhadh ort"
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "a’ leantainn {following}"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "Cha ghabh {handle} ri teachdaireachdan"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr "{hours, plural, one {# uair a thìde {minutesString}} two {# uair a thìde {minutesString}} few {# uairean a thìde {minutesString}} other {# uair a thìde {minutesString}}}"
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr "{hours, plural, one {# uair a thìde} two {# uair a thìde} few {# uairean a thìde} other {# uair a thìde}}"
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "Chaidh {joinedAllTimeCount, plural, one {# chleachdaiche} two {# chleachdaiche} few {# cleachdaichean} other {# cleachdaiche}} an sàs ann!"
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr "{minutes, plural, one {# mhionaid} two {# mhionaid} few {# mionaidean} other {# mionaid}}"
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# nì gun leughadh} two {# nì gun leughadh} few {# nithean gun leughadh} other {# nì gun leughadh}}"
@@ -301,6 +404,34 @@ msgstr "Chaidh {profileName} an sàs Bluesky {0} air ais"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "Chaidh {profileName} an sàs Bluesky le pacaid tòiseachaidh {0} air ais"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "{type}u air ais"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr "’S e neach-dearbhaidh earbsach a th’ ann an {userName}"
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr "Chaidh {userName} a dhearbhadh"
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr "An dearbhadh a rinn {userName}"
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "⁊ {computedTotal}"
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,13 +442,13 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "Tha <0>{0}, 0><1>{1}1> agus {2, plural, one {# eile} two {# eile} few {# eile} other {# others}} gan gabhail a-staigh sa phacaid tòiseachaidh agad"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
-msgstr "<0>{0}0> {1, plural, one {# gam leantainn} two {# gam leantainn} few {# gam leantainn} other {# gam leantainn}}"
+msgstr "<0>{0}0> {1, plural, one {gam leantainn} two {gam leantainn} few {gam leantainn} other {gam leantainn}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
-msgstr "<0>{0}0> {1, plural, one {a’ leantainn #} two {a’ leantainn #} few {a’ leantainn #} other {a’ leantainn #}}"
+msgstr "{1, plural, one {a’ leantainn} two {a’ leantainn} few {a’ leantainn} other {a’ leantainn}} <0>{0}0>"
#: src/screens/StarterPack/Wizard/index.tsx:490
msgid "<0>{0}0> and<1> 1><2>{1} 2>are included in your starter pack"
@@ -343,7 +474,7 @@ msgstr "<0>Probhail:0> Ma bhios an roghainn seo an comas, chan fhaigh thu ach
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "Tha <0>thusa0> agus <1> 1><2>{0} 2> gan gabhail a-staigh sa phacaid tòiseachaidh agad"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Làmhrachan mì-dhligheach"
@@ -363,19 +494,28 @@ msgstr "30 latha"
msgid "7 days"
msgstr "7 làithean"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "teachdaireachd"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr "Dòigh dearbhaidh ùr"
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Mu dhèidhinn"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr "Gabh ris"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr "Gabh ris an iarrtas cabadaich"
@@ -385,37 +525,37 @@ msgid "Accept Request"
msgstr "Gabh ris an iarrtas"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "So-ruigsinneachd"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Roghainnean na so-ruigsinneachd"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Cunntas"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
msgstr "Chaidh an cunntas a bhacadh"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
msgstr "Chaidh an cunntas a leantainn"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
msgstr "Chaidh an cunntas a mhùchadh"
@@ -429,33 +569,37 @@ msgstr "Chaidh an cunntas a mhùchadh"
msgid "Account Muted by List"
msgstr "Chaidh an cunntas a mhùchadh le liosta"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Roghainnean a’ chunntais"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Chaidh an cunntas a thoirt air falbh on ghrad-inntrigeadh"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
msgstr "Chaidh am bacadh a thoirt far a’ chunntais"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
msgstr "Chan eil thu a’ leantainn a’ chunntais tuilleadh"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
msgstr "Chaidh an cunntas a neo-mhùchadh"
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+msgstr "’S urrainn do chunntasan aig a bheil cromag chrom-bhileach ghorm <0><1/>0> cunntasan eile a dhearbhadh. ’S e Bluesky a thaghas an luchd-dearbhaidh earbsach seo."
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Cuir ris"
@@ -473,8 +617,12 @@ msgstr "Cuir {displayName} ris a’ phacaid tòiseachaidh"
msgid "Add a content warning"
msgstr "Cuir ris rabhadh mun t-susbaint"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr "Nochd gu bheil tachartas beò agad fad greis sa phròifil agad. Nuair a bhriogas cuideigin air an avatar agad, chì iad fiosrachadh mun tachartas bheò agad."
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "Cuir cleachdaiche ris an liosta seo"
@@ -485,7 +633,7 @@ msgstr "Cuir cunntas ris"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Cuir cunntas ris"
msgid "Add alt text"
msgstr "Cuir roghainn teacsa ris"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Cuir roghainn teacsa ris (roghainneil)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Cuir cunntas eile ris"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Cuir post eile ris"
@@ -518,8 +666,12 @@ msgstr "Cuir facal-faire aplacaid ris"
msgid "Add App Password"
msgstr "Cuir facal-faire aplacaid ris"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr "Cuir emoji mar fhrith-fhreagairt"
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr "Cuir barrachd fiosrachaidh ris (roghainneil)"
@@ -531,15 +683,23 @@ msgstr "Cuir am facal mùchaidh ris leis na roghainnean a thagh thu"
msgid "Add muted words and tags"
msgstr "Cuir ris faclan is tagaichean mùchaidh"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Cuir post ùr ris"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Cuir daoine ris"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr "Cuir daoine ri liosta"
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr "Cuir frith-fhreagairt"
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Cuir inbhirean a mholadh tu ris"
@@ -552,27 +712,28 @@ msgstr "Cuir inbhirean ris a’ phacaid tòiseachaidh agad!"
msgid "Add the default feed of only people you follow"
msgstr "Cuir ris inbhir bunaiteach nan daoine a tha thu gan leantainn a-mhàin"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Cuir an reacord DNS a leanas ris an àrainn agad:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Cuir an t-inbhir seo ris na h-inbhirean agad"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
-msgstr "Cuir ris na liostaichean"
-
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Cuir ris na liostaichean"
+msgstr "Cuir ri liosta"
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Cuir ris na h-inbhirean agam"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr "Cuir an cleachdaiche ri liosta"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Chaidh a chur ris an liosta"
@@ -581,22 +742,22 @@ msgstr "Chaidh a chur ris an liosta"
msgid "Added to my feeds"
msgstr "Chaidh a chur ris na h-inbhirean agam"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr "Fiosrachadh a bharrachd (300 caractar air a’ char as motha)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Inbheach"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Susbaint inbheach"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "Chan urrainn dhut susbaint inbheach a chur an comas ach air an lìon aig <0>bsky.app0>."
@@ -604,30 +765,35 @@ msgstr "Chan urrainn dhut susbaint inbheach a chur an comas ach air an lìon aig
msgid "Adult content is disabled."
msgstr "Tha an t-susbaint inbheach à comas."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Leubailean susbaint inbheach"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Adhartach"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr "meadhbh@eisimpleir.com"
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Na h-uile"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "Tha thu a’ leantainn a h-uile cunntas a-nis!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "A h-uile cànan"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "Gach inbhir a shàbhail thu san aon àite."
@@ -639,7 +805,7 @@ msgstr "Ceadaich cead-inntrigidh o na teachdaireachdan dìreach agad"
#: src/screens/Messages/Settings.tsx:70
#: src/screens/Messages/Settings.tsx:73
msgid "Allow new messages from"
-msgstr "Ceadaich teachdaireachdan ùra o"
+msgstr "Ceadaich teachdaireachdan ùra"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344
msgid "Allow quote posts"
@@ -671,10 +837,10 @@ msgstr "Roghainn teacsa"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Roghainn teacsa"
@@ -688,19 +854,18 @@ msgstr "Mìnichidh roghainn teacsa na tha san dealbh do dhaoine a tha dall no ai
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "Thèid an roghainn teacsa a bhuntachadh. A’ chrìoch: {0} caractar."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr "Thèid an roghainn teacsa a bhuntachadh. Chan eil barrachd air {MAX_ALT_TEXT, plural, one {{0} charactar} two {{0} charactar} few {{0} charactaran} other {{0} caractar}} ceadaichte."
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "Chaidh post-d a chur gu {0}. Tha còd dearbhaidh na bhroinn as urrainn dhut cur a-steach gu h-ìosal."
-#: src/view/com/modals/ChangeEmail.tsx:114
-msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
-msgstr "Chaidh post-d a chur gun t-seann-seòladh puist-d agad, {0}. Tha còd dearbhaidh na bhroinn as urrainn dhut cur a-steach gu h-ìosal."
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr "Chaidh post-d a chur chun an t-seòlaidh a bh’ agad roimhe, {currentEmail}. Tha còd dearbhaidh ann, faigh greim air is cuir a-steach gu h-ìosal e."
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "Chaidh post-d a chur! Cuir a-steach an còd dearbhaidh a tha sa phost-d gu h-ìosal."
@@ -716,7 +881,11 @@ msgstr "Thachair mearachd"
msgid "An error occurred while compressing the video."
msgstr "Dh’èirich mearachd rè dùmhlachadh a’ video."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr "Dh’èirich mearachd rè nuair a bha sinn a’ faighinn an inbhir."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Dh’èirich mearachd nuair a bha sinn a’ gintinn na pacaid tòiseachaidh agad. A bheil thu airson feuchainn ris a-rithist?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "Dh’èirich mearachd rè luchdadh a’ video. Feuch ris a-rithist."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "Dh’èirich mearachd rè sàbhaladh a’ chòd QR!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "Dh’èirich mearachd rè taghadh a’ video"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "Dh’èirich mearachd nuair a bha sinn airson na h-uile a leantainn"
@@ -746,12 +914,17 @@ msgstr "Dh’èirich mearachd nuair a bha sinn airson na h-uile a leantainn"
msgid "An error occurred while uploading the video."
msgstr "Dh’èirich mearachd rè luchdadh suas a’ video."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr "Dealbh a sheallas gun tagh Bluesky luchd-dearbhaidh earbsach agus gun dearbh an luchd-dearbhaidh earbsach seo cunntasan fa leth aig an luchd-chleachdaidh an uair sin."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Duilgheadas nach eil am measg nan roghainnean seo"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "Dh’èirich duilgheadas rè tòiseachadh na cabadaich"
@@ -761,13 +934,17 @@ msgstr "Dh’èirich duilgheadas nuair a bha sinn a’ fosgladh na cabadaich"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Dh’èirich duilgheadas, feuch ris a-rithist."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr "Dealbh mas fhìor dhe iPhone a tha a’ sealltainn aplacaid Bluesky agus a’ phròifil aig cleachdaiche dearbhte le cromag ghorm ris an ainm-taisbeanaidh aca."
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "dh’èirich mearachd neo-aithnichte"
@@ -790,6 +967,10 @@ msgstr "Beathaichean"
msgid "Animated GIF"
msgstr "GIF beòthaichte"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr "Naidheachd mu dhearbhadh air Bluesky"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Giùlan ana-shòisealta"
msgid "Anybody can interact"
msgstr "Faodaidh duine sam bith eadar-ghabhail a dhèanamh"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "Ìomhaigheag na h-aplacaid"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "Cànan na h-aplacaid"
@@ -836,7 +1017,7 @@ msgstr "Feumaidh co-dhiù 4 caractaran bhith ann am facal-faire na h-aplacaid"
msgid "App passwords"
msgstr "Faclan-faire nan aplacaidean"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Faclan-faire nan aplacaidean"
@@ -872,24 +1053,24 @@ msgstr "Tog ath-thagradh an aghaidh na dàlach"
msgid "Appeal this decision"
msgstr "Tog ath-thagradh an aghaidh a’ cho-dhùnaidh seo"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Coltas"
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
-msgstr "Cuir an sàs na h-inbhirean bunaiteach a mholar"
+msgstr "Cuir an sàs na h-inbhirean bunaiteach a mholamaid"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Air a thasglannachadh ann an {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Post tasglannaichte"
@@ -897,15 +1078,15 @@ msgstr "Post tasglannaichte"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "A bheil thu cinnteach gu bheil thu airson faclan-faire na h-aplacaid “{0}” a sguabadh às?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "A bheil thu cinnteach gu bheil thu airson an teachdaireachd seo a sguabadh às? Thèid an teachdaireachd a sguabadh às dhut-sa ach chan ann dhan chom-pàirtiche eile."
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "A bheil thu cinnteach gu bheil thu airson a’ phacaid tòiseachaidh seo a sguabadh às?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "A bheil thu cinnteach gu bheil thu airson na h-atharraichean agad a thilgeil air falbh?"
@@ -921,15 +1102,15 @@ msgstr "A bheil thu cinnteach gu bheil thu airson an còmhradh seo fhàgail? Th
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "A bheil thu cinnteach gu bheil thu airson {0} a thoirt air falbh o na h-inbhirean agad?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "A bheil thu cinnteach gu bheil thu airson seo a thoirt air falbh o na h-inbhirean agad?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "A bheil thu cinnteach gu bheil thu airson an dreachd seo a thilgeil air falbh?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "A bheil thu cinnteach gu bheil thu airson am post seo a thilgeil air falbh?"
@@ -937,7 +1118,7 @@ msgstr "A bheil thu cinnteach gu bheil thu airson am post seo a thilgeil air fal
msgid "Are you sure?"
msgstr "A bheil thu cinnteach?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "A bheil thu a’ sgrìobhadh sa chànan a leanas: <0>{suggestedLanguageName}0>?"
@@ -946,11 +1127,16 @@ msgstr "A bheil thu a’ sgrìobhadh sa chànan a leanas: <0>{suggestedLanguageN
msgid "Art"
msgstr "Ealain"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Lomnochd ealanta no neo-earotaigeach."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr "Iomruin cuspair dhan algairim"
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "Co-dhiù 3 caractaran"
@@ -963,12 +1149,12 @@ msgstr "Aurora"
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Chaidh roghainnean na fèin-chluich a ghluasad gu <0>roghainnean na susbainte ’s nam meadhanan0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Cluich videothan is GIFs gu fèin-obrachail"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Cluich videothan is GIFs gu fèin-obrachail"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Air ais"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr "Air ais gu na cabadaich"
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Mus cruthaich thu liosta, feumaidh tu am post-d agad a dhearbhadh."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Mus cruthaich thu post, feumaidh tu am post-d agad a dhearbhadh."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr "Mus cruthaich thu post no mus fhreagair thu, feumaidh tu am post-d agad a dhearbhadh."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Mus cruthaich thu pacaid tòiseachaidh, feumaidh tu am post-d agad a dhearbhadh."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr "Mus urrainn dhut gabhail ris an iarrtas chabadaich seo, feumaidh tu am post-d agad a dhearbhadh."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
msgstr "Mus cuir thu teachdaireachd gu cleachdaiche eile, feumaidh tu am post-d agad a dhearbhadh."
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BETA"
-
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Co-là breith"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Bac"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Bac an cunntas"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "A bheil thu airson an cunntas a bhacadh?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Bac cunntasan"
@@ -1054,7 +1241,7 @@ msgstr "Bac is sguab às"
msgid "Block and/or delete this conversation"
msgstr "Bac agus/no sguab às an còmhradh seo"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Liosta-bhacaidh"
@@ -1062,7 +1249,7 @@ msgstr "Liosta-bhacaidh"
msgid "Block or report"
msgstr "Bac no dèan aithris air"
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "A bheil thu airson na cunntasan seo a bhacadh?"
@@ -1079,21 +1266,21 @@ msgstr "Bac an cleachdaiche"
msgid "Blocked"
msgstr "Bacte"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Cunntasan air am bacadh"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Cunntasan air am bacadh"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Chan eil cead aig cunntasan bacte freagairt a chur sna snàithleanan agad, iomradh a dhèanamh ort no eadar-ghabhail eile a dhèanamh leat."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 "Chan eil cead aig cunntasan bacte freagairt a chur sna snàithleanan agad, iomradh a dhèanamh ort no eadar-ghabhail eile a dhèanamh leat. Chan fhaic thu an t-susbaint aca agus chan fhaic iad an t-susbaint agad-sa."
@@ -1101,19 +1288,19 @@ msgstr "Chan eil cead aig cunntasan bacte freagairt a chur sna snàithleanan aga
msgid "Blocked post."
msgstr "Chaidh am post a bhacadh."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Fiù ma bhacas tu an leubailiche seo, ’s urrainn dha leubailean a chur ris a’ chunntas agad fhathast."
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "’S e gnìomh poblach a th’ ann am bacadh. Chan eil cead aig cunntasan bacte freagairt a chur sna snàithleanan agad, iomradh a dhèanamh ort no eadar-ghabhail eile a dhèanamh leat."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Ma nì thu bacadh, ’s urrainn do dhaoine leubailean a chur ris a’ chunntas agad fhathast ach chan urrainn dhaibh freagairt a thoirt sna snàithleanan agad tuilleadh no eadar-ghabhail a dhèanamh leat."
-#: src/view/com/auth/SplashScreen.web.tsx:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Bloga"
@@ -1122,7 +1309,7 @@ msgstr "Bloga"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Chan urrainn dha Bluesky dearbhadh gu bheil an ceann-là a thathar a’ cumail a-mach fìor."
@@ -1148,7 +1335,7 @@ msgstr "Tha Bluesky nas fheàrr le caraidean!"
msgid "Bluesky Social Terms of Service"
msgstr "Teirmichean na seirbheise aig Bluesky Social"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Taghaidh Bluesky grunn chunntasan aig daoine air an lìonra agad a mholar."
@@ -1156,6 +1343,10 @@ msgstr "Taghaidh Bluesky grunn chunntasan aig daoine air an lìonra agad a mhola
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Cha leig Bluesky a’ phròifil agus na puist agad ri daoine nach eil clàraichte a-staigh. Dh’fhaoidte nach gèill aplacaidean eile ris an iarrtas seo. Cha dèan seo cunntas prìobhaideach dheth."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr "Nì Bluesky dearbhadh iad fhèin air fìor-chunntasan mòra."
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "Cuir sgleò air dealbhan is criathraich iad às na h-inbhirean"
msgid "Books"
msgstr "Leabhraichean"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "Rùraich barrachd chunntasan air an duilleag “Rùraich”"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "Rùraich barrachd inbhirean air an duilleag “Rùraich”"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Brabhsaich barrachd mholaidhean"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "Rùraich barrachd mholaidhean air an duilleag “Rùraich”"
@@ -1214,20 +1405,26 @@ msgstr "Rùraich puist ris a bheil an taga {displayName}"
msgid "Browse starter pack {displayName}"
msgstr "Rùraich a’ phacaid tòiseachaidh {displayName}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr "Rùraich an cuspair “{0}”"
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "Rùraich an cuspair {displayName}"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Gnìomhachas"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "Le {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Le <0>{0}0>"
@@ -1243,44 +1440,51 @@ msgstr "Le bhith a’ cruthachadh cunntas, bidh tu ag aontachadh ri <0>teirmiche
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Le bhith a’ cruthachadh cunntas, bidh tu ag aontachadh ri <0>teirmichean na seirbheise0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr "Leat-sa"
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "An camara"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Sguir dheth"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "Sguir de sguabadh às a’ chunntas"
msgid "Cancel image crop"
msgstr "Sguir de bhearradh an deilbh"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Sguir de dheasachadh na pròifil"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Sguir dhen luaidh air a’ phost"
@@ -1308,8 +1512,7 @@ msgstr "Sguir dhen luaidh air a’ phost"
msgid "Cancel reactivation and sign out"
msgstr "Sguir dhen ath-ghnìomhachadh is clàraich a-mach"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Sguir dhen lorg"
@@ -1317,24 +1520,23 @@ msgstr "Sguir dhen lorg"
msgid "Cancels opening the linked website"
msgstr "Sguir seo de dh’fhosgladh na làraich-lìn cho-cheangailte"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "Chan urrainn dhut eadar-ghabhail a dhèanamh le cleachdaiche a bhac thu"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Caipseanan (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Caipseanan ⁊ roghainn teacsa"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Atharraich"
@@ -1347,46 +1549,41 @@ msgstr "Atharraich ìomhaigheag na h-aplacaid"
msgid "Change app icon to \"{0}\""
msgstr "Cuir “{0}” an àite ìomhaigheag na h-aplacaid"
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Atharraich am post-d"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr "Atharraich cànan na h-aplacaid"
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Atharraich an seòladh puist-d"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Atharraich an làmhrachan"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr "Atharraich seirbheise na modarataireachd"
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Atharraich am post-d agam"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Atharraich am facal-faire"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "Dèan post sa chànan a leanas dheth: {suggestedLanguageName}"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr "Atharraich adhbhar na h-aithrise"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Atharraich am post-d agad"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Atharraich an seòladh puist-d agad"
@@ -1394,20 +1591,20 @@ msgstr "Atharraich an seòladh puist-d agad"
msgid "Changes app icon"
msgstr "Atharraichidh seo ìomhaigheag na h-aplacaid"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr "Atharraichidh seo solaraiche na h-òstaireachd"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Cabadaich"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
msgstr "Chaidh a’ chabadaich a sguabadh às"
@@ -1417,20 +1614,19 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Chaidh a’ chabadaich a mhùchadh"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr "Bogsa a-steach nan iarrtasan cabadaich"
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr "Iarrtasan cabadaich"
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Roghainnean na cabadaich"
@@ -1443,8 +1639,8 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Chaidh a’ chabadaich a neo-mhùchadh"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr "Cabadaich"
@@ -1461,7 +1657,7 @@ msgstr "Thoir sùil air a' phost-d agad is cuir an còd airson clàradh a-steach
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Thoir sùil air a’ bhogsa a-steach agad airson post-d sa bheil còd dearbhaidh is cuir a-steach gu h-ìosal e:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Tagh dòigh airson dearbhadh na h-àrainne"
@@ -1469,7 +1665,7 @@ msgstr "Tagh dòigh airson dearbhadh na h-àrainne"
msgid "Choose Feeds"
msgstr "Tagh inbhirean"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Dèan taghadh às mo leth"
@@ -1477,10 +1673,6 @@ msgstr "Dèan taghadh às mo leth"
msgid "Choose People"
msgstr "Tagh daoine"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Tagh leubailean fhèin-obrachail a tha iomchaidh dha na meadhanan a phostaicheas tu. Mur an deach gin a thaghadh, bidh am post seo iomchaidh dhan a h-uile duine."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Tagh na h-algairimean a dh’obraicheas na h-inbhirean gnàthaichte agad."
@@ -1493,27 +1685,31 @@ msgstr "Tagh an dath seo mar avatar agad"
msgid "Choose your account provider"
msgstr "Tagh solaraiche a’ chunntais agad"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
-msgstr "Tagh loidhne-ama agad fhèin! Inbhirean leis a’ choimhearsnachd leis am faigh thu greim air stuth as toil leat."
+msgstr "Dealbh loidhne-ama dhut fhèin! Inbhirean leis a’ choimhearsnachd a bheir dhut stuth as toil leat."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Tagh facal-faire dhut"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "Tagh ainm-chleachdaiche dhut"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Falamhaich an dàta stòrais air fad"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Falamhaich an dàta stòrais air fad (dèan ath-thòiseachadh às a dhèidh seo)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr "Falamhaich tasgadan nan dealbhan"
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Falamhaich an ceasnachan luirg"
@@ -1522,6 +1718,14 @@ msgstr "Falamhaich an ceasnachan luirg"
msgid "click here"
msgstr "dèan briogadh an-seo"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr "Briog an-seo a thòiseachadh air a dhearbhadh."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr "Briog an-seo airson am post-d agad ùrachadh"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Dèan briogadh airson puist a nì luaidh air a’ phost seo a chur à comas."
@@ -1534,7 +1738,7 @@ msgstr "Dèan briogadh airson puist a nì luaidh air a’ phost seo a chur an co
msgid "Click to open tag menu for {tag}"
msgstr "Dèan briogadh is fosgail clàr-taice nan tagaichean airson {tag}"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Dèan briogadh airson feuchainn ris an teachdaireachd a dh’fhàillig as ùr"
@@ -1546,24 +1750,34 @@ msgstr "A’ chlìomaid"
msgid "Clip 🐴 clop 🐴"
msgstr "Turt 🐴 turt 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Dùin"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Dùin an còmhradh gnìomhach"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Dùin an drathair aig a’ bhonn"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Dùin an còmhradh"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr "Dùin an clàr-taice air an taobh"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "Dùin ròghnaichear nan emoji"
@@ -1600,7 +1816,13 @@ msgstr "Dùin an dealbh"
msgid "Close image viewer"
msgstr "Dùin sealladair an deilbh"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr "Dùin an clàr-taice"
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Dùin an co-còmhradh seo"
@@ -1608,8 +1830,12 @@ msgstr "Dùin an co-còmhradh seo"
msgid "Closes password update alert"
msgstr "Dùinidh seo caismeachd mu ùrachadh an fhacail-fhaire"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr "Dùinidh seo an uinneag sgrìobhaidh is tilgidh e air falbh dreachd a’ phuist"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr "Dùinidh seo roghnaichear nan emoji"
@@ -1617,11 +1843,11 @@ msgstr "Dùinidh seo roghnaichear nan emoji"
msgid "Closes viewer for header image"
msgstr "Dùinidh seo sealladair dealbh a’ bhanna-chinn"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Co-theannaich liosta an luchd-chleachdaidh"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Co-theannaichidh seo liosta nan cleachdaichean aig a’ bhrath"
@@ -1644,7 +1870,7 @@ msgstr "Comadaidh"
msgid "Comics"
msgstr "Dealbhan-èibhinn"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Treòrachadh na coimhearsnachd"
@@ -1653,23 +1879,23 @@ msgstr "Treòrachadh na coimhearsnachd"
msgid "Complete onboarding and start using your account"
msgstr "Coilean am bòrdachadh is tòisich air an cunntas agad a chleachdadh"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Coilean an dùbhlan"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Sgrìobh post ùr"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "Sgrìobh puist a bhios suas ri {MAX_GRAPHEME_LENGTH} caractar a dh’fhaid"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr "Sgrìobh puist a bhios suas ri {0, plural, one {# charactar} two {# charactar} few {# caractaran} other {# caractar}} a dh’fhaid"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Sgrìobh freagairt"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "A’ dùmhlachadh a’ video…"
@@ -1681,23 +1907,17 @@ msgstr "Rèitich roghainn criathradh na susbainte aig an roinn-seòrsa seo: {nam
msgid "Configured in <0>moderation settings0>."
msgstr "Air a rèiteachadh ann an <0>roghainnean na modarataireachd0>."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Dearbh"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Dearbh an t-atharrachadh"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Dearbh roghainnean cànain na susbainte"
@@ -1706,26 +1926,27 @@ msgstr "Dearbh roghainnean cànain na susbainte"
msgid "Confirm delete account"
msgstr "Dearbh gu bheil thu airson an cunntas a sguabadh às"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Dearbh d’ aois:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Dearbh latha do bhreith"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "An còd dearbhaidh"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "An còd dearbhaidh"
@@ -1733,22 +1954,22 @@ msgstr "An còd dearbhaidh"
msgid "Connecting..."
msgstr "A’ dèanamh ceangal…"
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Cuir fios gu sgioba na taice"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "Susbaint ⁊ meadhanan"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Susbaint is meadhanan"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Susbaint is meadhanan"
@@ -1756,18 +1977,18 @@ msgstr "Susbaint is meadhanan"
msgid "Content Blocked"
msgstr "Chaidh susbaint a bhacadh"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Criathragan susbainte"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr "Susbaint o fheadh an lìonraidh a chòrdas riut nar beachd."
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
-msgstr "Cànain susbainte"
+msgstr "Cànain na susbainte"
#: src/components/moderation/ModerationDetailsDialog.tsx:82
#: src/lib/moderation/useModerationCauseDescription.ts:82
@@ -1785,25 +2006,25 @@ msgstr "Rabhadh susbainte"
msgid "Content warnings"
msgstr "Rabhaidhean susbainte"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "Cùlaibh a’ chlàir-thaice cho-theacsail, dèan briogadh airson an clàr-taice a dhùnadh."
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Air adhart"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Lean ort mar {0} (clàraichte a-staigh aig an àm seo)"
#: src/view/com/post-thread/PostThreadLoadMore.tsx:60
msgid "Continue thread..."
-msgstr "Lean air an t-snàithlean…"
+msgstr "Leugh an còrr dhen t-snàithlean…"
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Air adhart gun ath-cheum"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Chaidh an còmhradh a sguabadh às"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Chaidh an còmhradh a sguabadh às"
@@ -1826,16 +2047,17 @@ msgstr "Còcaireachd"
msgid "Copied"
msgstr "Air lethbhreac a dhèanamh"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Chaidh lethbhreac de thionndadh a’ bhuild a chur air an stòr-bhòrd"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Chaidh lethbhreac a chur air an stòr-bhòrd"
@@ -1844,25 +2066,29 @@ msgstr "Chaidh lethbhreac a chur air an stòr-bhòrd"
msgid "Copied!"
msgstr "Chaidh lethbhreac a dhèanamh!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr "Cuiridh seo lethbhreac de thionndadh a’ bhuild air an stòr-bhòrd"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Lethbhreac"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr "Dèan lethbhreac co-dhiù"
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Dèan lethbhreac de dh’fhacal-faire na h-aplacaid"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr "Dèan lethbhreac dheth at:// URI"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr "Dèan lethbhreac dhe DID an ùghdair"
@@ -1871,57 +2097,69 @@ msgstr "Dèan lethbhreac dhe DID an ùghdair"
msgid "Copy code"
msgstr "Dèan lethbhreac dhen chòd"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Dèan lethbhreac dhen DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Dèan lethbhreac dhen òstair"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Dèan lethbhreac dhen cheangal"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Dèan lethbhreac dhen cheangal"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Dèan lethbhreac dhen cheangal ris an liosta"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Dèan lethbhreac dhen cheangal ris a’ phost"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr "Cuir lethbhreac dhen cheangal dhan phròifil"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr "Cuir lethbhreac dhen cheangal dhan pacaid tòiseachaidh"
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Dèan lethbhreac de theacsa na teachdaireachd"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr "Dèan lethbhreac dhen phost aig:// URI"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Dèan lethbhreac de theacsa a’ phuist"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Dèan lethbhreac dhen chòd QR"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "Dèan lethbhreac dhen reacord TXT"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Poileasaidh na còrach-lethbhreac"
@@ -1931,11 +2169,11 @@ msgstr "Poileasaidh na còrach-lethbhreac"
msgid "Could not leave chat"
msgstr "Cha b’ urrainn dhuinn a’ chabadaich fhàgail"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "Cha b’ urrainn dhuinn an t-inbhir a luchdadh"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "Cha b’ urrainn dhuinn an liosta a luchdadh"
@@ -1947,28 +2185,28 @@ msgstr "Cha b’ urrainn dhuinn a’ chabadaich a mhùchadh"
msgid "Could not process your video"
msgstr "Cha b’ urrainn a’ video agad a phròiseasadh"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Cruthaich"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "Cruthaich còd QR airson pacaid tòiseachaidh"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Cruthaich pacaid tòiseachaidh"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Cruthaich pacaid tòiseachaidh dhomh"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Cruthaich pacaid tòiseachaidh dhomh"
msgid "Create account"
msgstr "Cruthaich cunntas"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Cruthaich cunntas"
@@ -1985,11 +2223,16 @@ msgstr "Cruthaich cunntas"
msgid "Create an account"
msgstr "Cruthaich cunntas"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr "Cruthaich cunntas ach as aonais na pacaid tòiseachaidh seo"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Cruthaich avatar na àite"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Cruthaich fear eile"
@@ -1998,7 +2241,7 @@ msgstr "Cruthaich fear eile"
msgid "Create new account"
msgstr "Cruthaich cunntas ùr"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Cruthaich aithris airson {0}"
@@ -2053,17 +2296,17 @@ msgstr "Am modh dorcha"
msgid "Dark theme"
msgstr "Ùrlar dorcha"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Là-breith"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Cuir an cunntas à gnìomh"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Dì-bhugaich a’ mhodarataireachd"
@@ -2079,19 +2322,19 @@ msgstr "Bun-roghainn"
msgid "Default icons"
msgstr "Na h-ìomhaigheagan bunaiteach"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Sguab às"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Sguab às an cunntas"
@@ -2107,19 +2350,19 @@ msgstr "Sguab facal-faire na h-aplacaid às"
msgid "Delete app password?"
msgstr "A bheil thu airson facal-faire na h-aplacaid a sguabadh às?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr "Sguab a’ chabadaich às"
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Sguab às clàr foirgheall na cabadaich"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "Sguab an còmhradh às"
@@ -2127,19 +2370,19 @@ msgstr "Sguab an còmhradh às"
msgid "Delete Conversation"
msgstr "Sguab às an còmhradh"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Sguab às dhomh-sa"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
msgstr "Sguab an liosta às"
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Sguab an teachdaireachd às"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Sguab an teachdaireachd às dhomh-sa"
@@ -2147,26 +2390,26 @@ msgstr "Sguab an teachdaireachd às dhomh-sa"
msgid "Delete my account"
msgstr "Sguab an cunntas agam às"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Sguab às am post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Sguab a’ phacaid tòiseachaidh às"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "A bheil thu airson a’ phacaid tòiseachaidh seo a sguabadh às?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "A bheil thu airson an liosta seo a sguabadh às?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "A bheil thu airson am seo post a sguabadh às?"
@@ -2174,8 +2417,8 @@ msgstr "A bheil thu airson am seo post a sguabadh às?"
msgid "Deleted"
msgstr "Air a sguabadh às"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Cunntas a chaidh a sguabadh às"
@@ -2183,48 +2426,48 @@ msgstr "Cunntas a chaidh a sguabadh às"
msgid "Deleted post."
msgstr "Post a chaidh a sguabadh às."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Tuairisgeul"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "Tha an tuairisgeul ro fhada"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "Tha an tuairisgeul ro fhada. ’S e {DESCRIPTION_MAX_GRAPHEMES} an àireamh as motha de charactaran a tha ceadaichte."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Tha an tuairisgeul ro fhada. {DESCRIPTION_MAX_GRAPHEMES, plural, one {{0} charactar} two {{0} charactar} few {{0} charactaran} other {{0} caractar}} ceadaichte."
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Teacsa a mhìnicheas an t-susbaint"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Dealaich an luaidh"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "A bheil thu airson an luaidh air a’ phost a dhealachadh?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
msgstr "Chaidh modh an luchd-leasachaidh a chur à comas"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
msgstr "Chaidh modh an luchd-leasachaidh a chur an comas"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Roghainnean an luchd-leasachaidh"
@@ -2236,6 +2479,15 @@ msgstr "Còmhradh: co-dhùin cò aig a bheil cead eadar-ghabhail a dhèanamh lei
msgid "Dim"
msgstr "Doilleir"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr "Cuir 2FA à comas"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr "Cuir dearbhadh 2FA air a’ phost-d à comas"
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "Cuir dearbhadh 2FA air a’ phost-d à comas"
@@ -2254,25 +2506,25 @@ msgstr "Cuir na fo-thiotalan à comas"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "À comas"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Tilg air falbh"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "A bheil thu airson na h-atharraichean a thilgeil air falbh?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "A bheil thu airson an dreachd a thilgeil air falbh?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "A bheil thu airson am post a thilgeil air falbh?"
@@ -2281,24 +2533,24 @@ msgstr "A bheil thu airson am post a thilgeil air falbh?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Cùm aplacaidean o bhith a’ sealltainn a’ chunntais agam do luchd-cleachdaidh a rinn clàradh a-mach"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr "Fidir inbhirean"
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Fidir inbhirean gnàthaichte ùra"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Fidir inbhirean ùra"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Fidir inbhirean ùra"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Leig seachad"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Leig seachad a’ mhearachd"
@@ -2306,6 +2558,10 @@ msgstr "Leig seachad a’ mhearachd"
msgid "Dismiss getting started guide"
msgstr "Leig seachad an treòir thòiseachail"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr "Leig seachad na rudan sa bheil ùidh agad"
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr "Leig seachad an earrann seo"
@@ -2315,27 +2571,27 @@ msgstr "Leig seachad an earrann seo"
msgid "Display larger alt text badges"
msgstr "Seall baidsean nas motha airson roghainn teacsa"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Ainm-taisbeanaidh"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Ainm-taisbeanaidh"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "Tha an t-ainm-taisbeanaidh seo ro fhada"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "Tha an t-ainm-taisbeanaidh seo ro fhada. ’S e {DISPLAY_NAME_MAX_GRAPHEMES} an àireamh as motha de charactaran a tha ceadaichte."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Tha an t-ainm taisbeanaidh ro fhada. {DISPLAY_NAME_MAX_GRAPHEMES, plural, one {{0} charactar} two {{0} charactar} few {{0} charactaran} other {{0} caractar}} ceadaichte."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "Panail DNS"
@@ -2347,37 +2603,45 @@ msgstr "Na cuir an sàs am facal mùchaidh seo mu choinneamh luchd-cleachdaidh a
msgid "Does not include nudity."
msgstr "Gun lomnochd na bhroinn."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "Chan eil e a’ tòiseachadh no a’ crìochnachadh le tàthan"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "Chaidh an àrainn a dhearbhadh!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr "Nach eil còd agad no a bheil fear ùr a dhìth ort? <0>Briog an-seo.0>"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr "Nach fhaic thu am post-d sam? <0>Briog an-seo airson a chur às ùr.0>"
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Deiseil"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Deiseil"
msgid "Done{extraText}"
msgstr "Deiseil{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr "Thoir gnogag dhùbailte no dèan brùthadh fada air an teachdaireachd airson frith-fhreagairt a chur"
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Thoir gnogag dhùbailte air gus an còmhradh a dhùnadh"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr "Thoir gnogag dhùbailte a dh’innse gur toil leat e"
@@ -2413,23 +2681,23 @@ msgstr "Leig às dealbh airson a chur ris"
msgid "Duration:"
msgstr "Faid:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "m.e. alice"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "m.e. Alice Sloinneadh"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "m.e. Alice Roberts"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "m.e. alice.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "m.e. neach-ealain, gaol air coin is leughadair mòr."
@@ -2437,19 +2705,19 @@ msgstr "m.e. neach-ealain, gaol air coin is leughadair mòr."
msgid "E.g. artistic nudes."
msgstr "m.e. lomnochd ealain."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "m.e. postairean fìor-mhath"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "m.e. spamairean"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "m.e. na làmhan gun dearmad."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "m.e. luchd-cleachdaidh a chuireas sanasachd mar fhreagairt gu tric."
@@ -2457,20 +2725,21 @@ msgstr "m.e. luchd-cleachdaidh a chuireas sanasachd mar fhreagairt gu tric."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Obraichidh gach còd aon turas. Gheibh thu barrachd chòdaichean cuiridh o àm gu àm."
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Deasaich"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Deasaich"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Deasaich an t-avatar"
@@ -2478,31 +2747,41 @@ msgstr "Deasaich an t-avatar"
msgid "Edit Feeds"
msgstr "Deasaich na h-inbhirean"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Deasaich an dealbh"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Deasaich roghainnean na h-eadar-ghabhalach"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr "Deasaich na rudan sa bheil ùidh agad"
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Deasaich mion-fhiosrachadh na liosta"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr "Deasaich staid an t-srutha bheò"
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Deasaich an liosta modarataireachd"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Deasaich na h-inbhirean agam"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Deasaich a’ phròifil agam"
@@ -2515,23 +2794,23 @@ msgstr "Deasaich na daoine"
msgid "Edit post interaction settings"
msgstr "Deasaich roghainnean eadar-ghabhail a’ phuist"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Deasaich a’ phròifil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Deasaich a’ phròifil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Deasaich a’ phacaid tòiseachaidh"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Deasaich liosta an luchd-chleachdaidh"
@@ -2539,15 +2818,15 @@ msgstr "Deasaich liosta an luchd-chleachdaidh"
msgid "Edit who can reply"
msgstr "Co-dhùin cò aig a bheil cead freagairt"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Deasaich an t-ainm-taisbeanaidh agad"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Deasaich tuairisgeul na pròifil agad"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Deasaich a’ phacaid tòiseachaidh agad"
@@ -2560,9 +2839,8 @@ msgstr "Foghlam"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "Bhac cruthadair na liosta seo thu no bhac thusa cruthadair na liosta."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "Post-d"
@@ -2583,20 +2861,17 @@ msgstr "Seòladh puist-d"
msgid "Email Resent"
msgstr "Chaidh am post-d a chur as ùr"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
-msgstr "Chaidh am post-d ùrachadh"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
+msgstr "Chaidh am post-d a chur!"
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "Chaidh am post-d ùrachadh"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr "Chaidh am post-d ùrachadh!"
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
-msgstr "Chaidh am post-d a dhearbhadh"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
+msgstr "Chaidh am post-d a dhearbhadh!"
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
msgid "Email Verified"
@@ -2608,8 +2883,8 @@ msgstr "Leabaich an còd HTML"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Leabaich am post"
@@ -2617,12 +2892,13 @@ msgstr "Leabaich am post"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Leabaich am post seo san làrach-lìn agad. Cha leig thu leas ach lethbhreac dhen snippet a leanas a dhèanamh agus a chur a-steach dhan chòd HTML air an làrach-lìn agad."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "Cluicheadair video leabaichte"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Cuir an comas"
@@ -2630,12 +2906,12 @@ msgstr "Cuir an comas"
msgid "Enable {0} only"
msgstr "Na cuir an comas ach {0}"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Cuir comas inbheach an comas"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
msgstr "Cuir 2FA air a’ phost-d an comas"
#: src/components/dialogs/EmbedConsent.tsx:81
@@ -2660,30 +2936,30 @@ msgstr "Cuir fo-thiotalan an comas"
msgid "Enable this source only"
msgstr "Cuir an tùs seo a-mhàin an comas"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "Cuir na cuspairean a tha a’ treandadh an comas"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr "Cuir an comas videothan a tha a’ treandadh san inbhir “Fidir” agad"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr "Cuir an comas videothan a tha a’ treandadh san inbhir “Fidir” agad."
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "An comas"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Deireadh an inbhir"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Dèan cinnteach gun do thagh thu cànan airson gach faidhle fho-thiotalan."
@@ -2696,13 +2972,14 @@ msgstr "Cuir a-steach facal-faire"
msgid "Enter a word or tag"
msgstr "Cuir a-steach facal no taga"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
-msgid "Enter Code"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
msgstr "Cuir a-steach an còd"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Cuir a-steach an còd dearbhaidh"
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
+msgid "Enter Code"
+msgstr "Cuir a-steach an còd"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
@@ -2712,7 +2989,7 @@ msgstr "Tòisich an làn-sgrìn"
msgid "Enter the code you received to change your password."
msgstr "Cuir a-steach an còd a fhuair thu airson am facal-faire agad atharrachadh."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Cuir a-steach an àrainn a tha thu airson cleachdadh"
@@ -2720,20 +2997,20 @@ msgstr "Cuir a-steach an àrainn a tha thu airson cleachdadh"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Cuir a-steach am post-d a chleachd thu nuair a chruthaich thu an cunntas agad. Chuir sinn “còd ath-shuidheachaidh” thugad agus is urrainn dhut facal-faire ùr a chur an sàs leis."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr "Cuir a-steach an t-ainm-cleachdaiche no seòladh a’ phuist-d a chleachd thu nuair a chruthaich thu an cunntas agad"
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Cuir a-steach an do latha-breith"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Cuir a-steach an seòladh puist-d agad"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Cuir a-steach am post-d ùr agad gu h-àrd"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Cuir a-steach an seòladh puist-d ùr agad gu h-ìosal."
@@ -2749,7 +3026,11 @@ msgstr "Cuir a-steach an t-ainm-cleachdaiche ’s am facal-faire agad"
msgid "Enters full screen"
msgstr "Fosglaidh seo an làn-sgrìn"
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr "Dibhearsan"
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Mearachd"
@@ -2758,15 +3039,18 @@ msgstr "Mearachd"
msgid "Error occurred while saving file"
msgstr "Dh’èirich mearachd nuair a bha sinn a’ sàbhaladh an fhaidhle"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "Dh’èirich mearachd nuair a bha sinn a’ faighinn freagairt a’ Chaptcha."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Mearachd:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr "Mearachd: {error}"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Duine sam bith"
@@ -2782,7 +3066,7 @@ msgstr "Faodaidh duine sam bith am post seo a fhreagairt."
#: src/screens/Messages/Settings.tsx:83
#: src/screens/Messages/Settings.tsx:86
msgid "Everyone"
-msgstr "A h-uile duine"
+msgstr "on a h-uile duine"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73
#: src/lib/moderation/useReportOptions.ts:73
@@ -2818,30 +3102,22 @@ msgstr "Fàgaidh seo bearradh an deilbh"
msgid "Exits image view"
msgstr "Fàgaidh seo sealladh an deilbh"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Fàgaidh seo ion-chur a’ cheasnachain luirg"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Leudaich an roghainn teacsa"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Leudaich liosta an luchd-chleachdaidh"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "Leudaich no co-theannaich am post slàn a tha thu a’ freagairt"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr "Leudaichidh no co-theannaichidh seo teacsa a’ phuist"
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr "Leudaichidh no co-theannaichidh seo am post slàn a tha thu a’ freagairt"
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "Bha dùil ri URI airson an clàr fhuasgladh"
@@ -2864,6 +3140,10 @@ msgstr "Falbhaidh an ùine air {0}"
msgid "Expires in {0}"
msgstr "Falbhaidh an ùine air ann an {0}"
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr "Falbhaidh an ùine air ann an {0} aig {1}"
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "Meadhanan feòlmhor no draghail."
msgid "Explicit sexual images."
msgstr "Dealbhan feiseil is feòlmhor."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr "Rùraich"
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Às-phortaich an dàta agam"
@@ -2882,8 +3169,8 @@ msgstr "Às-phortaich an dàta agam"
msgid "Export My Data"
msgstr "Às-phortaich an dàta agam"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "Meadhanan on taobh a-muigh"
@@ -2897,17 +3184,22 @@ msgstr "Meadhanan on taobh a-muigh"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Ma cheadaicheas tu meadhanan on taobh a-muigh, dh’fhaoidte gun toir seo comas do làraichean-lìn fiosrachadh a chruinneachadh mu do dhèidhinn is mun uidheam agad. Cha tèid fiosrachadh sam bith iarraidh no a chur gus am brùth thu am putan “Cluich”."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Roghainnean nam meadhanan on taobh a-muigh"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Cha b’ urrainn dhuinn gabhail ris a’ chabadaich"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr "Cha b’ urrainn dhuinn an emoji a chur mar fhrith-fhreagairt"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "Dh’fhàillig atharrachadh an làmhrachain. Feuch ris a-rithist."
@@ -2915,7 +3207,7 @@ msgstr "Dh’fhàillig atharrachadh an làmhrachain. Feuch ris a-rithist."
msgid "Failed to create app password. Please try again."
msgstr "Cha b’ urrainn dhuinn facal-faire a chruthachadh dhan aplacaid. Feuch ris a-rithist."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr "Cha b’ urrainn dhuinn an còmhradh a chruthachadh"
@@ -2924,35 +3216,37 @@ msgstr "Cha b’ urrainn dhuinn an còmhradh a chruthachadh"
msgid "Failed to create starter pack"
msgstr "Cha b’ urrainn dhuinn pacaid tòiseachaidh a chruthachadh"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "Cha b’ urrainn dhuinn an liosta a chruthachadh. Thoir sùil air a’ cheangal ris eadar-lìon is feuch ris a-rithist."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Cha b’ urrainn dhuinn a’ chabadaich a sguabadh às"
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Cha b’ urrainn dhuinn an teachdaireachd a sguabadh às"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "Cha b’ urrainn dhuinn am post a sguabadh às, feuch ris a-rithist"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "Cha b’ urrainn dhuinn a’ phacaid tòiseachaidh a sguabadh às"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr "Cha b’ urrainn dhuinn na còmhraidhean a luchdadh"
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "Cha b’ urrainn dhuinn roghainnean nan inbhirean a luchdadh"
@@ -2964,17 +3258,19 @@ msgstr "Cha b’ urrainn dhuinn na GIFs a luchdadh"
msgid "Failed to load past messages"
msgstr "Cha b’ urrainn dhuinn na seann-teachdaireachdan a luchdadh"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
-msgstr "Cha b’ urrainn dhuinn na h-inbhirean a mholar a luchdadh"
+msgstr "Cha b’ urrainn dhuinn na h-inbhirean a mholamaid a luchdadh"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
-msgstr "Cha b’ urrainn dhuinn na daoine a mholar an leantainn a luchdadh"
+msgstr "Cha b’ urrainn dhuinn na daoine a mholamaid an leantainn a luchdadh"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr "Cha b’ urrainn dhuinn comharradh gun deach gach iarrtas a leughadh"
@@ -2982,7 +3278,16 @@ msgstr "Cha b’ urrainn dhuinn comharradh gun deach gach iarrtas a leughadh"
msgid "Failed to pin post"
msgstr "Cha b’ urrainn dhuinn am post a phrìneachadh"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr "Cha b’ urrainn dhuinn an emoji a chuir thu mar fhrith-fhreagairt a thoirt air falbh"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr "Cha b’ urrainn dhuinn an dearbhadh a thoirt air falbh"
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Cha b’ urrainn dhuinn an dealbh a shàbhaladh: {0}"
@@ -2994,20 +3299,39 @@ msgstr "Cha b’ urrainn dhuinn roghainnean nam brathan a shàbhaladh, feuch ris
msgid "Failed to save settings. Please try again."
msgstr "Cha b’ urrainn dhuinn na roghainnean a shàbhaladh. Feuch ris a-rithist."
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr "Cha b’ urrainn dhuinn na rudan sa bheil ùidh agad a shàbhaladh."
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "Dh’fhàillig a chur"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr "Cha b’ urrainn dhuinn am post-d a chur, feuch ris a-rithist."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Cha b’ urrainn dhuinn an t-ath-thagradh a chur, feuch ris a-rithist."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "Cha b’ urrainn dhuinn mùchadh an t-snàithlein a thoglachadh, feuch ris a-rithist"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr "Cha b’ urrainn dhuinn roghainnean 2FA a’ phuist-d ùrachadh"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr "Cha b’ urrainn dhuinn am post-d ùrachadh, feuch ris a-rithist."
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "Cha b’ urrainn dhuinn na h-inbhirean ùrachadh"
@@ -3022,20 +3346,24 @@ msgstr "Cha b’ urrainn dhuinn na roghainnean ùrachadh"
msgid "Failed to upload video"
msgstr "Cha b’ urrainn dhuinn a’ video a luchdadh suas"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr "Cha b’ urrainn dhuinn am post-d a dhearbhadh, feuch ris a-rithist."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "Cha b’ urrainn dhuinn an làmhrachan a dhearbhadh. Feuch ris a-rithist."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Inbhir"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Inbhir le {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "Clàr-taice nan inbhirean"
@@ -3043,26 +3371,26 @@ msgstr "Clàr-taice nan inbhirean"
msgid "Feed toggle"
msgstr "Toglaiche nan inbhirean"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Innis dhuinn dè do bheachd"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
msgstr "Chaidh do bheachdan a chur!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Inbhirean"
@@ -3070,13 +3398,13 @@ msgstr "Inbhirean"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Tha inbhirean nan algairimean gnàthaichte as urrainn do luchd-cleachdaidh a chruthachadh ma tha beagean de sgil aca air còdachadh. <0/> airson barrachd fiosrachaidh."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
msgstr "Chaidh na h-inbhirean ùrachadh!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "Saoilidh sinn gun còrd na h-inbhirean seo riut."
@@ -3092,11 +3420,11 @@ msgstr "Chaidh am faidhle a shàbhaladh!"
msgid "Filter from feeds"
msgstr "Criathraich o na h-inbhirean"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr "Criathraich an lorg a-rèir cànain"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr "Criathraich an lorg a-rèir cànain (an-dràsta fhèin: {currentLanguageLabel})"
@@ -3110,13 +3438,13 @@ msgstr "A’ cur crìoch air"
msgid "Find accounts to follow"
msgstr "Lorg cunntasan airson an leantainn"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "Lorg daoine airson an leantainn"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Lorg puist, cleachdaichean is inbhirean air Bluesky"
@@ -3148,11 +3476,11 @@ msgid "Flexible"
msgstr "Sùbailte"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Lean"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Lean"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Lean ri {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr "Lean ri {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Lean ri {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "Lean ri 10 cunntasan"
msgid "Follow 7 accounts"
msgstr "Lean ri 7 cunntasan"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "Lean ris a’ chunntas"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Lean ris na h-uile"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Lean iad cuideachd"
@@ -3204,27 +3528,23 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Lean iad cuideachd"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "Lean ri barrachd chunntasan is faic rudan sa bheil ùidh agad is tog lìonra."
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
-msgstr "<0>{0}0> ga leantainn"
+msgstr "Tha <0>{0}0> ga leantainn"
#: src/components/KnownFollowers.tsx:220
msgid "Followed by <0>{0}0> and {1, plural, one {# other} other {# others}}"
-msgstr "<0>{0}0> is {1, plural, one {# eile} two {# eile} few {# eile} other {# eile}} ga leantainn"
+msgstr "Tha <0>{0}0> is {1, plural, one {# eile} two {# eile} few {# eile} other {# eile}} ga leantainn"
#: src/components/KnownFollowers.tsx:207
msgid "Followed by <0>{0}0> and <1>{1}1>"
-msgstr "<0>{0}0> agus <1>{1}1> ga leantainn"
+msgstr "Tha <0>{0}0> agus <1>{1}1> ga leantainn"
#: src/components/KnownFollowers.tsx:189
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
-msgstr "<0>{0}0>, <1>{1}1> is {2, plural, one {# eile} two {# eile} few {# eile} other {# eile}} ga leantainn"
+msgstr "Tha <0>{0}0>, <1>{1}1> is {2, plural, one {# eile} two {# eile} few {# eile} other {# eile}} ga leantainn"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Luchd-leantainn aig @{0} as aithne dhut-sa cuideachd"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Luchd-leantainn as aithne dhut"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Ga leantainn"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
-msgstr "A’ leantainn {0}"
+msgstr "A’ leantainn {0} a-nis"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr "A’ leantainn {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "A’ leantainn {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Roghainnean inbhir nan daoine a tha thu a’ leantainn"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Roghainnean inbhir nan daoine a tha thu a’ leantainn"
@@ -3301,6 +3617,10 @@ msgstr "Air sgàth adhbharan tèarainteachd, chan fhaic thu seo a-rithist. Ma ch
msgid "For the best experience, we recommend using the theme font."
msgstr "’S e cruth-clò an ùrlair as fheàrr a dh’obraicheas, nar beachd-ne."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr "Dhut-sa"
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Gu bràth"
@@ -3316,7 +3636,7 @@ msgstr "Na dhìochuimhnich thu am facal-faire?"
#: src/screens/Login/LoginForm.tsx:259
msgid "Forgot?"
-msgstr "Na dìochuimhnich thu e?"
+msgstr "Na dhìochuimhnich thu e?"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:54
#: src/lib/moderation/useReportOptions.ts:54
@@ -3327,7 +3647,7 @@ msgstr "A’ postadh susbaint gun iarraidh gu tric"
msgid "From @{sanitizedAuthor}"
msgstr "O @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "O <0/>"
@@ -3336,28 +3656,30 @@ msgstr "O <0/>"
msgid "Gallery"
msgstr "An gailearaidh"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Gin pacaid tòiseachaidh"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Faigh cobhair"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
msgstr "Dèan toiseach-tòiseachaidh"
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "A’ dèanamh toiseach-tòiseachaidh"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Cuir aodann ris a’ phròifil agad"
@@ -3366,17 +3688,17 @@ msgstr "Cuir aodann ris a’ phròifil agad"
msgid "Glaring violations of law or terms of service"
msgstr "Briseadh mòr an lagha no teirmichean na seirbheise"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Air ais"
@@ -3384,10 +3706,10 @@ msgstr "Air ais"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Air ais"
@@ -3408,7 +3730,27 @@ msgstr "Dhachaigh"
msgid "Go Home"
msgstr "Dhachaigh"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr "Cuir struth beò"
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr "Cuir struth beò"
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr "Cuir struth beò fad"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr "Tadhail air a’ phròifil aig {firstAuthorName}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Tadhail air a’ chòmhradh le {0}"
@@ -3419,7 +3761,7 @@ msgstr "Tadhail air an ath-fhear,"
#: src/components/dms/ConvoMenu.tsx:227
msgid "Go to profile"
-msgstr "Tadhail air a’ phròifil agad"
+msgstr "Tadhail air a’ phròifil aca"
#: src/components/dms/ConvoMenu.tsx:224
msgid "Go to user's profile"
@@ -3427,8 +3769,8 @@ msgstr "Tadhail air pròifil a’ chleachdaiche"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Meadhanan grafaigeach"
@@ -3437,21 +3779,21 @@ msgstr "Meadhanan grafaigeach"
msgid "Half way there!"
msgstr "Leathach slighe!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Làmhrachan"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "Tha an làmhrachan seo aig cuideigin eile mar-thà. Feuch fear eile."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "Chaidh an làmhrachan atharrachadh!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "Tha an làmhrachan ro fhada. Feuch fear nas giorra."
@@ -3464,7 +3806,7 @@ msgstr "Haptaigeachd"
msgid "Harassment, trolling, or intolerance"
msgstr "Sàrachadh, trolladh no neo-fhulangas"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Taga-hais"
@@ -3472,19 +3814,24 @@ msgstr "Taga-hais"
msgid "Hashtag {tag}"
msgstr "Taga-hais {tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr "A bheil còd agad? <0>Briog an-seo.0>"
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "A bheil duilgheadasan agad?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Cobhair"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Dèan nas soilleire e do dhaoine nach e bot a th’ annad le bhith a’ luchdadh suas dealbh no a’ cruthachadh avatar."
@@ -3497,7 +3844,7 @@ msgstr "Seo dhut facal-faire na h-aplacaid!"
msgid "Hidden"
msgstr "Falaichte"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr "Falaichte ri linn nan roghainnean modarataireachd agad."
@@ -3509,18 +3856,17 @@ msgstr "Liosta fhalaichte"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Falaich"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Falaich"
@@ -3529,38 +3875,40 @@ msgstr "Falaich"
msgid "Hide customization options"
msgstr "Falaich gach roghainn gnàthachaidh"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Falaich am post seo uam-sa"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Falaich an fhreagairt seo on a h-uile duine"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Falaich an fhreagairt seo uam-sa"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr "Falaich a’ chairt seo"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "A bheil thu airson am post seo a chur am falach?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "A bheil thu airson an fhreagairt seo a chur am falach?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Falaich na cuspairean a tha a’ treandadh"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "A bheil thu airson na cuspairean a tha a’ treandadh a chur am falach?"
@@ -3569,10 +3917,15 @@ msgstr "A bheil thu airson na cuspairean a tha a’ treandadh a chur am falach?"
msgid "Hide trending videos?"
msgstr "A bheil thu airson na videothan a tha a’ treandadh a chur am falach?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Falaich liosta an luchd-chleachdaidh"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr "Falaich na baidsean dearbhaidh"
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "Hm, thug frithealaiche an inbhir seachad droch-fhreagairt. Innis do shea
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Hm, chan fhaigh sinn lorg air an inbhir seo. Faodaidh gun deach a sguabadh às."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Hm, tha coltas nach urrainn dhuinn an dàta seo a luchdadh. Chì thu barrachd fiosrachaidh mu dhèidhinn gu h-ìosal. Ma mhaireas an duilgheadas seo, cuir fios thugainn."
@@ -3610,15 +3963,15 @@ msgstr "Hm, cha b’ urrainn dhuinn an t-seirbheis modarataireachd sin a luchdad
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Air do shocair! Tha sinn a’ toirt comas air video mean air mhean – glacaidh foighidinn iasg. Na bi fada gun tilleadh!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Dhachaigh"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "An t-òstair:"
@@ -3627,34 +3980,33 @@ msgstr "An t-òstair:"
msgid "Hosting provider"
msgstr "Solaraiche na h-òstaireachd"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr "Teth"
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "Brod nam freagairtean an toiseach"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "Ciamar a dh’fhosglas sinn an ceangal seo dhut?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Tha còd agam"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Tha còd agam"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Tha còd dearbhaidh agam"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Tha àrainn agam fhìn"
@@ -3667,22 +4019,30 @@ msgstr "Tha mi a’ tuigsinn"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Ma tha an roghainn teacsa ro fhada, dùisgidh seo staid na roghainn teacsa leudaichte"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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 "Mur eil thu nad inbheach fhathast a-rèir laghan do dhùthcha, feumaidh am pàrant no neach-glèidhidh laghail agad na teirmichean seo a leughadh as do leth."
-#: src/view/screens/ProfileList.tsx:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "Ma sguabas tu às an liosta seo, chan urrainn dhut aiseag às a dhèidh."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Ma tha àrainn agad fhèin, ’s urrainn dhut sin a chleachdadh mar an làmhrachan agad. Bheir seo comas dhut dearbhadh gur tusa a th’ ann thu fhèin. <0>Barrachd fiosrachaidh an-seo.0>"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr "Ma tha agad ris am post-d agad ùrachadh, <0>briog an-seo0>."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Ma bheir thu am post seo air falbh, chan urrainn dhut aiseag às a dhèidh."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr "Ma dh’ùraicheas tu an seòladh puist-d agad, thèid an 2FA a chur à comas."
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Ma tha thu airson am facal-faire seo atharrachadh, cuiridh sinn còd thugad a dhèanamh cinnteach gur ann agad-sa a tha an cunntas seo."
@@ -3704,9 +4064,22 @@ msgstr "Mì-laghail is èiginneach"
msgid "Image"
msgstr "Dealbh"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "Chaidh an dealbh a shàbhaladh ann an albam a’ chamara agad!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr "Chaidh tasgadan nan dealbhan fhalamhachadh"
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr "Chaidh tasgadan nan dealbhan fhalamhachadh, shaor sinn {0}"
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr "Chaidh an dealbh a shàbhaladh"
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr "Chan urrainn dhut dealbhan a shàbhaladh ach ma thug thu cead-inntrigidh dhuinn do leabhar-lann nan dealbhan agad."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "Teachdaireachdan mì-iomchaidh no ceanglaichean feòlmhor"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr "Bogsa a-steach falamh!"
@@ -3752,15 +4125,11 @@ msgstr "Cuir a-steach am facal-faire airson an cunntas a sguabadh às"
msgid "Input the code which has been emailed to you"
msgstr "Cuir a-steach an còd a chuir sinn thugad air a’ phost-d"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "Cuir a-steach an t-ainm-cleachdaiche no seòladh puist-d a chleachd thu nuair a chlàraich thu an toiseach"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Eadar-ghabhail chuingichte"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr "Roghainnean na h-eadar-ghabhalach"
@@ -3769,11 +4138,11 @@ msgstr "Roghainnean na h-eadar-ghabhalach"
msgid "Invalid 2FA confirmation code."
msgstr "Tha an còd dearbhaidh 2FA mì-dhligheach."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Feuch fear eile."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "Clàr puist mì-dhligheach no fear ris nach eil taic"
@@ -3789,11 +4158,11 @@ msgstr "Còd dearbhaidh mì-dhligheach"
msgid "Invite a Friend"
msgstr "Thoir cuireadh do charaid"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Còd a’ chuiridh"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Cha deach gabhail ri còd a’ chuiridh. Dèan cinnteach gun do chuir thu a-steach e gun mhearachd is feuch ris a-rithist."
@@ -3805,7 +4174,7 @@ msgstr "Còdaichean cuiridh: {0} ri do làimh"
msgid "Invite codes: 1 available"
msgstr "Còdaichean cuiridh: Tha aonan ri fhaighinn"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "Thoir cuireadh do dhaoine gun phacaid tòiseachaidh seo!"
@@ -3817,7 +4186,7 @@ msgstr "Thoir cuireadh dha do charaidean na h-inbhirean is daoine as fheàrr lea
msgid "Invites, but personal"
msgstr "Cuiridhean ach pearsanta"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "Tha e ceart"
@@ -3825,19 +4194,19 @@ msgstr "Tha e ceart"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Chan eil ann ach thu fhèin an-dràsta fhèin! Cuir barrachd dhaoine ris a’ phacaid tòiseachaidh agad le bhith a’ dèanamh lorg gu h-àrd."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "ID na h-obrach: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Obraichean"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Rach an sàs Bluesky"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "Air a leubaileadh leis an ùghdar."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Leubailean"
@@ -3868,7 +4237,7 @@ msgstr "Leubailean"
msgid "Labels added"
msgstr "Chaidh na leubailean a chur ris"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "Tha leubailean nan nòtaichean mu chleachdaichean is susbaint. Bheir iad rabhadh do dhaoine, is urrainnear rudan a chur am falach leotha agus na rudan air an lìonra a sheòrsachadh."
@@ -3884,13 +4253,13 @@ msgstr "Leubailean a tha ris an t-susbaint agad"
msgid "Language selection"
msgstr "Taghadh a’ chànain"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Roghainnean cànain"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Cànain"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Nas motha"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "As ùire"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "barrachd fiosrachaidh"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr "Barrachd fiosrachaidh"
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Barrachd fiosrachaidh"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Barrachd fiosrachaidh mu dhèidhinn Bluesky"
@@ -3933,6 +4311,11 @@ msgstr "Barrachd fiosrachaidh mun mhodarataireachd a rinneadh air an t-susbaint
msgid "Learn more about this warning"
msgstr "Barrachd fiosrachaidh mun rabhadh seo"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr "Barrachd fiosrachaidh mun dearbhadh air Bluesky"
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3962,7 +4345,7 @@ msgstr "Fàg an còmhradh"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84
msgid "Leave them all unchecked to see any language."
-msgstr "Na cuir cromag ri gin dhiubh airson stuth fhaicinn ge be dè an cànan."
+msgstr "Ma tha thu airson stuth fhaicinn ge be dè an cànan, na tagh gin gu h-ìosal."
#: src/view/com/modals/LinkWarning.tsx:65
msgid "Leaving Bluesky"
@@ -3972,7 +4355,7 @@ msgstr "A’ fàgail Bluesky"
msgid "left to go."
msgstr "air fhàgail."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Leig leamsa roghnachadh"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Soilleir"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "’S toil"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "’S toil ({0, plural, one {’s toil le # seo} two {’s toil le # seo} few {’s toil le # seo} other {’s toil le # seo}})"
@@ -4013,17 +4397,16 @@ msgstr "Nochd gur toil leat 10 puist"
msgid "Like 10 posts to train the Discover feed"
msgstr "Nochd gur toil leat 10 puist airson teagasg a thoirt dhan inbhir “Fidir”"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Innis gur toil leat an t-inbhir seo"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr "Nochd gur toil leat an leubailich seo"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Daoine as toil leotha seo"
@@ -4033,40 +4416,40 @@ msgstr "Daoine as toil leotha seo"
msgid "Liked By"
msgstr "Daoine as toil leotha seo"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "’S toil le {0, plural, one {# seo} two {# seo} few {# seo} other {# seo}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "’S toil le {likeCount, plural, one {# seo} two {# seo} few {# seo} other {# seo}}"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
-msgstr "as toil leotha seo"
+msgstr "Na ’s toil le daoine"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "Daoine as toil leotha am post seo"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "Loidhneach"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Liosta"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Avatar na liosta"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
msgstr "Chaidh an liosta a bhacadh"
@@ -4084,7 +4467,7 @@ msgstr "Liosta le <0/>"
msgid "List by you"
msgstr "Liosta leat-sa"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
msgstr "Chaidh an liosta a sguabadh às"
@@ -4093,35 +4476,35 @@ msgstr "Chaidh an liosta a sguabadh às"
msgid "List has been hidden"
msgstr "Chaidh an liosta a chur am falach"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "Chaidh an liosta a chur am falach"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
msgstr "Chaidh an liosta a mhùchadh"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Ainm na liosta"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
msgstr "Chaidh an liosta a dhì-bhacadh"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
msgstr "Chaidh an liosta a neo-mhùchadh"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Liostaichean"
@@ -4129,34 +4512,47 @@ msgstr "Liostaichean"
msgid "Lists blocking this user:"
msgstr "Liostaichean a tha a’ bacadh a’ chleachdaiche seo:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr "Beò"
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr "’S e gleus beta a tha sna sruthan beòtha"
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr "Ceangal ris an t-sruth bheò"
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Luchdaich barrachd dheth"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
-msgstr "Luchdaich barrachd inbhirean a mholar"
-
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Luchdaich barrachd daoine a mholar an leantainn"
+msgstr "Luchdaich barrachd inbhirean a mholamaid"
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Luchdaich na brathan ùra"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Luchdaich na puist ùra"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Ga luchdadh…"
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Loga"
@@ -4164,12 +4560,12 @@ msgstr "Loga"
msgid "Logged-out visibility"
msgstr "Faicsinneachd do dhaoine a chlàraich a-mach"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "An suaicheantas le @sawaratsuki.bsky.social"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "An suaicheantas le <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "Tha coltas gun do dhì-phrìnich thu na h-inbhirean air fad agad. Ach na
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Tha coltas nach eil thu a’ leantainn inbhir sam bith. <0>Briog an-seo airson fear a chur ris.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr "Cuir air gleus roghainnean post-d a’ chunntais agad"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "Dèan fear dhomh"
@@ -4201,18 +4601,22 @@ msgstr "Dèan fear dhomh"
msgid "Make sure this is where you intend to go!"
msgstr "Dèan cinnteach gur e seo a tha fa-near dhut!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "Stiùirich na h-inbhirean a shàbhail thu"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr "Stiùirich na roghainnean dearbhaidh"
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Stiùirich na faclan is tagaichean a mhùch thu"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr "Comharraich gun deach iad uile a leughadh"
@@ -4221,16 +4625,23 @@ msgstr "Comharraich gun deach iad uile a leughadh"
msgid "Mark as read"
msgstr "Comharraich gun deach a leughadh"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr "Chaidh comharradh gun deach iad uile a leughadh"
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr "Uaireigin eile ’s dòcha"
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Meadhanan"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Meadhanan a chuireadh dragh air cuid a dhaoine no a bhiodh mì-iomchaidh."
@@ -4246,23 +4657,27 @@ msgstr "Luchd-cleachdaidh air a bheil iomradh"
msgid "Mentions"
msgstr "Iomraidhean"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "An clàr-taice"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Cuir teachdaireachd gu {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Chaidh an teachdaireachd a sguabadh às"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Chaidh an teachdaireachd a sguabadh às"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr "Teachdaireachd o @{0}: {1}"
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Teachdaireachd on fhrithealaiche: {0}"
@@ -4276,7 +4691,11 @@ msgstr "Raon ion-chur na teachdaireachd"
msgid "Message is too long"
msgstr "Tha an teachdaireachd ro fhada"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr "Roghainnean na teachdaireachd"
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Teachdaireachdan"
@@ -4295,10 +4714,10 @@ msgstr "Cunntas meallta"
msgid "Misleading Post"
msgstr "Post meallta"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Modarataireachd"
@@ -4320,22 +4739,22 @@ msgstr "Liosta modarataireachd le <0/>"
msgid "Moderation list by you"
msgstr "Liosta modarataireachd leat-sa"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
msgstr "Chaidh an liosta modarataireachd a chruthachadh"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
msgstr "Chaidh an liosta modarataireachd ùrachadh"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Liostaichean modarataireachd"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Liostaichean modarataireachd"
@@ -4343,11 +4762,11 @@ msgstr "Liostaichean modarataireachd"
msgid "moderation settings"
msgstr "roghainnean modarataireachd"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "Staidean modarataireachd"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Innealan modarataireachd"
@@ -4356,7 +4775,7 @@ msgstr "Innealan modarataireachd"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Thagh modaratair rabhadh coitcheann dhan t-susbaint."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Barrachd"
@@ -4365,9 +4784,9 @@ msgstr "Barrachd"
msgid "More feeds"
msgstr "Barrachd inbhirean"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Barrachd roghainnean"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "Na ’s toil le mòran an toiseach"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Na freagairtean as toil le mòran an toiseach"
@@ -4400,14 +4819,14 @@ msgstr "Mùch"
msgid "Mute {tag}"
msgstr "Mùch {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "Mùch an cunntas"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Mùch cunntasan"
@@ -4420,11 +4839,11 @@ msgstr "Mùch an còmhradh"
msgid "Mute in:"
msgstr "Mùch an-seo:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Mùch an liosta"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "A bheil thu airson na cunntasan seo a mhùchadh?"
@@ -4452,26 +4871,26 @@ msgstr "Mùch am facal seo ann an tagaichean a-mhàin"
msgid "Mute this word until you unmute it"
msgstr "Mùch am facal seo gus an neo-mhùch thu e"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Mùch an snàithlean"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Mùch faclan ⁊ tagaichean"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Cunntasan a chaidh am mùchadh"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Cunntasan a chaidh am mùchadh"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Ma mhùchas tu cunntas, cha nochd na puist aca san inbhir agad no sna brathan agad. Tha mùchadh gu tur prìobhaideach."
@@ -4479,11 +4898,11 @@ msgstr "Ma mhùchas tu cunntas, cha nochd na puist aca san inbhir agad no sna br
msgid "Muted by \"{0}\""
msgstr "Air a mhùchadh le “{0}”"
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Faclan ⁊ tagaichean air am mùchadh"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Tha am mùchadh prìobhaideach. Ma mhùchas tu cunntas, is urrainn dhaibh eadar-ghabhail a dhèanamh leat ach chan fhaic thu na puist aca is chan fhaigh thu brathan uapa."
@@ -4492,15 +4911,15 @@ msgstr "Tha am mùchadh prìobhaideach. Ma mhùchas tu cunntas, is urrainn dhaib
msgid "My Birthday"
msgstr "Mo cho-là breith"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "Na h-inbhirean agam"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Ainm"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "Tha feum air ainm"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Nàdar"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "Tadhail air {0}"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr "Tadhail air a’ phacaid tòiseachaidh"
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "Bheir seo thu gun ath-sgrìn"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Bheir seo thu gun phròifil agad"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "Airson atharrachadh?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "Airson aithris a dhèanamh air briseadh còrach-lethbhreac?"
@@ -4547,30 +4971,43 @@ msgstr "Airson aithris a dhèanamh air briseadh còrach-lethbhreac?"
msgid "Never lose access to your followers or data."
msgstr "Na caill an luchd-leantainn no an dàta agad ge be dè."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "Coma, cruthaichibh làmhrachan dhomh"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Ùr"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Ùr"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "Cabadaich ùr"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr "Seòladh puist-d ùr"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr "Gleus ùr"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "Làmhrachan ùr"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "Liosta ùr"
@@ -4578,7 +5015,7 @@ msgstr "Liosta ùr"
msgid "New messages"
msgstr "Teachdaireachdan ùra"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Liosta modarataireachd ùr"
@@ -4590,12 +5027,12 @@ msgstr "Facal-faire ùr"
msgid "New Password"
msgstr "Facal-faire ùr"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Post ùr"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "Post ùr"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Post ùr"
@@ -4613,19 +5050,20 @@ msgstr "Post ùr"
msgid "New user info dialog"
msgstr "Còmhradh fiosrachaidh do chleachdaiche ùr"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Liosta luchd-cleachdaidh ùr"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "As ùire an toiseach"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Naidheachdan"
@@ -4655,11 +5093,15 @@ msgstr "An t-ath-dhealbh"
msgid "No app passwords yet"
msgstr "Chan eil facal-faire aplacaid sam bith agad aig an ìre-sa"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "Gun phanail DNS"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr "Cha deach suidheachadh cuin a dh’fhalbhas an ùine air"
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "Cha d’fhuair sinn lorg air GIF brosnaichte sam bith. Dh’fhaoidte gu bheil duilgheadas aig Tenor."
@@ -4668,21 +5110,25 @@ msgstr "Cha d’fhuair sinn lorg air GIF brosnaichte sam bith. Dh’fhaoidte gu
msgid "No feeds found. Try searching for something else."
msgstr "Cha deach inbhir sam bith a lorg. Feuch is lorg rudeigin eile."
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr "Gun dealbh"
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "Cha toil le gin seo fhathast"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "Chan eil thu a’ leantainn {0} tuilleadh"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr "Chan fhaod seo a bhith nas fhaide an {MAX_SERVICE_HANDLE_LENGTH} caractar"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr "Chan fhaod e a bhith nas fhaide na {MAX_SERVICE_HANDLE_LENGTH, plural, one {# charactar} two {# charactar} few {# charactaran} other {# caractar}}"
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "Gun teachdaireachdan fhathast"
@@ -4693,7 +5139,7 @@ msgstr "Chan eil brath sam bith ann fhathast!"
#: src/screens/Messages/Settings.tsx:101
#: src/screens/Messages/Settings.tsx:104
msgid "No one"
-msgstr "Chan eil duine"
+msgstr "Na ceadaich iad o dhuine sam bith"
#: src/components/WhoCanReply.tsx:246
msgid "No one but the author can quote this post."
@@ -4711,31 +5157,38 @@ msgstr "Gun luaidh fhathast"
msgid "No reposts yet"
msgstr "Gun ath-phostadh fhathast"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Cha robh toradh ann"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "Cha robh toradh ann"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr "Cha d’fhuair sinn toradh sam bith airson “{0}”."
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "Cha deach toradh a lorg"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "Cha deach toradh a lorg airson “{query}”"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "Cha deach toradh a lorg airson “{query}”"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr "Gun toradh."
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "Cha deach toradh a lorg airson “{search}”."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Chan eil duine sam bith"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "Cha tuirt duine sam bith fhathast gur toil leotha seo. Saoil an toil leat-sa e air thoiseach air chàch?"
@@ -4775,19 +5227,15 @@ msgstr "Lomnochd neo-fheiseil"
msgid "Not followed by anyone you're following"
msgstr "Chan eil neach sam bith a tha thusa a’ leantainn ga leantainn"
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "Cha deach a lorg"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "Chan ann an-dràsta fhèin"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Fiosrachadh mu cho-roinneadh"
@@ -4795,7 +5243,7 @@ msgstr "Fiosrachadh mu cho-roinneadh"
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 "An aire: Tha Bluesky na lìonra fosgailte agus poblach. Chan eil an roghainn seo a’ cuingeachadh ach faicsinneachd na susbainte agad ann an aplacaid Bluesky is air an làrach-lìn ach dh’fhaoidte nach gèill aplacaidean eile ris an roghainn seo. Dh’fhaoidte gun seall aplacaidean is làraichean-lìn eile an t-susbaint agad do luchd-cleachdaidh a rinn clàradh a-mach."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Chan eil dad an-seo"
@@ -4803,7 +5251,7 @@ msgstr "Chan eil dad an-seo"
msgid "Notification filters"
msgstr "Criathragan nam brathan"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Roghainnean nam brathan"
@@ -4820,11 +5268,11 @@ msgstr "Fuaimean nam brathan"
msgid "Notification Sounds"
msgstr "Fuaimean nam brathan"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Brathan"
@@ -4832,12 +5280,12 @@ msgstr "Brathan"
msgid "now"
msgstr "an-dràsta"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "An-dràsta"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Lomnochd"
@@ -4859,21 +5307,23 @@ msgstr "Ìoc!"
msgid "Oh no! Something went wrong."
msgstr "Ìoc! Chaidh rudeigin ceàrr."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "Ceart ma-thà"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "Ceart ma-thà"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "As sine an toiseach"
@@ -4881,19 +5331,19 @@ msgstr "As sine an toiseach"
msgid "on<0><1/><2><3/>2>0>"
msgstr "air <0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Ath-shuidheachadh a’ bhòrdachaidh"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon GIF."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon dealbh."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon video."
@@ -4905,11 +5355,11 @@ msgstr "Chan eil taic ach ri faidhlichean .jpg agus .png"
msgid "Only {0} can reply."
msgstr "Chan fhaod ach {0} freagairt."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Chan fhaod ach litrichean, àireamhan is tàthanan a bhith ann"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "Chan eil taic ach ri faidhlichean dhealbhan"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "Ìoc, chaidh rudeigin ceàrr!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "Ìoc!"
@@ -4935,73 +5385,86 @@ msgstr "Ìoc!"
msgid "Open"
msgstr "Fosgail"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "Fosgail clàr-taice nan ath-ghoiridean aig {name}"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Fosgail cruthadair nan avatar"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "Fosgail roghainnean nan còmhraidhean"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "Fosgail an clàr-taice air an taobh"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Fosgail ròghnaichear nan emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "Fosgail sgrìn an fhiosrachaidh mun inbhir"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "Fosgail clàr-taice roghainnean an inbhir"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr "Fosgail liosta shlàn nan emoji"
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "Fosgail an ceangal ri {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "Fosgail roghainnean nan teachdaireachdan"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "Fosgail duilleag dì-bhugachadh na modarataireachd"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Fosgail roghainnean nam faclan is tagaichean mùchte"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr "Fosgail a’ phacaid"
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "Fosgail clàr-taice roghainnean a’ phuist"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr "Fosgail a’ phròifil"
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr "Fosgail clàr-taice a’ cho-roinnidh"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "Fosgail clàr-taice na pacaide tòiseachaidh"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Fosgail duilleag an leabhair-sgeulachd"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Fosgail log an t-siostaim"
#: src/view/com/util/forms/DropdownButton.tsx:162
msgid "Opens {numItems} options"
-msgstr ""
+msgstr "Fosglaidh seo na roghainnean, {numItems} dhiubh"
#: src/view/com/composer/labels/LabelsBtn.tsx:62
msgid "Opens a dialog to add a content warning to your post"
@@ -5015,19 +5478,19 @@ msgstr "Fosglaidh seo còmhradh airson co-dhùnadh cò aig a bheil cead-freagair
msgid "Opens additional details for a debug entry"
msgstr "Fosglaidh seo mion-fhiosrachadh a bharrachd mu innteart dì-bhugachaidh"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
msgstr "Fosglaidh seo còmhradh na roghainn teacsa"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Fosglaidh seo an camara air an uidheam"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
msgstr "Fosglaidh seo na caipseanan is còmhradh na roghainn teacsa"
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr "Fosglaidh seo an còmhradh airson atharrachadh an làmhrachain"
@@ -5039,7 +5502,7 @@ msgstr "Fosglaidh seo an gleus-sgrìobhaidh"
msgid "Opens device photo gallery"
msgstr "Fosglaidh seo gailearaidh dhealbhan an uidheim"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr "Fosglaidh seo ròghnaichear nan emoji"
@@ -5057,7 +5520,7 @@ msgstr "Fosglaidh seo an sruth airson clàradh a-steach dhan chunntas Bhluesky a
msgid "Opens GIF select dialog"
msgstr "Fosglaidh seo an còmhradh airson GIF a thaghadh"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr "Fosglaidh seo an taic sa bhrabhsair"
@@ -5065,6 +5528,10 @@ msgstr "Fosglaidh seo an taic sa bhrabhsair"
msgid "Opens list of invite codes"
msgstr "Fosglaidh seo liosta nan còdaichean cuiridh"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr "Fosglaidh seo còmhradh an t-srutha bheò"
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Fosglaidh seo foirm ath-shuidheachadh an fhacail-fhaire"
@@ -5073,12 +5540,12 @@ msgstr "Fosglaidh seo foirm ath-shuidheachadh an fhacail-fhaire"
msgid "Opens the linked website"
msgstr "Fosglaidh seo an làrach-lìn cho-cheangailte"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Fosglaidh seo a’ phròifil"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Fosglaidh seo ròghnaichear nan videothan"
@@ -5121,11 +5588,11 @@ msgstr "Staid OTA: Chan eil gin ri fhaighinn"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Rud eile"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Cunntas eile"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Cha deach an duilleag a lorg"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "Cuir na stad"
msgid "Pause video"
msgstr "Cuir a’ video na stad"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "Daoine"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "Daoine a tha @{0} a’ leantainn"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "Daoine a leanas ri @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "Feumaidh tu cead mus fhaic thu albam a’ chamara."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "Chaidh cead albam a’ chamara fhaicinn a dhiùltadh. Cuir an comas e ann an roghainnean an t-siostaim agad."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr "Chaidh cead-inntrigidh do leabhar-lann nan dealbhan agad a dhiùltadh. Cuir an comas e ann an roghainnean an t-siostaim agad."
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "Peatachan"
msgid "Photography"
msgstr "Togail dhealbhan"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Dealbhan do dh’inbhich."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr "Prìnich"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "Prìnich an t-inbhir"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr "Prìnich inbhir nam videothan a tha a’ treandadh ris an sgrìn-dachaigh agad airson grad-ghreim fhaighinn air"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr "Prìnich an t-inbhir"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Prìnich ris an dachaigh"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Prìnich ris an dachaigh"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Prìnich ris a’ phròifil agad"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Prìnichte"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "Chaidh {0} a phrìneachadh ris an dachaigh"
@@ -5263,7 +5722,7 @@ msgstr "Chaidh {0} a phrìneachadh ris an dachaigh"
msgid "Pinned Feeds"
msgstr "Inbhirean prìnichte"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "Prìnichte ris na h-inbhirean agad"
@@ -5302,24 +5761,28 @@ msgstr "Cluichidh seo an GIF"
msgid "Plays the video"
msgstr "Cluichidh seo a’ video"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr "Mas e meadhan d’ a leithid a th’ ann, cuir leubail a bheir rabhadh mun t-susbaint ris an stuth a tha thu a’ postadh."
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Tagh làmhrachan dhut."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Tagh facal-faire."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr "Briog air a’ cheangal sa phost-d a chuir sinn thugad airson an seòladh puist-d ùr agad a dhearbhadh. Seo ceum cudromach a nì cinnteach gum faigh thu làn-chothrom air Bluesky fhathast."
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Coilean an Captcha airson dearbhadh a dhèanamh."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Dearbh am post-d agad mus atharraich thu e. Seo riatanas sealach fhad ’s a nì sinn obair air dòigh nas fheàrr airson ùrachadh a’ phuist-d agus thèid a thoirt air falbh a dh’aithghearr."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr "Dèan cinnteach nach eil mearachd sa phost- agad."
@@ -5335,19 +5798,41 @@ msgstr "Cuir a-steach facal-faire. Feumaidh e a bhith co-dhiù 8 caractaran a dh
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Thoir ainm àraidh air an fhacal-fhaire aplacaid seo no cleachd ainm a thuaiream againne."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr "Cuir a-steach còd dligheach."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr "Cuir a-steach seòladh puist-d dligheach."
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Cuir a-steach facal, abairt no taga dligheach airson a mhùchadh"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr "Cuir a-steach an còd a chuir sinn gu <0>{0}0> gu h-ìosal."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr "Cuir a-steach an còd tèarainteachd a chuir sinn gu seòladh an t-seann phuist-d agad."
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Cuir a-steach an seòladh puist-d agad."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Cuir a-steach an còd cuiridh agad."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr "Cuir a-steach an seòladh puist-d ùr agad."
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr "Cuir a-steach am facal-faire agad"
@@ -5381,24 +5866,25 @@ msgstr "Tagh adhbhar dhan aithris seo"
msgid "Please sign in as @{0}"
msgstr "Clàraich a-steach mar @{0}"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr "Dearbh am post-d agad"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Dearbh am post-d agad"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Poileataigs"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr "Videothan fèillmhor air an lìonra agad."
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Pòrnografachd"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Postaich"
@@ -5408,23 +5894,23 @@ msgctxt "description"
msgid "Post"
msgstr "Postaich"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Postaich na h-uile"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "Post le {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "Post le @{0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
msgstr "Chaidh am post a sguabadh às"
@@ -5433,7 +5919,7 @@ msgstr "Chaidh am post a sguabadh às"
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Dh’fhàillig luchdadh suas a’ phuist. Thoir sùil air a’ cheangal ris an eadar-lìon agad is feuch ris a-rithist."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr "Chaidh am post a sguabadh às"
@@ -5455,7 +5941,7 @@ msgstr "Chaidh am post a chur am falach leat fhèin"
msgid "Post interaction settings"
msgstr "Roghainnean eadar-ghabhail a’ phuist"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr "Roghainnean eadar-ghabhail a’ phuist"
@@ -5483,8 +5969,9 @@ msgctxt "toast"
msgid "Post unpinned"
msgstr "Chan eil am post prìnichte tuilleadh"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Puist"
@@ -5524,7 +6011,7 @@ msgstr "Dèan brùthadh is chì thu na daoine a leanas ris a’ chunntas seo a t
msgid "Previous image"
msgstr "An dealbh roimhe"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Am prìomh-chànan"
@@ -5537,31 +6024,31 @@ msgstr "Prìomhachas air daoine a tha thu gan leantainn"
msgid "Priority notifications"
msgstr "Brathan prìomhachais"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Prìobhaideachd"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
-msgstr "Prìobhaideachd is tèarainteachd"
+msgstr "Prìobhaideachd ⁊ tèarainteachd"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
-msgstr "Prìobhaideachd is tèarainteachd"
+msgstr "Prìobhaideachd ⁊ tèarainteachd"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Am poileasaidh prìobhaideachd"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "A’ pròiseasadh a’ video…"
@@ -5570,20 +6057,20 @@ msgstr "A’ pròiseasadh a’ video…"
msgid "Processing..."
msgstr "Ga phròiseasadh…"
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "pròifil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "A’ phròifil"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
msgstr "Chaidh a’ phròifil ùrachadh"
@@ -5600,6 +6087,26 @@ msgstr "Poblach, liostaichean luchd-cleachdaidh as urrainn dhut co-roinneadh ach
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "Poblach, liostaichean as urrainn dhut co-roinneadh airson inbhirean a ruith."
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr "Foillsich am post"
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr "Foillsich na puist"
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr "Foillsich na freagairtean"
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr "Foillsich an fhreagairt"
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "Chaidh lethbhreac dhen chòd QR a chur air an stòr-bhòrd agad!"
@@ -5612,25 +6119,25 @@ msgstr "Chaidh an còd QR a luchdadh a-nuas!"
msgid "QR code saved to your camera roll!"
msgstr "Chaidh an còd QR a shàbhaladh ann an albam a’ chamara agad!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Dèan luaidh air a’ phost"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "Chaidh an luaidh air a’ phost a cheangal ris as ùr"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "Chaidh an luaidh air a’ phost a dhealachadh"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "Tha luaidhean air puist à comas"
@@ -5642,39 +6149,48 @@ msgstr "Roghainnean nan luaidhean"
msgid "Quotes"
msgstr "Luaidhean"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "Luaidhean air a’ phost seo"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Air thuaiream"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "Seachad air a’ chrìoch – dh’atharraich thu an làmhrachan agad ro thric ann an ùine ghoirid. Fuirich ort greiseag is feuch ris a-rithist an uair sin."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "Ceangail an luaidh ris as ùr"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr "Cuir {emoji} mar fhrith-fhreagairt"
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Cuir an cunntas agad an gnìomh as ùr"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr "Leugh am post air a’ bhloga"
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr "Falaich an còrr"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr "Leugh an còrr"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Leugh am bloga aig Bluesky"
@@ -5697,39 +6213,39 @@ msgstr "Adhbhar an ath-thagraidh"
msgid "Reason:"
msgstr "An t-adhbhar:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
-msgstr "Luirg o chionn goirid"
+msgstr "Na lorg thu o chionn goirid"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
-msgstr "Na mholar"
+msgstr "Na mholamaid"
#: src/screens/Messages/components/MessageListError.tsx:20
msgid "Reconnect"
msgstr "Ath-cheangail"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr "Diùlt"
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr "Diùlt an t-iarrtas cabadaich"
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Ath-luchdaich na còmhraidhean"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Thoir air falbh"
msgid "Remove {displayName} from starter pack"
msgstr "Thoir air falbh {displayName} on phacaid tòiseachaidh"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr "Thoir air falbh {historyItem}"
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Thoir an cunntas air falbh"
@@ -5752,13 +6268,13 @@ msgstr "Thoir an cunntas air falbh"
msgid "Remove attachment"
msgstr "Thoir an ceanglachan air falbh"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Thoir an t-avatar air falbh"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "Thoir a’ bhratach air falbh"
@@ -5776,24 +6292,25 @@ msgstr "Thoir an t-inbhir air falbh"
msgid "Remove feed?"
msgstr "A bheil thu airson an t-inbhir a thoirt air falbh?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Thoir air falbh o na h-inbhirean agam"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "A bheil thu airson a thoirt air falbh on ghrad-inntrigeadh?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "Thoir air falbh o na h-inbhirean a shàbhail thu"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr "A bheil thu airson a thoirt air falbh o na h-inbhirean agad?"
@@ -5802,11 +6319,16 @@ msgstr "A bheil thu airson a thoirt air falbh o na h-inbhirean agad?"
msgid "Remove image"
msgstr "Thoir an dealbh air falbh"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr "Sguir dhen t-sruth bheò"
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Thoir am facal mùchaidh air falbh on liosta agad"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Thoir a’ phròifil air falbh"
@@ -5814,12 +6336,12 @@ msgstr "Thoir a’ phròifil air falbh"
msgid "Remove quote"
msgstr "Thoir an luaidh air falbh"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Thoir an t-ath-phostadh air falbh"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Thoir air falbh faidhle nam fo-thiotalan"
@@ -5827,6 +6349,21 @@ msgstr "Thoir air falbh faidhle nam fo-thiotalan"
msgid "Remove this feed from your saved feeds"
msgstr "Thoir an t-inbhir seo air falbh o na h-inbhirean a shàbhail thu"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr "Thoir an cleachdaiche air falbh on liosta"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr "Thoir an dearbhadh air falbh"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr "A bheil thu airson an dearbhadh a rinn thu air a’ chunntas seo a thoirt air falbh?"
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "Air a thoirt air falbh leis an ùghdar"
@@ -5835,7 +6372,7 @@ msgstr "Air a thoirt air falbh leis an ùghdar"
msgid "Removed by you"
msgstr "Air a thoirt air falbh leat-sa"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Air a thoirt air falbh on liosta"
@@ -5845,19 +6382,18 @@ msgid "Removed from my feeds"
msgstr "Air a thoirt air falbh o na h-inbhirean agad"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Air a thoirt air falbh o na h-inbhirean a shàbhail thu"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Air a thoirt air falbh o na h-inbhirean agad"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr "Bheir seo air falbh a’ phròifil o eachdraidh nan lorg"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr "Chaidh an dearbhadh a thoirt air falbh"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
@@ -5868,7 +6404,7 @@ msgstr "Bheir seo air falbh am post air an do rinneadh luaidh"
msgid "Replace with Discover"
msgstr "Cuir na àite le “Fidir”"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Freagairtean"
@@ -5880,12 +6416,13 @@ msgstr "Tha na freagairtean à comas"
msgid "Replies to this post are disabled."
msgstr "Chan urrainnear am post seo a fhreagairt."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Freagair"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Freagair ({0, plural, one {# fhreagairt} two {# fhreagairt} few {# freagairtean} other {# freagairt}})"
@@ -5907,86 +6444,86 @@ msgstr "Roghainnean nam freagairtean"
msgid "Reply settings are chosen by the author of the thread"
msgstr "’S e ùghdar an t-snàithlein a thaghas roghainnean nam freagairtean"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "Seòrsachadh nam freagairtean"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Freagair <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Freagair post bacte"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "Freagair post"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Freagairt dhut fhèin"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
msgstr "Chaidh faicsinneachd na freagairt ùrachadh"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "Chaidh an fhreagairt a chur am falach"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Dèan aithris"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "Dèan aithris air a’ chunntas"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Dèan aithris air a’ chòmhradh"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "Dèan aithris air a’ chòmhradh"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Dèan aithris air an inbhir"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
msgstr "Dèan aithris air an liosta"
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Dèan aithris air an teachdaireachd"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Dèan aithris air a’ phost"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "Dèan aithris air a’ phacaid tòiseachaidh"
@@ -6030,25 +6567,26 @@ msgstr "Dèan aithris air a’ phacaid tòiseachaidh seo"
msgid "Report this user"
msgstr "Dèan aithris air a’ chleachdaiche seo"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Ath-phostaich"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Ath-phostaich"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Ath-phostaich ({0, plural, one {air ath-phostadh # turas} two {air ath-phostadh # thuras} few {air ath-phostadh # turais} other {air ath-phostadh # turas}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Ath-phostaich no dèan luaidh air a’ phost"
@@ -6056,26 +6594,26 @@ msgstr "Ath-phostaich no dèan luaidh air a’ phost"
msgid "Reposted By"
msgstr "Air ath-phostadh le"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "Rinn {0} ath-phostadh"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "Rinn <0><1/>0> ath-phostadh"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
-msgstr "Rinn thusa ath-phostadh"
+msgstr "Rinn thu ath-phostadh"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "Ath-phostaidh a’ phuist seo"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
msgstr "Iarr atharrachadh"
#: src/view/com/modals/ChangePassword.tsx:253
@@ -6088,11 +6626,11 @@ msgstr "Iarr còd"
msgid "Require alt text before posting"
msgstr "Spàrr air daoine roghainn teacsa a chur an sàs mus gabh rud a phostadh"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr "Spàrr ort fhèin còd puist-d a chleachdadh airson clàradh a-steach gun chunntas agad."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Riatanach aig an t-solaraiche seo"
@@ -6100,13 +6638,19 @@ msgstr "Riatanach aig an t-solaraiche seo"
msgid "Required in your region"
msgstr "Riatanach far a bheil thusa"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr "Cuir às ùr"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "Cuir am post-d a-rithist"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "Cuir am post-d a-rithist"
@@ -6123,8 +6667,8 @@ msgstr "Ath-shuidhich an còd"
msgid "Reset Code"
msgstr "Ath-shuidhich an còd"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "Ath-shuidhich staid a’ bhòrdachaidh"
@@ -6141,16 +6685,16 @@ msgstr "Feuchaidh seo ri clàradh a-steach a-rithist"
msgid "Retries the last action, which errored out"
msgstr "Feuchaidh seo ris a’ ghnìomh mu dheireadh a-rithist is e air fàilligeadh"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "Feuchaidh seo ris a’ ghnìomh mu dheireadh a-rithist is e air fàillig
msgid "Retry"
msgstr "Feuch ris a-rithist"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr "Feuch is luchdaich roghainnean na h-aithrise as ùr"
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Till gun duilleag roimhpe"
@@ -6175,11 +6719,11 @@ msgstr "Till gun duilleag roimhpe"
msgid "Returns to home page"
msgstr "Tillidh seo thu gun duilleag-dhachaigh"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "Tillidh seo thu gun duilleag roimhpe"
@@ -6190,24 +6734,26 @@ msgstr "Tillidh seo thu gun cheum roimhe"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Sàbhail"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Sàbhail"
@@ -6221,12 +6767,12 @@ msgstr "Sàbhail an co-là breith"
msgid "Save changes"
msgstr "Sàbhail na h-atharraichean"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Sàbhail na h-atharraichean"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Sàbhail an dealbh"
@@ -6234,16 +6780,16 @@ msgstr "Sàbhail an dealbh"
msgid "Save image crop"
msgstr "Sàbhail bearradh an deilbh"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Sàbhail an làmhrachan ùr"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "Sàbhail an còd QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Sàbhail sna h-inbhirean agam"
@@ -6251,16 +6797,12 @@ msgstr "Sàbhail sna h-inbhirean agam"
msgid "Saved Feeds"
msgstr "Inbhirean a shàbhail thu"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "Air a shàbhaladh ann an albam a’ chamara agad"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "Air a shàbhaladh sna h-inbhirean agad"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "Sàbhailidh seo gach atharrachadh a rinn thu sa phròifil agad"
@@ -6270,8 +6812,8 @@ msgstr "Sàbhailidh seo roghainnean bearradh an deilbh"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "Can halò!"
@@ -6280,45 +6822,42 @@ msgstr "Can halò!"
msgid "Science"
msgstr "Saidheans"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "Sgrolaich gun bhàrr"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Lorg"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Dèan lorg sna puist aig {0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "Lorg a-rèir ainm no ùidh"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "Lorg sna h-inbhirean"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "Lorg “{interestsDisplayName}”{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Toraidhean airson “{query}”"
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "Lorg “{searchText}”"
@@ -6326,29 +6865,33 @@ msgstr "Lorg “{searchText}”"
msgid "Search for feeds that you want to suggest to others."
msgstr "Lorg inbhirean a bu toil leat moladh do dhaoine eile."
-#: src/view/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr "Lorg barrachd chunntasan"
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr "Lorg barrachd inbhirean"
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
msgstr "Lorg puist, cleachdaichean no inbhirean"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Lorg cleachdaichean"
-
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "Lorg GIFs"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr "Lorg sna puist agam"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr "Lorg sna puist"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Lorg sna pròifilean"
@@ -6356,16 +6899,20 @@ msgstr "Lorg sna pròifilean"
msgid "Search Tenor"
msgstr "Lorg Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr "Lorg..."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr "Luirg airson pròifilean"
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr "Tha feum air ceum tèarainteachd"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Tha feum air ceum tèarainteachd"
@@ -6385,7 +6932,7 @@ msgstr "Seall puist ris a bheil taga #{tag}"
msgid "See #{tag} posts by user"
msgstr "Seall puist ris a bheil taga #{tag} leis a’ chleachdaiche"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Faic dè na dreuchdan bàna aig Bluesky"
@@ -6405,6 +6952,10 @@ msgstr "Tagh dath"
msgid "Select account"
msgstr "Tagh cunntas"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr "Tagh cànan dhan aplacaid"
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Tagh avatar"
@@ -6413,10 +6964,22 @@ msgstr "Tagh avatar"
msgid "Select an emoji"
msgstr "Tagh emoji"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr "Tagh roghainn"
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr "Tagh cànan dhan aplacaid"
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Tagh cànain na susbainte"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr "Tagh dè cho fada"
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Tagh cunntas làithreach"
@@ -6433,15 +6996,15 @@ msgstr "Tagh an GIF “{0}”"
msgid "Select how long to mute this word for."
msgstr "Co-dhùin dè cho fad ’s a thèid am facal seo a mhùchadh."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Tagh cànan…"
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Tagh cànain"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr "Tagh seirbheis modarataireachd"
@@ -6449,6 +7012,10 @@ msgstr "Tagh seirbheis modarataireachd"
msgid "Select moderator"
msgstr "Tagh modaratair"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr "Tagh prìomh-chànan"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "Cleachd an emoji {emojiName} mar avatar"
msgid "Select the moderation service(s) to report to"
msgstr "Tagh an t-seirbheis modarataireachd a thèid an aithris agad a chur thuca"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Tagh video"
@@ -6470,23 +7037,24 @@ msgstr "Tagh video"
msgid "Select what content this mute word should apply to."
msgstr "Co-dhùin dè an seòrsa de shusbaint a bhios am facal mùchaidh seo an sàs ann."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr "Tagh cànan airson eadar-aghaidh na h-aplacaid."
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Tagh na cànain a bu toil leat sna h-inbhirean aig an dèan thu fo-sgrìobhadh. Mur an tagh thu gin, chì thu cànan sam bith."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Tagh latha do bhreith"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "Tagh na rudan sa bheil ùidh agad gu h-ìosal"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "Tagh an cànan as fheàrr leat airson eadar-theangachadh san inbhir agad."
@@ -6498,19 +7066,17 @@ msgstr "Taghaidh seo roghainn {0} à {numItems}"
msgid "Send a neat website!"
msgstr "Cuir làrach-lìn shnasail!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
msgstr "Cuir dearbhadh"
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Cuir post-d dearbhaidh"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Cuir post-d dearbhaidh"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Cuir post-d"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Cuir post-d"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Cuir do bheachdan"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Cuir an teachdaireachd"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr "Cuir am post gu {name}"
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Cuir am post gu…"
@@ -6544,17 +7114,20 @@ msgstr "Cuir an aithris"
msgid "Send report to {0}"
msgstr "Cuir an aithris gu {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr "Cuir an aithris gu {title}"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Cuir teachdaireachd dearbhaidh"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Cuir mar theachdaireachd dhìreach"
@@ -6570,7 +7143,7 @@ msgstr "Seòladh an fhrithealaiche"
msgid "Set app icon to {0}"
msgstr "Suidhich “{0}” mar ìomhaigheag na h-aplacaid"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "Suidhich latha do bhreith"
@@ -6586,10 +7159,10 @@ msgstr "Suidhich an cunntas agad"
msgid "Sets email for password reset"
msgstr "Suidhichidh seo am post-d airson ath-shuidheachadh an fhacail-fhaire"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Roghainnean"
@@ -6598,7 +7171,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Chaidh na roghainnean a sàbhaladh"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Gnìomhachd fheiseil no lomnochd earotaigeach."
@@ -6606,21 +7179,15 @@ msgstr "Gnìomhachd fheiseil no lomnochd earotaigeach."
msgid "Sexually Suggestive"
msgstr "Leth-fheiseil"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Co-roinn"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Co-roinn"
@@ -6633,15 +7200,19 @@ msgstr "Co-roinn sgeul smodaig!"
msgid "Share a fun fact!"
msgstr "Co-roinn fiosrachadh spòrsail!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Co-roinn e co-dhiù"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr "Co-roinn DID an ùghdair"
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "Ceangal co-roinnidh"
@@ -6650,32 +7221,46 @@ msgstr "Ceangal co-roinnidh"
msgid "Share Link"
msgstr "Co-roinn an ceangal"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "Còmhradh a’ cheangail cho-roinnidh"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr "Co-roinn post aig:// URI"
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Co-roinn an còd QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "Co-roinn an t-inbhir seo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "Co-roinn a’ phacaid tòiseachaidh seo"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "Co-roinn a’ phacaid tòiseachaidh seo agus cuidich daoine nad choimhearsnachd a tha air ùr-thighinn gu Bluesky."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr "Co-roinn air…"
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "Co-roinn an t-inbhir as fheàrr leat!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "Deuchainn nan co-roghainnean"
@@ -6685,7 +7270,7 @@ msgstr "Co-roinnidh seo an làrach-lìn cho-cheangailte"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Seall"
@@ -6696,8 +7281,8 @@ msgstr "Seall an roghainn teacsa"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Seall e co-dhiù"
@@ -6718,8 +7303,8 @@ msgstr "Seall na roghainnean gnàthachaidh"
msgid "Show hidden replies"
msgstr "Seall na freagairtean falaichte"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "Seall nas lugha mar seo"
@@ -6727,14 +7312,14 @@ msgstr "Seall nas lugha mar seo"
msgid "Show list anyway"
msgstr "Seall an liosta co-dhiù"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Seall barrachd"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Seall barrachd mar seo"
@@ -6752,7 +7337,7 @@ msgstr "Seall luaidhean air puist"
msgid "Show replies"
msgstr "Seall na freagairtean"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "Seall na freagairtean mar"
@@ -6764,8 +7349,8 @@ msgstr "Seall na freagairtean mar shnàithlean"
msgid "Show replies by people you follow before all other replies"
msgstr "Seall freagairtean nan daoine a tha thu gan leantainn air thoiseach air càch"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "Seall an fhreagairt dhan a h-uile duine"
@@ -6787,11 +7372,11 @@ msgstr "Seall rabhadh"
msgid "Show warning and filter from feeds"
msgstr "Seall rabhadh is criathraich às na h-inbhirean e"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr "Innsidh seo cuin a chaidh am post seo a chruthachadh"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr "Seallaidh seo na cunntasan eile as urrainn dhut leum thuca"
@@ -6809,8 +7394,8 @@ msgstr "Seallaidh seo an t-susbaint"
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr "Seallaidh seo an t-susbaint"
msgid "Sign in"
msgstr "Clàraich a-steach"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Clàraich a-steach mar {0}"
@@ -6826,16 +7411,16 @@ msgstr "Clàraich a-steach mar {0}"
msgid "Sign in as..."
msgstr "Clàraich a-stach mar…"
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr "Clàraich a-steach no cruthaich cunntas"
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "Clàraich a-steach no cruthaich cunntas is thig a chòmhradh!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "Clàraich a-steach no faigh cunntas"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "Clàraich a-steach gu cunntas nach eil air an liosta"
@@ -6843,15 +7428,15 @@ msgstr "Clàraich a-steach gu cunntas nach eil air an liosta"
msgid "Sign in to Bluesky or create a new account"
msgstr "Clàraich a-steach gu Bluesky no cruthaich cunntas ùr"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Clàraich a-mach"
@@ -6859,8 +7444,8 @@ msgstr "Clàraich a-mach"
msgid "Sign Out"
msgstr "Clàraich a-mach"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "A bheil thu airson clàradh a-mach?"
@@ -6874,11 +7459,6 @@ msgstr "Feumaidh tu clàradh a-steach"
msgid "Signed in as @{0}"
msgstr "Chlàraich thu a-steach mar @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "Clàraich as aonais pacaid tòiseachaidh"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Cunntasan coltach ris"
@@ -6896,12 +7476,21 @@ msgstr "Leum seachad air an t-sruth seo"
msgid "Smaller"
msgstr "Nas lugha"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr "Cuiridh seo an cuimhneachan na dhùsal"
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Luchd-leasachaidh a’ bhathair-bhuig"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr "Tha cuid dhen dearbhadh a rinn thu mì-dhligheach."
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "Inbhir eile a chòrdas riut ma dh’fhaoidte"
@@ -6909,23 +7498,31 @@ msgstr "Inbhir eile a chòrdas riut ma dh’fhaoidte"
msgid "Some people can reply"
msgstr "Faodaidh cuid a dhaoine freagairt"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr "Chuir cuideigin {0} mar fhrith-fhreagairt"
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr "Chuir cuideigin {0} mar fhrith-fhreagairt dha {1}"
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Bha rudeigin ann nach robh buileach ceart leis an dàta a bha thu airson aithris a dhèanamh air. Cuir fios gu sgioba na taice."
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Chaidh rudeigin ceàrr"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Chaidh rudeigin ceàrr, feuch ris a-rithist"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Chaidh rudeigin ceàrr, feuch ris a-rithist."
@@ -6934,16 +7531,16 @@ msgstr "Chaidh rudeigin ceàrr, feuch ris a-rithist."
msgid "Something went wrong!"
msgstr "Chaidh rudeigin ceàrr!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr "Chaidh rudeigin ceàrr. Feuch ris a-rithist."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "Mearachd air choireigin? Innis dhuinn."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "Tha sinn duilich! Dh’fhalbh an ùine air an t-seisean agad. Clàraich a-steach a-rithist."
@@ -6978,34 +7575,39 @@ msgstr "Spama; cus iomraidhean no fhreagairtean"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Spòrs"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr "Tòisich air còmhradh is nochdaidh e an-seo."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Tòisich air cabadaich ùr"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "Tòisich air daoine a chur ris"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "Tòisich air daoine a chur ris!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Tòisich air cabadaich le {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Pacaid tòiseachaidh"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "Pacaid tòiseachaidh le {0}"
@@ -7013,38 +7615,39 @@ msgstr "Pacaid tòiseachaidh le {0}"
msgid "Starter pack by <0/>"
msgstr "Pacaid tòiseachaidh le <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "Pacaid tòiseachaidh leat fhèin"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "Tha a’ phacaid tòiseachaidh seo mì-dhligheach"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "Pacaidean tòiseachaidh"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Tha e furasta na h-inbhirean is daoine as fheàrr leat a cho-roinneadh le pacaidean tòiseachaidh."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Duilleag na staid"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "Ceum {0} à {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "Chaidh an stòras fhalamhachadh, feumaidh tu an aplacaid ath-thòiseachadh a-nis."
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "Leabhar-sgeulachd"
@@ -7063,46 +7666,51 @@ msgstr "Cuir an t-ath-thagradh"
msgid "Submit Appeal"
msgstr "Cuir an t-ath-thagradh"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr "Cuir an aithris thugainn"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Fo-sgrìobh"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "Fo-sgrìobh aig @{0} airson na leubailean seo a chleachdadh:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "Fo-sgrìobh aig an leubailiche"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "Fo-sgrìobh aig an leubailiche seo"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "Fo-sgrìobh dhan liosta seo"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "Soirbheas!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr "Chaidh a dhearbhadh"
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
msgstr "Cunntasan a mholamaid"
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Molaidhean dhut"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Leth-fheiseil"
@@ -7116,16 +7724,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Laighe na grèine"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Taic"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Leum gu cunntas eile"
@@ -7134,11 +7742,11 @@ msgstr "Leum gu cunntas eile"
msgid "Switch Account"
msgstr "Leum gu cunntas eile"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "Leum eadar cunntasan"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr "Geàrr leum gu {0}"
@@ -7149,9 +7757,9 @@ msgstr "Geàrr leum gu {0}"
msgid "System"
msgstr "An siostam"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Log an t-siostaim"
@@ -7159,6 +7767,12 @@ msgstr "Log an t-siostaim"
msgid "Tags only"
msgstr "Tagaichean a-mhàin"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr "Thoir gnogag airson an clàr-taice co-theacsail a dhùnadh"
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Thoir gnogag airson a leigeil seachad"
@@ -7184,7 +7798,7 @@ msgstr "Teicneolas"
msgid "Tell a joke!"
msgstr "Innis fealla-dhà!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "Innis dhuinn beagan mu do dhèidhinn"
@@ -7192,17 +7806,17 @@ msgstr "Innis dhuinn beagan mu do dhèidhinn"
msgid "Tell us a little more"
msgstr "Innis dhuinn beagan a bharrachd"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Na teirmichean"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Teirmichean na seirbheise"
@@ -7230,7 +7844,11 @@ msgstr "Raon teacsa"
msgid "Text input field"
msgstr "Raon ion-chur an teacsa"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr "Mòran taing airson seo a chur thugainn! Shìn sinn air adhart chun an neach a ruitheas an t-inbhir e."
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "Mòran taing! Chaidh am post-d agad a dhearbhadh."
@@ -7242,7 +7860,7 @@ msgstr "Gun robh math agad. Chaidh an aithris agad a chur."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Tapadh leat, dhearbh thu an seòladh puist-d agad. ’S urrainn dhut an còmhradh seo a dhùnadh."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "Sa bheil na leanas:"
@@ -7250,10 +7868,10 @@ msgstr "Sa bheil na leanas:"
msgid "That handle is already taken."
msgstr "Tha an làmhrachan seo aig cuideigin eile mar-thà."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "Cha d’fhuair sinn lorg air a’ phacaid tòiseachaidh sin."
msgid "That's all, folks!"
msgstr "Sin agaibh e, a chàirdean!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr "Sin e!"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "’S urrainn dhan chunntas seo eadar-ghabhail a dhèanamh leat a-rithist an dèidh dhut a dhì-bhacadh."
@@ -7282,7 +7900,7 @@ msgstr "Thèid an aplacaid ath-thòiseachadh"
msgid "The author of this thread has hidden this reply."
msgstr "Dh’fhalaich ùghdar an t-snàithlein seo an fhreagairt seo."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "Aplacaid-lìn Bluesky"
@@ -7302,6 +7920,10 @@ msgstr "An t-inbhir “Fidir”"
msgid "The Discover feed now knows what you like"
msgstr "Tha fios aig an inbhir “Fidir” a-nis dè na rudan as toil leat"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr "Tha an seòladh puist-d a chuir thu a-steach co-ionnann ris an t-seòladh phuist-d làithreach agad."
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Gheibh thu àrainneachd nas fheàrr san aplacaid. Luchdaich a-nuas Bluesky an-dràsta agus leanamaid oirnn far an do stad thu."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "Chaidh poileasaidh na prìobhaideachd a ghluasad gu <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "Tha a’ video a thagh thu nas motha na 50MB."
+msgid "The selected video is larger than 100 MB."
+msgstr "Tha a’ video a thagh thu nas motha na 100MB."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "Tha coltas gu bheil duilgheadasan aig an fhrithealaiche. Feuch ris a-rithist ann an tiotag bheag."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "Tha a’ phacaid tòiseachaidh a bu toil leat coimhead air mì-dhligheach. ’S urrainn dhut a’ phacaid tòiseachaidh a sguabadh às an àite sin."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr "Cuspair a’ chlàir-thaice cho-theacsail"
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "Chaidh am foirm taice a ghluasad. Ma tha cobhair a dhìth ort, tadhail air <0/> no {HELP_DESK_URL} airson taic iarraidh oirnn."
@@ -7367,15 +7994,15 @@ msgstr "Chan eil crìoch ùine ann airson cunntas a chur à gnìomh, till an-seo
msgid "There was an issue connecting to Tenor."
msgstr "Cha b’ urrainn dhuinn ceangal ri Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "Cha b’ urrainn dhuinn conaltradh leis an fhrithealaiche"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Cha b’ urrainn dhuinn conaltradh leis an fhrithealaiche, thoir sùil air a’ cheangal ris an eadar-lìon is feuch ris a-rithist."
@@ -7388,11 +8015,12 @@ msgstr "Cha b’ urrainn dhuinn conaltradh leis an fhrithealaiche agad"
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Cha b’ urrainn dhuinn na brathan fhaighinn dhut. Thoir gnogag airson feuchainn ris a-rithist."
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Cha b’ urrainn dhuinn na puist fhaighinn dhut. Thoir gnogag airson feuchainn ris a-rithist."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Cha b’ urrainn dhuinn an liosta fhaighinn dhut. Thoir gnogag airson feuchainn ris a-rithist."
@@ -7400,12 +8028,12 @@ msgstr "Cha b’ urrainn dhuinn an liosta fhaighinn dhut. Thoir gnogag airson fe
msgid "There was an issue fetching your app passwords"
msgstr "Cha b’ urrainn dhuinn faclan-faire nan aplacaidean agad fhaighinn dhut"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Cha b’ urrainn dhuinn na liostaichean agad fhaighinn dhut. Thoir gnogag airson feuchainn ris a-rithist."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "Cha b’ urrainn dhuinn am fiosrachadh seirbheise agad fhaighinn dhut"
@@ -7418,26 +8046,26 @@ msgstr "Cha b’ urrainn dhuinn an t-inbhir seo a thoirt air falbh. Thoir sùil
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Cha b’ urrainn dhuinn an aithris agad a chur. Thoir sùil air a’ cheangal agad ris an eadar-lìon."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "Cha b’ urrainn dhuinn na h-inbhirean agad ùrachadh, thoir sùil air a’ cheangal ris an eadar-lìon is feuch ris a-rithist."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "Bha duilgheadas ann! {0}"
@@ -7445,10 +8073,10 @@ msgstr "Bha duilgheadas ann! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Bha duilgheadas ann. Thoir sùil air a’ cheangal ris an eadar-lìon agad is feuch ris a-rithist."
@@ -7469,6 +8097,14 @@ msgstr "Chan eil na roghainnean seo an sàs ach san inbhir “A’ leantainn”.
msgid "This {screenDescription} has been flagged:"
msgstr "Chaidh bratach a chur ris an tuairisgeul seo ({screenDescription}):"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr "Tha cromag ris a’ chunntas seo a chionn ’s gun deach a dhearbhadh le daoine earbsach."
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr "Chaidh co-dhiù aon oidhirp a dhèanamh an cunntas seo a dhearbhadh ach cha do shoirbhich leis an dearbhadh fhathast."
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "Tha an cunntas seo a’ sparradh air daoine clàradh a-steach mus fhaicear a’ phròifil aca."
@@ -7477,6 +8113,10 @@ msgstr "Tha an cunntas seo a’ sparradh air daoine clàradh a-steach mus fhaice
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 "Chaidh an cunntas seo a bhacadh le co-dhiù aon liosta modarataireachd agad. Airson a dhì-bhacadh, tadhail air na liostaichean iad fhèin is thoir air falbh an cleachdaiche."
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr "’S urrainn dhut seo a neo-dhèanamh uair sam bith."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Thèid an t-ath-thagradh seo a chur gu <0>{sourceName}0>."
@@ -7510,14 +8150,22 @@ msgstr "Chan eil an t-susbaint seo ri fhaighinn a chionn ’s gu bheil cleachdai
msgid "This content is not viewable without a Bluesky account."
msgstr "Chan fhaicear an t-susbaint seo as aonais cunntas Bhluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Seo còmhradh aig cunntas a chaidh a sguabadh às no a chur à gnìomh. Dèan brùthadh is chì thu na ’s urrainn dhut dèanamh"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr "Tha am post-d seo co-cheangailte ris a’ chunntas agad mu thràth."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "’S e gleus beta a tha seo. Leugh barrachd mu às-phortadh às an ionad-tasgaidh sa <0>phost bloga seo0>."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr "Chan eil an gleus seo ri làimh fhad ’s a bhios tu a’ cleachdadh facal-faire aplacaid. Clàraich a-steach leis a’ phrìomh-fhacal-faire agad."
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "Chan eil an gleus seo ri làimh fhad ’s a bhios tu a’ cleachdadh facal-faire aplacaid. Clàraich a-steach leis a’ phrìomh-fhacal-faire agad."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Tha an t-inbhir seo falamh! Feuch is lean barrachd dhaoine no cuir na roghainnean cànain agad air gleus."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Tha an t-inbhir seo falamh."
@@ -7540,7 +8188,7 @@ msgstr "Tha an t-inbhir seo falamh."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Chan eil an t-inbhir seo air loidhne tuilleadh. Tha sinn a’ sealltainn dhut an inbhir <0>Fidir0> na àite."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "Seo làmhrachan glèidhte. Feuch fear eile."
@@ -7548,9 +8196,10 @@ msgstr "Seo làmhrachan glèidhte. Feuch fear eile."
msgid "This information is not shared with other users."
msgstr "Chan fhaic luchd-cleachdaidh eile am fiosrachadh seo."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "Bidh feum agad air seo ma bhios agad ris am post-d agad atharrachadh uaireigin no am facal-faire agad ath-shuidheachadh."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr "Chan e ceangal dligheach a tha seo"
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "Chuir an t-ùghdar an leubail seo an sàs."
msgid "This label was applied by you."
msgstr "Chuir thusa an leubail seo an sàs."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "Cha do chuir an leubailiche seo an cèill dè na leubailean a dh’fhoillsicheas e agus dh’fhaoidte nach eil e gnìomhach."
@@ -7576,7 +8225,7 @@ msgstr "Tha ainm no tuairisgeul na liosta seo – air a chruthachadh le <0>{0}
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr "Tha ainm no tuairisgeul na liosta seo – a chruthaich thu fhèin – a’ briseadh stiùireadh coimhearsnachd Bhluesky ma dh’fhaoidte."
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "Tha an liosta seo falamh."
@@ -7584,7 +8233,7 @@ msgstr "Tha an liosta seo falamh."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Chan eil an t-seirbheis modarataireachd seo ri làimh. Chì thu barrachd fiosrachaidh mu dhèidhinn gu h-ìosal. Ma mhaireas an duilgheadas seo, cuir fios thugainn."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Tha am post seo a’ cumail a-mach gun deach a chruthachadh <0>{0}0> ach chunnacas e air Bluesky <1>{1}1> an toiseach."
@@ -7592,28 +8241,29 @@ msgstr "Tha am post seo a’ cumail a-mach gun deach a chruthachadh <0>{0}0> a
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr "Tha roghainnean smachd air freagairtean an sàs sa phost seo nach aithne dhuinn. Dh’fhaoidte gu bheil an aplacaid agad ro aosta."
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "Chaidh am post seo a sguabadh às."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Chan fhaic ach luchd-cleachdaidh clàraichte a-staigh am post seo. Chan fhaic daoine nach eil clàraichte a-staigh e."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Bidh am post seo am falach o inbhirean is snàithleanan. Cha ghabh seo neo-dhèanamh."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "Chuir ùghdar a’ phuist seo à comas luaidhean air a’ phost."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Chan fhaic ach luchd-cleachdaidh clàraichte a-staigh a’ phròifil seo. Chan fhaic daoine nach eil clàraichte a-staigh e."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr "Thèid an fhreagairt seo a chur ann an earrann fhalaichte aig bonn an t-snàithlein agad is mùchaidh e brathan mu fhreagairtean na dhèidh – an dà chuid dhut-sa is do dhaoine eile."
@@ -7621,10 +8271,14 @@ msgstr "Thèid an fhreagairt seo a chur ann an earrann fhalaichte aig bonn an t-
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Cha tug an t-seirbheis seo seachad teirmichean seirbheise no poileasaidh prìobhaideachd."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "Bu chòir dha seo clàr àrainne a chruthachadh aig:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr "Chan eil ainm-taisbeanaidh aig a’ chleachdaiche seo agus ri linn sin, chan urrainn dhut a dhearbhadh."
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "Chan eil duine sam bith a’ leantainn a’ chleachdaiche seo."
@@ -7662,21 +8316,21 @@ msgstr "Chan eil an cleachdaiche seo a’ leantainn duine sam bith."
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "Sguabaidh seo “{0}” às na faclan mùchte agad. ’S urrainn dhut a chur air ais uair sam bith."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "Bheir seo air falbh @{0} o liosta a’ ghrad-inntrigidh."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "Bheir seo air falbh am post agad on luaidh seo air post mu choinneamh an luchd-chleachdaidh air fad agus cuiridh e glèidheadair-àite na àite."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "Roghainnean an t-snàithlein"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Roghainnean an t-snàithlein"
@@ -7684,8 +8338,8 @@ msgstr "Roghainnean an t-snàithlein"
msgid "Thread Preferences"
msgstr "Roghainnean an t-snàithlein"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "Mar shnàithlean"
@@ -7693,7 +8347,7 @@ msgstr "Mar shnàithlean"
msgid "Threaded mode"
msgstr "Modh snàithlein"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Roghainnean nan snàithleanan"
@@ -7705,14 +8359,15 @@ msgstr "An t-àm a th’ air fhàgail: {0, plural, one {# diog} two {# dhiog} fe
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "Airson 2FA air a’ phost-d a chur à comas, dearbh gu bheil cead-inntrigidh agad dhan t-seòladh phuist-d."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr "Airson 2FA air a’ phost-d a chur à comas, dearbh gu bheil cead-inntrigidh agad gu <0>{0}0>"
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "Airson aithris a dhèanamh air còmhradh, dèan aithris air aon dhe na teachdaireachdan na lùib air sgrìn a’ chòmhraidh. Air an dòigh sin, tuigidh na modaratairean againn co-theacsa na cùise."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Mus luchdaich thu videothan suas gu Bluesky, feumaidh tu am post-d agad a dhearbhadh."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "Cò dha a chuireas sinn an aithris seo?"
@@ -7725,7 +8380,7 @@ msgstr "An-diugh"
msgid "Toggle dropdown"
msgstr "Toglaich an clàr-taice teàrnach"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "Toglaich seo airson susbaint inbheach a chur an comas no à comas"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr "Toglaichidh seo an fhuaim"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Brod nan toradh"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "Cuspair"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Eadar-theangaich"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
-msgstr "A’ treandadh"
+msgstr "Air bilean an t-sluaigh"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "Videothan a tha a’ treandadh"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr "Èiridh earbsa à dàimhean, coimhearsnachdan is co-chomann agus ri linn sin, tha sinn a’ toirt a-steach gleus <0>an luchd.-dearbhaidh earbsach0>: buidhnean aig am bi comas dearbhadh a dhèanamh."
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "Tbh"
msgid "Two-factor authentication (2FA)"
msgstr "Dearbhadh dà-cheumnach (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Sgrìobh an t-ainm-cleachdaiche a bu chaomh leat"
@@ -7783,18 +8440,11 @@ msgstr "Sgrìobh an t-ainm-cleachdaiche a bu chaomh leat"
msgid "Type your message here"
msgstr "Sgrìobh do theachdaireachd an-seo"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "An seòrsa:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Dì-bhac an liosta"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Neo-mhùch an liosta"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "Cha ghabh ceangal a dhèanamh. Thoir sùil air a’ cheangal ris an eadar-lìon agad is feuch ris a-rithist."
@@ -7809,7 +8459,7 @@ msgstr "Cha ghabh ceangal a dhèanamh. Thoir sùil air a’ cheangal ris an eada
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Chan urrainn dhut conaltradh a dhèanamh leis an t-seirbheis agad. Thoir sùil air a’ cheangal agad ris an eadar-lìon."
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "Cha ghabh a sguabadh às"
@@ -7817,36 +8467,41 @@ msgstr "Cha ghabh a sguabadh às"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Dì-bhac"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Dì-bhac"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Dì-bhac an cunntas"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "A bheil thu airson an cunntas a dhì-bhacadh?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr "Dì-bhac an liosta"
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Neo-dhèan an t-ath-phostadh"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Neo-dhèan an t-ath-phostadh ({0, plural, one {air ath-phostadh # turas} two {air ath-phostadh # thuras} few {air ath-phostadh # turais} other {air ath-phostadh # turas}})"
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Na lean tuilleadh"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "Na lean ri {0} tuilleadh"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "Na lean an cunntas tuilleadh"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr "Ma nì thu seo, cha lean thu ris a’ chleachdaiche tuilleadh"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Gu mì-fhortanach, chan eil taic do dh’aithrisean dhen t-seòrsa seo aig gin dhe na leubailichean a tha fo-sgrìobhadh agad aca."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr "Neach-dearbhaidh neo-aithnichte"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "Cha toil tuilleadh"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Cha toil tuilleadh ({0, plural, one {’s toil le # seo} two {’s toil le # seo} few {’s toil le # seo} other {’s toil le # seo}})"
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr "Neo-mhùch"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Neo-mhùch"
@@ -7895,10 +8555,10 @@ msgstr "Neo-mhùch"
msgid "Unmute {tag}"
msgstr "Neo-mhùch {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "Neo-mhùch an cunntas"
@@ -7906,8 +8566,12 @@ msgstr "Neo-mhùch an cunntas"
msgid "Unmute conversation"
msgstr "Neo-mhùch an còmhradh"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr "Neo-mhùch an liosta"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Neo-mhùch an snàithlean"
@@ -7915,38 +8579,47 @@ msgstr "Neo-mhùch an snàithlean"
msgid "Unmute video"
msgstr "Till fuaim a’ video"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Dì-phrìnich"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "Dì-phrìnich an t-inbhir"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr "Dì-phrìnich an t-inbhir"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Dì-phrìnich on dachaigh"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "Dì-phrìnich on phròifil"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Dì-phrìnich on liosta mhodarataireachd"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "Chaidh {0} a dhì-phrìneachadh on dachaigh"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Chaidh a dhì-phrìneachadh o na h-inbhirean agad"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr "Dùisg an cuimhneachan as ùr"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Cuir crìoch air an fho-sgrìobhadh"
@@ -7955,7 +8628,7 @@ msgstr "Cuir crìoch air an fho-sgrìobhadh"
msgid "Unsubscribe from list"
msgstr "Cuir crìoch air an fho-sgrìobhadh aig an liosta"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Cuir crìoch air an fho-sgrìobhadh aig an leubailiche seo"
@@ -7963,11 +8636,11 @@ msgstr "Cuir crìoch air an fho-sgrìobhadh aig an leubailiche seo"
msgid "Unsubscribed from list"
msgstr "Chaidh crìoch a chur air an fho-sgrìobhadh aig an liosta"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "Seòrsa de video ris nach eil taic"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "Seòrsa de video ris nach eil taic: {0}"
@@ -7987,17 +8660,28 @@ msgstr "Ùraich"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Ùraich <0>{displayName}0> sna liostaichean"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr "Ùraich am post-d"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Ùraich air {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
+msgstr "Ùraich am post-d agad"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr "Cha b’ urrainn dhuinn ceangladh na luaidh ùrachadh"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Cha b’ urrainn dhuinn faicsinneachd na freagairt ùrachadh"
@@ -8006,30 +8690,30 @@ msgstr "Cha b’ urrainn dhuinn faicsinneachd na freagairt ùrachadh"
msgid "Updating..."
msgstr "Ga ùrachadh…"
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Luchdaich suas dealbh an àite sin"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Luchdaich suas faidhle teacsa gu:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Luchdaich suas on chamara"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Luchdaich suas o na faidhlichean"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Luchdaich suas on leabhar-lann"
@@ -8042,7 +8726,7 @@ msgstr "A’ luchdadh suas nan dealbhan…"
msgid "Uploading link thumbnail..."
msgstr "A’ luchdadh suas dealbhag a’ cheangail…"
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "A’ luchdadh suas a’ video…"
@@ -8050,22 +8734,22 @@ msgstr "A’ luchdadh suas a’ video…"
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Cleachd faclan-faire aplacaid airson clàradh a-steach gu cliantan Bhluesky eile gun a bhith a’ toirt seachad làn-chothrom air an fhacal-fhaire no cunntas agad."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Cleachd an solaraiche bunaiteach"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Cleachd am brabhsair am broinn na h-aplacaid"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Cleachd am brabhsair am broinn na h-aplacaid airson ceanglaichean fhosgladh"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Cleachd am brabhsair bunaiteach agam"
@@ -8119,12 +8803,12 @@ msgstr "Liosta luchd-cleachdaidh le {0}"
msgid "User list by you"
msgstr "Liosta luchd-cleachdaidh leat-sa"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
msgstr "Chaidh an liosta luchd-cleachdaidh a chruthachadh"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
msgstr "Chaidh an liosta luchd-cleachdaidh ùrachadh"
@@ -8144,64 +8828,94 @@ msgstr "luchd-cleachdaidh a leanas ri <0>@{0}0>"
#: src/screens/Messages/Settings.tsx:92
#: src/screens/Messages/Settings.tsx:95
msgid "Users I follow"
-msgstr "Luchd-cleachdaidh a tha mise gan leantainn"
+msgstr "o luchd-cleachdaidh a tha mise gan leantainn"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456
msgid "Users in \"{0}\""
msgstr "Luchd-cleachdaidh ann an “{0}”"
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "Luchd-cleachdaidh as toil leotha an t-susbaint no pròifil seo"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr "Luchd-cleachdaidh a tha thusa gan leantainn"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Luach:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "Tha feum air post-d dearbhte"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr "Dh’fhàillig an dearbhadh, feuch ris a-rithist."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr "Roghainnean dearbhaidh"
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr "Roghainnean dearbhaidh"
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr "Tha dearbhadh air Bluesky caran eadar-dhealaichte an coimeas ri ùrlaran eile. <0>Barrachd fiosrachaidh an-seo0>"
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr "Air a dhearbhadh le:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr "Dearbh an cunntas seo"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr "Dearbh an còd"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Dearbh an clàr DNS"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr "Dearbh am post-d"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr "Dearbh còd a’ phuist-d"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Còmhradh dearbhadh a’ phuist-d"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Dearbh am post-d ùr"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Dearbh an-dràsta"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Dearbh am faidhle teacsa"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr "A bheil thu airson an cunntas seo a dhearbhadh?"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Dearbh am post-d agad"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Dearbh am post-d agad"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Tionndadh {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "Video"
msgid "Video failed to process"
msgstr "Cha b’ urrainn dhuinn a’ video a phròiseasadh"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr "Inbhir video"
@@ -8224,14 +8938,15 @@ msgstr "Video o {0}: {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Geamannan video"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr "Tha a’ video na stad"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr "Tha a’ video ga chluich"
@@ -8239,11 +8954,11 @@ msgstr "Tha a’ video ga chluich"
msgid "Video not found."
msgstr "Cha deach a’ video a lorg."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Roghainnean a’ video"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Chaidh a’ video a luchdadh suas"
@@ -8251,31 +8966,32 @@ msgstr "Chaidh a’ video a luchdadh suas"
msgid "Video: {0}"
msgstr "Video: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "Videothan"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
msgstr "Feumaidh a’ video a bhith nas giorra na 3 mionaidean"
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "Seall an t-avatar aig {0}"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "Seall a’ phròifil aig {0}"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "Seall a’ phròifil aig {displayName}"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "Seall pròifil a’ chleachdaiche bhacte"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "Seall an t-innteart dì-bhugachaidh"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Seall am mion-fhiosrachadh"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "Seall am mion-fhiosrachadh airson aithris a dhèanamh air briseadh còrach-lethbhreac"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Seall an snàithlean slàn"
@@ -8308,18 +9024,17 @@ msgstr "Seall am fiosrachadh mu na leubailean seo"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "Seall barrachd"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Seall a’ phròifil"
@@ -8331,7 +9046,11 @@ msgstr "Seall an t-avatar"
msgid "View the labeling service provided by @{0}"
msgstr "Seall an t-seirbheis leubailidh aig @{0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr "Seall na dhearbh an cleachdaiche seo"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "Seall an luchd-cleachdaidh as toil leotha an t-inbhir seo"
@@ -8339,11 +9058,11 @@ msgstr "Seall an luchd-cleachdaidh as toil leotha an t-inbhir seo"
msgid "View video"
msgstr "Seall a’ video"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Seall na cunntasan a bhac thu"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr "Seall na roghainnean bunaiteach agad airson eadar-ghabhail le puist"
@@ -8352,14 +9071,18 @@ msgstr "Seall na roghainnean bunaiteach agad airson eadar-ghabhail le puist"
msgid "View your feeds and explore more"
msgstr "Seall na h-inbhirean agad is rùraich barrachd"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Seall na liostaichean modarataireachd agad"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "Seall na cunntasan a mhùch thu"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr "Seall an dearbhadh a rinn thu"
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "Rabhadh ron t-susbaint"
msgid "Warn content and filter from feeds"
msgstr "Thoir rabhadh ron t-susbaint is criathraich às na h-inbhirean e"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr "Coimhead an-dràsta"
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "Cha d’fhuair sinn lorg air toradh sam bith aig a bheil an taga-hais sin."
@@ -8400,7 +9128,7 @@ msgstr "Cha d’fhuair sinn lorg air toradh sam bith aig a bheil an taga-hais si
msgid "We couldn't find any results for that topic."
msgstr "Cha d’fhuair sinn lorg air toradh sam bith a tha mun chuspair sin."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "Cha b’ urrainn dhuinn an còmhradh seo a luchdadh"
@@ -8420,6 +9148,14 @@ msgstr "Tha sinn an dòchas gum bi spòrs is sùgradh agad ann. Cuimhnich, tha B
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Chan eil puist eile aig na daoine a tha thu a’ leantainn. Seo na tha ùr aig <0/>."
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr "Mholamaid dhut co-dhiù dà rud a thaghadh sa bheil ùidh agad."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Chuir sinn post-d gu <0>{0}0> sa bheil ceangal. Briog air a’ cheangal airson dearbhadh a’ phuist-d a choileanadh."
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Cha b’ urrainn dhuinn dearbhadh a bheil cead agad videothan a luchdadh suas. Feuch ris a-rithist."
@@ -8428,7 +9164,7 @@ msgstr "Cha b’ urrainn dhuinn dearbhadh a bheil cead agad videothan a luchdadh
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "Cha b’ urrainn dhuinn roghainnean latha do bhreith a luchdadh. Feuch ris a-rithist."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:428
msgid "We were unable to load your configured labelers at this time."
msgstr "Chan urrainn dhuinn na leubailichean a rèitich thu a luchdadh an-dràsta fhèin."
@@ -8440,20 +9176,28 @@ msgstr "Cha b’ urrainn dhuinn ceangal a dhèanamh. Feuch ris a-rithist a leant
msgid "We will let you know when your account is ready."
msgstr "Innsidh sinn dhut nuair a bhios an cunntas agad deiseil."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Cuiridh sinn post-d gu <0>{0}0> sa bheil ceangal. Briog air a’ cheangal airson dearbhadh a’ phuist-d a choileanadh."
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "Cleachdaidh sinn seo airson dreach pearsanta a chur air an àrainneachd dhut."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "Tha duilgheadasan aig an lìonra againn, feuch ris a-rithist"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr "Tha sinn a’ toirt a-steach ìre eile de dhearbhadh air Bluesky – cromag fhollaiseach."
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "Tha sinn cho toilichte gu bheil thu an-seo a-nis!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Tha sinn duilich ach chan urrainn dhuinn an liosta seo fhuasgladh. Ma mhaireas an duilgheadas seo, cuir fios gun neach a chruthaich an liosta, @{handleOrDid}."
@@ -8461,11 +9205,11 @@ msgstr "Tha sinn duilich ach chan urrainn dhuinn an liosta seo fhuasgladh. Ma mh
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Tha sinn duilich ach cha b’ urrainn dhuinn na faclan a mhùch thu a luchdadh an-dràsta fhèin. Feuch ris a-rithist."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Tha sinn duilich ach cha b’ urrainn dhuinn sin a lorg dhut. Feuch ris a-rithist ann am beagan mhionaidean."
-#: src/view/com/composer/Composer.tsx:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Tha sinn duilich! Tha thu a’ feuchainn ri post a fhreagairt a chaidh a sguabadh às."
@@ -8474,7 +9218,7 @@ msgstr "Tha sinn duilich! Tha thu a’ feuchainn ri post a fhreagairt a chaidh a
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Tha sinn duilich! Chan fhaigh sinn lorg air an duilleag a tha a dhìth ort."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Tha sinn duilich! Chan urrainn dhut fo-sgrìobhadh aig barrachd air fichead leubailichean agus tha sin agad mu thràth."
@@ -8494,15 +9238,15 @@ msgstr "Dè na rudan sa bheil ùidh agad?"
msgid "What do you want to call your starter pack?"
msgstr "Dè an t-ainm a chuireas sinn air a’ phacaid tòiseachaidh agad?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "Na naidheachdan a th’ aig daoine."
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
-msgstr "Dè tha do naidheachd?"
+msgstr "Dè do naidheachd?"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr "Ma bhriogas tu air cromag, chì thu dè na buidhnean a rinn dearbhadh air a’ chunntas seo."
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
@@ -8520,14 +9264,18 @@ msgstr "Cò aig a bheil cead eadar-ghabhail a dhèanamh leis a’ phost seo?"
msgid "Who can reply"
msgstr "Cò aig a bheil cead freagairt?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr "Cò aig a bheil cead-dearbhaidh?"
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "Oich!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr "Oich! Cha b’ urrainn dhuinn na videothan a tha a’ treandadh a luchdadh."
@@ -8574,11 +9322,11 @@ msgstr "Carson bu chòir dhuinn lèirmheas a dhèanamh air an chleachdaiche seo?
msgid "Write a message"
msgstr "Sgrìobh teachdaireachd"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Sgrìobh post"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Sgrìobh do fhreagairt"
@@ -8588,11 +9336,16 @@ msgstr "Sgrìobh do fhreagairt"
msgid "Writers"
msgstr "Sgrìobhadairean"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "Chaidh an DID ceàrr a thilleadh leis an fhrithealaiche. Na fhuaras: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr "www.mylivestream.tv"
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Tha"
@@ -8601,15 +9354,15 @@ msgstr "Tha"
msgid "Yes, deactivate"
msgstr "Tha, cuiribh à gnìomh seo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Tha, sguabaibh às a’ phacaid tòiseachaidh seo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Tha, dealaichibh seo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Tha, falaichibh seo"
@@ -8623,16 +9376,33 @@ msgstr "An-dè"
#: src/components/NewskieDialog.tsx:43
msgid "You"
-msgstr ""
+msgstr "thu"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr "’S e neach-dearbhaidh earbsach a th’ annad"
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
-msgstr ""
+msgstr "Tha thu a’ cruthachadh cunntas air"
#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
msgstr "Tha thu sa chiutha."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr "Tha thu ri sruthadh beò"
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr "Chan eil thu ri sruthadh beò tuilleadh"
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr "Chan eil cead agad a dhol beò"
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "Chan eil cead agad videothan a luchdadh."
@@ -8641,6 +9411,27 @@ msgstr "Chan eil cead agad videothan a luchdadh."
msgid "You are not following anyone."
msgstr "Chan eil thu a’ leantainn duine sam bith."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr "Tha thu ri sruthadh beò a-nis!"
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr "Chaidh do dhearbhadh"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr "Chaidh do dhearbhadh. Caillidh tu d’ inbhe dearbhaidh ma dh’atharraicheas tu an t-ainm-taisbeanaidh agad. <0>Barrachd fiosrachaidh.0>"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr "Chaidh do dhearbhadh. Caillidh tu d’ inbhe dearbhaidh ma dh’atharraicheas tu an làmhrachan agad. <0>Barrachd fiosrachaidh.0>"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr "’S urrainn dhut na rudan sa bheil ùidh agad a chur air gleus uair sam bith sna roghainnean “Susbaint is meadhanan”."
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr "’S urrainn dhut roghainnean bunaiteach airson eadar-ghabhail a thaghad
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "’S urrainn dhut seo ùrachadh sna roghainnean agad uair sam bith."
@@ -8682,7 +9472,7 @@ msgstr "Chan eil luchd-leantainn sam bith agad."
msgid "You don't follow any users who follow @{name}."
msgstr "Chan eil thu a’ leantainn gin dhe na daoine a leanas @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr "Chan eil iarrtas cabadaich sam bith agad aig an àm seo."
@@ -8736,24 +9526,24 @@ msgstr "Mhùch thu an cunntas seo."
msgid "You have muted this user"
msgstr "Mhùch thu an cleachdaiche seo"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "Chan eil còmhradh sam bith a’ dol agad fhathast. Tog do ghuth!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "Chan eil inbhir sam bith agad."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "Chan eil liosta sam bith agad."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Cha do bhac thu cunntas sam bith gu ruige seo. Airson cunntas a bhacadh, tadhail air a’ phròifil aig cuideigin is tagh “Bac an cunntas” sa chlàr-taice aca an-sin."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Cha do mhùch thu cunntas sam bith gu ruige seo. Airson cunntas a mhùchadh, tadhail air a’ phròifil aig cuideigin is tagh “Mùch an cunntas” sa chlàr-taice aca an-sin."
@@ -8761,11 +9551,15 @@ msgstr "Cha do mhùch thu cunntas sam bith gu ruige seo. Airson cunntas a mhùch
msgid "You have reached the end"
msgstr "Ràinig thu a’ chrìoch"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr "Dhearbh thu an seòladh puist-d agad. ’S urrainn dhut an còmhradh seo a dhùnadh a-nis."
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-dràsta fhèin. Feuch ris a-rithist an ceann greis."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "Cha do chruthaich thu pacaid tòiseachaidh fhathast!"
@@ -8787,22 +9581,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "’S urrainn dhut ath-thagradh a thogail mu leubailean seo ma tha thu dhen bheachd gur ann air mhearachd a chaidh an cur."
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr ""
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr "Chan fhaod thu barrachd air {STARTER_PACK_MAX_SIZE, plural, one {{STARTER_PACK_MAX_SIZE} phròifil} two {{STARTER_PACK_MAX_SIZE} phròifil} few {{STARTER_PACK_MAX_SIZE} pròifilean}other {{STARTER_PACK_MAX_SIZE} pròifil}} a chur ris"
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Chan fhaod thu barrachd air trì inbhirean a chur ris"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "Chan fhaod thu barrachd air ceithir dealbhan a chur ris"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "Feumaidh tu a bhith co-dhiù 13 bliadhna mus urrainn dhut clàradh againn."
+msgid "You must be 13 years of age or older to create an account."
+msgstr "Feumaidh tu a bhith co-dhiù 13 bliadhna mus urrainn dhut cunntas a chruthachadh."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Feumaidh tu co-dhiù seachdnar a leantainn mus urrainn dhut pacaid tòiseachaidh a ghintinn."
@@ -8810,28 +9604,40 @@ msgstr "Feumaidh tu co-dhiù seachdnar a leantainn mus urrainn dhut pacaid tòis
msgid "You must grant access to your photo library to save a QR code"
msgstr "Feumaidh tu cead-inntrigidh do leabhar-lann nan dealbhan agad a thoirt seachad mus urrainn dhut còd QR a shàbhaladh"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "Feumaidh tu cead-inntrigidh do leabhar-lann nan dealbhan agad a thoirt seachad mus urrainn dhut an dealbh a shàbhaladh."
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "Feumaidh tu co-dhiù aon leubailiche a thaghadh mus urrainn dhut aithris a dhèanamh"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr "Feumaidh tu an seòladh puist-d agad a dhearbhadh mus urrainn dhut 2FA air a’ phost-d a chur an comas."
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "Chuir thu @{0} à gnìomh roimhe."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr "’S mathaid gum b’ fheàirrde dhut an aplacaid ath-thòiseachadh an-dràsta."
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr "Chuir thu {0} mar fhrith-fhreagairt"
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr "Chuir thu {0} mar fhrith-fhreagairt dha {1}"
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "Thèid do chlàradh a-mach às gach cunntas agad."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "Chan fhaigh thu brathan mun t-snàithlean seo tuilleadh"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Gheibh thu brathan mun t-snàithlean seo a-nis"
@@ -8839,23 +9645,23 @@ msgstr "Gheibh thu brathan mun t-snàithlean seo a-nis"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Gheibh thu post-d anns am bi còd airson ath-shuidheachadh. Cuir a-steach an còd an-seo agus an uair sin am facal-faire ùr agad."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "Thusa: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Thusa: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "Thusa: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "Bidh tu a’ leantainn an luchd-cleachdaidh ’s na h-inbhirean a mholamaid-ne turas a bhios an cunntas ùr deiseil agad!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "Bidh tu a’ leantainn an luchd-cleachdaidh a mholamaid-ne turas a bhios an cunntas ùr deiseil agad!"
@@ -8867,7 +9673,7 @@ msgstr "Bidh tu a’ leantainn nan daoine seo agus {0} eile"
msgid "You'll follow these people right away"
msgstr "Bidh tu a’ leantainn nan daoine seo sa bhad"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "Gheibh thu post-d aig <0>{0}0> a dhearbhadh gur tusa a th’ ann."
@@ -8901,6 +9707,10 @@ msgstr "Lorg thu daoine a leanas tu"
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Seo deireadh an inbhir agad! Faigh lorg air barrachd chunntasan a leanas thu."
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr "Rinn thu uiread a dh’iarrtas ’s a tha ceadaichte mar-thà. Feuch ris a-rithist an ceann greis."
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-diugh (cus dàta)"
@@ -8909,11 +9719,11 @@ msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-diugh (cus dà
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-diugh (cus videothan)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Chan eil video sam bith eile agad a choimheadas tu air. Deagh-àm airson rudeigin eile a dhèanamh fad greis?"
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "An cunntas agad"
@@ -8941,7 +9751,7 @@ msgstr "Chaidh co-dhùnadh gu bheil an cunntas agad a’ briseadh <0>teirmichean
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr "Chaidh an t-ath-thagradh agad a chur. Ma thèid leis an ath-thagradh agad, gheibh thu post-d."
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "Latha do bhreith"
@@ -8953,26 +9763,30 @@ msgstr "Cha chuir am brabhsair agad taic ri fòrmat a’ video. Feuch brabhsair
msgid "Your chats have been disabled"
msgstr "Chaidh a’ chabadaich agad a chur à comas"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "Thèid an roghainn seo a shàbhaladh agus is urrainn dhut atharrachadh uair sam bith sna roghainnean."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr "Cumaidh sinn seo nar cuimhne airson ceanglaichean san àm ri teachd. ’S urrainn dhut seo a chur air gleus uair sam bith sna roghainnean."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "Glèidhidh sinn an làmhrachan làithreach agad, <0>{0}0>, dhut gu fèin-obrachail. ’S urrainn dhut a thilleadh uair sam bith on chunntas seo."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr "Chaidh an seòladh puist-d agad ùrachadh ach tha e gun dearbhadh fhathast. Bu chòir dhut am post-d ùr agad a dhearbhadh a-nis."
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Tha coltas nach eil am post-d agad dligheach."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "Chaidh am post-d agad a ùrachadh ach tha e gun dearbhadh fhathast. Bu chòir dhut am post-d ùr agad a dhearbhadh."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr "Cha deach am post-d agad a dhearbhadh fhathast. Dearbh e ’s faigh làn-chothrom air Bluesky."
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Cha deach am post-d agad a dhearbhadh fhathast. Seo ceum tèarainteachd cudromachd is mholamaid dhut a dhèanamh."
@@ -8988,14 +9802,31 @@ msgstr "Na daoine a tha gad leantainn"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Tha inbhir nan daoine a tha thu gan leantainn falamh! Lean barrachd dhaoine ’s cùm ceum ris na tha a’ dol."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "’S e <0>@{0}0> an làmhrachan slàn a bhios agad"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr "’S e <0>@{0}0> an t-ainm-cleachdaiche slàn a bhios agad"
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr "Na rudan sa bheil ùidh agad"
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr "Chaidh na rudan sa bheil ùidh agad ùrachadh!"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr "Ma bhios fhios againn dè na rudan sa bheil ùidh agad, bidh e nas fhasa dhuinn stuth a shealltainn dhut a chòrdas riut!"
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Na faclan a mhùch thu"
@@ -9004,15 +9835,15 @@ msgstr "Na faclan a mhùch thu"
msgid "Your password has been changed successfully!"
msgstr "Chaidh am facal-faire agad atharrachadh!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr "Feumaidh co-dhiù 8 caractaran bhith san fhacal-faire agad."
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "Chaidh am post agad fhoillseachadh"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "Chaidh na puist agad fhoillseachadh"
@@ -9024,14 +9855,22 @@ msgstr "Tha na puist, na rudan as toil leat is na bhac thu poblach. Tha na rudan
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Chan fhaic luchd-cleachdaidh Bhluesky eile a’ phròifil, na puist, inbhirean is liostaichean agad tuilleadh. ’S urrainn dhut an cunntas agad ath-ghnìomhachadh uair sam bith."
-#: src/view/com/composer/Composer.tsx:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Chaidh do fhreagairt fhoillseachadh"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr "Thèid an aithris agad a chur gu <0>{0}0>."
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Thèid an aithris agad a chur gu seirbheis modarataireachd Bhluesky"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr "Ma leigeis tu ris dè na rudan sa bheil ùidh agad, bidh e nas fhasa susbaint a shealltainn dhut a bhuineas riut-sa."
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr "An dearbhadh a rinn thusa"
diff --git a/src/locale/locales/gl/messages.po b/src/locale/locales/gl/messages.po
index bdfd0c9373..2c5e14194b 100644
--- a/src/locale/locales/gl/messages.po
+++ b/src/locale/locales/gl/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: gl\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 03:35\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Galician\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(contén contido incrustado)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(sen correo electrónico)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {# republicación} other {# republicacións}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# segundo} other {# segundos}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -90,17 +90,17 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {seguidor} other {seguidores}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {seguindo} other {seguindo}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {gustoulle} other {gustoulles}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {gustoulle} other {gustoulles}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {cita} other {citas}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr ""
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr ""
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0>en <1>etiquetas1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>en <1>texto e etiquetas1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr ""
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} uníronse esta semana"
@@ -139,11 +156,16 @@ msgstr "{0} de {1}"
msgid "{0} out of 50"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0} persoas empregaron este paquete de inicio!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr ""
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "Avatar de {0}"
@@ -175,7 +197,7 @@ msgstr ""
msgid "{0}s"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -192,103 +214,184 @@ msgstr ""
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} seguindo"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "Non é posíbel enviar mensaxes a {handle}"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr ""
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr ""
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -301,6 +404,34 @@ msgstr "{profileName} uniuse a Bluesky hai {0}"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} uniuse a Bluesky hai {0} empregando un paquete de inicio"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr ""
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr ""
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr ""
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr ""
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr ""
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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>e {2, plural, one {# máis} other {# máis}} foron incluídos no teu paquete"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr ""
@@ -343,7 +474,7 @@ msgstr ""
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>Ti0> e<1> 1><2>{0} 2>estades incluídos no paquete de inicio"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Alcume inválido"
@@ -363,19 +494,28 @@ msgstr "30 días"
msgid "7 days"
msgstr "7 días"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr ""
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr ""
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr ""
@@ -385,40 +525,40 @@ msgid "Accept Request"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Accesibilidade"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Axustes de accesibilidade"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Conta"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "Conta bloqueada"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "Conta seguida"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "Conta silenciada"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
@@ -429,33 +569,37 @@ msgstr "Conta silenciada"
msgid "Account Muted by List"
msgstr "Conta silenciada por listaxe"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Opcións da conta"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Conta elimada de acceso rápido"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "Conta desbloqueada"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "Deixaches de seguir esta conta"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
+msgstr "Conta desenmudecida"
+
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Engadir"
@@ -473,8 +617,12 @@ msgstr "Engadir a {displayName} ao paquete de inicio"
msgid "Add a content warning"
msgstr "Engadir advertencia de contido"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "Engadir conta a esta listaxe"
@@ -485,7 +633,7 @@ msgstr "Engadir conta"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Engadir conta"
msgid "Add alt text"
msgstr "Engadir texto alternativo"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Engadir texto alternativo (opcional)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr ""
@@ -518,8 +666,12 @@ msgstr ""
msgid "Add App Password"
msgstr "Engadir contrasinal de app"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr ""
@@ -531,15 +683,23 @@ msgstr ""
msgid "Add muted words and tags"
msgstr "Engadir palabras silenciadas e etiquetas"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr ""
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr ""
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Engadir canles recomendadas"
@@ -552,27 +712,28 @@ msgstr "Engadir algunhas canles ao teu paquete de inicio!"
msgid "Add the default feed of only people you follow"
msgstr "Engade a canle predefinida só das persoas que segues"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Engade o seguinte rexistro DNS ao teu dominio:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Engade esta canle ás túas canles"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Engadir ás listaxes"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Engadir ás miñas canles"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Engadido á listaxe"
@@ -581,22 +742,22 @@ msgstr "Engadido á listaxe"
msgid "Added to my feeds"
msgstr "Engadida ás miñas canles"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Adultos"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Contido para adultos"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "O contido para adultos só se pode habilitar a través da web en <0>bsky.app0>."
@@ -604,30 +765,35 @@ msgstr "O contido para adultos só se pode habilitar a través da web en <0>bsky
msgid "Adult content is disabled."
msgstr "O contido para adultos está deshabilitado."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Etiquetas de contido para adultos"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Avanzado"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr ""
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Todas"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "Seguíronse todas as contas!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr ""
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "Todas as túas canles gardadas, nun só lugar."
@@ -671,10 +837,10 @@ msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Texto alternativo"
@@ -688,19 +854,18 @@ msgstr "O texto alternativo describe imaxes a persoas cegas ou con baixa visión
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "O texto alternativo será truncado. Límite: {0} caracteres."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr ""
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "Un código de verificación foi enviado a {0}. Ingresa ese código a continuación."
-#: src/view/com/modals/ChangeEmail.tsx:114
-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 foi enviado o teu enderezo anterior, {0}. Ingresa ese código a continuación."
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "Envioiuse un correo electrónico! A continuación, ingresa o código de confirmación incluido no correo electrónico."
@@ -716,7 +881,11 @@ msgstr "Ocurreu un erro"
msgid "An error occurred while compressing the video."
msgstr "Ocurreu un erro ao comprimir o vídeo."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Ocurreu un error ao xerar o teu paquete de inicio. Queres probar de novo?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "Ocurreu un erro mentres cargaba o vídeo. Por favor, proba de novo."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "Ocurreu un erro ao gardar o código QR!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "Ocurreu un erro mentres seleccionabas o vídeo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "Produciuse un erro ao tentar seguir todo"
@@ -746,12 +914,17 @@ msgstr "Produciuse un erro ao tentar seguir todo"
msgid "An error occurred while uploading the video."
msgstr "Ocurreu un erro ao cargar o vídeo."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Un problema non presente nestas opcións"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "Ocurreu un erro iniciando a conversa"
@@ -761,13 +934,17 @@ msgstr "Ocurreu un erro mentres tentabas abrir as conversas."
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Ocurreu un erro. Proba de novo."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "Ocurreu un erro descoñecido"
@@ -790,6 +967,10 @@ msgstr "Animais"
msgid "Animated GIF"
msgstr "GIF animado"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Comportamento antisocial"
msgid "Anybody can interact"
msgstr "Calquera pode interactuar"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "Icona da aplicación"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "Idioma da interfaz"
@@ -817,7 +998,7 @@ msgstr ""
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "Contrasinal de app eliminado"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
@@ -836,7 +1017,7 @@ msgstr ""
msgid "App passwords"
msgstr ""
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Contrasinais da app"
@@ -854,7 +1035,7 @@ msgstr "Apelar a etiqueta de \"{0}\""
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "Apelación enviada"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -872,10 +1053,10 @@ msgstr "Apelar suspensión"
msgid "Appeal this decision"
msgstr "Apelar esta decisión"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Aparencia"
@@ -884,12 +1065,12 @@ msgstr "Aparencia"
msgid "Apply default recommended feeds"
msgstr "Aplicar canles recomendadas predeterminados"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Arquivada dende {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Publicación arquivada"
@@ -897,15 +1078,15 @@ msgstr "Publicación arquivada"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Tes a certeza de querer eliminar o contrasinal de aplicación \"{0}\"?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
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 a certeza de que queres eliminar esta mensaxe? A mensaxe eliminarase para ti, mais non para a outra persoa."
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "Tes a certeza de que queres eliminar este paquete de inicio?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "Tes a certeza de que queres descartar os teus cambios?"
@@ -921,15 +1102,15 @@ msgstr "Tes a certeza de que queres eliminar esta conversa? As túas mensaxes el
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Tes a certeza de que queres eliminar {0} das túas canles?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Tes a certeza de que desexas eliminar isto das túas canles?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "Tes a certeza de quequeres descartar este borrador?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "Tes a certeza de querer desbotar esta publicación?"
@@ -937,7 +1118,7 @@ msgstr "Tes a certeza de querer desbotar esta publicación?"
msgid "Are you sure?"
msgstr "Realmente é o que queres?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "Estás escribindo en <0>{suggestedLanguageName}0>?"
@@ -946,11 +1127,16 @@ msgstr "Estás escribindo en <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Arte"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Espidos artísticos ou non eróticos."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "Cando menos 3 caracteres"
@@ -963,12 +1149,12 @@ msgstr ""
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "As opcións de reprodución automática movéronse a <0>Axustes de contido e multimedia0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Reprodución auto. de vídeos e GIFs"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Reprodución auto. de vídeos e GIFs"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Atrás"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr ""
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Antes de crear unha listaxe, primeiro tes que verificar o teu correo."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Antes de crear unha publicación, primeiro tes que verificar o teu correo."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Antes de crear un paquete de inicio, primeiro tes que verificar o teu correo."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "Antes de poder enviar mensaxes a outras persoas, primeiro tes que verificar o teu correo."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
+msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Aniversario"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Bloquear"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Bloquear conta"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "Bloquear conta?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Bloquear contas"
@@ -1054,7 +1241,7 @@ msgstr "Bloquear e eliminar"
msgid "Block and/or delete this conversation"
msgstr "Bloquear e/ou eliminar esta conversa"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Bloquear listaxe"
@@ -1062,7 +1249,7 @@ msgstr "Bloquear listaxe"
msgid "Block or report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "Bloquear estas contas?"
@@ -1079,21 +1266,21 @@ msgstr "Bloquear Conta"
msgid "Blocked"
msgstr "Bloqueado"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Contas bloqueadas"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Contas bloqueadas"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Se bloqueas unha conta non poderá responder os teus fíos, mencionarte nin interactuar contigo de ningunha maneira."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 "Se bloqueas unha conta non poderá responder os teus fíos, mencionarte nin interactuar contigo de ningunha manera. Non verás o seu contido e non poderá ver o teu."
@@ -1101,19 +1288,19 @@ msgstr "Se bloqueas unha conta non poderá responder os teus fíos, mencionarte
msgid "Blocked post."
msgstr "Chío bloqueado."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Se bloqueas a un etiquetador aínda poderá seguir aplicando etiquetas na túa conta."
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "O bloqueo é público. Se bloqueas unha conta non poderá responder os teus fíos, mencionarte nin interactuar contigo de ningunha maneira."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Se bloqueas a un etiquetador aínda poderá seguir aplicando etiquetas na túa conta, mais evitará que responda nos teus fíos, que te mencione e non poderá interactuar contigo de ningunha maneira."
-#: src/view/com/auth/SplashScreen.web.tsx:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blog"
@@ -1122,7 +1309,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky non pode confirmar a autenticidade da data solicitada."
@@ -1148,7 +1335,7 @@ msgstr "Bluesky é mellor con amizades!"
msgid "Bluesky Social Terms of Service"
msgstr "Termos do Servizo do Bluesky Social"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky elexirá un conxunto de contas recomendadas na túa rede."
@@ -1156,6 +1343,10 @@ msgstr "Bluesky elexirá un conxunto de contas recomendadas na túa rede."
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky non amosará o teu perfil ou chíos a persoas que non iniciaran sesión. É posíbel que outras apps non respecten esta solicitude. Isto non fai que a túa conta sexa privada."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr ""
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "Desenfocar imaxes e filtrar desde as canles"
msgid "Books"
msgstr "Libros"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "Explorar máis contas"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "Revisar máis canles"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Explorar máis suxerencias"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "Explora máis suxerencias na páxina Explorar"
@@ -1214,20 +1405,26 @@ msgstr "Navegar publicacións etiquetadas con {displayName}"
msgid "Browse starter pack {displayName}"
msgstr ""
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr ""
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "Navegar tema {displayName}"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Negocios"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "Por {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Por <0>{0}0>"
@@ -1243,44 +1440,51 @@ msgstr "Ao crear unha conta, aceptas os <0>Termos de servizo0> e a <1>Polític
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Ao crear unha conta, aceptas os <0>Termos de servizo0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr ""
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Cámara"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Cancelar"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "Cancelar a eliminación da conta"
msgid "Cancel image crop"
msgstr "Cancelar recorte de imaxe"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Cancelar edición de perfil"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Cancelar citación"
@@ -1308,8 +1512,7 @@ msgstr "Cancelar citación"
msgid "Cancel reactivation and sign out"
msgstr "Cancelar a reactivación e pechar a sesión"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Cancelar procura"
@@ -1317,24 +1520,23 @@ msgstr "Cancelar procura"
msgid "Cancels opening the linked website"
msgstr "Cancela apertura do sitio web vinculado"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "Non se pode interactuar cunha conta bloqueada"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Lexendaxe (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Lexendaxe e texto alternativo"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Cambiar"
@@ -1347,46 +1549,41 @@ msgstr "Cambiar icona da aplicación"
msgid "Change app icon to \"{0}\""
msgstr "Cambiar a icona da aplicación a \"{0}\""
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Cambiar correo electrónico"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Cambiar o enderezo electrónico"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Cambiar alcume"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Cambiar o meu enderezo electrónico"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Cambiar contrasinal"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "Cambiar idioma da publicación a {suggestedLanguageName}"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Cambiar enderezo electrónico"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Cambiar o teu enderezo de correo electrónico"
@@ -1394,20 +1591,20 @@ msgstr "Cambiar o teu enderezo de correo electrónico"
msgid "Changes app icon"
msgstr ""
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr ""
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Conversa"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
msgstr ""
@@ -1417,20 +1614,19 @@ msgctxt "toast"
msgid "Chat muted"
msgstr ""
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr ""
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Axustes da conversa"
@@ -1443,8 +1639,8 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr ""
@@ -1461,7 +1657,7 @@ msgstr ""
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Enviamos un código de inicio de sesión ao teu correo. Insíreo aquí:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Escoller método de verificación do dominio"
@@ -1469,7 +1665,7 @@ msgstr "Escoller método de verificación do dominio"
msgid "Choose Feeds"
msgstr "Escolle Canles"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Escolle para min"
@@ -1477,10 +1673,6 @@ msgstr "Escolle para min"
msgid "Choose People"
msgstr "Escolle xente"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Elixe etiquetas propias que sexan aplicábeis ao medio no que estás chiando. Se non seleccionas ningunha, este chío é adecuado para todos os públicos."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Ti elixes os algoritmos que usar nas túas canles."
@@ -1493,27 +1685,31 @@ msgstr "Elixe esta color como o teu avatar"
msgid "Choose your account provider"
msgstr "Escolle o teu provedor da conta"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Escolle a túa propia liña de tempo! Fíos feitos pola comunidade axudarante a atopar contido que che preste."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Escolleu o teu contrasinal"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "O teu alcume"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Borrar todos os datos de almacenamento"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Borrar todos os datos de almacenamento (reiniciar despois disto)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr ""
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Borrar consulta de búsqueda"
@@ -1522,6 +1718,14 @@ msgstr "Borrar consulta de búsqueda"
msgid "click here"
msgstr "Preme aquí"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Preme para deshabilitar as citas para este chío."
@@ -1534,7 +1738,7 @@ msgstr "Preme para habilitar as citas para este chío."
msgid "Click to open tag menu for {tag}"
msgstr "Premer para abrir o menú de etiquetas para {tag}"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Preme para reintentar a mensaxe fallida"
@@ -1546,24 +1750,34 @@ msgstr "Clima"
msgid "Clip 🐴 clop 🐴"
msgstr "Clip 🐴 clop 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Pechar"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Pechar xanela activa"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Pechar o caixón inferior"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Pechar"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr ""
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "Pechar o selector de emojis"
@@ -1600,7 +1816,13 @@ msgstr "Pechar imaxe"
msgid "Close image viewer"
msgstr "Pechar o visor de imaxes"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr ""
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Pechar esta xanela"
@@ -1608,8 +1830,12 @@ msgstr "Pechar esta xanela"
msgid "Closes password update alert"
msgstr "Pecha a alerta de actualización de contrasinal"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr ""
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr ""
@@ -1617,11 +1843,11 @@ msgstr ""
msgid "Closes viewer for header image"
msgstr "Pecha o visor do encabezado da imaxe"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Pechar listaxe de contas"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Pechar a listaxe de contas para unha notificación en particular"
@@ -1644,7 +1870,7 @@ msgstr "Comedia"
msgid "Comics"
msgstr "Bandas deseñadas"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Directrices da comunidade"
@@ -1653,23 +1879,23 @@ msgstr "Directrices da comunidade"
msgid "Complete onboarding and start using your account"
msgstr "Completa a incorporación e comeza a usar a túa conta"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Completa o desafío"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Escribir nova publicación"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "Compoñer chíos até {MAX_GRAPHEME_LENGTH} caracteres de lonxitude"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr ""
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Redactar resposta"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Comprimindo vídeo..."
@@ -1681,23 +1907,17 @@ msgstr "Configuración de filtrado de contido para a categoría: {name}"
msgid "Configured in <0>moderation settings0>."
msgstr "Configurado en <0>axustes de moderación0>"
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Confirmar"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Confirmar o cambio"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Confimar o idioma do contido"
@@ -1706,26 +1926,27 @@ msgstr "Confimar o idioma do contido"
msgid "Confirm delete account"
msgstr "Confirmar eliminación da conta"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Confirma a túa idade:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Confirma a túa data de nacemento"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Código de confirmación"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Código de confirmación"
@@ -1733,22 +1954,22 @@ msgstr "Código de confirmación"
msgid "Connecting..."
msgstr "Conectando..."
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Contacta co soporte"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "Contido e Multimedia"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Contido e multimedia"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Contido e Multimedia"
@@ -1756,15 +1977,15 @@ msgstr "Contido e Multimedia"
msgid "Content Blocked"
msgstr "Contido bloqueado"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Filtros de contido"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Idiomas de contido"
@@ -1785,16 +2006,16 @@ msgstr "Advertencia de contido"
msgid "Content warnings"
msgstr "Advertencia de contido"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "Fondo do menú contextual, preme para pechar o menú."
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Continuar"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Continuar como {0} (actualmente iniciaches sesión)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Continuar fío..."
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Sigue co seguinte paso"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversa eliminada"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Conversa eliminada"
@@ -1826,16 +2047,17 @@ msgstr "Cociñando"
msgid "Copied"
msgstr "Copiado"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Versión de compilación copiada ao portapapeis"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Copiado ao portapapeis"
@@ -1844,25 +2066,29 @@ msgstr "Copiado ao portapapeis"
msgid "Copied!"
msgstr "Copiado!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Copiar"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr ""
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr ""
@@ -1871,57 +2097,69 @@ msgstr ""
msgid "Copy code"
msgstr "Copiar código"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Copiar ligazón"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Copiar Ligazón"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Copia ligazón á lista"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Copiar ligazón ao chío"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Copiar texto da mensaxe"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Copiar texto do chío"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Copiar código QR"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr ""
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Política de dereitos de autor"
@@ -1931,11 +2169,11 @@ msgstr "Política de dereitos de autor"
msgid "Could not leave chat"
msgstr "Non se puido saír deste conversa"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "Non se puido cargar esta canle"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "Non se puido cargar esta listaxe"
@@ -1947,28 +2185,28 @@ msgstr "Non se puido silenciar a conversa"
msgid "Could not process your video"
msgstr "Non se puido procesar o teu vídeo"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Crear"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "Crear un código QR para o paquete de inicio"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Crea un paquete de inicio"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Crea un paquete de inicio para min"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Crea un paquete de inicio para min"
msgid "Create account"
msgstr "Crear conta"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Crear unha conta"
@@ -1985,11 +2223,16 @@ msgstr "Crear unha conta"
msgid "Create an account"
msgstr "Crea unha conta"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Crea un avatar"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Crea outro"
@@ -1998,7 +2241,7 @@ msgstr "Crea outro"
msgid "Create new account"
msgstr "Crear unha conta nova"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Crea un reporte de {0}"
@@ -2053,17 +2296,17 @@ msgstr "Modo Escuro"
msgid "Dark theme"
msgstr "Tema escuro"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Data de nacemento"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Desactivar conta"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Depuración de Moderacion"
@@ -2079,19 +2322,19 @@ msgstr "Por Defecto"
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Borrar"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Borrar a conta"
@@ -2107,19 +2350,19 @@ msgstr "Borrar contrasinal de aplicación"
msgid "Delete app password?"
msgstr "Borrar contrasinal de aplicación?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr ""
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Eliminar rexistro de declaración de conversa"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "Eliminar conversa"
@@ -2127,19 +2370,19 @@ msgstr "Eliminar conversa"
msgid "Delete Conversation"
msgstr "Eliminar Conversa"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Borrar para min"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
-msgstr "Borrar a listaxe"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Borrar mensaxe"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Borrar mensaxe para min"
@@ -2147,26 +2390,26 @@ msgstr "Borrar mensaxe para min"
msgid "Delete my account"
msgstr "Borrar a miña conta"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Borrar un chío"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Borrar paquete de inicio"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "Borrar paquete de inicio?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "Borrar esta listaxe?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "Borrar este chío?"
@@ -2174,8 +2417,8 @@ msgstr "Borrar este chío?"
msgid "Deleted"
msgstr "Eliminado"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Conta eliminada"
@@ -2183,48 +2426,48 @@ msgstr "Conta eliminada"
msgid "Deleted post."
msgstr "Borrouse o chío."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Descrición"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "A descrición é demasiado longa"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "A descrición é demasiado longa. O máximo son {DESCRIPTION_MAX_GRAPHEMES} caracteres."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Texto descritivo alternativo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Desvincular cita"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "Desvincular chío da cita?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
-msgstr ""
+msgstr "Modo desenvolvedor deshabilitado"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
-msgstr ""
+msgstr "Modo desenvolvedor habilitado"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Opcións de desenvolvedor"
@@ -2236,6 +2479,15 @@ msgstr "Xanela: axustar quen pode interactuar con este chío"
msgid "Dim"
msgstr "Atenuar"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr ""
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "Desactivar Correo 2FA"
@@ -2254,25 +2506,25 @@ msgstr "Desactivar lexendaxe"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Deshabilitado"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Desbotar"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "Desbotar cambios?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "Desbotar borrador?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "Desbotar publicación?"
@@ -2281,24 +2533,24 @@ msgstr "Desbotar publicación?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Evitar que as aplicacións amosen a miña conta ás persoas desconectadas"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Descubre novas canles personalizadas"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Descobre novas canles"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Descobre Novas Canles"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Desbotar"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Desbotar erro"
@@ -2306,6 +2558,10 @@ msgstr "Desbotar erro"
msgid "Dismiss getting started guide"
msgstr "Desbotar a guía de introdución"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr "Ignorar esta sección"
@@ -2315,27 +2571,27 @@ msgstr "Ignorar esta sección"
msgid "Display larger alt text badges"
msgstr "Amosar insignias de texto alternativo máis grandes"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Amosar o nome"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Mostrar o nombre"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "O nome amosado é demasiado longo"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "O nome amosado é demasiado longo. O máximo son {DISPLAY_NAME_MAX_GRAPHEMES} caracteres."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "Panel de DNS"
@@ -2347,37 +2603,45 @@ msgstr "Non aplicar esta palabra silenciada ás persoas que segues"
msgid "Does not include nudity."
msgstr "Non inclúe espidos."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "Non comeza nin remata cun guión."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "Dominio verificado!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Listo"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Listo"
msgid "Done{extraText}"
msgstr "Listo{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr ""
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Doble toque para pechar a xanela"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr "Duplo toque para marcar cun \"gústame\""
@@ -2413,23 +2681,23 @@ msgstr "Arrastra para agregar imaxes"
msgid "Duration:"
msgstr "Duración:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "ex. alicia"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "ex. Apelido de Alicia"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "p. ej. Alicia Roberts"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "ex. alicia.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "p. ej. Artista, amante dos e ávida lectora."
@@ -2437,19 +2705,19 @@ msgstr "p. ej. Artista, amante dos e ávida lectora."
msgid "E.g. artistic nudes."
msgstr "ex. Espidos artísticos."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "ex. Grandes persoas"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "ex. Spam"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "ex. Persoas que sempre atinan."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "ex. Persoas que constantemente responden con publicidade."
@@ -2457,20 +2725,21 @@ msgstr "ex. Persoas que constantemente responden con publicidade."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Cada código funciona unha vez. Recibirás máis códigos de convite periodicamente."
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Editar"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Editar"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Editar avatar"
@@ -2478,31 +2747,41 @@ msgstr "Editar avatar"
msgid "Edit Feeds"
msgstr "Editar Canles"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Editar imaxe"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Editar axustes de interacción"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Editar os detalles da listaxe"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Editar Listaxe de Moderación"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Editar as Miñas Canles"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Editar o meu perfil"
@@ -2515,23 +2794,23 @@ msgstr "Editar Persoas"
msgid "Edit post interaction settings"
msgstr "Editar axustes de interacción do chío"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Editar o perfil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Editar o perfil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Editar paquete de inicio"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Editar listaxe de Persoas"
@@ -2539,15 +2818,15 @@ msgstr "Editar listaxe de Persoas"
msgid "Edit who can reply"
msgstr "Editar quen pode responder"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Editar tu nombre para mostrar "
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Edita tu descripcion de perfil"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Edita o teu paquete de inicio"
@@ -2560,16 +2839,15 @@ msgstr "Educación"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "O creador desta lista bloqueoute ou ti bloqueaches o creador."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "Enderezo electrónico"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "Correo 2FA deshabilitado"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
@@ -2583,19 +2861,16 @@ msgstr "Enderezo de correo electrónico"
msgid "Email Resent"
msgstr "Correo electrónico reenviado"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "Correo electrónico actualizado"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
msgstr ""
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
@@ -2608,8 +2883,8 @@ msgstr "Insertar código HTML"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Insertar chío"
@@ -2617,12 +2892,13 @@ msgstr "Insertar chío"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Incrusta este chío no teu sitio web. Simplemente copia o seguinte fragmento e pégao no código HTML do teu sitio web."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "Reprodutor de vídeo incrustado"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Habilitar"
@@ -2630,13 +2906,13 @@ msgstr "Habilitar"
msgid "Enable {0} only"
msgstr "Activar {0} unicamente"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Activar contido para persoas adultas"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr "Habilitar o 2FA do correo"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2660,30 +2936,30 @@ msgstr "Activar lexendas"
msgid "Enable this source only"
msgstr "Habilitar só esta fonte"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "Habilitar temas de tendencia"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr "Habilitar os vídeos en tendencia na túa canle \"Descubrir\""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr "Habilitar os vídeos en tendencia na túa canle \"Descubrir\"."
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Activado"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Fin das canles"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Asegúrate de ter seleccionado un idioma para cada ficheiro das lexendas."
@@ -2696,14 +2972,15 @@ msgstr "Ingresa un contrasinal"
msgid "Enter a word or tag"
msgstr "Ingresa unha palabra ou etiqueta"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
msgid "Enter Code"
msgstr "Ingresa Código"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Ingresa Código de Confirmación"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
msgstr "Poñer a pantalla completa"
@@ -2712,7 +2989,7 @@ msgstr "Poñer a pantalla completa"
msgid "Enter the code you received to change your password."
msgstr "Ingresa o código que recibiches para cambiar o teu contrasinal."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Introduce o dominio que queres empregar"
@@ -2720,20 +2997,20 @@ msgstr "Introduce o dominio que queres empregar"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Introduce o correo electrónico que utilizaches para crear a túa conta. Enviarémosche un \"código de restablecemento\" para que poidas establecer un novo contrasinal."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Ingresa a túa data de nacemento"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Introduce o enderezo de correo electrónico"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Ingresa o teu novo correo arriba"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Introduce o teu novo enderezo de correo electrónico a continuación."
@@ -2749,7 +3026,11 @@ msgstr "Introduce o teu alcume e contrasinal"
msgid "Enters full screen"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Erro"
@@ -2758,15 +3039,18 @@ msgstr "Erro"
msgid "Error occurred while saving file"
msgstr "Ocorreu un erro ao gardar o ficheiro"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "Error ao recibir a resposta do captcha."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Erro:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Todos"
@@ -2818,30 +3102,22 @@ msgstr "Saír do proceso de recorte de imaxe"
msgid "Exits image view"
msgstr "Saír da vista de imaxe"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Saír da entrada da consulta de búsqueda"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Expandir o texto alt"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Expandir listaxe de persoas"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "Expandir ou minimizar o chío completo ao que estás respondendo"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr ""
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "Esperábase que a URI se resolvera nun rexistro"
@@ -2864,6 +3140,10 @@ msgstr "Expira {0}"
msgid "Expires in {0}"
msgstr ""
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "Medios explícitos ou potencialmente perturbadores."
msgid "Explicit sexual images."
msgstr "Imaxes sexuais explícitas."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Exportar os meus datos"
@@ -2882,8 +3169,8 @@ msgstr "Exportar os meus datos"
msgid "Export My Data"
msgstr "Exportar Os Meus Datos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "Medios externos"
@@ -2897,17 +3184,22 @@ msgstr "Medios externos"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "É posíbel que medios externos permitan que outros sitios recopilen datos sobre ti e o teu dispositivo. Non se envía ou solicita ningún tipo de información ata que presiones o botón de \"play\"."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Medios externos"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "Erro ao mudar o nome de usuario. Téntao de novo."
@@ -2915,7 +3207,7 @@ msgstr "Erro ao mudar o nome de usuario. Téntao de novo."
msgid "Failed to create app password. Please try again."
msgstr ""
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr ""
@@ -2924,35 +3216,37 @@ msgstr ""
msgid "Failed to create starter pack"
msgstr "Error ao crear o paquete de inicio."
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "Error ao crear a listaxe. Verifica a túa conexión a Internet e volve a probar."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Error ao eliminar a mensaxe."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "Error ao eliminar o chío, por favor, inténtao de novo."
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "Error ao eliminar o paquete inicial."
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "Error ao cargar as preferencias das canles."
@@ -2964,17 +3258,19 @@ msgstr "Error ao cargar os GIFs."
msgid "Failed to load past messages"
msgstr "Error ao cargar as mensaxes anteriores."
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "Error ao cargar as canles suxeridas."
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "Error ao cargar as suxerencias de seguimento."
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr ""
@@ -2982,7 +3278,16 @@ msgstr ""
msgid "Failed to pin post"
msgstr "Error ao fixar o chío."
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr ""
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Error ao gardar a imaxe: {0}"
@@ -2994,20 +3299,39 @@ msgstr "Error ao gardar as preferencias de notificación, por favor, inténtao d
msgid "Failed to save settings. Please try again."
msgstr ""
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "Error ao enviar"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Error ao enviar a apelación, por favor, inténtao de novo."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "Error ao cambiar o estado de silencio do fío, por favor, inténtao de novo."
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr ""
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "Error ao actualizar as canles"
@@ -3022,20 +3346,24 @@ msgstr "Error ao actualizar os axustes"
msgid "Failed to upload video"
msgstr "Error ao subir video"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "Erro ao verificar nome de usuario. Téntao de novo."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Canles"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Canle por {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "Menú de canles"
@@ -3043,26 +3371,26 @@ msgstr "Menú de canles"
msgid "Feed toggle"
msgstr "Alternar canle"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Comentarios"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "Comentario enviado!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Canles"
@@ -3070,13 +3398,13 @@ msgstr "Canles"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "As canles son algoritmos personalizados que as persoas constrúen cun poco de experiencia en codificación. <0/> para máis información."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "Canles actualizadas!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "Cremos que estas canles poden gustarche."
@@ -3092,11 +3420,11 @@ msgstr "Ficheiro gardado exitosamente!"
msgid "Filter from feeds"
msgstr "Filtro de canles"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr ""
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr ""
@@ -3110,13 +3438,13 @@ msgstr "Finalizando"
msgid "Find accounts to follow"
msgstr "Procurar contas para seguir"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "Procurar contas a seguir"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
@@ -3148,11 +3476,11 @@ msgid "Flexible"
msgstr "Flexíbel"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Seguir"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Seguir"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Seguir a {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Seguir a {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr ""
msgid "Follow 7 accounts"
msgstr "Sigue 7 contas"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "Seguir esta conta"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Seguir a todos"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Seguir tamén"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Seguir tamén"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "Sigue máis contas para conectarte cos teus intereses e ampliar a túa rede."
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "Seguido por <0>{0}0>"
@@ -3224,7 +3544,7 @@ msgstr "Seguido por <0>{0}0> e <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Seguido por <0>{0}0>, <1>{1}1>, e {2, plural, one {# other} other {# others}}"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Seguidores de @{0} que coñeces"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Seguidores que coñeces"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Seguindo"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "Seguindo {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr "Seguindo a {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Seguindo {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Preferencias das canles de Seguimento"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Preferencias das canles de Seguimento"
@@ -3301,6 +3617,10 @@ msgstr ""
msgid "For the best experience, we recommend using the theme font."
msgstr "Para unha mellor experiencia, recomendamos que uses a fonte do tema."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Para sempte"
@@ -3327,7 +3647,7 @@ msgstr "Publicacións frecuentes de contido non desexado"
msgid "From @{sanitizedAuthor}"
msgstr "De @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "De <0/>"
@@ -3336,28 +3656,30 @@ msgstr "De <0/>"
msgid "Gallery"
msgstr "Galería"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Xera un paquete de inicio"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Obtén axuda"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "Comezar"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr ""
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Comezando"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Dálle ao teu perfil unha cara bonita"
@@ -3366,17 +3688,17 @@ msgstr "Dálle ao teu perfil unha cara bonita"
msgid "Glaring violations of law or terms of service"
msgstr "Violacións flagrantes da Lei ou dos Termos de servizo"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Volver"
@@ -3384,10 +3706,10 @@ msgstr "Volver"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Volver"
@@ -3408,7 +3730,27 @@ msgstr "Ir ao inicio"
msgid "Go Home"
msgstr "Ir ao inicio"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Ir á conversa con {0}"
@@ -3427,8 +3769,8 @@ msgstr "Ir ao perfil da conta"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Contido Gráfico"
@@ -3437,21 +3779,21 @@ msgstr "Contido Gráfico"
msgid "Half way there!"
msgstr "Xa está na metade do camiño!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Alcume"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "O alcume xa está collido. Por favor, insire outro diferente."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "Alcume cambiado!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "O alcume é longo de máis. Por favor, insire un máis curto."
@@ -3464,7 +3806,7 @@ msgstr "Vibración"
msgid "Harassment, trolling, or intolerance"
msgstr "Acoso, trolling ou intolerancia"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Cancelo"
@@ -3472,19 +3814,24 @@ msgstr "Cancelo"
msgid "Hashtag {tag}"
msgstr "Cancelo {tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "Tes problemas?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Axuda"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Axuda a que as persoas saiban que non es un bot subindo unha foto ou creando un avatar."
@@ -3497,7 +3844,7 @@ msgstr ""
msgid "Hidden"
msgstr "Oculto"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr "Oculto debido aos teus axustes de moderación."
@@ -3509,18 +3856,17 @@ msgstr "Listaxe oculta"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Ocultar"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Ocultar"
@@ -3529,38 +3875,40 @@ msgstr "Ocultar"
msgid "Hide customization options"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Ocultar o chío para min"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Ocultar rechouchío para todo o mundo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Ocultar rechouchío para min"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "Ocultar este chío?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "Ocultar este rechouchío?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Ocultar temas de tendencia"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "Ocultar os temas de tendencia?"
@@ -3569,10 +3917,15 @@ msgstr "Ocultar os temas de tendencia?"
msgid "Hide trending videos?"
msgstr "Ocultar os vídeos en tendencia?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Ocultar listaxe de persoas"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "O servidor das canles respondeu de forma incorrecta. Por favor, informa
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Temos problemas para encontrar esta canle. Pode ser que a borrasen."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Vaites! Parece que temos problemas para cargar estes datos. Consulta máis detalles a continuación. Se o problema persiste, ponte en contacto connosco."
@@ -3610,15 +3963,15 @@ msgstr "Vaites! Non puidemos cargar ese servizo de moderación."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Espera! Estamos dando acceso a vídeos gradualmente e aínda estás na listaxe de espera. Volve a consultar máis adiante."
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Inicio"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "Aloxamento:"
@@ -3627,34 +3980,33 @@ msgstr "Aloxamento:"
msgid "Hosting provider"
msgstr "Proveedor de aloxamento"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr ""
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "Primeiro as respostas máis activas"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "Como deberíamos abrir esta ligazón?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Teño un código"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Teño un Código"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Teño un código de confirmación"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Teño o meu propio dominio"
@@ -3667,22 +4019,30 @@ msgstr "Enténdoo"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Se o texto alternativo é longo, alterna o estado expandido do texto alternativo. "
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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 aínda non es maior de idade segundo as leis do teu país, o teu pai, a túa nai ou o teu titor legal debe ler estes Termos no teu nome."
-#: src/view/screens/ProfileList.tsx:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "Se eliminas esta listaxe, non poderás recuperala."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Se tes o teu propio dominio, podes empregalo como nome de usuario. Isto permíteche auto-verificar a túa identidade. <0>Máis información aquí.0>"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Se eliminas este chío, non poderás recuperalo."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr ""
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Se desexas cambiar o teu contrasinal, enviarémosche un código para verificar que esta é a túa conta."
@@ -3704,9 +4064,22 @@ msgstr "Ilegal e Urxente"
msgid "Image"
msgstr "Imaxe"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "Imaxe gardada no teu carrete de fotos!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr ""
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr ""
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr ""
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "Mensaxes inapropiadas ou ligazóns explícitas"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr ""
@@ -3752,15 +4125,11 @@ msgstr "Introduce o contrasinal para eliminar a conta"
msgid "Input the code which has been emailed to you"
msgstr "Introduce o código que se che enviou por correo electrónico"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "Introduce o alcume ou o enderezo de correo electrónico que usaches ao rexistrarte"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Interacción limitada"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr "Axustes de interacción"
@@ -3769,11 +4138,11 @@ msgstr "Axustes de interacción"
msgid "Invalid 2FA confirmation code."
msgstr "O código de confirmación 2FA non é válido."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Alcume non válido. Por favor, insire un diferente."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "Rexistro de chío inválido ou non compatíbel"
@@ -3789,11 +4158,11 @@ msgstr "O Código de Verificación incorrecto"
msgid "Invite a Friend"
msgstr "Convida a unha amizade"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Código de convite"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Non se acepta o código de convite. Comproba que o introduciches correctamente e inténtao de novo."
@@ -3805,7 +4174,7 @@ msgstr "Códigos de convite: {0} dispoñíbeis"
msgid "Invite codes: 1 available"
msgstr "Códigos de convite: 1 disponíbel"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "Convida a persoas a este paquete inicial!"
@@ -3817,7 +4186,7 @@ msgstr "Convida ás túas amizades a seguir as túas canles e persoas favoritas"
msgid "Invites, but personal"
msgstr "Convites, mais personais"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "É correcto"
@@ -3825,19 +4194,19 @@ msgstr "É correcto"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Por agora só estás ti! Engade máis persoas ao teu paquete inicial buscando arriba."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "Tarefa ID: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Tarefas"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Únete a Bluesky"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "Etiquetado pola persoa autora."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Etiquetas"
@@ -3868,7 +4237,7 @@ msgstr "Etiquetas"
msgid "Labels added"
msgstr "Etiquetas engadidas"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "As etiquetas son anotacións sobre persoas e contido. Poden usarse para ocultar, advertir e categorizar a rede."
@@ -3884,13 +4253,13 @@ msgstr "Etiquetas no teu contido"
msgid "Language selection"
msgstr "Escoller idioma"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Axustes de Idiomas"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Idiomas"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Máis grande"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "Último"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "saber máis"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Aprender máis"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Aprender máis de Bluesky"
@@ -3933,6 +4311,11 @@ msgstr "Obtén máis información sobre a moderación aplicada a este contido."
msgid "Learn more about this warning"
msgstr "Aprender máis sobre esta advertencia"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr ""
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "Saír de Bluesky"
msgid "left to go."
msgstr "queda por ir."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Déixame escoller"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Claro"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -4013,17 +4397,16 @@ msgstr "Dálle «gústame» a 10 chíos"
msgid "Like 10 posts to train the Discover feed"
msgstr "Dálle «gústame» a 10 publicacións para entrenar as canles de Descubrimento."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Dar «gústame» a esta canle"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr ""
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Gustoulle a"
@@ -4033,40 +4416,40 @@ msgstr "Gustoulle a"
msgid "Liked By"
msgstr "Gustoulle a"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "Gústame"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "Gústame en este chío"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "Lineal"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Listaxe"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Avatar da listaxe"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
msgstr ""
@@ -4084,7 +4467,7 @@ msgstr ""
msgid "List by you"
msgstr ""
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
msgstr ""
@@ -4093,35 +4476,35 @@ msgstr ""
msgid "List has been hidden"
msgstr "Ocultouse a listaxe"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "Listaxe oculta"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "Listaxe silenciada"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Nome da listaxe"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "Listaxe desbloqueada"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "A listaxe xa non está silenciada"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Listaxes"
@@ -4129,34 +4512,47 @@ msgstr "Listaxes"
msgid "Lists blocking this user:"
msgstr "Listaxes que bloquean a esta persoa:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr ""
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr ""
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Cargar máis"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "Cargar máis canles suxeridas"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Cargar máis seguidos suxeridos"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Cargar notificacións novas"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Cargar novos chíos"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Cargando..."
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Rexistro"
@@ -4164,12 +4560,12 @@ msgstr "Rexistro"
msgid "Logged-out visibility"
msgstr "Visibilidade de desconexión"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo por @sawaratsuki.bsky.social"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo por <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "Parece que desfixaches todas as túas canles. Mais non te preocupes, pod
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Parece que che falta unha canle de seguimento. <0>Preme aquí para agregar unha0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "Fai un para min"
@@ -4201,18 +4601,22 @@ msgstr "Fai un para min"
msgid "Make sure this is where you intend to go!"
msgstr "Asegúrate de que este é o lugar onde queres ir!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr ""
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Xestiona as túas palabras e etiquetas silenciadas"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr ""
@@ -4221,16 +4625,23 @@ msgstr ""
msgid "Mark as read"
msgstr "Marcar como lido"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr ""
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Multimedia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Medios que poden resultar perturbadores ou inapropiados para algunhas audiencias."
@@ -4246,23 +4657,27 @@ msgstr "Persoas mencionadas"
msgid "Mentions"
msgstr "Mencións"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Menú"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Mensaxe {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Mensaxe eliminada"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Mensaxe eliminada"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr ""
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Mensaxe do servidor: {0}"
@@ -4276,7 +4691,11 @@ msgstr "Campo de entrada da mensaxe"
msgid "Message is too long"
msgstr "A mensaxe é demasiado longa"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr ""
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Mensaxes"
@@ -4295,10 +4714,10 @@ msgstr "Conta enganosa"
msgid "Misleading Post"
msgstr "Chío enganoso"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Moderación"
@@ -4320,22 +4739,22 @@ msgstr "Listaxe de moderación feita por <0/>"
msgid "Moderation list by you"
msgstr "Listaxe de moderación feita por ti"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "Listaxe de moderación creada"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "Listaxe de moderación actualizada"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Listaxes de moderación"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Listaxes de Moderación"
@@ -4343,11 +4762,11 @@ msgstr "Listaxes de Moderación"
msgid "moderation settings"
msgstr "axustes de moderación"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "Estados de moderación"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Ferramentas de moderación"
@@ -4356,7 +4775,7 @@ msgstr "Ferramentas de moderación"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "A persoas moderadora decidiu establecer unha advertencia xeral sobre o contido. "
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Máis"
@@ -4365,9 +4784,9 @@ msgstr "Máis"
msgid "More feeds"
msgstr "Máis canles"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Máis opcións"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr ""
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Primeiro as respostas con máis gústame"
@@ -4400,14 +4819,14 @@ msgstr "Silenciar"
msgid "Mute {tag}"
msgstr "Silenciar {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "Silenciar conta"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Silenciar contas"
@@ -4420,11 +4839,11 @@ msgstr "Silenciar conversa"
msgid "Mute in:"
msgstr "Silenciar en:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Silenciar a listaxe"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "Silenciar estas contas?"
@@ -4452,26 +4871,26 @@ msgstr "Silenciar esta palabra só nas etiquetas"
msgid "Mute this word until you unmute it"
msgstr "Silenciar esta palabra ata que a actives"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Silenciar fío"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Silenciar palabras e etiquetas"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Contas silenciadas"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Contas Silenciadas"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "As publicacións das contas silenciadas elimínanse das túas canles e das túas notificacións. As contas silenciadas son completamente privadas."
@@ -4479,11 +4898,11 @@ msgstr "As publicacións das contas silenciadas elimínanse das túas canles e d
msgid "Muted by \"{0}\""
msgstr "Silenciado por \"{0}\""
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Palabras e etiquetas silenciadas"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Ninguén pode ver a quen silencias. As contas silenciadas poden interactuar contigo, máis non verás os seus chíos nin recibirás notificacións deles."
@@ -4492,15 +4911,15 @@ msgstr "Ninguén pode ver a quen silencias. As contas silenciadas poden interact
msgid "My Birthday"
msgstr "O meu aniversario"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "As miñas canles"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Nome"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "Nome requerido"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Natureza"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "Navegar a {0}"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "Navega á seguinte pantalla"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Navega ao teu perfil"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "Necesitas cambialo?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "Necesitas reportar unha violación de copyright?"
@@ -4547,30 +4971,43 @@ msgstr "Necesitas reportar unha violación de copyright?"
msgid "Never lose access to your followers or data."
msgstr "Nunca perdas o acceso aos teus seguidores nin ao teus datos."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "Non importa, crea un alcume para min"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Novo"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Novo"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "Novo chat"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "Novo alcume"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr ""
@@ -4578,7 +5015,7 @@ msgstr ""
msgid "New messages"
msgstr "Novas mensaxes"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Nova listaxe de moderación"
@@ -4590,12 +5027,12 @@ msgstr "Novo contrasinal"
msgid "New Password"
msgstr "Novo Contrasinal"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Novo chío"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "Novo chío"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Novo Chío"
@@ -4613,19 +5050,20 @@ msgstr "Novo Chío"
msgid "New user info dialog"
msgstr "Nova xanela de información desta persoa"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Nova listaxe de persoas"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "Primeiro as respostas máis recentes"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Noticias"
@@ -4655,11 +5093,15 @@ msgstr "Nova imaxe"
msgid "No app passwords yet"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "Sen panel de DNS"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "Non se atoparon GIF destacados. Pode haber un problema con Tenor."
@@ -4668,21 +5110,25 @@ msgstr "Non se atoparon GIF destacados. Pode haber un problema con Tenor."
msgid "No feeds found. Try searching for something else."
msgstr "Non se encontraron canles. Intenta buscar algo máis."
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr ""
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "Aínda sen gústames"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "Xa non segues a {0}"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr "Non maior de {MAX_SERVICE_HANDLE_LENGTH} caracteres"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "Aínda non hai mensaxes"
@@ -4711,31 +5157,38 @@ msgstr "Aínda non hai citas."
msgid "No reposts yet"
msgstr "Aínda non hai rechouchíos"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Sen resultado"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "Sen resultados"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr ""
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "Non se encontraron resultados"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "Non se encontraron resultados para \"{query}\""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "Non se encontraron resultados para {query}"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "Non se encontraron resultados de búsqueda para \"{search}\"."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Ninguén"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "A ninguén lle gustou isto. Ao mellor deberías darlle unha oportunidade!"
@@ -4775,19 +5227,15 @@ msgstr "Nudez non sexual"
msgid "Not followed by anyone you're following"
msgstr ""
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "Non se encontrou"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "Non neste momento"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Nota sobre compartir"
@@ -4795,7 +5243,7 @@ msgstr "Nota sobre compartir"
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 é unha rede aberta e pública. Esta configuración só limita a visibilidade do teu contido na aplicación e no sitio web de Bluesky, e é posíbel que outras aplicacións non respecten esta configuración. O teu contido aínda se pode mostrar ás persoas que pecharon sesión por outras aplicacións e sitios web."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Non hai nada aquí"
@@ -4803,7 +5251,7 @@ msgstr "Non hai nada aquí"
msgid "Notification filters"
msgstr "Filtros de notificacións"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Axustes de notificacións"
@@ -4820,11 +5268,11 @@ msgstr "Sons de notificacións"
msgid "Notification Sounds"
msgstr "Sons de Notificacións"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Notificacións"
@@ -4832,12 +5280,12 @@ msgstr "Notificacións"
msgid "now"
msgstr "agora"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Agora"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Nudez"
@@ -4859,21 +5307,23 @@ msgstr "Ai, non!"
msgid "Oh no! Something went wrong."
msgstr "Vaites! Algo non furrula ben."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "Ben"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "Está ben"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "Primeiro as respostas máis antigas"
@@ -4881,19 +5331,19 @@ msgstr "Primeiro as respostas máis antigas"
msgid "on<0><1/><2><3/>2>0>"
msgstr "en<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Restablecemento da incorporación"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "Falta o texto alternativo nunha ou máis imaxes."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "Falta o texto alternativo nun ou máis vídeos."
@@ -4905,11 +5355,11 @@ msgstr "Só se admiten ficheiros .jpg e .png"
msgid "Only {0} can reply."
msgstr "Só {0} pode responder."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Só contén letras, números e guións"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "Só se admiten ficheiros de imaxe"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "Vaites, algo non furrula ben!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "Vaites!"
@@ -4935,67 +5385,80 @@ msgstr "Vaites!"
msgid "Open"
msgstr "Aberto"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "Abre o menú de acceso directo do perfil {name}"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Abrir o creador de avatares"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "Abrir as opcións de conversa"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "Abrir menú lateral"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Abrir o selector de emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "Abrir pantalla de información da canle"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "Abre o menú de opcións das canles"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr ""
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "Abrir ligazón a {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "Abrir opcións de mensaxe"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "Abrir a páxina da depuración de moderación"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Abrir os axustes de palabras e etiquetas silenciadas"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "Abrir menú de opciones do chío"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "Abrir menú do paquete de inicio"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Abrir pagina de histórico"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Abrir registro do sistema."
@@ -5015,19 +5478,19 @@ msgstr "Abre unha xanela para elegir quién puede responder a este hilo."
msgid "Opens additional details for a debug entry"
msgstr "Abre detalles adicionales para una entrada de depuración."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Abrir cámara do dispositivo"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr "Abre o diálogo de troco do alcume"
@@ -5039,7 +5502,7 @@ msgstr "Abrir compositor"
msgid "Opens device photo gallery"
msgstr "Abrir galería de fotos do dispositivo"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr "Abre o selector de emojis"
@@ -5057,7 +5520,7 @@ msgstr "Abrir o fluxo para iniciar sesión na túa conta Bluesky existente"
msgid "Opens GIF select dialog"
msgstr "Abrir a xanela de selección de GIF"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr ""
@@ -5065,6 +5528,10 @@ msgstr ""
msgid "Opens list of invite codes"
msgstr "Abrir a listaxe de códigos de convite"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Abrir o formulario de restablecemento do contrasinal"
@@ -5073,12 +5540,12 @@ msgstr "Abrir o formulario de restablecemento do contrasinal"
msgid "Opens the linked website"
msgstr "Abrir o sitio web ligado"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Abrir este perfil"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Abrir o selector de vídeos"
@@ -5121,11 +5588,11 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Outro"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Outra conta"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Non se atopou a páxina"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "Pausar"
msgid "Pause video"
msgstr "Pausar vídeo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "Persoas"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "Persoas seguidas por @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "Persoas siguindo a @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "Requírese permiso para acceder ao carrete da cámara."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "O permiso para acceder ao carrete da cámara foi denegado. Por favor, actívao na configuración do teu sistema."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr ""
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "Mascotas"
msgid "Photography"
msgstr "Fotografía"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Imaxes pensadas para persoas adultas."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr "Fixar"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "Fixar canle"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr "Fixar os vídeos en tendencia á túa páxina de inicio para un acceso máis doado"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr ""
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Fixar no inicio"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Fixar no Inicio"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Fixar no teu perfil"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Fixado"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "{0} fixouse á páxina de inicio"
@@ -5263,7 +5722,7 @@ msgstr "{0} fixouse á páxina de inicio"
msgid "Pinned Feeds"
msgstr "Canles fixadas"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "As túas canles fixadas"
@@ -5302,24 +5761,28 @@ msgstr "Reproducir GIF"
msgid "Plays the video"
msgstr "Reproduce o vídeo"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr ""
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Por favor, escolle o teu alcume."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Por favor, escolle o teu contrasinal."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr ""
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Por favor, completa a verificación CAPTCHA"
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Confirma o teu correo electrónico antes de cambialo. Este é un requisito temporal mentres se engaden ferramentas de actualización de correo electrónico e en breve eliminarase."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr ""
@@ -5335,19 +5798,41 @@ msgstr "Por favor, insire un contrasinal. Este debe ter polo menos 8 caracteres.
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Por favor, insire un nome único para este contrasinal de aplicación ou usa un xerado ao chou por nós."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Introduce unha palabra, etiqueta ou frase válida para silenciar"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr ""
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Introduce o teu correo electrónico."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Introduce o teu código de convite."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr "Por favor, insire o teu contrasinal"
@@ -5381,24 +5866,25 @@ msgstr ""
msgid "Please sign in as @{0}"
msgstr "Inicia sesión como @{0}"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Verifica o teu enderezo electrónico"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Política"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr "Vídeos populares na túa rede."
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Pornografía"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Chiar"
@@ -5408,32 +5894,32 @@ msgctxt "description"
msgid "Post"
msgstr "Chiar"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Publicar todo"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "Chío de {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "Chío de @{0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "Chío eliminado"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Produciuse un erro ao cargar o chío. Comproba a túa conexión a Internet e téntao de novo."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr "A publicación foi eliminada"
@@ -5455,7 +5941,7 @@ msgstr "Chío ocultado por ti"
msgid "Post interaction settings"
msgstr "Axustes de interacción do chío"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr "Axustes de interacción da publicación"
@@ -5476,15 +5962,16 @@ msgstr "Non se encontrou o chío"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "Chío fixado"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "Chío desfixado"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Chíos"
@@ -5503,7 +5990,7 @@ msgstr "Ligazón potencialmente enganosa"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "Preferencias gardadas"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -5524,7 +6011,7 @@ msgstr "Preme para ver as persoas desta conta que tamén segues"
msgid "Previous image"
msgstr "Imaxe previa"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Idioma primario"
@@ -5537,31 +6024,31 @@ msgstr "Priorizar aos que segues"
msgid "Priority notifications"
msgstr "Notificacións prioritarias"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Privacidade"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "Privacidade e seguranza"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Privacidade e Seguranza"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Política de privacidade"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Procesando vídeo..."
@@ -5570,23 +6057,23 @@ msgstr "Procesando vídeo..."
msgid "Processing..."
msgstr "Procesando..."
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Perfil"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "Perfil actualizado"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
@@ -5600,6 +6087,26 @@ msgstr ""
msgid "Public, sharable lists which can be used to drive feeds."
msgstr ""
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr ""
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr ""
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr ""
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr ""
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "O código QR copiouse no portapapeis!"
@@ -5612,25 +6119,25 @@ msgstr "O código QR foi descargado!"
msgid "QR code saved to your camera roll!"
msgstr "O código QR gardouse no carrete da cámara."
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Citar un chío"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "O chío citado foi anexado de novo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "O chío citado separouse correctamente"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "Citas deshabilitadas"
@@ -5642,39 +6149,48 @@ msgstr "Configuración de citas"
msgid "Quotes"
msgstr "Citas"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "Citas deste chío"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Aleatorio (aka \"Poster's Roulette\")"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "Volver a anexar cita"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr ""
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Reactiva a túa conta"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr "Ler menos"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr "Ler máis"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Le o blog de Bluesky"
@@ -5697,11 +6213,11 @@ msgstr "Razón para apelar"
msgid "Reason:"
msgstr "Razón:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Busquedas Recentes"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "Recomendados"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "Reconectar"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Recargar as conversas"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Eliminar"
msgid "Remove {displayName} from starter pack"
msgstr "Eliminar a {displayName} do paquete inicial"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr ""
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Eliminar a conta"
@@ -5752,13 +6268,13 @@ msgstr "Eliminar a conta"
msgid "Remove attachment"
msgstr "Eliminar anexo"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Eliminar Avatar"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "Eliminar Banner"
@@ -5776,24 +6292,25 @@ msgstr "Eliminar canle"
msgid "Remove feed?"
msgstr "Eliminar canle?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Eliminar das miñas canles"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "Eliminar o acceso rápido?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "Eliminar das canles gardadas"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr "Eliminar das túas canles?"
@@ -5802,11 +6319,16 @@ msgstr "Eliminar das túas canles?"
msgid "Remove image"
msgstr "Eliminar a imaxe"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Elimina a palabra silenciada da túa listaxe"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Eliminar perfil"
@@ -5814,12 +6336,12 @@ msgstr "Eliminar perfil"
msgid "Remove quote"
msgstr "Eliminar cita"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Eliminar rechouchío"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Eliminar o ficheiro de lexendas"
@@ -5827,6 +6349,21 @@ msgstr "Eliminar o ficheiro de lexendas"
msgid "Remove this feed from your saved feeds"
msgstr "Eliminar esta canle das túas canles gardadas"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr ""
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "Eliminado pola persoa autora"
@@ -5835,7 +6372,7 @@ msgstr "Eliminado pola persoa autora"
msgid "Removed by you"
msgstr "Eliminado por ti"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Eliminado da listaxe"
@@ -5845,19 +6382,18 @@ msgid "Removed from my feeds"
msgstr "Eliminado das miñas canles"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Eliminado das miñas canles gardadas"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Eliminado das miñas canles"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr "Elimina o perfil do historial de procuras"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr ""
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
@@ -5868,7 +6404,7 @@ msgstr "Eliminar o chío citado"
msgid "Replace with Discover"
msgstr "Substitúeo por Discover"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Respostas"
@@ -5880,12 +6416,13 @@ msgstr "Respostas deshabilitadas"
msgid "Replies to this post are disabled."
msgstr "As respostas a este chío están desactivadas."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Responder"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -5907,86 +6444,86 @@ msgstr "Axustes de resposta"
msgid "Reply settings are chosen by the author of the thread"
msgstr "A configuración de resposta é elixida pola persoa autora do fío"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "Orde das respostas"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Responder a <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Responder a un chío bloqueado"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "Responder a un chío"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Responderche"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "Visibilidade da resposta actualizada"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "A resposta ocultouse correctamente."
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Denunciar"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "Denunciar conta"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Denunciar conversación"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "Xanela da denuncia"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Denunciar canle"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
-msgstr "Denunciar listaxe"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Denunciar mensaxe"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Denunciar chío"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "Denunciar paquete de inicio"
@@ -6030,25 +6567,26 @@ msgstr "Denunciar este paquete de inicio"
msgid "Report this user"
msgstr "Denunciar esta persoa"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Rechouchiar"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Rechouchiar"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Rechouchiar ou citar chío"
@@ -6056,27 +6594,27 @@ msgstr "Rechouchiar ou citar chío"
msgid "Reposted By"
msgstr "Rechouchiado por"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "Rechouchiado por {0}"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "Rechouchiado por <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "Rechouchiado por ti"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "Rechouchíos deste chío"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "Solicitar cambio"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr ""
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6088,11 +6626,11 @@ msgstr "Solicitar código"
msgid "Require alt text before posting"
msgstr "Require texto alternativo antes de publicar"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr "Obrigatorio un código de correo para identificarte na túa conta."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Obrigatorio para este provedor"
@@ -6100,13 +6638,19 @@ msgstr "Obrigatorio para este provedor"
msgid "Required in your region"
msgstr "Obrigatorio na túa rexión"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "Reenviar correo"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "Reenviar correo"
@@ -6123,8 +6667,8 @@ msgstr "Código de restablecimento"
msgid "Reset Code"
msgstr "Código de restablecimento"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "Restablecer o estado de incorporación"
@@ -6141,16 +6685,16 @@ msgstr ""
msgid "Retries the last action, which errored out"
msgstr "Tenta de novo a última acción, que errou"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "Tenta de novo a última acción, que errou"
msgid "Retry"
msgstr "Reintentar"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr ""
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Volver á páxina anterior"
@@ -6175,11 +6719,11 @@ msgstr "Volver á páxina anterior"
msgid "Returns to home page"
msgstr "Volve á páxina de inicio"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "Volve á páxina anterior"
@@ -6190,24 +6734,26 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Gardar"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Gardar"
@@ -6221,12 +6767,12 @@ msgstr "Gardar aniversario"
msgid "Save changes"
msgstr "Gardar cambios"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Guardar cambios"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Gardar imaxe"
@@ -6234,16 +6780,16 @@ msgstr "Gardar imaxe"
msgid "Save image crop"
msgstr "Gardar recorte de imaxe"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Gardar novo alcume"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "Gardar código QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Gardar nas miñas canles"
@@ -6251,16 +6797,12 @@ msgstr "Gardar nas miñas canles"
msgid "Saved Feeds"
msgstr "Canles guardadas"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "Gardado na galería da cámara"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "Guardado nas túas canles"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "Guarda os cambios en tu perfil"
@@ -6270,8 +6812,8 @@ msgstr "Guarda os axustes de recorte da imaxe"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "Di ola!"
@@ -6280,45 +6822,42 @@ msgstr "Di ola!"
msgid "Science"
msgstr "Ciencia"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "Desprázate cara arriba"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Buscar"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "Procurar por nome ou interese"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "Procurar canles"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr ""
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Buscar \"{query}\""
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "Buscar \"{searchText}\""
@@ -6326,29 +6865,33 @@ msgstr "Buscar \"{searchText}\""
msgid "Search for feeds that you want to suggest to others."
msgstr "Busca canles que queiras suxerir aos demais."
-#: src/view/screens/Search/Search.tsx:875
-msgid "Search for posts, users, or feeds"
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Buscar persoas"
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr ""
+
+#: src/screens/Search/Shell.tsx:334
+msgid "Search for posts, users, or feeds"
+msgstr ""
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "Buscar GIFs"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Buscar perfís"
@@ -6356,16 +6899,20 @@ msgstr "Buscar perfís"
msgid "Search Tenor"
msgstr "Buscar en Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Requírese un paso de seguridade"
@@ -6385,7 +6932,7 @@ msgstr ""
msgid "See #{tag} posts by user"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Ver empregos en Bluesky"
@@ -6405,6 +6952,10 @@ msgstr "Selecciona unha cor"
msgid "Select account"
msgstr "Seleccionar conta"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Selecciona un avatar"
@@ -6413,10 +6964,22 @@ msgstr "Selecciona un avatar"
msgid "Select an emoji"
msgstr "Selecciona un emoji"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr ""
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr ""
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Selecciona unha conta existente"
@@ -6433,15 +6996,15 @@ msgstr "Seleccionar GIF \"{0}\""
msgid "Select how long to mute this word for."
msgstr "Selecciona durante canto tempo queres silenciar esta palabra."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Seleccionar idioma..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Seleccionar idiomas"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr ""
@@ -6449,6 +7012,10 @@ msgstr ""
msgid "Select moderator"
msgstr "Seleccionar moderador"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "Seleccionar o emoji {emojiName} como o teu avatar"
msgid "Select the moderation service(s) to report to"
msgstr "Selecciona o(s) servizo(s) de moderación aos que queres informar"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Seleccionar vídeo"
@@ -6470,23 +7037,24 @@ msgstr "Seleccionar vídeo"
msgid "Select what content this mute word should apply to."
msgstr "Selecciona a que contido debería aplicarse esta palabra silenciada."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Elixe en que idiomas desexas que estean os chíos das túas canles. Se non seleccionas ningún, mostraranse en todos os idiomas."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Seleccione a túa data de nacemento"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "Seleccione os teus intereses entre as seguintes opcións"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "A que idioma queres traducir os chíos na túa canle."
@@ -6498,19 +7066,17 @@ msgstr ""
msgid "Send a neat website!"
msgstr "Envía un sitio web interesante!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr "Enviar confirmación"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Enviar correo de confirmación"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Enviar correo de confirmación"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Enviar correo"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Enviar correo"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Enviar comentarios"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Enviar mensaxe"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr ""
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Enviar chío a..."
@@ -6544,17 +7114,20 @@ msgstr "Enviar reporte"
msgid "Send report to {0}"
msgstr "Enviar reporte a {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Enviar correo de verificación"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Enviar vía mensaxe directa"
@@ -6570,7 +7143,7 @@ msgstr "Enderezo do servidor"
msgid "Set app icon to {0}"
msgstr "Definir a icona da aplicación a {0}"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "Establecer aniversario"
@@ -6586,19 +7159,19 @@ msgstr "Configura a túa conta"
msgid "Sets email for password reset"
msgstr "Establece o correo electrónico para restablecer o contrasinal"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Axustes"
#: src/screens/ModerationInteractionSettings/index.tsx:102
msgctxt "toast"
msgid "Settings saved"
-msgstr ""
+msgstr "Preferencias gardadas"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Actividade sexual ou nudez erótica."
@@ -6606,21 +7179,15 @@ msgstr "Actividade sexual ou nudez erótica."
msgid "Sexually Suggestive"
msgstr "Sexualmente suxestivo"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Compartir"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Compartir"
@@ -6633,15 +7200,19 @@ msgstr "Comparte unha historia xenial!"
msgid "Share a fun fact!"
msgstr "Comparte un dato curioso!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Compartir de todas as maneiras"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "Compartir ligazón"
@@ -6650,32 +7221,46 @@ msgstr "Compartir ligazón"
msgid "Share Link"
msgstr "Compartir Ligazón"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "Xanela para compartir ligazón"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Compartir código QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "Compartir esta canle"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "Compartir este paquete de inicio"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "Comparte este paquete de iniciación e axuda a xente a unirse á túa comunidade en Bluesky."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr ""
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "Comparte as túas canles favoritas!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "Probador de Preferencias Compartidas"
@@ -6685,7 +7270,7 @@ msgstr "Comparte o sitio web ligado"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Ver"
@@ -6696,8 +7281,8 @@ msgstr "Ver texto alternativo"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Ver de todas as maneiras"
@@ -6718,8 +7303,8 @@ msgstr ""
msgid "Show hidden replies"
msgstr "Mostrar respostas ocultas"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "Mostrar menos como este"
@@ -6727,14 +7312,14 @@ msgstr "Mostrar menos como este"
msgid "Show list anyway"
msgstr "Mostrar listaxe de todas as maneiras"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Ver máis"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Mostrar máis como este"
@@ -6752,7 +7337,7 @@ msgstr "Amosar citas"
msgid "Show replies"
msgstr "Amosar respostas"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "Amosar respostas como"
@@ -6764,8 +7349,8 @@ msgstr "Amosar respostas a xeito de fío"
msgid "Show replies by people you follow before all other replies"
msgstr "Ver respostas de xente que segues antes que outras respostas"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "Mostrar resposta para todo o mundo"
@@ -6787,11 +7372,11 @@ msgstr "Mostrar advertencia"
msgid "Show warning and filter from feeds"
msgstr "Mostrar advertencia e filtrar desde as canles"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr "Amosa información sobre cando foi creada esta publicación"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr ""
@@ -6809,8 +7394,8 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr ""
msgid "Sign in"
msgstr "Iniciar sesión"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Iniciar sesión como {0}"
@@ -6826,16 +7411,16 @@ msgstr "Iniciar sesión como {0}"
msgid "Sign in as..."
msgstr "Iniciar sesión como ..."
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr ""
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "Inicia sesión ou crea a túa conta para unirte á conversa!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "Iniciar sesión ou rexistrarse"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "Acceder a unha conta que non está na listaxe"
@@ -6843,15 +7428,15 @@ msgstr "Acceder a unha conta que non está na listaxe"
msgid "Sign in to Bluesky or create a new account"
msgstr "Inicia sesión en Bluesky ou crea unha nova conta"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Pechar sesión"
@@ -6859,8 +7444,8 @@ msgstr "Pechar sesión"
msgid "Sign Out"
msgstr "Pechar sesión"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "Pechar sesión?"
@@ -6874,11 +7459,6 @@ msgstr "É necesario iniciar sesión"
msgid "Signed in as @{0}"
msgstr "Sesión iniciada como @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "Rexístrate sen un paquete de inicio"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Contas similares"
@@ -6896,12 +7476,21 @@ msgstr "Saltar este flujo"
msgid "Smaller"
msgstr "Máis pequeno"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Programación"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "Algunha outra canle poderiache gustar"
@@ -6909,23 +7498,31 @@ msgstr "Algunha outra canle poderiache gustar"
msgid "Some people can reply"
msgstr "Algunhas persoas poden responder"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Algo saíu mal"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Produciuse un erro, téntao de novo"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Produciuse un erro, téntao de novo."
@@ -6934,16 +7531,16 @@ msgstr "Produciuse un erro, téntao de novo."
msgid "Something went wrong!"
msgstr "Algo saíu mal!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "Ocorreu un erro? Dínolo."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "Sentímolo! A túa sesión caducou. Inicia sesión de novo."
@@ -6978,34 +7575,39 @@ msgstr "Spam; mencións ou respostas excesivas"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Deportes"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Iniciar un novo chat"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "Comeza a engadir xente"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "Comeza a engadir xente!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Iniciar chat con {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Paquete de inicio"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "Paquete de inicio de {0}"
@@ -7013,38 +7615,39 @@ msgstr "Paquete de inicio de {0}"
msgid "Starter pack by <0/>"
msgstr "Paquete de inicio por <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "Paquete de inicio creado por ti"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "O paquete de inicio non é válido"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "Paquetes de inicio"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Os paquetes de inicio permítenche compartir facilmente as túas canles e persoas favoritas coas túas amizades."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Páxina de estado"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "Paso {0} de {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "O almacenamento borrado, cómpre reiniciar a aplicación agora."
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "Libro de contos"
@@ -7063,46 +7666,51 @@ msgstr "Enviar apelación"
msgid "Submit Appeal"
msgstr "Enviar Apelación"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Suscribirse"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "Suscríbete a @{0} para usar estas etiquetas:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "Suscribirse ao etiquetador"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "Suscribirse a este etiquetador"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "Suscribirse a esta listaxe"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "Éxito!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
-msgstr "Contas suxeridas"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
+msgstr ""
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Suxerido para ti"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Suxestivo"
@@ -7116,16 +7724,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Soporte"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Cambiar de conta"
@@ -7134,11 +7742,11 @@ msgstr "Cambiar de conta"
msgid "Switch Account"
msgstr "Cambiar a outra conta"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "Cambiar de contas"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr "Cambiar para {0}"
@@ -7149,9 +7757,9 @@ msgstr "Cambiar para {0}"
msgid "System"
msgstr "Sistema"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Rexistro do sistema"
@@ -7159,6 +7767,12 @@ msgstr "Rexistro do sistema"
msgid "Tags only"
msgstr "Só etiquetas"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Toca para descartar"
@@ -7184,7 +7798,7 @@ msgstr "Tecnoloxía"
msgid "Tell a joke!"
msgstr "Conta unha brincadeira!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "Fálanos un pouco de ti"
@@ -7192,17 +7806,17 @@ msgstr "Fálanos un pouco de ti"
msgid "Tell us a little more"
msgstr "Cóntanos un pouco máis"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Condicións"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Condicións de servizo"
@@ -7230,7 +7844,11 @@ msgstr "Campo de texto"
msgid "Text input field"
msgstr "Campo de entrada de texto"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "Grazas! Verificouse correctamente o teu correo electrónico."
@@ -7242,7 +7860,7 @@ msgstr "Grazas. O teu informe foi enviado."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Grazas, verificaches correctamente o teu enderezo de correo electrónico. Podes pechar esta xanela."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "Que contén o seguinte:"
@@ -7250,10 +7868,10 @@ msgstr "Que contén o seguinte:"
msgid "That handle is already taken."
msgstr "Ese alcume xa está en uso."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "Non se puido atopar ese paquete de inicio."
msgid "That's all, folks!"
msgstr "Iso é todo, parroquia!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr "Iso é todo!"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "A conta poderá interactuar contigo despois de desbloqueala."
@@ -7282,7 +7900,7 @@ msgstr "A aplicación reiniciarase"
msgid "The author of this thread has hidden this reply."
msgstr "A persoa autora deste fío ocultou esta resposta."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "A aplicación web de Bluesky"
@@ -7302,6 +7920,10 @@ msgstr "A canle de Descubrir"
msgid "The Discover feed now knows what you like"
msgstr "A canle Discover agora sabe o que che gusta"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "A experiencia é mellor na aplicación. Descarga Bluesky agora e retomarémolo onde o deixaches."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "A Política de Privacidade moveuse a <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "O vídeo seleccionado pesa máis de 50 MB."
+msgid "The selected video is larger than 100 MB."
+msgstr "O vídeo seleccionado pesa máis de 100 MB."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "Semella que o servidor está a experimentar problemas. Por favor, téntao de novo nun intre."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "O paquete de inicio que estás tentando ver non é válido. Podes eliminar este paquete de inicio no seu lugar."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr ""
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "Moveuse o formulario de soporte. Se necesitas axuda, por favor <0/> ou visita {HELP_DESK_URL} para poñerte en contacto connosco."
@@ -7367,15 +7994,15 @@ msgstr "Non hai límite de tempo para a desactivación da conta, regresa en calq
msgid "There was an issue connecting to Tenor."
msgstr "Houbo un problema ao conectarse a Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "Produciuse un problema ao contactar co servidor"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Houbo un problema ao contactar co servidor. Comproba a túa conexión a Internet e téntao de novo."
@@ -7388,11 +8015,12 @@ msgstr "Produciuse un problema ao contactar co teu servidor"
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Houbo un problema ao recuperar as notificacións. Toca aquí para tentalo de novo."
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Houbo un problema ao recuperar os chíos. Toca aquí para tentalo de novo."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Houbo un problema ao buscar a listaxe. Toca aquí para tentalo de novo."
@@ -7400,12 +8028,12 @@ msgstr "Houbo un problema ao buscar a listaxe. Toca aquí para tentalo de novo."
msgid "There was an issue fetching your app passwords"
msgstr ""
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Houbo un problema ao recuperar as túas listaxes. Toca aquí para tentalo de novo."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "Houbo un problema recollendo a túa información no servizo"
@@ -7418,26 +8046,26 @@ msgstr "Produciuse un problema ao eliminar esta canle. Comproba a túa conexión
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Houbo un problema ao enviar o teu informe. Comproba a túa conexión a internet."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "Houbo un problema ao actualizar as túas canles. Comproba a túa conexión a Internet e téntao de novo."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "Houbo un problema! {0}"
@@ -7445,10 +8073,10 @@ msgstr "Houbo un problema! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Houbo un problema. Comproba a túa conexión a Internet e téntao de novo."
@@ -7469,6 +8097,14 @@ msgstr "Estas opcións só se aplicarán ao seguinte fío."
msgid "This {screenDescription} has been flagged:"
msgstr "Esta {screenDescription} foi marcada:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "Esta conta solicitou que as persoas inicien sesión para ver o seu perfil."
@@ -7477,6 +8113,10 @@ msgstr "Esta conta solicitou que as persoas inicien sesión para ver o seu perfi
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 "Esta conta está bloqueada por unha ou máis das túas listaxes de moderación. Para desbloquear, visita as listaxes directamente e elimina esta persoa."
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Esta apelación enviarase a <0>{sourceName}0>."
@@ -7510,14 +8150,22 @@ msgstr "Este contido non está dispoñíbel porque unha das persoas implicadas b
msgid "This content is not viewable without a Bluesky account."
msgstr "Este contido non se pode ver sen unha conta Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Esta conversa é cunha conta eliminada ou desactivada. Preme para ver as opcións"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "Esta función está en versión beta. Podes ler máis sobre as exportacións de repositorios en <0>este blog0>."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr ""
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "Esta característica non está dispoñíbel empregando un contrasinal de aplicación. Fai o favor de identificarte co teu contrasinal de usuario."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Esta canle está baleira! É posíbel que teñas que seguir a máis persoas ou axustar a túa configuración de idioma."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Esta canle está baleira."
@@ -7540,7 +8188,7 @@ msgstr "Esta canle está baleira."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Esta canle xa non está en liña. No seu lugar, mostramos <0>Descubrir0>."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "Este nome de usuario está reservado. Fai o favor de escoller un diferente."
@@ -7548,9 +8196,10 @@ msgstr "Este nome de usuario está reservado. Fai o favor de escoller un diferen
msgid "This information is not shared with other users."
msgstr "Esta información non se comparte con outras persoas."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "Isto é importante no caso de que necesites cambiar o teu correo electrónico ou restablecer o teu contrasinal."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr ""
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "Esta etiqueta foi aplicada pola persoa autora."
msgid "This label was applied by you."
msgstr "Esta etiqueta foi aplicada por ti."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "Este etiquetador non declarou que etiquetas publica e é posíbel que non estea activo."
@@ -7576,7 +8225,7 @@ msgstr ""
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr ""
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "Esta lista está baleira."
@@ -7584,7 +8233,7 @@ msgstr "Esta lista está baleira."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Este servizo de moderación non está disponíbel. Consulta máis detalles a continuación. Se o problema persiste, contáctanos."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Esta publicación declara que foi feita en <0>{0}0>, pero foi vista por primeira vez por Bluesky en <1>{1}1>."
@@ -7592,28 +8241,29 @@ msgstr "Esta publicación declara que foi feita en <0>{0}0>, pero foi vista po
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "Este chío foi eliminado."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Este chío ocultarase das canles e dos fíos. Isto non se pode desfacer."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "A persoa autora deste chío desactivou os chíos de citas."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr "Esta resposta ordenarase nunha sección oculta na parte inferior do teu fío e silenciará as notificacións para as respostas posteriores, tanto para ti como para os demais."
@@ -7621,10 +8271,14 @@ msgstr "Esta resposta ordenarase nunha sección oculta na parte inferior do teu
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Este servizo non proporcionou condicións de servizo nin unha política de privacidade."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "Isto debería crear un rexistro de dominio en:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr ""
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "Esta persoa non ten seguidores."
@@ -7662,21 +8316,21 @@ msgstr "Este persoa non segue a ninguén."
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "Isto eliminará \"{0}\" das túas palabras silenciadas. Sempre podes engadilo máis tarde."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "Isto eliminará @{0} da listaxe de acceso rápido."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "Esto eliminará o teu chío desta cita para todas as persoas e substituirase por un marcador de posición."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "Opcións de fíos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Preferencias de fíos"
@@ -7684,8 +8338,8 @@ msgstr "Preferencias de fíos"
msgid "Thread Preferences"
msgstr "Preferencias de Fíos"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "Enfiado"
@@ -7693,7 +8347,7 @@ msgstr "Enfiado"
msgid "Threaded mode"
msgstr "Modo de fíos"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Preferencias de fíos"
@@ -7705,14 +8359,15 @@ msgstr ""
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "Para desactivar o método 2FA de correo electrónico, verifica o teu acceso ao enderezo de correo electrónico."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr ""
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "Para denunciar unha conversa, informa dunha das súas mensaxes a través da pantalla de conversa. Isto permite que os nosos moderadores comprendan o contexto do teu problema."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Para cargar vídeos en Bluesky, primeiro debes verificar o teu correo electrónico."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "A quen che gustaría enviar este informe?"
@@ -7725,7 +8380,7 @@ msgstr "Hoxe"
msgid "Toggle dropdown"
msgstr "Alternar o menú despregábel"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "Activa ou desactiva o contido para persoas adultas"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr ""
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Arriba"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "Tema"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Traducir"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "Tendencia"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "Vídeos en tendencia"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr ""
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "TV"
msgid "Two-factor authentication (2FA)"
msgstr "Autenticación en dous pasos (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Introduce o teu alcume"
@@ -7783,18 +8440,11 @@ msgstr "Introduce o teu alcume"
msgid "Type your message here"
msgstr "Escribe aquí a túa mensaxe"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Tipo:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Desbloquear listaxe"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Activar listaxe"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "Non é posíbel conectar. Comproba a túa conexión a internet e téntao de novo."
@@ -7809,7 +8459,7 @@ msgstr "Non é posíbel conectar. Comproba a túa conexión a internet e téntao
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Non se puido contactar co teu servizo. Comproba a túa conexión a Internet."
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "Non se pode eliminar"
@@ -7817,36 +8467,41 @@ msgstr "Non se pode eliminar"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Desbloquear"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Desbloquear"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Desbloquear conta"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "Desbloquear Conta?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Desfacer o rechouchío"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Deixar de seguir"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "Deixa de seguir a {0}"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "No me gusta"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr ""
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Activar"
@@ -7895,10 +8555,10 @@ msgstr "Activar"
msgid "Unmute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr ""
@@ -7906,8 +8566,12 @@ msgstr ""
msgid "Unmute conversation"
msgstr "Activar a conversa"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Activar o fío"
@@ -7915,38 +8579,47 @@ msgstr "Activar o fío"
msgid "Unmute video"
msgstr "Activar o audio do vídeo"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Desfixar"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "Desfixar canle"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Desfixar do inicio"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "Desfixar do perfil"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Desfixar a listaxe de moderación"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "{0} desfixada do Inicio"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Desfixouse das túas canles"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Cancelar a subscrición"
@@ -7955,7 +8628,7 @@ msgstr "Cancelar a subscrición"
msgid "Unsubscribe from list"
msgstr "Cancelar a subscrición da listaxe"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Cancelar a subscrición a esta etiquetadora"
@@ -7963,11 +8636,11 @@ msgstr "Cancelar a subscrición a esta etiquetadora"
msgid "Unsubscribed from list"
msgstr "Cancelouse a subscrición da listaxe"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "Tipo de vídeo non soportado"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "Tipo de vídeo non soportado: {0}"
@@ -7987,49 +8660,60 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "Actualizar <0>{displayName}0> nas listaxes"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Actualizar para {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
-msgctxt "toast"
-msgid "Updating quote attachment failed"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
+msgctxt "toast"
+msgid "Updating quote attachment failed"
+msgstr "Produciuse un erro ao actualizar o anexo da cotización"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "Produciuse un erro ao actualizar a visibilidade das respostas"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "Actualizando..."
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Carga unha foto no seu lugar"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Carga un ficheiro de texto a:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Cargar desde a cámara"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Cargar desde ficheiros"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Cargar desde a biblioteca"
@@ -8042,7 +8726,7 @@ msgstr "Cargando imaxes..."
msgid "Uploading link thumbnail..."
msgstr "Cargando miniatura da ligazón..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "Cargando vídeo..."
@@ -8050,22 +8734,22 @@ msgstr "Cargando vídeo..."
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Usar o provedor predeterminado"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Usar o navegador na aplicación"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Usar o navegador da aplicación para abrir as ligazóns"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Usar o meu navegador predeterminado"
@@ -8119,15 +8803,15 @@ msgstr "Listaxe de persoas por {0}"
msgid "User list by you"
msgstr "Listaxe de persoas por ti"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "Listaxe de persoas creada"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "Listaxe de persoas actualizada"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8150,58 +8834,88 @@ msgstr "Persoas que sigo"
msgid "Users in \"{0}\""
msgstr "Persoas en \"{0}\""
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "Persoas ás que lles gustou este contido ou perfil"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Valor:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "É necesario un correo electrónico verificado"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr ""
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr ""
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Verificar rexistro DNS"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Verificación de correo electrónico"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Verificar o novo correo electrónico"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Verificar agora"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Verificar o ficheiro de texto"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Verifica o teu correo electrónico"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Versión {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "Vídeo"
msgid "Video failed to process"
msgstr "Non se puido procesar o vídeo"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr "Canle de vídeo"
@@ -8224,14 +8938,15 @@ msgstr "Vídeo de {0}: {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Videoxogos"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr "Vídeo en pausa"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr "Vídeo en reprodución"
@@ -8239,11 +8954,11 @@ msgstr "Vídeo en reprodución"
msgid "Video not found."
msgstr "Non se encontrou o vídeo."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Axustes do video"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Vídeo cargado"
@@ -8251,31 +8966,32 @@ msgstr "Vídeo cargado"
msgid "Video: {0}"
msgstr "Vídeo: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "Vídeos"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "Ver o avatar de {0}"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "Ver o perfil de {0}"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "Ver o perfil de {displayName}"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "Ver o perfil da persoa bloqueada"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "Ver a entrada de depuración"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Ver detalles"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "Consulta os detalles para informar dunha infracción do copyright"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Ver fío completo"
@@ -8308,18 +9024,17 @@ msgstr "Consulta información sobre estas etiquetas"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "Ver máis"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Ver perfil"
@@ -8331,7 +9046,11 @@ msgstr "Ver o avatar"
msgid "View the labeling service provided by @{0}"
msgstr "Consulta o servizo de etiquetado proporcionado por @{0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "Consulta as persoas ás que lles gusta esta canle"
@@ -8339,11 +9058,11 @@ msgstr "Consulta as persoas ás que lles gusta esta canle"
msgid "View video"
msgstr "Ver vídeo"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Consulta as túas contas bloqueadas"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr ""
@@ -8352,14 +9071,18 @@ msgstr ""
msgid "View your feeds and explore more"
msgstr "Consulta as túas canles e explora máis"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Consulta as túas listaxes de moderación"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "Consulta as túas contas silenciadas"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "Advertir contido"
msgid "Warn content and filter from feeds"
msgstr "Advirtir contido e filtra desde canles"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr ""
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "Non puidemos atopar ningún resultado para ese cancelo."
@@ -8400,7 +9128,7 @@ msgstr "Non puidemos atopar ningún resultado para ese cancelo."
msgid "We couldn't find any results for that topic."
msgstr "Non foi posíbel atopar resultados para ese tema."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "Non puidemos cargar esta conversa"
@@ -8420,6 +9148,14 @@ msgstr "Esperamos que o pases de marabilla. Lembra que Bluesky é:"
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Quedamos sen chíos das persoas que segues. Aquí tes o último de <0/>."
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Non puidemos determinar se tes permiso para cargar vídeos. Téntao de novo."
@@ -8428,7 +9164,7 @@ msgstr "Non puidemos determinar se tes permiso para cargar vídeos. Téntao de n
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "Non puidemos cargar as túas preferencias de data de nacemento. Téntao de novo."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:428
msgid "We were unable to load your configured labelers at this time."
msgstr "Non puidemos cargar os teus etiquetadores configurados neste momento."
@@ -8440,20 +9176,28 @@ msgstr "Non puidemos conectarnos. Téntao de novo para continuar configurando a
msgid "We will let you know when your account is ready."
msgstr "Informarémosche cando a túa conta estea lista."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "Usarémolo para personalizar a túa experiencia."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "Temos problemas de rede, téntao de novo"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr ""
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "Que emoción que esteas aquí!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Sentímolo, mais non puidemos resolver esta lista. Se isto persiste, póñase en contacto com quen creou a listaxe, @{handleOrDid}."
@@ -8461,11 +9205,11 @@ msgstr "Sentímolo, mais non puidemos resolver esta lista. Se isto persiste, pó
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Sentímolo, mais non puidemos cargar as túas palabras silenciadas neste momento. Téntao de novo."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Sentímolo, mais a túa busca non se puido completar. Téntao de novo nuns minutos."
-#: src/view/com/composer/Composer.tsx:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Sentímolo! Eliminouse o chío ao que estás respondendo."
@@ -8474,7 +9218,7 @@ msgstr "Sentímolo! Eliminouse o chío ao que estás respondendo."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Sentímolo! Non podemos encontrar a páxina que buscabas."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Sentímolo! Só podes subscribirte a vinte etiquetadoras e alcanzaches o límite de vinte."
@@ -8494,16 +9238,16 @@ msgstr "Cales son os teus intereses?"
msgid "What do you want to call your starter pack?"
msgstr "Como queres chamar ao teu paquete de inicio?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "De que está falando a parroquia."
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "Que hai de novo?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr ""
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "En que idioma está este chío?"
@@ -8520,14 +9264,18 @@ msgstr "Quen pode interactuar con este chío?"
msgid "Who can reply"
msgstr "Quen pode responder"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "Vaia!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr "Vaites! Non foi posíbel cargar os vídeos en tendencia."
@@ -8574,11 +9322,11 @@ msgstr "Por que se debería revisar esta persoa?"
msgid "Write a message"
msgstr "Escribe unha mensaxe"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Escribe un chío"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Escribe a túa resposta"
@@ -8588,11 +9336,16 @@ msgstr "Escribe a túa resposta"
msgid "Writers"
msgstr "Escritores e escritoras"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "O servidor devolveu un DID incorrecto. Recibido: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Si"
@@ -8601,15 +9354,15 @@ msgstr "Si"
msgid "Yes, deactivate"
msgstr "Si, desactivar"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Si, eliminar este paquete de inicio"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Si, desprenderse"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Si, ocultar"
@@ -8625,7 +9378,11 @@ msgstr "Onte"
msgid "You"
msgstr "Ti"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr ""
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
msgstr ""
@@ -8633,6 +9390,19 @@ msgstr ""
msgid "You are in line."
msgstr "Estás en liña."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr ""
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr ""
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr ""
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "Non tes permiso para cargar vídeos."
@@ -8641,6 +9411,27 @@ msgstr "Non tes permiso para cargar vídeos."
msgid "You are not following anyone."
msgstr "Non estás seguindo a ninguén."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr ""
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "Podes actualizar posteriormente desde as túas preferencias."
@@ -8682,7 +9472,7 @@ msgstr "Non tes a ninguén que te siga."
msgid "You don't follow any users who follow @{name}."
msgstr "Non segues a ningunha persoa que siga a @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr ""
@@ -8736,24 +9526,24 @@ msgstr "Silenciaches esta conta."
msgid "You have muted this user"
msgstr "Silenciaches esta persoas"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "Non tes ningunha conversa. Comeza a parolar!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "Non tes canles."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "Non tes listaxes."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Aínda non bloqueaches ningunha conta. Para bloquear unha conta, vai ao seu perfil e selecciona \"Bloquear conta\" no menú da súa conta."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Aínda non silenciaches ningunha conta. Para silenciar unha conta, vai ao seu perfil e selecciona \"Silenciar conta\" no menú da súa conta."
@@ -8761,11 +9551,15 @@ msgstr "Aínda non silenciaches ningunha conta. Para silenciar unha conta, vai a
msgid "You have reached the end"
msgstr "Mimá! Chegaches ao final"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr ""
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Alcanzaches temporalmente o límite de cargas de vídeos. Téntao de novo máis tarde."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "Aínda non creaches un paquete de inicio!"
@@ -8787,22 +9581,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Podes apelar estas etiquetas se consideras que se colocaron por erro."
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "Só podes engadir ata {STARTER_PACK_MAX_SIZE} perfís"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Só podes engadir ata 3 canles"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "Só podes seleccionar ata 4 imaxes"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "Debes ter 13 anos ou máis para rexistrarte."
+msgid "You must be 13 years of age or older to create an account."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Debes seguir polo menos a outras sete persoas para xerar un paquete de inicio."
@@ -8810,28 +9604,40 @@ msgstr "Debes seguir polo menos a outras sete persoas para xerar un paquete de i
msgid "You must grant access to your photo library to save a QR code"
msgstr "Debes conceder acceso á túa biblioteca de fotos para gardar un código QR"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "Debes conceder acceso á túa biblioteca de fotos para gardar a imaxe."
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "Debes seleccionar polo menos unha etiquetadora para un informe"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr ""
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "Anteriormente desactivaches a @{0}."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "Sairás da sesión de todas as túas contas."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "Xa non recibirás notificacións deste fío"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Agora recibirás notificacións deste fío"
@@ -8839,23 +9645,23 @@ msgstr "Agora recibirás notificacións deste fío"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Recibirás un correo electrónico cun \"código de restablecemento\". Introduce ese código aquí e, a continuación, introduce o teu novo contrasinal."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "Ti: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Ti: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "Ti: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "Seguirás a máis persoas e as súas canles suxeridas unha vez remates de crear a túa conta!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "Seguirás a persoas suxeridas unha vez remates de crear a túa conta! "
@@ -8867,7 +9673,7 @@ msgstr "Seguirás a estas contas e a {0} máis"
msgid "You'll follow these people right away"
msgstr "Seguirás a estas contas de inmediato"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "Recibirás un correo electrónico en <0>{0}0> para verificar que es ti. "
@@ -8901,6 +9707,10 @@ msgstr "Atopaches algunhas contas a seguir"
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Chegaches ao final das túas canles! Busca máis contas que seguir."
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Chegaches ao teu límite diario de carga de vídeos (demasiados bytes por hoxe)"
@@ -8909,11 +9719,11 @@ msgstr "Chegaches ao teu límite diario de carga de vídeos (demasiados bytes po
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Chegaches ao teu límite diario de carga de vídeos (demasiados vídeos por hoxe)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Xa non hai máis vídeos para ver. Igual é bo momento para descansar un anaco?"
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "A túa conta"
@@ -8941,7 +9751,7 @@ msgstr "A túa conta violou os <0>Termos do Servizo da aplicación Bluesky Socia
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr "A túa apelación foi enviada. Se a túa apelación se tiver en conta, enviaráseche un correo."
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "A túa data de nacemento"
@@ -8953,26 +9763,30 @@ msgstr "O teu navegador non soporta este formato de vídeo. Por favor, proba cun
msgid "Your chats have been disabled"
msgstr "As túas conversas foron deshabilitadas."
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "A túa elección gardarase, mais pódese cambiar máis tarde na configuración."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "O teu actual nome de usuario <0>{0}0> quedará reservado automaticamente para ti. Podes volver a el cando queiras desde esta conta."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "O teu enderezo electrónico parece non ser válido."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "O teu enderezo electrónico foi actualizado mais non verificado. Verifica o teu novo enderezo electrónico."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "O teu enderezo electrónico aínda non foi verificado. Pola túa seguridade, recomendámosche que o verifiques."
@@ -8988,14 +9802,31 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "A seguinte canle está baleira! Sigue a máis persoas para ver o que está a acontecer."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "O teu alcume será <0>@{0}0> "
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr "O teu alcume completo será <0>@{0}0>"
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr ""
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "As túas palabras silenciadas"
@@ -9004,15 +9835,15 @@ msgstr "As túas palabras silenciadas"
msgid "Your password has been changed successfully!"
msgstr "O teu contrasinal cambiouse correctamente."
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr "O teu contrasinal debe ter polo menos 8 caracteres."
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "Chío publicado"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "As túas publicacións foron publicadas"
@@ -9024,14 +9855,22 @@ msgstr "Os teus chíos, o que che gusta e a quen bloqueas son públicos. Ningué
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "O teu perfil, chíos, canles e listaxes non estarán visíbeis para outras persoas de Bluesky. Podes reactivar a túa conta en calquera momento iniciando sesión."
-#: src/view/com/composer/Composer.tsx:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Resposta publicada"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "O teu informe enviarase ao Servizo de moderación de Bluesky"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr ""
diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po
index 55e7d8ad76..e7da192e88 100644
--- a/src/locale/locales/hi/messages.po
+++ b/src/locale/locales/hi/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: hi\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 03:35\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Hindi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(सक्रिय)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(एम्बेडेड सामग्री मौजूद है)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(कोई ईमेल नहीं है)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, other {# रीपोस्ट}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, other {# सेकंड}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -90,17 +90,17 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {फ़ॉलोअर} other {फ़ॉलोअर}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {फ़ॉलोइंग} other {फ़ॉलोइंग}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, other {पसंद}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, other {पसंद}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, other {पोस्ट}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, other {क्वोट}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, other {रीपोस्ट}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr ""
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr ""
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "<0><1>टैग1>में0>{0}"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "<0><1>टेक्स्ट और टैग1>में0>{0}"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr ""
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} लोग इस हफ़्ते शामिल हुए"
@@ -139,11 +156,16 @@ msgstr "{1} का {0}"
msgid "{0} out of 50"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0} लोगों ने इस स्टार्टर पैक का इस्तेमाल किया है!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr ""
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "{0} का अवतार"
@@ -175,7 +197,7 @@ msgstr "{0}मि"
msgid "{0}s"
msgstr "{0}से"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -192,103 +214,184 @@ msgstr ""
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, other {मिनट}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} और <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}}0> ने आपको फ़ॉलो किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "{firstAuthorLink} और <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}}0> ने आपके कस्टम फ़ीड को पसंद किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink} और <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}}0> ने आपके पोस्ट को पसंद किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} और <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}}0> ने आपके पोस्ट को रीपोस्ट किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} और <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}}0> ने आपके स्टार्टर पैक से साइन अप किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} ने आपको फ़ॉलो किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} ने आपको वापस फ़ॉलो किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "{firstAuthorLink} ने आपके कस्टम फ़ीड को पसंद किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "{firstAuthorLink} ने आपके पोस्ट को पसंद किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} ने आपके पोस्ट को रीपोस्ट किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} ने आपके स्टार्टर पैक से साइन अप किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} और {additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपको फ़ॉलो किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "{firstAuthorName} और {additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके कस्टम फ़ीड को पसंद किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "{firstAuthorName} और {additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके पोस्ट को पसंद किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} और {additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके पोस्ट को रीपोस्ट किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName} और {additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके स्टार्टर पैक से साइन अप किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "ने आपको फ़ॉलो किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} ने आपको वापस फ़ॉलो किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "{firstAuthorName} ने आपके कस्टम फ़ीड को पसंद किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "{firstAuthorName} ने आपके पोस्ट को पसंद किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} ने आपके पोस्ट को रीपोस्ट किया"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} ने आपके स्टार्टर पैक से साइन अप किया"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} फ़ॉलोइंग"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "{handle} को संदेश भेजा नहीं जा सकता"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr ""
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr ""
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -301,6 +404,34 @@ msgstr "{profileName} {0} पहले Bluesky से जुड़े"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} {0} पहले एक स्टार्टर पैक के ज़रिए Bluesky से जुड़े"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr ""
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr ""
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr ""
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr ""
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr ""
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {फ़ॉलोअर} other {फ़ॉलोअर}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {फ़ॉलोइंग} other {फ़ॉलोइंग}}"
@@ -343,7 +474,7 @@ msgstr "<0>प्रयोगात्मत्क:0> इस प्राथ
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>आप0> और<1> 1><2>{0} 2>आपके स्टार्टर पैक में शामिल हैं"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠ अमान्य हैंडल"
@@ -363,19 +494,28 @@ msgstr "30 दिन"
msgid "7 days"
msgstr "7 दिन"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr ""
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "परिचय"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr ""
@@ -385,40 +525,40 @@ msgid "Accept Request"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "सुलभता"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "सुलभता के सेटिंग"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "खाता"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "खाता अवरुद्ध"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "खाता फ़ॉलो किया गया"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "खाता म्यूट किया गया"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
@@ -429,33 +569,37 @@ msgstr "खाता म्यूट किया गया"
msgid "Account Muted by List"
msgstr "सूची द्वारा खाता म्यूट किया गया"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "खाते के विकल्प"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "जल्द पहुँच से खाता हटाया गया"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "खाता अनअवरुद्ध"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "खाता अनफ़ॉलो किया गया"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
+msgstr "खाता अनम्यूट किया गया"
+
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "जोड़ें"
@@ -473,8 +617,12 @@ msgstr "स्टार्टर पैक में {displayName} को जो
msgid "Add a content warning"
msgstr "सामग्री चेतावनी जोड़ें"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "इस सूची में किसी को जोड़ें"
@@ -485,7 +633,7 @@ msgstr "खाता जोड़ें"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "खाता जोड़ें"
msgid "Add alt text"
msgstr "विवरण जोड़ें"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "विवरण जोड़ें (वैकल्पिक)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "एक और खाता जोड़ें"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "एक और पोस्ट जोड़ें"
@@ -518,8 +666,12 @@ msgstr "ऐप पासवर्ड जोड़ें"
msgid "Add App Password"
msgstr "ऐफ पासवर्ड जोड़ें"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr ""
@@ -531,15 +683,23 @@ msgstr ""
msgid "Add muted words and tags"
msgstr "म्यूट किए गए शब्द और टैग जोड़ें"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "नया पोस्ट जोड़ें"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "लोगों को जोड़ें"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr ""
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "अनुशंसित फ़ीड जोड़ें"
@@ -552,27 +712,28 @@ msgstr "अपने स्टार्टर पैक में कुछ फ़
msgid "Add the default feed of only people you follow"
msgstr "केवल आपके फ़ॉलो किए गए लोगों का डिफ़ॉल्ट फ़ीड जोड़ें"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "अपने डोमेन में निम्नलिखित DNS रिकॉर्ड जोड़ें:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "आपके फ़ीड मे यह फ़ीड जोड़ें"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "सूचियों में जोड़ें"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "सूचियों में जोड़ें"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "मेरे फ़ीड में जोड़ें"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "सूची में जोड़ा गया"
@@ -581,22 +742,22 @@ msgstr "सूची में जोड़ा गया"
msgid "Added to my feeds"
msgstr "मेरे फीड में जोड़ा गया"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "वयस्क"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "वयस्क सामग्री"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "वयस्क सामग्री को केवल <0>bsky.app0> वेबसाइट पर सक्षम किया जा सकता है।"
@@ -604,30 +765,35 @@ msgstr "वयस्क सामग्री को केवल <0>bsky.app0
msgid "Adult content is disabled."
msgstr "वयस्क सामग्री अक्षम है।"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "वयस्क सामग्री लेबल"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "विकसित"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr ""
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "सभी"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "सारे खाते फ़ॉलो किए गए हैं!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr ""
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "एक ही जगह पर, आपके सभी सहेजे गए फीड।"
@@ -671,10 +837,10 @@ msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "वैकल्पिक पाठ"
@@ -688,19 +854,18 @@ msgstr "वैकल्पिक पाठ अंधे और कम दृश
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "वैकल्पिक पाठ छंट जाएगी। सीमा: {0} अक्षर।"
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr ""
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "{0} को ईमेल भेजा गया है। इसमें एक पुष्टिकरण कोड मौजूद है जिसे आप नीचे दर्ज कर सकते हैं।"
-#: src/view/com/modals/ChangeEmail.tsx:114
-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/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "ईमेल भेजा गया है! ईमेल में मौजूद पुष्टिकरण कोड को नीचे दर्ज करें।"
@@ -716,7 +881,11 @@ msgstr "त्रुटि हुई"
msgid "An error occurred while compressing the video."
msgstr "वीडियो कंप्रेशन के दौरान त्रुटि हुई।"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "आपके स्टार्टर पैक बनाने में त्रुटि हुई। फिर से प्रयास करें?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "वीडियो लोड करते समय में त्रुटि हुई। फिर से प्रयास करें।"
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "QR कोड सहेजने में त्रुटि हुई!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "वीडियो चुनने के समय त्रुटि हुई"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "सभी को फ़ॉलो करते समय त्रुटि हुई"
@@ -746,12 +914,17 @@ msgstr "सभी को फ़ॉलो करते समय त्रुट
msgid "An error occurred while uploading the video."
msgstr "वीडियो अपलोड करते समय त्रुटि हुई।"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "समस्या जो इन विकल्पों में से नहीं है"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "बातचीत शुरू करने में समस्या हुई"
@@ -761,13 +934,17 @@ msgstr "बातचीत खोलते समय समस्या हु
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "कोई समस्या हुई, फिर से प्रयास करें।"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "अज्ञात त्रुटि हुई"
@@ -790,6 +967,10 @@ msgstr "प्राणि"
msgid "Animated GIF"
msgstr "एनिमेटेड GIF"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "असामाजिक व्यवहार"
msgid "Anybody can interact"
msgstr "कोई भी संपर्क कर सकता है"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "ऐप आइकॉन"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "ऐप भाषा"
@@ -817,7 +998,7 @@ msgstr "ऐप पासवर्ड"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "ऐप पासवर्ड मिटाया गया"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
@@ -836,7 +1017,7 @@ msgstr "ऐप पासवर्ड नाम में कम से कम 4
msgid "App passwords"
msgstr "ऐप पासवर्ड"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "ऐप पासवर्ड"
@@ -854,7 +1035,7 @@ msgstr "\"{0}\" लेबल पर अपील करें"
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "अपील जमा हुई"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -872,10 +1053,10 @@ msgstr ""
msgid "Appeal this decision"
msgstr "इस निर्णय पर अपील करें"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "दिखावट"
@@ -884,12 +1065,12 @@ msgstr "दिखावट"
msgid "Apply default recommended feeds"
msgstr "डिफ़ॉल्ट अनुशंसित फ़ीड लगाएँ"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "{0} से पुरालेखित"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "पुरालेखित पोस्ट"
@@ -897,15 +1078,15 @@ msgstr "पुरालेखित पोस्ट"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "क्या आप सच में ऐप पासवर्ड \"{0}\" को मिटाना चाहते हैं?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
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:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "क्या आप सच में इस स्टार्टर पैक को मिटाना चाहते हैं?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "क्या आप सच में अपने बदलाव ख़ारिज करना चाहते हैं?"
@@ -921,15 +1102,15 @@ msgstr "क्या आप सच में इस बातचीत को
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "क्या आप सच में {0} को अपने फ़ीड से हटाना चाहते हैं?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "क्या आप सच में इसे अपने फ़ीड से हटाना चाहते हैं?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "क्या आप सच में इस ड्राफ़्ट को ख़ारिज करना चाहेंगे?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "क्या आप सच में इस पोस्ट को ख़ारिज करना चाहेंगे?"
@@ -937,7 +1118,7 @@ msgstr "क्या आप सच में इस पोस्ट को ख
msgid "Are you sure?"
msgstr "क्या आप सच में यह करना चाहते हैं?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -946,11 +1127,16 @@ msgstr ""
msgid "Art"
msgstr "कला"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "कलात्मक या गैर-कामुक नग्नता।"
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "कम से कम 3 वर्ण"
@@ -963,12 +1149,12 @@ msgstr ""
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "स्वतः चालू के विकल्प को <0>सामग्री और मीडिया सेटिंग0> में रखा गया है।"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "वीडियो और GIF स्वतः चलाएँ"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "वीडियो और GIF स्वतः चलाएँ"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "वापस"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr ""
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "सूची बनाने से पहले, आपको अपना ईमेल सत्यापित करना होगा।"
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "पोस्ट बनाने से पहले, आपको अपना ईमेल सत्यापित करना होगा।"
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "स्टार्टर पैक बनाने से पहले, आपको अपना ईमेल सत्यापित करना होगा।"
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "अन्य उपयोगकर्ताओं को संदेश भेजने से पहले, आपको अपना ईमेल सत्यापित करना होगा।"
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "बीटा"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
+msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "जन्मदिन"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "अवरुद्ध करें"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "खाता अवरुद्ध करें"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "खाता अवरुद्ध करें?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "खाता अवरुद्ध करें"
@@ -1054,7 +1241,7 @@ msgstr ""
msgid "Block and/or delete this conversation"
msgstr ""
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "अवरोध की सूची"
@@ -1062,7 +1249,7 @@ msgstr "अवरोध की सूची"
msgid "Block or report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "खाता ब्लॉक करें?"
@@ -1079,21 +1266,21 @@ msgstr "उपयोगकर्ता को अवरुद्ध करें
msgid "Blocked"
msgstr "अवरुद्ध"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "अवरुद्ध किए गए खाते"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "अवरुद्ध किए गए खाते"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "अवरुद्ध खाते आपके थ्रेड में जवाब नहीं दे सकते, आपका उल्लेख नहीं कर सकते, या अन्यथा आपसे संपर्क नहीं कर सकते।"
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 "अवरुद्ध खाते आपके थ्रेड में उत्तर नहीं दे सकते, आपका उल्लेख नहीं कर सकते, या अन्यथा आपसे संपर्क नहीं कर सकते। आप उनकी सामग्री नहीं देख सकेंगे और उन्हें आपकी सामग्री देखने से रोका जाएगा।"
@@ -1101,19 +1288,19 @@ msgstr "अवरुद्ध खाते आपके थ्रेड मे
msgid "Blocked post."
msgstr "अवरुद्ध पोस्ट।"
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "अवरुद्ध करने पर भी यह लेबलकर्ता आपके खाते पर लेबल लगा सकता है।"
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "अवरोधन सार्वजनिक है. अवरुद्ध खाते आपके थ्रेड्स में उत्तर नहीं दे सकते, आपका उल्लेख नहीं कर सकते, या अन्यथा आपसे संपर्क नहीं कर सकते।"
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
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:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "ब्लॉग"
@@ -1122,7 +1309,7 @@ msgstr "ब्लॉग"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky दावा किए गए तिथि के प्रामाणिकता की पुष्टि नहीं कर सकता।"
@@ -1148,7 +1335,7 @@ msgstr "Bluesky दोस्तों के साथ बेहतर है!"
msgid "Bluesky Social Terms of Service"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky आपके नेटवर्क से कुछ अनुशंसित खाते चुनेगा।"
@@ -1156,6 +1343,10 @@ msgstr "Bluesky आपके नेटवर्क से कुछ अनुश
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky लॉग आउट उपयोगकर्ताओं को आपके प्रोफ़ाइल और पोस्ट नहीं दिखाएगा। अन्य ऐप इस अनुरोध का पालन नहीं भी कर सकते हैं। इससे आपका खाता निजी नहीं होगा।"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr ""
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "छवि धुंधला करें और फ़ीड से फ़ि
msgid "Books"
msgstr "किताबें"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "एक्सप्लोर पृष्ठ पर और खाते देखें"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "एक्सप्लोर पृष्ठ पर और सूची देखें"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "और सुझाव देखें"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "एक्सप्लोर पृष्ठ पर और सुझाव देखें"
@@ -1214,20 +1405,26 @@ msgstr "{displayName} से टैग किए गए पोस्ट दे
msgid "Browse starter pack {displayName}"
msgstr ""
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr ""
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "{displayName} विषय देखें"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "व्यवसाय"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "{0} के द्वारा"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "<0>{0}0> के द्वार"
@@ -1243,44 +1440,51 @@ msgstr "खाता बनाने से आप <0>सेवा की शर
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "खाता बनाने से आप <0>सेवा की शर्तों0> से सहमत हैं।"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr ""
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "कैमरा"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "रद्द करें"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "खाता मिटाना रद्द करें"
msgid "Cancel image crop"
msgstr "छवि क्रॉप रद्द करें"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "प्रोफ़ाइल संपादन मत करो"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "क्वोट पोस्ट रद्द करें"
@@ -1308,8 +1512,7 @@ msgstr "क्वोट पोस्ट रद्द करें"
msgid "Cancel reactivation and sign out"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "खोज रद्द करें"
@@ -1317,24 +1520,23 @@ msgstr "खोज रद्द करें"
msgid "Cancels opening the linked website"
msgstr "लिंक वेबसाइट के खोलने को रद्द करता है"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "अवरुद्ध उपयोगकर्ता से संपर्क नहीं कर सकते"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "अनुशीर्षक (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "अनुशीर्षक और वैकल्पिक पाठ"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "बदलें"
@@ -1347,46 +1549,41 @@ msgstr "ऐप आइकॉन बदलें"
msgid "Change app icon to \"{0}\""
msgstr "ऐप आइकॉन को \"{0}\" में बदलें"
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "ईमेल बदलें"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "ईमेल पता बदलें"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "हैंडल बदलें"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "मेरा ईमेल बदलें"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "पासवर्ड बदलें"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "पोस्ट भाषा को {suggestedLanguageName} करें"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "मेरा ईमेल बदलें"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "अपना ईमेल पता बदलें"
@@ -1394,20 +1591,20 @@ msgstr "अपना ईमेल पता बदलें"
msgid "Changes app icon"
msgstr ""
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr ""
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "बातचीत"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
msgstr ""
@@ -1415,22 +1612,21 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "बातचीत म्यूट किया गया"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr ""
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "बातचीत सेटिंग"
@@ -1441,10 +1637,10 @@ msgstr "बातचीत सेटिंग"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "बातचीत अनम्यूट किया गया"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr ""
@@ -1461,7 +1657,7 @@ msgstr ""
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "नीचे दर्ज करने के लिए पुष्टिकरण कोड के साथ एक ईमेल के लिए अपने इनबॉक्स की जाँच करें:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "डोमेन सत्यापन विधि चुनें"
@@ -1469,7 +1665,7 @@ msgstr "डोमेन सत्यापन विधि चुनें"
msgid "Choose Feeds"
msgstr "फ़ीड चुनें"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "मेरे लिए चुनें"
@@ -1477,10 +1673,6 @@ msgstr "मेरे लिए चुनें"
msgid "Choose People"
msgstr "लॉग चुनें"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "अपने पोस्ट के मीडिया पर लागू होने वाले स्वयं-लेबल चुनें। यदि कोई भी चुना नहीं गया है, यह पोस्ट सभी दर्शकों के लिए उपयुक्त है।"
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "आपके कस्टम फ़ीड को चलाने के लिए एल्गोरिथ्म चुनें।"
@@ -1493,27 +1685,31 @@ msgstr "इस रंग को अपना अवतार के रूप
msgid "Choose your account provider"
msgstr ""
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "आपका अपना टाइमलाइन चुनें! समुदाय द्वारा बनाए गए फ़ीड आपको पसंदीदा सामग्री ढूँढने में सहायता करते हैं।"
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "अपना पासवर्ड चुनें"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "आपका उपयोगकर्ता हैंडल"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "सभी स्टोरेज डेटा खाली करें"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "सभी स्टोरेज डेटा खाली करें (इसके बाद फिर से खोलें)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr ""
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "खोज क्वेरी खाली करें"
@@ -1522,6 +1718,14 @@ msgstr "खोज क्वेरी खाली करें"
msgid "click here"
msgstr "यहाँ क्लिक करें"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "इस पोस्ट के क्वोट पोस्ट अक्षम करने के लिए क्लिक करें।"
@@ -1534,7 +1738,7 @@ msgstr "इस पोस्ट के क्वोट पोस्ट सक्
msgid "Click to open tag menu for {tag}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "असफल संदेश को फिर से भेजने के लिए क्लिक करें"
@@ -1546,24 +1750,34 @@ msgstr "जलवायु"
msgid "Clip 🐴 clop 🐴"
msgstr "ठक 🐴 ठक 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "बंद करें"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "सक्रिय डायलॉग बंद करें"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "निचला ड्रॉयर बंद करो"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "डायलॉग बंद करें"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr ""
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "इमोजी चयन बंद करें"
@@ -1600,7 +1816,13 @@ msgstr "छवि बंद करें"
msgid "Close image viewer"
msgstr "छवि बंद करें"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr ""
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "यह डायलॉग बंद करें"
@@ -1608,8 +1830,12 @@ msgstr "यह डायलॉग बंद करें"
msgid "Closes password update alert"
msgstr "पासवर्ड अपडेट सूचना बंद करता है"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr ""
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr ""
@@ -1617,11 +1843,11 @@ msgstr ""
msgid "Closes viewer for header image"
msgstr "हेडर छवि का दर्शक बंद करता है"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "उपयोगकर्ताओं की सूची को संक्षिप्त करें"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "किसी अधिसूचना के उपयोगकर्ताओं की सूची को संक्षिप्त करता है"
@@ -1644,7 +1870,7 @@ msgstr "हास्य"
msgid "Comics"
msgstr "कॉमिक"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "समुदाय दिशानिर्देश"
@@ -1653,23 +1879,23 @@ msgstr "समुदाय दिशानिर्देश"
msgid "Complete onboarding and start using your account"
msgstr "समाप्त करें और खाते का उपयोग शुरू करें"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "चुनौती पूरी करें"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "नया पोस्ट बनाएँ"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "{MAX_GRAPHEME_LENGTH} अक्षर तक की लंबाई वाले पोस्ट लिखें"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr ""
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "जवाब लिखें"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "वीडियो कंप्रेस हो रहा है..."
@@ -1681,23 +1907,17 @@ msgstr "{name} श्रेणी के लिए सामग्री फ़ि
msgid "Configured in <0>moderation settings0>."
msgstr "<0>मॉडरेशन सेटिंग0> में व्यवस्थित।"
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "पुष्टि करें"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "बदलाव की पुष्टि करें"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "सामग्री भाषा सेटिंग की पुष्टि करें"
@@ -1706,26 +1926,27 @@ msgstr "सामग्री भाषा सेटिंग की पुष
msgid "Confirm delete account"
msgstr "खाते को मिटाने की पुष्टि करें"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "अपने आयु की पुष्टि करें"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "अपने जन्मतिथि की पुष्टि करें"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "पुष्टिकरण कोड"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "पुष्टिकरण कोड"
@@ -1733,22 +1954,22 @@ msgstr "पुष्टिकरण कोड"
msgid "Connecting..."
msgstr "कनेक्ट किया जा रहा..."
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "सहायता से संपर्क करें"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "सामाग्री और मीडिया"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "सामग्री और मीडिया"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "सामग्री और मीडिया"
@@ -1756,15 +1977,15 @@ msgstr "सामग्री और मीडिया"
msgid "Content Blocked"
msgstr "सामग्री अवरुद्ध"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "सामग्री फ़िल्टर"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "सामग्री भाषाएँ"
@@ -1785,16 +2006,16 @@ msgstr "सामग्री चेतावनी"
msgid "Content warnings"
msgstr "सामग्री चेतावनियाँ"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "संदर्भ मेनू पृष्ठभूमि, मेनू बंद करने के लिए क्लिक करें "
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "जारी रखें"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "(अभी साइन इन किया गया) {0} के रूप मे जारी रखें"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "थ्रेड को जारी रखें..."
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "अगले चरण पर जाएँ"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "बातचीत मिटा दी गई"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "बातचीत मिटा दी गई"
@@ -1826,16 +2047,17 @@ msgstr "रसोई"
msgid "Copied"
msgstr "कॉपी की गई"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "बिल्ड संस्कारण क्लिपबोर्ड पर कॉपी की गई"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "क्लिपबोर्ड पर कॉपी की गई"
@@ -1844,25 +2066,29 @@ msgstr "क्लिपबोर्ड पर कॉपी की गई"
msgid "Copied!"
msgstr "कॉपी की गई!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "कॉपी करें"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr ""
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "ऐप पासवर्ड कॉपी करें"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr ""
@@ -1871,57 +2097,69 @@ msgstr ""
msgid "Copy code"
msgstr "कोड कॉपी करें"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "DID कॉपी करें"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "होस्ट कॉपी करें"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "लिंक कॉपी करें"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "लिंक कॉपी करें"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "सूची पर लिंक कॉपी करें"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "पोस्ट की लिंक कॉपी करें"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "संदेश पाठ कॉपी करें"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "पोस्ट पाठ कॉपी करें"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "QR कोड कॉपी करें"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "TXT रिकॉर्ड मूल्य कॉपी करें "
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "कॉपीराइट नीति"
@@ -1931,11 +2169,11 @@ msgstr "कॉपीराइट नीति"
msgid "Could not leave chat"
msgstr "बातचीत छोड़ी नहीं जा सकी"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "फ़ीड लोड नहीं किया जा सका"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "सूची लोड नहीं किया जा सका"
@@ -1947,28 +2185,28 @@ msgstr "बातचीत म्यूट नहीं किया जा स
msgid "Could not process your video"
msgstr "आपका वीडियो प्रोसेस नहीं किया जा सका"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "बनाएँ"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "स्टार्टर पैक के लिए QR कोड बनाएँ"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "स्टार्टर पैक बनाएँ"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "मेरे लिए स्टार्टर पैक बनाएँ"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "मेरे लिए स्टार्टर पैक बनाए
msgid "Create account"
msgstr "साइन अप करें"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "खाता बनाएँ"
@@ -1985,11 +2223,16 @@ msgstr "खाता बनाएँ"
msgid "Create an account"
msgstr "खाता बनाएँ"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "इसके बदले अवतार बनाएँ"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "एक और बनाएँ"
@@ -1998,7 +2241,7 @@ msgstr "एक और बनाएँ"
msgid "Create new account"
msgstr "नया खाता बनाएँ"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "{0} के लिए शिकायत लिखें"
@@ -2053,17 +2296,17 @@ msgstr "अँधेरा मोड"
msgid "Dark theme"
msgstr "अँधेरा थीम"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "जन्मतिथि"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "खाता निष्क्रिय करें"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "मॉडरेशन डिबग करें"
@@ -2079,19 +2322,19 @@ msgstr "डिफ़ॉल्ट"
msgid "Default icons"
msgstr "डिफ़ॉल्ट आइकॉन"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "मिटाएँ"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "खाता मिटाएँ"
@@ -2107,19 +2350,19 @@ msgstr "अप्प पासवर्ड हटाएं"
msgid "Delete app password?"
msgstr "ऐप पासवर्ड मिटाएँ?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr ""
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "बातचीत घोषणा रेकॉर्ड मिटाएँ"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr ""
@@ -2127,19 +2370,19 @@ msgstr ""
msgid "Delete Conversation"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "मेरे लिए मिटाएँ"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
-msgstr "सूची मिटाएँ"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "संदेश मिटाएँ"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "मेरे लिए संदेश मिटाएँ"
@@ -2147,26 +2390,26 @@ msgstr "मेरे लिए संदेश मिटाएँ"
msgid "Delete my account"
msgstr "मेरा खाता मिटाएँ"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "पोस्ट मिटाएँ"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "स्टार्टर पैक मिटाएँ"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "स्टार्टर पैक मिटाएँ?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "यह सूची मिटाएँ?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "यह पोस्ट मिटाएँ?"
@@ -2174,8 +2417,8 @@ msgstr "यह पोस्ट मिटाएँ?"
msgid "Deleted"
msgstr "मिटाया गया"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "मिटाया गया खाता"
@@ -2183,48 +2426,48 @@ msgstr "मिटाया गया खाता"
msgid "Deleted post."
msgstr "यह पोस्ट मिट दी गई है।"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "विवरण"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "विवरण बहुत अधिक लंबा है"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "विवरण बहुत अधिक लंबा है। अक्षरों की अधिकतम संख्या {DESCRIPTION_MAX_GRAPHEMES} है।"
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "विस्तृत वैकल्पिक पाठ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "क्वोट अलग करें"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "क्वोट पोस्ट अलग करें"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
-msgstr ""
+msgstr "डेवलपर मोड अक्षम"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
-msgstr ""
+msgstr "डेवलपर मोड सक्षम"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "डेवलपर विकल्प"
@@ -2236,6 +2479,15 @@ msgstr "डायलॉग: चुनें कि इस पोस्ट से
msgid "Dim"
msgstr "मंद"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr ""
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "ईमेल 2FA अक्षम करें"
@@ -2254,25 +2506,25 @@ msgstr "उपशीर्षक अक्षम करें"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "अक्षम"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "ख़ारिज करें"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "बदलाव ख़ारिज करें?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "ड्राफ़्ट ख़ारिज करें?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "पोस्ट ख़ारिज करें?"
@@ -2281,24 +2533,24 @@ msgstr "पोस्ट ख़ारिज करें?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "लॉग आउट उपयोगकर्ताओं को मेरा खाता दिखाने से ऐप्स को मना करें"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "नए कस्टम फ़ीड की खोज करें"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "नए फ़ीड की खोज करें"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "नए फ़ीड की खोज करें"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "ख़ारिज करें"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "त्रुटि ख़ारिज करें"
@@ -2306,6 +2558,10 @@ msgstr "त्रुटि ख़ारिज करें"
msgid "Dismiss getting started guide"
msgstr "शुरुआती गाइड ख़ारिज करें"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr ""
@@ -2315,27 +2571,27 @@ msgstr ""
msgid "Display larger alt text badges"
msgstr "वैकल्पिक पाठ बटन को बड़े आकार मे दिखाएँ"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "प्रदर्शन का नाम"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "प्रदर्शन का नाम"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "डिस्प्ले नाम बहुत अधिक लंबा है"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "डिस्प्ले नाम बहुत अधिक लंबा है। अक्षरों की अधिकतम संख्या {DISPLAY_NAME_MAX_GRAPHEMES} है।"
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "DNS पैनल"
@@ -2347,37 +2603,45 @@ msgstr "फ़ॉलो किए गए उपयोगकर्ताओं
msgid "Does not include nudity."
msgstr "नग्नता शामिल नहीं है"
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "हाइफ़न से शुरू या अंत नहीं होता"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "डोमेन सत्यापित!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "हो गया"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "हो गया"
msgid "Done{extraText}"
msgstr "ख़त्म{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr ""
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "डायलॉग बंद करने के लिए दो बार दबाएँ"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr ""
@@ -2413,23 +2681,23 @@ msgstr "छवि जोड़ने के लिए उतारें"
msgid "Duration:"
msgstr "अवधि:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "उदाहरण के लिए, राम"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "उदाहरण के लिए, राम उपनाम"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "उदाहरण के लिए, राम कुमार"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "उदाहरण के लिए, ramkumar.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "उदाहरण के लिए, कलाकार, पशुप्रेमी, और नियमित पाठक"
@@ -2437,19 +2705,19 @@ msgstr "उदाहरण के लिए, कलाकार, पशुप्
msgid "E.g. artistic nudes."
msgstr "उदाहरण के लिए, कलात्मक नग्नता"
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "उदाहरण के लिए, दिलचस्प खाते"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "उदाहरण के लिए, स्पैम"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "उदाहरण के लिए, जिनकी हर बात मे सच्चाई झलकती है"
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "उदाहरण के लिए, उपयोगकर्ता जो लगातार विज्ञापन स्पैम करते हैं"
@@ -2457,20 +2725,21 @@ msgstr "उदाहरण के लिए, उपयोगकर्ता ज
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "प्रत्येक कोड एक बार काम करता है। आपको समय-समय पर अधिक आमंत्रण कोड प्राप्त होंगे।"
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "संपादित करें"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "संपादित करें"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "अवतार संपादित करें"
@@ -2478,31 +2747,41 @@ msgstr "अवतार संपादित करें"
msgid "Edit Feeds"
msgstr "फ़ीड संपादित करें"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "छवि संपादित करें"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "संपर्क सेटिंग संपादित करें"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "सूची विवरण संपादित करें"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "मॉडरेशन सूची संपादित करें"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "मेरे फ़ीड संपादित करें"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "मेरी प्रोफ़ाइल संपादित करें"
@@ -2515,23 +2794,23 @@ msgstr "लोग संपादित करें"
msgid "Edit post interaction settings"
msgstr "पोस्ट संपर्क सेटिंग संपादित करें"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "मेरी प्रोफ़ाइल संपादित करें"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "मेरी प्रोफ़ाइल संपादित करें"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "स्टार्टर पैक संपादित करें"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "उपयोगकर्ता सूची संपादित करें"
@@ -2539,15 +2818,15 @@ msgstr "उपयोगकर्ता सूची संपादित कर
msgid "Edit who can reply"
msgstr "संपादित करें कि कौन जवाब दे सकता है"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "अपना डिस्प्ले नाम संपादित करें"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "अपना प्रोफ़ाइल विवरण संपादित करें"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "अपना स्टार्टर पैक संपादित करें"
@@ -2560,16 +2839,15 @@ msgstr "शिक्षा"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "इस सूची के रचयिता ने आपको अवरुद्ध किया है या आपने रचयिता को अवरुद्ध किया है।"
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "ईमेल"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "ईमेल 2FA अक्षम करें"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
@@ -2583,19 +2861,16 @@ msgstr "ईमेल"
msgid "Email Resent"
msgstr "ईमेल फिर से भेजा गया"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "ईमेल अपडेट किया गया"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
msgstr ""
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
@@ -2608,8 +2883,8 @@ msgstr "HTML कोड एंबेड करें"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "पोस्ट एंबेड करें"
@@ -2617,12 +2892,13 @@ msgstr "पोस्ट एंबेड करें"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "इस पोस्ट को अपने वेबसाइट में एंबेड करें। नीचे लिखे कोड को कॉपी करें और अपने वेबसाइट के HTML कोड में चिपकाएँ।"
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "एम्बेडेड वीडियो प्लेयर"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "सक्षम करें"
@@ -2630,13 +2906,13 @@ msgstr "सक्षम करें"
msgid "Enable {0} only"
msgstr "केवल {0} ही सक्षम करें"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "वयस्क सामग्री सक्षम करें"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr "ईमेल 2FA सक्षम करें"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2660,30 +2936,30 @@ msgstr "उपशीर्षक सक्षम करें"
msgid "Enable this source only"
msgstr "केवल इस सूत्र को सक्षम करें"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "रुझान सक्षम करें"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr ""
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "सक्षम"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "फ़ीड का अंत"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "पक्का करें कि आपने हर उपशीर्षक फ़ाइल के लिए भाषा चुना है।"
@@ -2696,14 +2972,15 @@ msgstr "पासवर्ड दर्ज करें"
msgid "Enter a word or tag"
msgstr "शब्द या टैग दर्ज करें"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
msgid "Enter Code"
msgstr "कोड दर्ज करें"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "पुष्टिकरण कोड दर्ज करें"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
msgstr "फ़ुलस्क्रीन में जाएँ"
@@ -2712,7 +2989,7 @@ msgstr "फ़ुलस्क्रीन में जाएँ"
msgid "Enter the code you received to change your password."
msgstr "पासवर्ड बदलने के लिए प्राप्त किया गया कोड दर्ज करें"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "आप जिस डोमेन का उपयोग करना चाहते हैं उसे दर्ज करें"
@@ -2720,20 +2997,20 @@ msgstr "आप जिस डोमेन का उपयोग करना च
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "वह ईमेल दर्ज करें जिसका उपयोग आपने अपना खाता बनाने के लिए किया था। हम आपको एक \"reset code\" भेजेंगे ताकि आप एक नया पासवर्ड सेट कर सकें।"
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "अपना जन्मतिथि दर्ज करें"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "अपना ईमेल पता दर्ज करें"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "अपना नया ईमेल ऊपर दर्ज करें"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "अपना नया ईमेल पता नीचे दर्ज करें।"
@@ -2749,7 +3026,11 @@ msgstr "अपने उपयोगकर्ता नाम और पास
msgid "Enters full screen"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "त्रुटि"
@@ -2758,15 +3039,18 @@ msgstr "त्रुटि"
msgid "Error occurred while saving file"
msgstr "फ़ाइल सहेजते समय त्रुटि हुई"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "CAPTCHA उत्तर पाने मे त्रुटि हुई"
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "त्रुटि:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "सब"
@@ -2818,30 +3102,22 @@ msgstr "छवि क्रॉप करने की प्रक्रिय
msgid "Exits image view"
msgstr "छवि दर्शन से निकलता है"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "खोज क्वेरी से निकलता है"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "वैकल्पिक पाठ बढ़ाता है"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "उपयोगकर्ताओं की सूची बढ़ाताा है"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "जिस पोस्ट का जवाब दे रहे हैं उसे बढ़ाता या संक्षिप्त करता है"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr ""
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "URI के रिकॉर्ड पर रिसॉल्व होने की अपेक्षा थी"
@@ -2864,6 +3140,10 @@ msgstr "{0} में समाप्त होगा"
msgid "Expires in {0}"
msgstr ""
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "अश्लील या संभावित व्यथित क
msgid "Explicit sexual images."
msgstr "अश्लील यौन छवि"
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "मेरा डेटा निर्यात करें"
@@ -2882,8 +3169,8 @@ msgstr "मेरा डेटा निर्यात करें"
msgid "Export My Data"
msgstr "मेरा डेटा निर्यात करें"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "बाहरी मीडिया"
@@ -2897,17 +3184,22 @@ msgstr "बाहरी मीडिया"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "बाहरी मीडिया वेबसाइट्स को आपके और आपके उपकरण के बारे मे जानकारी इकट्ठा करने दे सकता है। प्ले बटन न दबाने तक कोई जानकारी भेजी या अनुरोध नहीं की जाती।"
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "बाहरी मीडिया प्राथमिकताएँ"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "हैंडल बदलने में असफल। कृपया फिर से प्रयास करें।"
@@ -2915,7 +3207,7 @@ msgstr "हैंडल बदलने में असफल। कृपय
msgid "Failed to create app password. Please try again."
msgstr "ऐप पासवर्ड बनाने में असफल। कृपया फिर से प्रयास करें।"
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr ""
@@ -2924,35 +3216,37 @@ msgstr ""
msgid "Failed to create starter pack"
msgstr "स्टार्टर पैक बनाने मे असफल"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "सूची बनाने में असफल। अपना इंटरनेट कनेक्शन जाँचें और फिर से प्रयास करें।"
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "संदेश मिटाने में असफल"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "पोस्ट मिटाने में असफल, फिर से प्रयास करें"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "स्टार्टर पैक मिटाने में असफल"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "फ़ीड प्राथमिकताएँ लोड करने में असफल"
@@ -2964,17 +3258,19 @@ msgstr "GIF लोड करने में असफल"
msgid "Failed to load past messages"
msgstr "पुराने संदेश लोड करने में असफल"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "अनुशंसित फ़ीड लोड करने में असफल"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "अनुशंसित फ़ॉलो लोड करने में असफल"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr ""
@@ -2982,7 +3278,16 @@ msgstr ""
msgid "Failed to pin post"
msgstr "पोस्ट को पिन करने में असफल"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr ""
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "छवि सहेजने में असफल: {0}"
@@ -2994,20 +3299,39 @@ msgstr "अधिसूचना प्राथमिकताएँ सहे
msgid "Failed to save settings. Please try again."
msgstr ""
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "भेजने में असफल"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "अपील जमा करने में असफल, फिर से प्रयास करें"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "थ्रेड म्यूट स्थिति बदलने में असफल, फिर से प्रयास करें"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr ""
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "फ़ीड अपडेट करने में असफल"
@@ -3022,20 +3346,24 @@ msgstr "सेटिंग अपडेट करने में असफल"
msgid "Failed to upload video"
msgstr "वीडियो अपलोड करने में असफल"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "हैंडल सत्यापित करने में असफल। कृपया फिर से प्रयास करें।"
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "फ़ीड"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "{0} द्वारा फ़ीड"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "फ़ीड मेनू"
@@ -3043,26 +3371,26 @@ msgstr "फ़ीड मेनू"
msgid "Feed toggle"
msgstr "फ़ीड टॉगल"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "प्रतिक्रिया"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "प्रतिक्रिया भेजी गई!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "फ़ीड"
@@ -3070,13 +3398,13 @@ msgstr "फ़ीड"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "फ़ीड कस्टम एल्गोरिथ्म हैं जिन्हें उपयोगकर्ता थोड़ी कोडिंग विशेषज्ञता के साथ बनाते हैं। अधिक जानकारी के लिए <0/>।"
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "फ़ीड अपडेट की गई!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "फ़ीड जो हमें लगता है आपको पसंद आए।"
@@ -3092,11 +3420,11 @@ msgstr "फ़ाइल सफलतापूर्वक सहेजी गई!"
msgid "Filter from feeds"
msgstr "फ़ीड से फ़िल्टर करें"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr ""
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr ""
@@ -3110,13 +3438,13 @@ msgstr "अंतिम रूप दिया जा रहा"
msgid "Find accounts to follow"
msgstr "फ़ॉलो करने के लिए खाते खोजें"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "फ़ॉलो करने के लिए लोग खोजें"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
@@ -3148,11 +3476,11 @@ msgid "Flexible"
msgstr "लचीला"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "फ़ॉलो करें"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "फ़ॉलो करें"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "{0} को फ़ॉलो करें"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "{name} को फ़ॉलो करें"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "10 खाते फ़ॉलो करें"
msgid "Follow 7 accounts"
msgstr "7 खातों को फ़ॉलो करें"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "सभी को फ़ॉलो करें"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "वापस फ़ॉलो करें"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "वापस फ़ॉलो करें"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "अपने दिलचस्पियों से जुड़ने और अपने नेटवर्क को बढ़ाने के लिए और खातों को फ़ॉलो करें।"
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "<0>{0}0> फ़ॉलो करते हैं"
@@ -3224,7 +3544,7 @@ 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/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "@{0} के फ़ॉलोअर जिन्हें आप जानते हैं"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "फ़ॉलोअर जिन्हें आप जानते हैं"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "फ़ॉलोइंग"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "{0} को फ़ॉलो करते हैं"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "{name} को फ़ॉलो करते हैं"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "फ़ॉलोइंग फ़ीड प्राथमिकताएँ"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "फ़ॉलोइंग फ़ीड प्राथमिकताएँ"
@@ -3301,6 +3617,10 @@ msgstr "सुरक्षा कारणों से, आप इसे फि
msgid "For the best experience, we recommend using the theme font."
msgstr "बहतरीन अनुभव के लिए, हम थीम फ़ॉन्ट का उपयोग करने की सलाह देते हैं।"
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "हमेशा"
@@ -3327,7 +3647,7 @@ msgstr "लगातार अनचाही सामग्री पोस्
msgid "From @{sanitizedAuthor}"
msgstr "@{sanitizedAuthor} से"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "<0/> से"
@@ -3336,28 +3656,30 @@ msgstr "<0/> से"
msgid "Gallery"
msgstr "गैलरी"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "स्टार्टर पाक उत्पन्न करें"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "सहायता लें"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "शुरू करें"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr ""
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "शुरुआत"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "अपने प्रोफ़ाइल को एक चेहरा दें"
@@ -3366,17 +3688,17 @@ msgstr "अपने प्रोफ़ाइल को एक चेहरा द
msgid "Glaring violations of law or terms of service"
msgstr "क़ानून या सेवा की शर्तों का स्पष्ट उल्लंघन"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "वापस जाएँ"
@@ -3384,10 +3706,10 @@ msgstr "वापस जाएँ"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "वापस जाएँ"
@@ -3408,7 +3730,27 @@ msgstr "होम जाएँ"
msgid "Go Home"
msgstr "होम जाएँ"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "{0} के साथ बातचीत पर जाएँ"
@@ -3427,8 +3769,8 @@ msgstr "उपयोगकर्ता प्रोफ़ाइल पर जाए
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "भयानक मीडिया"
@@ -3437,21 +3779,21 @@ msgstr "भयानक मीडिया"
msgid "Half way there!"
msgstr "आधा रास्ता पार!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "हैंडल"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "हैंडल पहले से ले लिया गया है। कृपया कुछ और चुनें।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "हैंडल बदला गया!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "हैंडल बहुत अधिक लंबा है। कृपया कुछ छोटा चुनें।"
@@ -3464,7 +3806,7 @@ msgstr "कंपन"
msgid "Harassment, trolling, or intolerance"
msgstr "उत्पीड़न, ट्रोलिंग, या असहिष्णुता"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "हैशटैग"
@@ -3472,19 +3814,24 @@ msgstr "हैशटैग"
msgid "Hashtag {tag}"
msgstr "हैशटैग {tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "मुश्किल हो रही है?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "सहायता"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "तस्वीर अपलोड कर के या अवतार बनाकर लोगों को जताएँ की आप एक रोबोट नहीं हैं।"
@@ -3497,7 +3844,7 @@ msgstr "यह है आपका ऐप पासवर्ड!"
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr ""
@@ -3509,18 +3856,17 @@ msgstr "छिपाई गई सूची"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "छिपाएँ"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "छिपाएँ"
@@ -3529,38 +3875,40 @@ msgstr "छिपाएँ"
msgid "Hide customization options"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "मेरे लिए पोस्ट छिपाएँ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "सब के लिए जवाब छिपाएँ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "मेरे लिए जवाब छिपाएँ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "यह पोस्ट छिपाएँ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "यह पोस्ट छिपाएँ?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "रुझान छिपाएँ"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "रुझान छिपाएँ?"
@@ -3569,10 +3917,15 @@ msgstr "रुझान छिपाएँ?"
msgid "Hide trending videos?"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "उपयोगकर्ता सूची छुपाएँ"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "अरे, फ़ीड सर्वर ने ख़राब उत्तर
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "अरे, हमें यह फ़ीड ढूँढने में मुश्किल हो रही है। इसे शायद मिटा दिया गया होगा।"
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "अरे, लगता है हमें यह डेटा लोड करने में मुश्किल हो रही है। अधिक जानकारी के लिए नीचे देखें। यदि यह समस्या बनी रहती है, हमसे संपर्क करें।"
@@ -3610,15 +3963,15 @@ msgstr "अरे, हम उस मॉडरेशन सेवा को ल
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "कृपया रुकिए। हम धीरे-धीरे वीडियो तक पहुँच दे रहें हैं, और आप अभी भी पंक्ति में हैं। बाद में प्रयास करें!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "होम फ़ीड"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "होस्ट:"
@@ -3627,34 +3980,33 @@ msgstr "होस्ट:"
msgid "Hosting provider"
msgstr "होस्टिंग प्रदाता"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr ""
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "गर्मागर्म जवाब पहले"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "इस लिंक को हम कैसे खोलें?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "मेरे पास कोड है"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "मेरे पास कोड है"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "मेरे पास पुष्टिकरण कोड है"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "मेरे पास अपना डोमेन है"
@@ -3667,22 +4019,30 @@ msgstr "मैं समझा"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "यदि वैकल्पिक पाठ लंबा है, बड़े आकार का वैकल्पिक पाठ लागू कर्ता है"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "यदि आप इस सूची को मिटते हैं, आप उसे वापस नहीं ला पाएँगे।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "यदि आपका अपना डोमेन है, आप उसे अपने हैंडल के तौर पर उपयोग कर सकते हैं। इसे आप ख़ुद अपने पहचान की पुष्टि कर सकते हैं। <0>यहाँ अधिक जानें।0>"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "यदि आप इस पोस्ट को मिटाते हैं, आप उसे वापस नहीं ला पाएँगे।"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr ""
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "यदि आप अपना पासवर्ड बदलना चाहते हैं, हम आपको एक कोड भेजेंगे यहा सत्यापित करने के किए कि यह आपका खाता है।"
@@ -3704,9 +4064,22 @@ msgstr "ग़ैरक़ानूनी और अत्यावश्यक"
msgid "Image"
msgstr "छवि"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "छवि आपके कैमरा रोल में सहेजी गई!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr ""
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr ""
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr ""
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "अनुचित संदेश या अश्लील लिंक"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr ""
@@ -3752,15 +4125,11 @@ msgstr "खाता मिटाने किए लिए पासवर्
msgid "Input the code which has been emailed to you"
msgstr "आपको ईमेल की गई कोड दर्ज करें"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "साइन अप करते समय उपयोगकर्ता नाम या ईमेल पता दर्ज करें"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "संपर्क सीमित"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr ""
@@ -3769,11 +4138,11 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "अमान्य 2FA पुष्टिकरण कोड"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "अमान्य हैंडल। कृपया कुछ और चुनें।"
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "अमान्य या असमर्थित पोस्ट रिकॉर्ड"
@@ -3789,11 +4158,11 @@ msgstr "अमान्य सत्यापन कोड"
msgid "Invite a Friend"
msgstr "दोस्त को आमंत्रित करें"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "आमंत्रण कोड"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "आमंत्रण कोड स्वीकार नहीं हुआ। देख लें कि आपने उसे सही से दर्ज किया है और फिर से प्रयास करें।"
@@ -3805,7 +4174,7 @@ msgstr "आमंत्रण कोड: {0} उपलब्ध"
msgid "Invite codes: 1 available"
msgstr "आमंत्रण कोड: 1 उपलब्ध"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "इस स्टार्टर पैक से लोगों को आमंत्रित करें"
@@ -3817,7 +4186,7 @@ msgstr "अपने दोस्तों को अपने मनपसं
msgid "Invites, but personal"
msgstr "आमंत्रण, पर निजी"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "सही है"
@@ -3825,19 +4194,19 @@ msgstr "सही है"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "अभी इसमें बस आप ही हैं! ऊपर खोजकर अपने स्टार्टर पैक में और लोगों को जोड़ें।"
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "काम आईडी: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "काम"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Bluesky में शामिल हों"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "रचयिता द्वारा लेबल किया गया।"
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "लेबल"
@@ -3868,7 +4237,7 @@ msgstr "लेबल"
msgid "Labels added"
msgstr "लेबल जोड़े गए"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "लेबल लोगों और सामग्री का नामांकन है। इन्हें नेटवर्क को छिपाने, चेतावनी देने, और वर्गीकरण के लिए उपयोग किया जा सकता है।"
@@ -3884,13 +4253,13 @@ msgstr "आपकी सामग्री पर लेबल"
msgid "Language selection"
msgstr "अपनी भाषा चुने"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "भाषा सेटिंग"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "भाषा"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "बड़ा"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "नए"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "अधिक जानें"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "अधिक जानें"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Bluesky के बारे में अधिक जानें"
@@ -3933,6 +4311,11 @@ msgstr "इस सामग्री पर लगाए गए मॉडरे
msgid "Learn more about this warning"
msgstr "इस चेतावनी के बारे में अधिक जानें"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr ""
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "Bluesky से बाहर जा रहे हैं"
msgid "left to go."
msgstr "बाक़ी"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "मुझे चुनने दें।"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "रोशन"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "पसंद"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "पसंद करें ({0, plural, one {# पसंद} other {# पसंद}})"
@@ -4013,17 +4397,16 @@ msgstr "10 पोस्ट पसंद करें"
msgid "Like 10 posts to train the Discover feed"
msgstr "डिस्कवर फ़ीड को प्रशिक्षित करने के लिए 10 पोस्ट पसंद करें"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "इस फ़ीड को पसंद करें"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr ""
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "इन्होनें पसंद किया"
@@ -4033,43 +4416,43 @@ msgstr "इन्होनें पसंद किया"
msgid "Liked By"
msgstr "इन्होनें पसंद किया"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "{0, plural, one {# उपयोगकर्ता} other {# उपयोगकर्ताओं}} ने पसंद किया"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "{likeCount, plural, one {# उपयोगकर्ता} other {# उपयोगकर्ताओं}} ने पसंद किया"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "पसंद"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "इस पोस्ट पर पसंद"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "रेखीय"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "सूची"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "सूची अवतार"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "सूची अवरुद्ध की गई"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4084,44 +4467,44 @@ msgstr "<0/> द्वारा सूची"
msgid "List by you"
msgstr "आपके द्वारा सूची"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "सूची मिटाई गई"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
msgstr "सूची छिपा दी गई"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "सूची छिपाई गई"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "सूची म्यूट की गई"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "सूची का नाम"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "सूची अनअवरुद्ध की गई"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "सूची अनम्यूट की गई"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "सूची"
@@ -4129,34 +4512,47 @@ msgstr "सूची"
msgid "Lists blocking this user:"
msgstr "इस उपयोगकर्ता को अवरुद्ध करती सूचियाँ: "
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr ""
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr ""
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "और लोड करें"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "और अनुशंसित फ़ीड लोड करें"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "और अनुशंसित फ़ॉलो लोड करें"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "नई अधिसूचनाएँ लोड करें"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "नए पोस्ट लोड करें"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "लोड हो रहा है..."
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "लॉग"
@@ -4164,12 +4560,12 @@ msgstr "लॉग"
msgid "Logged-out visibility"
msgstr "लॉग आउट दृश्यता"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "@sawaratsuki.bsky.social द्वारा लोगो"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "<0>@sawaratsuki.bsky.social0> द्वारा लोगो"
@@ -4193,7 +4589,11 @@ msgstr "लगता है आपने अपने सभी फ़ीड अन
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "लगता है आप फ़ॉलोइंग फ़ीड भूल गए। <0>जोड़ने के लिए यहाँ क्लिक करें।0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "मेरे लिए एक बनाएँ"
@@ -4201,18 +4601,22 @@ msgstr "मेरे लिए एक बनाएँ"
msgid "Make sure this is where you intend to go!"
msgstr "यह सुनिश्चित करें कि आप यहाँ जाना चाहते हैं!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "सहेजे गए फ़ीड प्रबंधित करें"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "अपने म्यूट किए गए शब्द और टैग प्रबंधित करें"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr ""
@@ -4221,16 +4625,23 @@ msgstr ""
msgid "Mark as read"
msgstr "पढ़ा हुआ मार्क करें"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr ""
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "मीडिया"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "मीडिया जो कुछ दर्शकों के लिए भयावह या अनुचित हो सकता है"
@@ -4246,23 +4657,27 @@ msgstr "उल्लेखित उपयोगकर्ता"
msgid "Mentions"
msgstr "उल्लेख"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "मेनू"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "संदेश {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "संदेश मिटाई गई"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "संदेश मिटाई गई"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr ""
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "सर्वर से संदेश: {0}"
@@ -4276,7 +4691,11 @@ msgstr "संदेश दर्ज करने का स्थान"
msgid "Message is too long"
msgstr "संदेश बहुत लंबा है"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr ""
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "संदेश"
@@ -4295,10 +4714,10 @@ msgstr "भ्रमित करने वाला खाता"
msgid "Misleading Post"
msgstr "भ्रमित करने वाला पोस्ट"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "मॉडरेशन"
@@ -4320,22 +4739,22 @@ msgstr "<0/> द्वारा मॉडरेशन सूची"
msgid "Moderation list by you"
msgstr "आपके द्वारा मॉडरेशन सूची"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "मॉडरेशन सूची बनाई गई"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "मॉडरेशन सूची अपडेट की गई"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "मॉडरेशन सूचियाँ"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "मॉडरेशन सूचियाँ"
@@ -4343,11 +4762,11 @@ msgstr "मॉडरेशन सूचियाँ"
msgid "moderation settings"
msgstr "मॉडरेशन सेटिंग"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "मॉडरेशन स्थिति"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "मॉडरेशन के औज़ार"
@@ -4356,7 +4775,7 @@ msgstr "मॉडरेशन के औज़ार"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "मॉडरेटर ने सामग्री पर सामान्य चेतावनी दी है।"
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "अधिक"
@@ -4365,9 +4784,9 @@ msgstr "अधिक"
msgid "More feeds"
msgstr "अधिक फ़ीड"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "अधिक विकल्प"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "सबसे पसंदीदा पहले"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "सबसे अधिक पसंदीदा जवाब पहले"
@@ -4400,14 +4819,14 @@ msgstr "म्यूट"
msgid "Mute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "खाता म्यूट करें"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "खातों को म्यूट करें"
@@ -4420,11 +4839,11 @@ msgstr "बातचीत म्यूट करें"
msgid "Mute in:"
msgstr "इसमें म्यूट करें: "
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "सूची म्यूट करें"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "इन खातों को म्यूट करें?"
@@ -4452,26 +4871,26 @@ msgstr "इस शब्द को केवल टैग में म्यू
msgid "Mute this word until you unmute it"
msgstr "इस शब्द को म्यूट करें जब तक आप इसे अनम्यूट नहीं करते"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "थ्रेड म्यूट करें"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "शब्द और टैग म्यूट करें"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "म्यूट किए गए खाते"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "म्यूट किए गए खाते"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "म्यूट किए गए खातों के पोस्ट आपके फ़ीड और आपकी अधिसूचनाओं से हटा दिए जाते हैं। म्यूट पूरी तरह से निजी हैं।"
@@ -4479,11 +4898,11 @@ msgstr "म्यूट किए गए खातों के पोस्ट
msgid "Muted by \"{0}\""
msgstr "\"{0}\" द्वारा म्यूट किया गया"
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "म्यूट किए गए शब्द और टैग"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "म्यूट करना निजी है। म्यूट किए गए खाते आपसे संपर्क कर सकते हैं, लेकिन आप उनकी पोस्ट नहीं देखेंगे या उनसे अधिसूचनाएँ प्राप्त नहीं करेंगे।"
@@ -4492,15 +4911,15 @@ msgstr "म्यूट करना निजी है। म्यूट क
msgid "My Birthday"
msgstr "मेरा जन्मदिन"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "मेरे फ़ीड"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "नाम"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "नाम आवश्यक है"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "प्रकृति"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "{0} पर जाएँ"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "अगले स्क्रीन पर जाता है"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "आपके प्रोफ़ाइल पर जाता है"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "इसे बदलना चाहते हैं?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "कॉपीराइट उल्लंघन की शिकायत करना चाहते हैं?"
@@ -4547,30 +4971,43 @@ msgstr "कॉपीराइट उल्लंघन की शिकायत
msgid "Never lose access to your followers or data."
msgstr "अपने फ़ॉलोअर और डेटा तक पहुँच कभी न खोएँ।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "छोड़ें, मेरे लिए हैंडल बनाएँ"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "नया"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "नया"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "नया बातचीत"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "नया हैंडल"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "नई सूची"
@@ -4578,7 +5015,7 @@ msgstr "नई सूची"
msgid "New messages"
msgstr "नए संदेश"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "नया मॉडरेशन सूची"
@@ -4590,12 +5027,12 @@ msgstr "नया पासवर्ड"
msgid "New Password"
msgstr "नया पासवर्ड"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "नया पोस्ट"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "नया पोस्ट"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "नया पोस्ट"
@@ -4613,19 +5050,20 @@ msgstr "नया पोस्ट"
msgid "New user info dialog"
msgstr "नया उपयोगकर्ता जानकारी डायलॉग"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "नया उपयोगकर्ता सूची"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "सबसे नया जवाब पहले"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "समाचार"
@@ -4655,11 +5093,15 @@ msgstr "अगली छवि"
msgid "No app passwords yet"
msgstr "कोई ऐप पासवर्ड नहीं"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "कोई DNS पैनल नहीं"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "कोई अनुशंसित GIF नहीं मिली। टेनोर के साथ समस्या हो सकती है।"
@@ -4668,21 +5110,25 @@ msgstr "कोई अनुशंसित GIF नहीं मिली। ट
msgid "No feeds found. Try searching for something else."
msgstr "कोई फीड नहीं मिली। कुछ और खोजने का प्रयास करें।"
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr ""
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "अभी तक कोई पसंद नहीं"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "{0} को और फ़ॉलो नहीं कर रहे"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "अभी तक कोई संदेश नहीं"
@@ -4711,31 +5157,38 @@ msgstr "कोई क्वोट नहीं"
msgid "No reposts yet"
msgstr "कोई रीपोस्ट नहीं"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "कोई परिणाम नहीं"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "कोई परिणाम नहीं"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr ""
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "कोई परिणाम नहीं मिले"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "\"{query}\" के लिए कोई परिणाम नहीं मिला"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "{query} के लिए कोई परिणाम नहीं मिला"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "\"{search}\" के लिए कोई परिणाम नहीं मिला।"
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "कोई नहीं"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "इसे अभी तक किसी ने पसंद नहीं किया है। शायद सबसे पहले आपको करना चाहिए!"
@@ -4775,19 +5227,15 @@ msgstr "ग़ैर-यौन नग्नता"
msgid "Not followed by anyone you're following"
msgstr ""
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "नहीं मिला"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "अभी नहीं"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "साझा करने के बारे में"
@@ -4795,7 +5243,7 @@ msgstr "साझा करने के बारे में"
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "टिप्पणी: Bluesky एक खुला और सार्वजनिक नेटवर्क है। यह सेटिंग आपके सामग्री की दृश्यता केवल Bluesky ऐप और वेबसाइट पर सीमित करता है, और अन्य ऐप इस सेटिंग की अवमानना कर सकते हैं। अन्य ऐप और वेबसाइट पर आपके सामग्री को लॉग आउट उपयोगकर्ताओं को दिखा सकते हैं।"
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "यहाँ कुछ नहीं"
@@ -4803,7 +5251,7 @@ msgstr "यहाँ कुछ नहीं"
msgid "Notification filters"
msgstr "अधिसूचना फ़िल्टर"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "अधिसूचना सेटिंग"
@@ -4820,11 +5268,11 @@ msgstr "अधिसूचना ध्वनि"
msgid "Notification Sounds"
msgstr "अधिसूचना ध्वनि"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "अधिसूचनाएँ"
@@ -4832,12 +5280,12 @@ msgstr "अधिसूचनाएँ"
msgid "now"
msgstr "अभी"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "अभी"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "नग्नता"
@@ -4859,21 +5307,23 @@ msgstr "अरे नहीं!"
msgid "Oh no! Something went wrong."
msgstr "अरे नहीं! कोई गड़बड़ हुई।"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "ठीक"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "ठीक है"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "सबसे पुराने जवाब पहले"
@@ -4881,19 +5331,19 @@ msgstr "सबसे पुराने जवाब पहले"
msgid "on<0><1/><2><3/>2>0>"
msgstr "<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "ज्ञानप्राप्ति रीसेट"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "एक या अधिक GIF के विवरण नहीं हैं।"
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "एक या अधिक छवियों पर वैकल्पिक पाठ नहीं है।"
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "एक या अधिक वीडियो के विवरण नहीं हैं।"
@@ -4905,11 +5355,11 @@ msgstr "केवल .jpg और .png फ़ाइलें समर्थित
msgid "Only {0} can reply."
msgstr "केवल {0} जवाब दे सकता है"
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "केवल आक्षर, संख्या और हाइफ़न है"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "केवल छवि फाइलें समर्थित हैं"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "अरे, कोई गड़बड़ हुई!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "अरे!"
@@ -4935,67 +5385,80 @@ msgstr "अरे!"
msgid "Open"
msgstr "खोलें"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "{name} प्रोफ़ाइल शॉर्टकट मेनू खोलें"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "अवतार निर्माता खोलें"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "बातचीत विकल्प खोलें"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "ड्रॉअर मेनू खोलें"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "इमोजी चयन खोलें"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "फ़ीड जानकारी स्क्रीन खोलें"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "फ़ीड विकल्प मेनू खोलें"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr ""
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "{niceUrl} का लिंक खोलें"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "संदेश विकल्प खोलें"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "मॉडरेशन डीबग पृष्ठ खोलें"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "म्यूट किए गए शब्द और टैग सेटिंग खोलें"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "पोस्ट विकल्प मेनू खोलें"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "स्टार्टर पैक मेनू खोलें"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "कहानी की किताब का पृष्ठ खोलें"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "सिस्टम लॉग खोलें"
@@ -5015,19 +5478,19 @@ msgstr "यह चुनने के लिए डायलॉग खोलत
msgid "Opens additional details for a debug entry"
msgstr "डीबग प्रविष्टि के लिए अतिरिक्त विवरण खोलता है"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "उपकरण कर कैमरा खोलता है"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr ""
@@ -5039,7 +5502,7 @@ msgstr "रचयिता खोलता है"
msgid "Opens device photo gallery"
msgstr "उपकरण की तस्वीर गैलरी खोलता है"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr ""
@@ -5057,7 +5520,7 @@ msgstr "अपने मौजूदा Bluesky खाते में साइ
msgid "Opens GIF select dialog"
msgstr "GIF चयन डायलॉग खोलता है"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr ""
@@ -5065,6 +5528,10 @@ msgstr ""
msgid "Opens list of invite codes"
msgstr "आमंत्रण कोड की सूची खोलता है"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "पासवर्ड रीसेट फ़ॉर्म खोलें"
@@ -5073,12 +5540,12 @@ msgstr "पासवर्ड रीसेट फ़ॉर्म खोलें"
msgid "Opens the linked website"
msgstr "लिंक की गई वेबसाइट खोलता है"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "यह प्रोफ़ाइल खोलता है"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "वीडियो चयन खोलता है"
@@ -5121,11 +5588,11 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "अन्य"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "अन्य खाता"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "पृष्ठ नहीं मिला"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "रोकें"
msgid "Pause video"
msgstr "वीडियो रोकें"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "लोग"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "@{0} द्वारा फ़ॉलो किए गए लोग"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "@{0} को फ़ॉलो करते लोग"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "कैमरा रोल तक पहुँच की अनुमति की अवश्यकता है।"
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "कैमरा रोल तक पहुँच की अनुमति नहीं दी गई। कृपया सिस्टम सेटिंग मे सक्षम करें।"
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr ""
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "पालतू"
msgid "Photography"
msgstr "फ़ोटोग्राफ़ी"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "वयस्कों के लिए छवि।"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "फ़ीड पिन करें"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
msgstr ""
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "होम में पिन करें"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "होम में पिन करें"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "अपने प्रोफ़ाइल में पिन करें"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "पिन किया गया"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "होम में {0} पिन किया गया"
@@ -5263,7 +5722,7 @@ msgstr "होम में {0} पिन किया गया"
msgid "Pinned Feeds"
msgstr "पिन किए गए फ़ीड"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "आपके फ़ीड में पिन किया गया"
@@ -5302,24 +5761,28 @@ msgstr "GIF चलाता है"
msgid "Plays the video"
msgstr ""
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr ""
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "कृपया अपना हैंडल चुनें"
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "कृपया अपना पासवर्ड चुनें"
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr ""
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "कृपया सत्यापन कैपचा समाप्त करें"
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "इसे बदलने से पहले कृपया अपने ईमेल की पुष्टि करें। यह एक अस्थायी आवश्यकता है जबकि ईमेल-अपडेटिंग औज़ार जोड़ा जाता है, और इसे जल्द ही हटा दिया जाएगा।"
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr ""
@@ -5335,19 +5798,41 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "कृपया इस ऐप पासवर्ड के लिए एक अद्वितीय नाम दर्ज करें या हमारे द्वारा उत्पन्न यादृच्छिक नाम का उपयोग करें"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "कृपया म्यूट करने के लिए एक मान्य शब्द, टैग, या वाक्यांश दर्ज करें"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr ""
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "कृपया अपना ईमेल दर्ज करें।"
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "कृपया अपना ईमेल दर्ज करें।"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr ""
@@ -5381,24 +5866,25 @@ msgstr ""
msgid "Please sign in as @{0}"
msgstr "कृपया @{0} के रूप में साइन इन करें"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "कृपया अपना ईमेल सत्यापित करें"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "राजनीति"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr ""
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "अश्लील"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "पोस्ट करें"
@@ -5408,32 +5894,32 @@ msgctxt "description"
msgid "Post"
msgstr "पोस्ट करें"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "सभी पोस्ट करें"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "{0} द्वारा पोस्ट"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "@{0} द्वारा पोस्ट"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "पोस्ट मिटाया गया"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "पोस्ट अपलोड करने में असफल। कृपया अपना इंटरनेट कनेक्शन जाँच लें और फिर प्रयास करें।"
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr ""
@@ -5455,7 +5941,7 @@ msgstr "पोस्ट आपके द्वारा छिपाया ग
msgid "Post interaction settings"
msgstr "पोस्ट संपर्क सेटिंग"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr ""
@@ -5476,15 +5962,16 @@ msgstr "पोस्ट नहीं मिला"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "पोस्ट पिन किया गया"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "पोस्ट पिन से हटाया गया"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "पोस्ट"
@@ -5503,7 +5990,7 @@ msgstr "संभावित भ्रामक लिंक"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "प्रतामिकता सहेजी गई"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -5524,7 +6011,7 @@ msgstr "इस खाते के फ़ॉलोअर देखने के
msgid "Previous image"
msgstr "पिछली छवि"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "प्राथमिक भाषा"
@@ -5537,31 +6024,31 @@ msgstr "अपने फ़ॉलो किए गए खातों को प
msgid "Priority notifications"
msgstr "प्राथमिक अधिसूचनाएँ"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "गोपनीयता"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "गोपनियता और सुरक्षा"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "गोपनियता और सुरक्षा"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "गोपनीयता नीति"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "वीडियो प्रसंस्करण हो रहा है..."
@@ -5570,23 +6057,23 @@ msgstr "वीडियो प्रसंस्करण हो रहा ह
msgid "Processing..."
msgstr "प्रसंस्करण हो रहा है..."
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "प्रोफ़ाइल"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "प्रोफ़ाइल"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "प्रोफ़ाइल अपडेट की गई"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
@@ -5600,6 +6087,26 @@ msgstr "उपयोगकर्ताओं की सार्वजनिक,
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "सार्वजनिक, साझा योग्य सूचियाँ जो फ़ीड चला सकती हैं।"
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr ""
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr ""
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr ""
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr ""
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "QR कोड आपके क्लिपबोर्ड में कॉपी की गई!"
@@ -5612,25 +6119,25 @@ msgstr "QR कोड डाउनलोड की गई!"
msgid "QR code saved to your camera roll!"
msgstr "QR कोड आपके कैमरा रोल में सहेजी गई!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "क्वोट पोस्ट करें"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "क्वोट पोस्ट को फिर जोड़ा गया"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "क्वोट पोस्ट को सफलतापूर्वक अलग किया गया"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "क्वोट पोस्ट अक्षम किए गए"
@@ -5642,39 +6149,48 @@ msgstr "क्वोट सेटिंग"
msgid "Quotes"
msgstr "क्वोट"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "इस पोस्ट के क्वोट"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "यादृच्छिक (यानि \"क्रमरहित\")"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "दर सीमा से अधिक - आपने अपना हैंडल कम समय में बहुत बार बदलने का प्रयास किया है। फिर प्रयास करने से पहले एक मिनट इंतज़ार करें।"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "क्वोट को फिर जोड़ें"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr ""
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "खाता फिर सक्रिय करें"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Bluesky ब्लॉग पढ़ें"
@@ -5697,11 +6213,11 @@ msgstr ""
msgid "Reason:"
msgstr "कारण:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "हाल के खोज"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "अनुशंसित"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "फिर कनेक्ट करें"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "बातचीत फिर लोड करें"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "हटाएँ"
msgid "Remove {displayName} from starter pack"
msgstr "स्टार्टर पैक से {displayName} को हटाएँ"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr ""
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "खाता हटाएँ"
@@ -5752,13 +6268,13 @@ msgstr "खाता हटाएँ"
msgid "Remove attachment"
msgstr "अटैचमेंट हटाएँ"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "अवतार हटाएँ"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "बैनर हटाएँ"
@@ -5776,24 +6292,25 @@ msgstr "फ़ीड हटाएँ"
msgid "Remove feed?"
msgstr "फ़ीड हटाएँ?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "मेरे फ़ीड से हटाएँ"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "जल्द पहुँच से हटाएँ?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "सहेजे फ़ीड से हटाएँ"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr ""
@@ -5802,11 +6319,16 @@ msgstr ""
msgid "Remove image"
msgstr "छवि हटाएँ"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "अपने सूची से म्यूट शब्द हटाएँ"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "प्रोफ़ाइल हटाएँ"
@@ -5814,12 +6336,12 @@ msgstr "प्रोफ़ाइल हटाएँ"
msgid "Remove quote"
msgstr "क्वोट हटाएँ"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "रिपोस्ट हटाएँ"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "उपशीर्षक फ़ाइल हटाएँ"
@@ -5827,6 +6349,21 @@ msgstr "उपशीर्षक फ़ाइल हटाएँ"
msgid "Remove this feed from your saved feeds"
msgstr "अपने सहेजे फ़ीड से इस फ़ीड को हटाएँ"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr ""
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "लेखक द्वारा हटाया गया"
@@ -5835,7 +6372,7 @@ msgstr "लेखक द्वारा हटाया गया"
msgid "Removed by you"
msgstr "आपके द्वारा हटाया गया"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "सूची से हटाया गया"
@@ -5845,18 +6382,17 @@ msgid "Removed from my feeds"
msgstr "मेरे फ़ीड से हटाया गया"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "सहेजे फ़ीड से हटाया गया"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "आपके सहेजे फ़ीड से हटाया गया"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
msgstr ""
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
@@ -5868,7 +6404,7 @@ msgstr "क्वोट की गई पोस्ट हटाता है"
msgid "Replace with Discover"
msgstr "डिस्कवर से बदलें"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "जवाब"
@@ -5880,12 +6416,13 @@ msgstr "जवाब अक्षम"
msgid "Replies to this post are disabled."
msgstr "इस पोस्ट पर जवाब अक्षम है"
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "जवाब दें"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "जवाब दें ({0, plural, one {# जवाब} other {# जवाब}})"
@@ -5907,86 +6444,86 @@ msgstr "जवाब सेटिंग"
msgid "Reply settings are chosen by the author of the thread"
msgstr "जवाब सेटिंग थ्रेड का लेखक चुनता है"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "जवाब क्रम"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "<0><1/>0> को जवाब"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "अवरुद्ध पोस्ट को जवाब"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "पोस्ट को जवाब"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "आपको जवाब"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "जवाब दृश्यता अपडेट की गई"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "जवाब सफलतापूर्वक छिपाई गई"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "शिकायत करें"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "खाते की शिकायत करें"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "बातचीत की शिकायत करें"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "शिकायत डायलॉग"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "फ़ीड की शिकायत करें"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
-msgstr "सूची की शिकायत करें"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "संदेश की शिकायत करें"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "पोस्ट की शिकायत करें"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "स्टार्टर पैक की शिकायत करें"
@@ -6030,25 +6567,26 @@ msgstr "इस स्टार्टर पैक की शिकायत क
msgid "Report this user"
msgstr "इस उपयोगकर्ता की शिकायत करें"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "रीपोस्ट करें"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "रीपोस्ट करें"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "रीपोस्ट करें ({0, plural, one {# रीपोस्ट} other {# रीपोस्ट}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "रीपोस्ट करें या पोस्ट क्वोट करे"
@@ -6056,27 +6594,27 @@ msgstr "रीपोस्ट करें या पोस्ट क्वो
msgid "Reposted By"
msgstr "इन्होनें रीपोस्ट किया"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "{0} ने रीपोस्ट किया"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "<0><1/>0> ने रीपोस्ट किया"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "आपने रीपोस्ट किया"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "इस पोस्ट के रीपोस्ट"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "बदलाव अनुरोध करें"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr ""
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6088,11 +6626,11 @@ msgstr "कोड अनुरोध करें"
msgid "Require alt text before posting"
msgstr "पोस्ट करने से पहले वैकल्पिक पाठ आवश्यक करें"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "इस प्रदाता के लिए आवश्यक"
@@ -6100,13 +6638,19 @@ msgstr "इस प्रदाता के लिए आवश्यक"
msgid "Required in your region"
msgstr "आपके क्षेत्र में आवश्यक"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "ईमेल फिर भेजें"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "ईमेल फिर भेजें"
@@ -6123,8 +6667,8 @@ msgstr "कोड रीसेट करें"
msgid "Reset Code"
msgstr "कोड रीसेट करें"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "ज्ञानप्राप्ति स्थिति को रीसेट करें"
@@ -6141,16 +6685,16 @@ msgstr ""
msgid "Retries the last action, which errored out"
msgstr "पिछली क्रिया का फिर से प्रयास करता है, जिसमें त्रुटि हुई"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "पिछली क्रिया का फिर से प्रय
msgid "Retry"
msgstr "फिर प्रयास करें"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr ""
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "पिछले पृष्ठ पर वापस जाएँ"
@@ -6175,11 +6719,11 @@ msgstr "पिछले पृष्ठ पर वापस जाएँ"
msgid "Returns to home page"
msgstr "होम पृष्ठ पर वापस जाता है"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "पिछले पृष्ठ पर वापस जाता है"
@@ -6190,24 +6734,26 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "सहेजें"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "सहेजें"
@@ -6221,12 +6767,12 @@ msgstr "जन्मदिन सहेजें"
msgid "Save changes"
msgstr "बदलाव सहेजें"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "बदलाव सेव करो"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "छवि सहेजें"
@@ -6234,16 +6780,16 @@ msgstr "छवि सहेजें"
msgid "Save image crop"
msgstr "छवि क्रॉप सहेजें"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "नया हैंडल सहेजें"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "QR कोड सहेजें"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "मेरे फ़ीड में सहेजें"
@@ -6251,16 +6797,12 @@ msgstr "मेरे फ़ीड में सहेजें"
msgid "Saved Feeds"
msgstr "सहेजे गए फ़ीड"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "आपके कैमरा रोल में सहेजा गया"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "आपके फ़ीड में सहेजा गया"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "आपके प्रोफ़ाइल में बदलाव सहेजता हैं"
@@ -6270,8 +6812,8 @@ msgstr "छवि क्रॉप सेटिंग सहेजता है"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "नमस्ते कहें!"
@@ -6280,45 +6822,42 @@ msgstr "नमस्ते कहें!"
msgid "Science"
msgstr "विज्ञान"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "ऊपर जाएँ"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "खोजें"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "नाम या दिलचस्पी से खोजें"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "फ़ीड खोजें"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "\"{interestsDisplayName}\"{activeText} खोजें"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "\"{query}\" खोजें"
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "\"{searchText}\" खोजें"
@@ -6326,29 +6865,33 @@ msgstr "\"{searchText}\" खोजें"
msgid "Search for feeds that you want to suggest to others."
msgstr "फ़ीड खोजें जो आप दूसरों को दिखाना चाहते हैं"
-#: src/view/screens/Search/Search.tsx:875
-msgid "Search for posts, users, or feeds"
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "उपयोगकर्ता खोजें"
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr ""
+
+#: src/screens/Search/Shell.tsx:334
+msgid "Search for posts, users, or feeds"
+msgstr ""
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "GIF खोजें"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "प्रोफ़ाइल खोजें"
@@ -6356,16 +6899,20 @@ msgstr "प्रोफ़ाइल खोजें"
msgid "Search Tenor"
msgstr "Tenor में खोजें"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "सुरक्षा चरण आवश्यक"
@@ -6385,7 +6932,7 @@ msgstr ""
msgid "See #{tag} posts by user"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Bluesky में नौकरियाँ देखें"
@@ -6405,6 +6952,10 @@ msgstr "रंग चुनें"
msgid "Select account"
msgstr "खाता चुनें"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "अवतार चुनें"
@@ -6413,10 +6964,22 @@ msgstr "अवतार चुनें"
msgid "Select an emoji"
msgstr "इमोजी चुनें"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "सामग्री भाषाएँ चुनें"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr ""
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "मौजूदा खाते से चुनें"
@@ -6433,15 +6996,15 @@ msgstr "\"{0}\" GIF चुनें"
msgid "Select how long to mute this word for."
msgstr "चुनें कि कितने समय तक इस शब्द को म्यूट करना है।"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "भाषा चुनें..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "भाषाएँ चुनें"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr ""
@@ -6449,6 +7012,10 @@ msgstr ""
msgid "Select moderator"
msgstr "मॉडरेटर चुनें"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "{emojiName} इमोजी को अपने अवतार के
msgid "Select the moderation service(s) to report to"
msgstr "शिकायत करने के लिए मॉडरेशन सेवा(एँ) चुनें"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "वीडियो चुनें"
@@ -6470,23 +7037,24 @@ msgstr "वीडियो चुनें"
msgid "Select what content this mute word should apply to."
msgstr "चुनें कि किस सामग्री पर यह म्यूट शब्द लागू होगा"
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "चुनें कि आप अपनी सदस्यता वाली फ़ीड में कौन सी भाषाएँ शामिल करना चाहते हैं। यदि कोई भी चयनित नहीं है, तो सभी भाषाएँ दिखाई जाएँगी।"
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "अपनी जन्मतिथि चुनें"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "नीचे दिए विकल्पों में अपनी दिलचस्पियाँ चुनें"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "अपने फ़ीड में अनुवाद के लिए अपनी पसंदीदा भाषा चुनें।"
@@ -6498,19 +7066,17 @@ msgstr ""
msgid "Send a neat website!"
msgstr "कितना सुंदर वेबसाइट है!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr "पुष्टिकरण भेजें"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "पुष्टिकरण ईमेल भेजें"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "पुष्टिकरण ईमेल भेजें"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "ईमेल भेजें"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "ईमेल भेजें"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "प्रतिक्रिया भेजें"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "संदेश भेजें"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr ""
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "इन्हें पोस्ट भेजें"
@@ -6544,17 +7114,20 @@ msgstr "शिकायत भेजें"
msgid "Send report to {0}"
msgstr "{0} को शिकायत भेजें"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "सत्यापन ईमेल भेजें"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "सीधा संदेश द्वारा भेजें"
@@ -6570,7 +7143,7 @@ msgstr "सर्वर पता"
msgid "Set app icon to {0}"
msgstr "ऐप आइकॉन को {0} करें"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "जन्मतिथि चुनें"
@@ -6586,10 +7159,10 @@ msgstr "खाता बनाएँ"
msgid "Sets email for password reset"
msgstr "पासवर्ड रीसेट करने के लिए ईमेल चुनता है"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "सेटिंग"
@@ -6598,7 +7171,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "यौन गतिविधि या कामुक नग्नता।"
@@ -6606,21 +7179,15 @@ msgstr "यौन गतिविधि या कामुक नग्नत
msgid "Sexually Suggestive"
msgstr "यौन रूप से भड़काऊ"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "साझा करें"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "साझा करें"
@@ -6633,15 +7200,19 @@ msgstr "अनोखी कहानी साझा करें"
msgid "Share a fun fact!"
msgstr "मज़ेदार बात साझा करें!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "फिर भी साझा करें"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "लिंक साझा करें"
@@ -6650,32 +7221,46 @@ msgstr "लिंक साझा करें"
msgid "Share Link"
msgstr "लिंक साझा करें"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "लिंग डायलॉग साझा करें"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "QR कोड साझा करें"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "इस फ़ीड को साझा करें"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "इस स्टार्टर पैक को साझा करें"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "इस स्टार्टर पैक को साझा करें और लोगों को Bluesky पर आपके समुदाय में जुड़ने सहायता करें।"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr ""
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "अपना पसंदीदा फ़ीड साझा करें"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "साझा की गई प्राथमिकताओं का परीक्षक"
@@ -6685,7 +7270,7 @@ msgstr "लिंक की गई वेबसाइट को साझा क
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "दिखाएँ"
@@ -6696,8 +7281,8 @@ msgstr "वैकल्पिक पाठ दिखाएँ"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "फिर भी दिखाएँ"
@@ -6718,8 +7303,8 @@ msgstr ""
msgid "Show hidden replies"
msgstr "छिपाए गए जवाब दिखाएँ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "ऐसी चीज़ें कम देखें"
@@ -6727,14 +7312,14 @@ msgstr "ऐसी चीज़ें कम देखें"
msgid "Show list anyway"
msgstr "फिर भी सूची दिखाएँ"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "अधिक दिखाएँ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "ऐसी चीज़ें अधिक देखें"
@@ -6752,7 +7337,7 @@ msgstr "क्वोट पोस्ट दिखाएँ"
msgid "Show replies"
msgstr "जवाब दिखाएँ"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "जवाबों को ऐसे दिखाएँ"
@@ -6764,8 +7349,8 @@ msgstr "जवाबों को थ्रेड में दिखाएँ"
msgid "Show replies by people you follow before all other replies"
msgstr "अन्य जवाबों से पहले आपके फ़ॉलो किए गए लोगों के जवाब दिखाएँ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "जवाब सब के लिए दिखाएँ"
@@ -6787,11 +7372,11 @@ msgstr "चेतावनी दिखाएँ"
msgid "Show warning and filter from feeds"
msgstr "चेतावनी दिखाएँ और फ़ीड से फ़िल्टर करें"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr ""
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr ""
@@ -6809,8 +7394,8 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr ""
msgid "Sign in"
msgstr "साइन इन करें"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "{0} के रूप में साइन इन करें"
@@ -6826,16 +7411,16 @@ msgstr "{0} के रूप में साइन इन करें"
msgid "Sign in as..."
msgstr "... के रूप में साइन इन करें"
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr ""
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "बातचीत में जुड़ने के लिए साइन इन करें या अपना खाता बनाएँ"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "लॉग इन या साइन अप"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr ""
@@ -6843,15 +7428,15 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr "Bluesky में साइन इन करें या नया खाता बनाएँ"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "साइन आउट करें"
@@ -6859,8 +7444,8 @@ msgstr "साइन आउट करें"
msgid "Sign Out"
msgstr "साइन आउट करें"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "साइन आउट करें?"
@@ -6874,11 +7459,6 @@ msgstr "साइन इन आवश्यक"
msgid "Signed in as @{0}"
msgstr "@{0} कए रूप में साइन इन किया गया है"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "बिना स्टार्टर पैक के साइन अप करें"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "एक जैसे खाते"
@@ -6896,12 +7476,21 @@ msgstr "इस फ़्लो को छोड़ें"
msgid "Smaller"
msgstr "छोटा"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "सॉफ़्टवेयर डेवलपर"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "कुछ अन्य फ़ीड जो आपको शायद पसंद आएँ"
@@ -6909,23 +7498,31 @@ msgstr "कुछ अन्य फ़ीड जो आपको शायद पस
msgid "Some people can reply"
msgstr "कुछ लोग जवाब दे सकते हैं"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "कोई गड़बड़ हुई"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "कोई गड़बड़ हुई, फिर प्रयास करें"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "कोई गड़बड़ हुई, फिर प्रयास करें।"
@@ -6934,16 +7531,16 @@ msgstr "कोई गड़बड़ हुई, फिर प्रयास करे
msgid "Something went wrong!"
msgstr "कोई गड़बड़ हुई!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "कुछ गड़बड़ है? हमें बताएँ।"
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr ""
@@ -6978,34 +7575,39 @@ msgstr "स्पैम; अत्यधिक उल्लेख या जव
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "खेल"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "नया बातचीत शुरू करें"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "लोगों को जोड़ना शुरू करें"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "लोगों को जोड़ना शुरू करें!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "{displayName} से बातचीत शुरू करें"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "स्टार्टर पैक"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "{0} द्वारा स्टार्टर पैक"
@@ -7013,38 +7615,39 @@ msgstr "{0} द्वारा स्टार्टर पैक"
msgid "Starter pack by <0/>"
msgstr "<0/> द्वारा स्टार्टर पैक"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "आपके द्वारा स्टार्टर पैक"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "स्टार्टर पैक अमान्य है"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "स्टार्टर पैक"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "स्टार्टर पैक आपको अपने पसंदीदा फ़ीड और लोगों को अपने दोस्तों के साथ आसानी से साझा करने देते हैं"
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "स्थिति पृष्ठ"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "{1} से चरण {0}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "स्टोरेज खाली की गई, आपको ऐप फिर से खोलना पड़ेगा।"
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "कहानी की किताब"
@@ -7063,46 +7666,51 @@ msgstr "अपील जमा करें"
msgid "Submit Appeal"
msgstr "अपील जमा करें"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "सदस्यता लें"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "इन लेबलों का उपयोग करने के लिए @{0} की सदस्यता लें:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "लेबलकर्ता की सदस्यता लें"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "इस लेबलकर्ता की सदस्यता लें"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "इस सूची की सदस्यता लें"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "सफल!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
-msgstr "सुझाए गए खाते"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
+msgstr ""
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "आपके लिए सुझाव"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "भड़काऊ"
@@ -7116,16 +7724,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "सहायता"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "खाता बदलें"
@@ -7134,11 +7742,11 @@ msgstr "खाता बदलें"
msgid "Switch Account"
msgstr "खाते बदलें"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "खाता बदलें"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr ""
@@ -7149,9 +7757,9 @@ msgstr ""
msgid "System"
msgstr "सिस्टम"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "सिस्टम लॉग"
@@ -7159,6 +7767,12 @@ msgstr "सिस्टम लॉग"
msgid "Tags only"
msgstr "केवल टैग"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "ख़ारिज करने के लिए दबाएँ"
@@ -7184,7 +7798,7 @@ msgstr "प्रौद्योगिकी"
msgid "Tell a joke!"
msgstr "कोई मज़ाक कहें!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "हमें अपने बारे में कुछ बताएँ"
@@ -7192,17 +7806,17 @@ msgstr "हमें अपने बारे में कुछ बताए
msgid "Tell us a little more"
msgstr "हमें थोड़ा और बताएँ"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "शर्तें"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "सेवा की शर्तें"
@@ -7230,7 +7844,11 @@ msgstr ""
msgid "Text input field"
msgstr "पाठ दर्ज करने की फ़ील्ड"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "धन्यवाद! आपका ईमेल सफलतापूर्वक सत्यापित किया गया।"
@@ -7242,7 +7860,7 @@ msgstr "धन्यवाद। आपकी शिकायत भेज द
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "धन्यवाद, आपने सफलतापूर्वक अपने ईमेल पते को सत्यापित किया है, आप इस डायलॉग को बंद कर सकते हैं।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "जिसमें निम्नलिखित शामिल हैं:"
@@ -7250,10 +7868,10 @@ msgstr "जिसमें निम्नलिखित शामिल है
msgid "That handle is already taken."
msgstr "वह हैंडल पहले से ले लिया गया है।"
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "वह स्टार्टर पैक नहीं मिला।"
msgid "That's all, folks!"
msgstr "बस इतना ही, दोस्तों!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "अनअवरुद्ध करने के बाद खाता आपसे संपर्क कर सकेगा।"
@@ -7282,7 +7900,7 @@ msgstr "ऐप को फिर से शुरू किया जाएगा
msgid "The author of this thread has hidden this reply."
msgstr "इस थ्रेड के लेखक ने इस जवाब को छिपाया है।"
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "Bluesky वेब ऐप"
@@ -7302,6 +7920,10 @@ msgstr "डिस्कवर फ़ीड"
msgid "The Discover feed now knows what you like"
msgstr "अब डिस्कवर फ़ीड को पता है कि आपको क्या पसंद है"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "यह अनुभव ऐप में बेहतर है। अभी Bluesky डाउनलोड करें और हम ठीक यहीं से जारी रखेंगे।"
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "गोपनीयता नीति को <0/> पर स्थानांतरित किया गया है"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "चयनित वीडियो 50 एमबी से बड़ा है।"
+msgid "The selected video is larger than 100 MB."
+msgstr ""
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "लगता है सर्वर को समस्याएँ हो रहीं हैं। कृपया थोड़े समय बाद फिर प्रयास करें।"
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "आप जिस स्टार्टर पैक को देखने का प्रयास कर रहे हैं, वह अमान्य है। आप इस स्टार्टर पैक को मिटा सकते हैं।"
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr ""
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "समर्थन फ़ॉर्म स्थानांतरित कर दिया गया है। यदि आपको सहायता चाहिए, तो कृपया <0/> या हमसे संपर्क करने के लिए {HELP_DESK_URL} पर जाएँ।"
@@ -7367,15 +7994,15 @@ msgstr "खाता निष्क्रियण पर कोई समय
msgid "There was an issue connecting to Tenor."
msgstr "Tenor से कनेक्ट करने में समस्या हुई।"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "सर्वर से संपर्क करने में समस्या हुई"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "सर्वर से संपर्क करने में समस्या हुई, कृपया अपना इंटरनेट कनेक्शन जाँच लें और फिर प्रयास करें।"
@@ -7388,11 +8015,12 @@ msgstr "आपके सर्वर से संपर्क करने म
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "अधिसूचनाएँ लाने में समस्या हुई। फिर प्रयास करने के लिए यहाँ दबाएँ।"
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "पोस्ट लाने में समस्या हुई। फिर प्रयास करने के लिए यहाँ दबाएँ।"
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "सूची को लाने में समस्या हुई। फिर प्रयास करने के लिए यहाँ दबाएँ।"
@@ -7400,12 +8028,12 @@ msgstr "सूची को लाने में समस्या हुई
msgid "There was an issue fetching your app passwords"
msgstr "आपके ऐप पासवर्ड को लाने में समस्या हुई।"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "आपकी सूचियों को लाने में समस्या हुई। फिर प्रयास करने के लिए यहाँ दबाएँ।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "आपके सेवा जानकारी को लाने में समस्या हुई।"
@@ -7418,26 +8046,26 @@ msgstr "इस फ़ीड को हटाने में समस्या ह
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "आपके शिकायत को भेजने में समस्या हुई। कृपया अपना इंटरनेट कनेक्शन जाँच लें।"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "आपके फ़ीड को अपडेट करने में समस्या हुई। कृपया अपना इंटरनेट कनेक्शन जाँच लें और फिर प्रयास करें।"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "कोई समस्या हुई! {0}"
@@ -7445,10 +8073,10 @@ msgstr "कोई समस्या हुई! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "कोई समस्या हुई! कृपया अपना इंटरनेट कनेक्शन जाँच ले और फिर प्रयास करें।"
@@ -7469,6 +8097,14 @@ msgstr "ये सेटिंग केवल फ़ॉलोइंग फ़ी
msgid "This {screenDescription} has been flagged:"
msgstr "यह {screenDescription} फ्लैग किया गया है:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "इस खाते ने अनुरोध किया है कि उपयोगकर्ता उनका प्रोफ़ाइल देखने के लिए साइन इन करे।"
@@ -7477,6 +8113,10 @@ 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/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "यह अपील <0>{sourceName}0> को भेजी जाएगी।"
@@ -7510,14 +8150,22 @@ msgstr "यह सामग्री उपलब्ध नहीं है क
msgid "This content is not viewable without a Bluesky account."
msgstr "यह सामग्री Bluesky खाते के बिना देखी नहीं जा सकती।"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "यह सुविधा बीटा में है। आप <0>इस ब्लॉग पोस्ट0> पर रेपोसीटोरी निर्यात के बारे में अधिक पढ़ सकते हैं।"
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr ""
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "यह सुविधा ऐप पासवर्ड के उपयोग के साथ उपलब्ध नहीं है। कृपया अपने मुख्य पासवर्ड से साइन इन करें।"
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "यह फ़ीड खाली है! आपको अधिक उपयोगकर्ताओं को फ़ॉलो करना पड़ेगा या अपने भाषा सेटिंग को बदलना पड़ेगा।"
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "यह फ़ीड खाली है।"
@@ -7540,7 +8188,7 @@ msgstr "यह फ़ीड खाली है।"
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "यह फ़ीड और ऑनलाइन नहीं है। हम इसके बदले <0>डिस्कवर0> दिखा रहे हैं।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "यह हैंडल सुरक्षित है। कृपया कुछ और चुनें।"
@@ -7548,9 +8196,10 @@ msgstr "यह हैंडल सुरक्षित है। कृपय
msgid "This information is not shared with other users."
msgstr "यह जानकारी अन्य उपयोगकर्ताओं के साथ साझा नहीं की जाती।"
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "यदि आपको कभी अपना ईमेल बदलने या पासवर्ड रीसेट करने की आवश्यकता है तो यह महत्वपूर्ण है।"
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr ""
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "यह लेबल लेखक द्वारा लगाई गई
msgid "This label was applied by you."
msgstr "यह लेबल आपके द्वारा लगाई गई है।"
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "इस लेबलकर्ता ने घोषित नहीं किया है कि वह क्या लेबल लगाता है, और शायद निष्क्रिय है।"
@@ -7576,7 +8225,7 @@ msgstr "<0>{0}0> द्वारा बनाई गई इस सूची
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr ""
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "यह सूची खाली है।"
@@ -7584,7 +8233,7 @@ msgstr "यह सूची खाली है।"
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "यह मॉडरेशन सेवा अनुपलब्ध है। अधिक जानकारी के लिए नीचे देखें। यदि यहा समस्या बनी रहती है, हमसे संपर्क करें।"
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "यह पोस्ट <0>{0}0> को बनने का दावा करता है, पर इसे Bluesky पर सबसे पहले <1>{1}1> को देखा गया।"
@@ -7592,28 +8241,29 @@ msgstr "यह पोस्ट <0>{0}0> को बनने का दाव
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "इस पोस्ट को मिटा दिया गया है।"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "इस पोस्ट को फ़ीड और थ्रेड से छिपा दिया जाएगा। इसे पूर्ववत नहीं किया जा सकता।"
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "इस पोस्ट के लेखक ने क्वोट पोस्ट अक्षम किए हैं।"
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
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 "इस जवाब को आपके थ्रेड के नीचे एक छिपे अनुभाग में डाल दिया जाएगा और उत्तरवर्ती जवाबों के अधिसूचनाओं को सभी के लिए म्यूट किया जाएगा।"
@@ -7621,10 +8271,14 @@ msgstr "इस जवाब को आपके थ्रेड के नीच
msgid "This service has not provided terms of service or a privacy policy."
msgstr "इस सेवा ने कोई सेवा की शर्तें या गोपनियता नीति नहीं दी है।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "इस जगह पर डोमेन रिकॉर्ड बनना चाहिए:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr ""
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "इस उपयोगकर्ता के कोई फ़ॉलोअर नहीं हैं"
@@ -7662,21 +8316,21 @@ msgstr "यह उपयोगकर्ता किसी को फ़ॉल
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "यह आपके म्यूट शब्दों से \"{0}\" को मिटा देगा। आप हमेशा इसे "
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "यह @{0} को जल्द पहुँच सूची से हटा देगा।"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "यह आपके पोस्ट को इस क्वोट पोस्ट से सभी उपयोगकर्ताओं के लिए हटा देगा, और उसके बदले एक स्थानधारक छोड़ देगा।"
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "थ्रेड विकल्प"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "थ्रेड प्राथमिकताएँ"
@@ -7684,8 +8338,8 @@ msgstr "थ्रेड प्राथमिकताएँ"
msgid "Thread Preferences"
msgstr "थ्रेड प्राथमिकताएँ"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "थ्रेड"
@@ -7693,7 +8347,7 @@ msgstr "थ्रेड"
msgid "Threaded mode"
msgstr "थ्रेड मोड"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "थ्रेड प्राथमिकताएँ"
@@ -7705,14 +8359,15 @@ msgstr ""
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "ईमेल 2FA विधि अक्षम करने के लिए, कृपया ईमेल पते तक पहुँच को सत्यापित करें।"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr ""
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "बातचीत की शिकायत करने के लिए, कृपया बातचीत स्क्रीन द्वारा किसी संदेश की शिकायत करें। इससे हमारे मॉडरेटर को आपकी समस्या का संदर्भ समझने में आसानी होगी।"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Bluesky पर वीडियो अपलोड करने के लिए, आपको पहले अपना ईमेल सत्यापित करना होगा।"
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "आप यह शिकायत किसे भेजना चाहते हैं?"
@@ -7725,7 +8380,7 @@ msgstr "आज"
msgid "Toggle dropdown"
msgstr "ड्रॉपडाउन टॉगल करें"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "वयस्क सामग्री सक्षम या अक्षम करने के लिए टॉगल करें"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr ""
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "बहतरीन"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "विषय"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "अनुवाद करें"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "रुझान"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr ""
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr ""
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "टीवी"
msgid "Two-factor authentication (2FA)"
msgstr "दो-चरणीय प्रमाणीकरण (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "अपना उपयोगकर्ता हैंडल दर्ज करें"
@@ -7783,18 +8440,11 @@ msgstr "अपना उपयोगकर्ता हैंडल दर्ज
msgid "Type your message here"
msgstr "अपना संदेश यहाँ लिखें"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "प्रकार:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "सूची अनअवरुद्ध करें"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "सूची अनम्यूट करें"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "कनेक्ट करने में असफल। कृपया अपना इंटरनेट कनेक्शन जाँच ले और फिर प्रयास करें।"
@@ -7809,7 +8459,7 @@ msgstr "कनेक्ट करने में असफल। कृपय
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "आपकी सेवा से संपर्क करने में असमर्थ। कृपया अपना इंटरनेट कनेक्शन जाँच ले।"
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "मिटाने में असमर्थ"
@@ -7817,36 +8467,41 @@ msgstr "मिटाने में असमर्थ"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "अनअवरुद्ध करें"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "अनअवरुद्ध करें"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "खाता अनअवरुद्ध करें"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "खाता अनअवरुद्ध करें?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "रीपोस्ट पूर्ववत करें"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "रीपोस्ट पूर्ववत करें ({0, plural, one {# रीपोस्ट} other {# रीपोस्ट}})"
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "अनफ़ॉलो करें"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "{0} को अनफ़ॉलो करें"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "खाता अनफ़ॉलो करें"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "नापसंद करें"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "नापसंद करें ({0, plural, one {# पसंद} other {# पसंद}})"
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr ""
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "अनम्यूट करें"
@@ -7895,10 +8555,10 @@ msgstr "अनम्यूट करें"
msgid "Unmute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "खाता अनम्यूट करें"
@@ -7906,8 +8566,12 @@ msgstr "खाता अनम्यूट करें"
msgid "Unmute conversation"
msgstr "बातचीत अनम्यूट करें"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "थ्रेड अनम्यूट करें"
@@ -7915,38 +8579,47 @@ msgstr "थ्रेड अनम्यूट करें"
msgid "Unmute video"
msgstr "वीडियो अनम्यूट करें"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "पिन से हटाएँ"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "फ़ीड को पिन से हटाएँ"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "होम से पिन से हटाएँ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "प्रोफ़ाइल से पिन से हटाएँ"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "मॉडरेशन सूची को पिन से हटाएँ"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "{0} को होम पिन से हटाया गया"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "आपके फ़ीड से पिन से हटाया गया"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "सदस्यता छोड़ें"
@@ -7955,7 +8628,7 @@ msgstr "सदस्यता छोड़ें"
msgid "Unsubscribe from list"
msgstr "सूची की सदस्यता छोड़ें"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "इस लेबलकर्ता की सदस्यता छोड़ें"
@@ -7963,11 +8636,11 @@ msgstr "इस लेबलकर्ता की सदस्यता छो
msgid "Unsubscribed from list"
msgstr "सूची की सदस्यता छोड़ी गई"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "असमर्थित वीडियो प्रकार"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "असमर्थित वीडियो प्रकार: {0}"
@@ -7987,49 +8660,60 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "सूची में <0>{displayName}0> अपडेट करें"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "{domain} को अपडेट करें"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
-msgctxt "toast"
-msgid "Updating quote attachment failed"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
+msgctxt "toast"
+msgid "Updating quote attachment failed"
+msgstr "क्वोट अटैचमेंट का अपडेट असफल"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "जवाब दृश्यता का अपडेट असफल"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "अपडेट हो रहा है..."
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "इसके बदले फ़ोटो अपलोड करें"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "यहाँ पाठ फ़ाइल अपलोड करें:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "कैमरा से अपलोड करें"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "फ़ाइलों से अपलोड करें"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "लाइब्रेरी से अपलोड करें"
@@ -8042,7 +8726,7 @@ msgstr "छवि अपलोड हो रहा है..."
msgid "Uploading link thumbnail..."
msgstr "लिंक थंबनेल अपलोड हो रहा है..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "वीडियो अपलोड हो रहा है..."
@@ -8050,22 +8734,22 @@ msgstr "वीडियो अपलोड हो रहा है..."
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "अपने खाते या पासवर्ड का पूर्ण पहुँच दिए बिना अन्य Bluesky क्लाएंट में साइन इन करने के लिए ऐप पासवर्ड का उपयोग करें।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "डिफ़ॉल्ट प्रदाता का उपयोग करें"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "ऐप-आंतरिक ब्राउज़र का उपयोग करें"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "लिंक खोलने के लिए ऐप-आंतरिक ब्राउज़र का उपयोग करें"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "मेरे डिफ़ॉल्ट ब्राउज़र का उपयोग करें"
@@ -8119,15 +8803,15 @@ msgstr "{0} द्वारा उपयोगकर्ता सूची"
msgid "User list by you"
msgstr "आपके द्वारा उपयोगकर्ता सूची"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "उपयोगकर्ता सूची बनाई गई"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "उपयोगकर्ता सूची अपडेट की गई"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8150,58 +8834,88 @@ msgstr "मेरे फ़ॉलो किए गए उपयोगकर्
msgid "Users in \"{0}\""
msgstr "\"{0}\" में उपयोगकर्ता"
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "इस सामग्री या प्रोफ़ाइल को पसंद करने वाले उपयोगकर्ता"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "मूल्य:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "सत्यापित ईमेल आवश्यक"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr ""
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr ""
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "DNS रिकॉर्ड सत्यापित करें"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "ईमेल सत्यापन डायलॉग"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "नया ईमेल सत्यापित करें"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "अभी सत्यापित करें"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "अभी पाठ फ़ाइल सत्यापित करें"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "अपना ईमेल सत्यापित करें"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "अपना ईमेल सत्यापित करें"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "संस्कारण {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "वीडियो"
msgid "Video failed to process"
msgstr "वीडियो संसाधित करने में असफल"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr ""
@@ -8224,14 +8938,15 @@ msgstr ""
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "वीडियो गेम"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr ""
@@ -8239,11 +8954,11 @@ msgstr ""
msgid "Video not found."
msgstr "वीडियो नहीं मिला"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "वीडियो सेटिंग"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "वीडियो अपलोड किया गया"
@@ -8251,31 +8966,32 @@ msgstr "वीडियो अपलोड किया गया"
msgid "Video: {0}"
msgstr "वीडियो: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "{0} का अवतार देखें"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "{0} का प्रोफ़ाइल देखें"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "{displayName} का प्रोफ़ाइल देखें"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "अवरुद्ध उपयोगकर्ता का प्रोफ़ाइल देखें"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "डीबग प्रविष्टि देखें"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "विवरण देखें"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "कॉपीराइट उल्लंघन की शिकायत करने के लिए विवरण देखें"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "पूरा थ्रेड देखें"
@@ -8308,18 +9024,17 @@ msgstr "इन लेबलों के बारे में जानका
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "प्रोफ़ाइल देखें"
@@ -8331,7 +9046,11 @@ msgstr "अवतार देखें"
msgid "View the labeling service provided by @{0}"
msgstr "@{0} द्वारा दी गई लेबल सेवा देखें"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "इस फ़ीड को पसंद करने वाले उपयोगकर्ता देखें"
@@ -8339,11 +9058,11 @@ msgstr "इस फ़ीड को पसंद करने वाले उपय
msgid "View video"
msgstr ""
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "अपने अवरुद्ध खाते देखें"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr ""
@@ -8352,14 +9071,18 @@ msgstr ""
msgid "View your feeds and explore more"
msgstr "अपने फ़ीड देखें और अधिक खोजें"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "अपने मॉडरेशन सूची देखें"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "अपने म्यूट किए गए खाते देखें"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "सामग्री की चेतावनी दें"
msgid "Warn content and filter from feeds"
msgstr "सामग्री की चेतावनी दें और फ़ीड से फ़िल्टर करें"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr ""
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "हमें इस हैशटैग के लिए कोई परिणाम नहीं मिला"
@@ -8400,7 +9128,7 @@ msgstr "हमें इस हैशटैग के लिए कोई पर
msgid "We couldn't find any results for that topic."
msgstr "उस विषय से जुड़े हमें कोई परिणाम नहीं मिले।"
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "हम इस बातचीत को लोड नहीं कर सके"
@@ -8420,6 +9148,14 @@ msgstr "हम आशा करते हैं आपका समय शान
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "आपके फ़ॉलो किए गए लोगों के पोस्ट ख़त्म हो गए। यहाँ है <0/> से सबसे नए पोस्ट।"
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "हम तय नहीं कर पाए कि आपको वीडियो आपलोग करने की अनुमति है या नहीं। कृपया फिर प्रयास करें।"
@@ -8428,7 +9164,7 @@ 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:428
msgid "We were unable to load your configured labelers at this time."
msgstr "हम आपके व्यवस्थित लेबलकर्ताओं को इस समय लोड नहीं कर सके।"
@@ -8440,20 +9176,28 @@ msgstr "हम कनेक्ट नहीं कर सके। अपना
msgid "We will let you know when your account is ready."
msgstr "हम आपको बताएँगे जब आपका खाता तैयार हो जाएगा।"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "हम इसका उपयोग आपके अनुभव को वैयक्तिकृत करने के लिए करेंगे।"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "हमें नेटवर्क समस्याएँ हो रही हैं, फिर प्रयास करें।"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr ""
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "हम आपके हमारे साथ जुड़ने को लेकर बहुत उत्साहित हैं!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "हमें क्षमा करें, पर हम इस सूची का समाधान नहीं कर पाए। यदि यह समस्या बनी रहती है, सूची के निर्माता @{handleOrDid} से संपर्क करें।"
@@ -8461,11 +9205,11 @@ msgstr "हमें क्षमा करें, पर हम इस सू
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "हमें क्षमा करें, पर हम अभी आपके म्यूट शब्द लोड नहीं कर सके। कृपया फिर प्रयास करें।"
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
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:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "हमें क्षमा करें! आप जिस पोस्ट को जवाब दे रहे हैं उसे मिटा दिया गया है।"
@@ -8474,7 +9218,7 @@ msgstr "हमें क्षमा करें! आप जिस पोस्
msgid "We're sorry! We can't find the page you were looking for."
msgstr "हमें क्षमा करें! हमें वह पृष्ठ नहीं मिल रहा जिसे आप ढूँढ रहे थे।"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "हमें क्षमा करें! आप केवल बीस लेबलकर्ताओं की सदस्यता ले सकते हैं, और आप बीस की सीमा तक पहुँच गए हैं।"
@@ -8494,16 +9238,16 @@ msgstr "आपकी क्या दिलचस्पियाँ हैं?"
msgid "What do you want to call your starter pack?"
msgstr "आप अपने स्टार्टर पैक को क्या नाम देना चाहते हैं?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "किसके बारे में लोग पोस्ट कर रहे हैं।"
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "क्या चल रहा है?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr ""
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "इस पोस्ट में किन भाषाओं का उपयोग किया जा रहा है?"
@@ -8520,14 +9264,18 @@ msgstr "इस पोस्ट से कौन संपर्क कर सक
msgid "Who can reply"
msgstr "कौन जवाब दे सकता है"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "उफ़!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr ""
@@ -8574,11 +9322,11 @@ msgstr "इस उपयोगकर्ता की समीक्षा क
msgid "Write a message"
msgstr "संदेश लिखें"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "पोस्ट लिखें"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "अपना जवाब दें"
@@ -8588,11 +9336,16 @@ msgstr "अपना जवाब दें"
msgid "Writers"
msgstr "लेखक"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "सर्वर से ग़लत DID प्राप्त हुआ। प्राप्त: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "हाँ"
@@ -8601,15 +9354,15 @@ msgstr "हाँ"
msgid "Yes, deactivate"
msgstr "हाँ, निष्क्रिय करें"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "हाँ, इस स्टार्टर पैक को मिटाएँ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "हाँ, अलग करें"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "हाँ, छिपाएँ"
@@ -8625,7 +9378,11 @@ msgstr "कल"
msgid "You"
msgstr "आप"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr ""
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
msgstr ""
@@ -8633,6 +9390,19 @@ msgstr ""
msgid "You are in line."
msgstr "आप पंक्ति में हैं"
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr ""
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr ""
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr ""
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "आपको वीडियो अपलोड करने की अनुमति नहीं है।"
@@ -8641,6 +9411,27 @@ msgstr "आपको वीडियो अपलोड करने की अ
msgid "You are not following anyone."
msgstr "आप किसी को फ़ॉलो नहीं कर रहे है।"
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr ""
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "आप इसे बाद में अपने सेटिंग में बदल सकते हैं।"
@@ -8682,7 +9472,7 @@ msgstr "आपके कोई फ़ॉलोअर नहीं हैं।"
msgid "You don't follow any users who follow @{name}."
msgstr "आप @{name} को फ़ॉलो करने वाले किसी को फ़ॉलो नहीं करते हैं।"
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr ""
@@ -8736,24 +9526,24 @@ msgstr "आपने इस खाते को म्यूट किया ह
msgid "You have muted this user"
msgstr "आपने इस उपयोगकर्ता को म्यूट किया है"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "आपके कोई बातचीत नहीं हैं। एक शुरू करें!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "आपके कोई फ़ीड नहीं है।"
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "आपकी कोई सूचियाँ नहीं हैं।"
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "आपने अभी तक किसी खाते को अवरुद्ध नहीं किया है। खाता अवरुद्ध करने के लिए, उनके प्रोफ़ाइल पर जाकर मेनू से \"खाता अवरुद्ध करें\" चुनें।"
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "आपने अभी तक किसी खाते को म्यूट नहीं किया है। खाता म्यूट करने के लिए, उनके प्रोफ़ाइल पर जाकर मेनू से \"खाता म्यूट करें\" चुनें।"
@@ -8761,11 +9551,15 @@ msgstr "आपने अभी तक किसी खाते को म्य
msgid "You have reached the end"
msgstr "आप अंत तक आ गए हैं"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr ""
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "आप अस्थायी रूप से वीडियो अपलोड की सीमा तक पहुँच गए हैं। कृपया बाद मे फिर प्रयास करें।"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "आपने अभी तक कोई स्टार्टर पैक नहीं बनाई है!"
@@ -8787,22 +9581,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "आप इन लेबलों पर अपील कर सकते हैं यदि आपको लगता है कि इन्हें ग़लती से लगाया गया है।"
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "आप केवल अधिकतम {STARTER_PACK_MAX_SIZE} प्रोफ़ाइलें जोड़ सकते हैं"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "आप अधिकतम केवल 3 फ़ीड जोड़ सकते हैं"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "आप अधिकतम 4 छवियों को चुन सकते हैं"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "साइन अप करने के लिए आपकी आयु 13 वर्ष या उससे अधिक होनी चाहिए।"
+msgid "You must be 13 years of age or older to create an account."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "स्टार्टर पैक उत्पन्न करने के लिए आपको कम से कम सात अन्य लोगों को फ़ॉलो करना होगा।"
@@ -8810,28 +9604,40 @@ msgstr "स्टार्टर पैक उत्पन्न करने
msgid "You must grant access to your photo library to save a QR code"
msgstr "QR कोड सहेजने के लिए आपको फ़ोटो लाइब्रेरी तक पहुँच देनी पड़ेगी।"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "छवि सहेजने के लिए आपको फ़ोटो लाइब्रेरी तक पहुँच देनी पड़ेगी।"
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "शिकायत करने के लिए आपको कम से कम एक लेबलकर्ता चुनना पड़ेगा।"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr ""
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "आपने पहले @{0} को निष्क्रिय किया था।"
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "आप अपने सभी खातों से साइन आउट हो जाएँगे।"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "आपको और इस थ्रेड के लिए अधिसूचनाएँ नहीं मिलेंगी।"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "आपको अब इस थ्रेड के लिए अधिसूचनाएँ नहीं मिलेंगी।"
@@ -8839,23 +9645,23 @@ msgstr "आपको अब इस थ्रेड के लिए अधिस
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "आपको \"रीसेट कोड\" के साथ एक ईमेल मिलेगा। उस कोड को यहाँ दर्ज करें, फिर अपना नया पासवर्ड दर्ज करें।"
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "आप: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "आप: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "आप: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "अपना खाना बनाने के बाद आप सुझाए गए उपयोगकर्ताओं और फ़ीड को फ़ॉलो करेंगे!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "अपना खाना बनाने के बाद आप सुझाए गए उपयोगकर्ताओं को फ़ॉलो करेंगे!"
@@ -8867,7 +9673,7 @@ msgstr "आप इन लोगों और {0} अन्यों को फ
msgid "You'll follow these people right away"
msgstr "आप इन लोगों को तुरंत फ़ॉलो करेंगे"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "आपको <0>{0}0> पर एक ईमेल मिलगे यह सत्यापित करने के लिए कि यह आप ही हैं।"
@@ -8901,6 +9707,10 @@ msgstr "आपने फ़ॉलो करने के लिए कुछ ल
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "आप अपने फ़ीड के अंत तक पहुँच गए! कुछ और खातों को फ़ॉलो करें!"
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "आप वीडियो अपलोड करने की दैनिक सीमा तक पहुँच गए (अत्यधिक बाइट)"
@@ -8909,11 +9719,11 @@ msgstr "आप वीडियो अपलोड करने की दैन
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "आप वीडियो अपलोड करने की दैनिक सीमा तक पहुँच गए (अत्यधिक वीडियो)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "आपका खाता"
@@ -8941,7 +9751,7 @@ msgstr ""
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "आपकी जन्मतिथि"
@@ -8953,26 +9763,30 @@ msgstr "आपका ब्राउज़र वीडियो के प्र
msgid "Your chats have been disabled"
msgstr "आपके बतचिक अक्षम किए गए हैं।"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "आपका चयन सहेजा जाएगा, पर सेटिंग में बाद में बदला जा सकता है।"
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "आपका वर्तमान हैंडल <0>{0}0> आपके लिए आरक्षित रहेगा। आप इस खाते से कभी भी उस हैंडल पर वापस जा सकते हैं।"
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "आपका ईमेल अमान्य प्रतीत हो रहा है।"
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "आपका ईमेल अपडेट किया गया है लेकिन सत्यापित नहीं किया गया है। अगले चरण में, कृपया अपना नया ईमेल सत्यापित करें।"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "आपका ईमेल अभी तक सत्यापित नहीं हुआ है। यह एक महत्वपूर्ण सुरक्षा कदम है जिसकी हम अनुशंसा करते हैं।"
@@ -8988,14 +9802,31 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "आपका फ़ॉलोइंग फ़ीड खाली है! क्या चल रहा है जानने के लिए और उपयोगकर्ताओं को फ़ॉलो करें।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "आपका पूरा हैंडल <0>@{0}0> होगा"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr ""
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr ""
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "आपके म्यूट किए गए शब्द"
@@ -9004,15 +9835,15 @@ msgstr "आपके म्यूट किए गए शब्द"
msgid "Your password has been changed successfully!"
msgstr "आपके पासवर्ड को सफलतापूर्वक बदला गया!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "आपका पोस्ट प्रकाशित हुआ"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "आपके पोस्ट प्रकाशित हुए"
@@ -9024,14 +9855,22 @@ 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:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "आपके जवाब को प्रकाशित किया गया"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "आपके शिकायत को Bluesky मॉडरेशन सेवा को भेजा जाएगा।"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr ""
diff --git a/src/locale/locales/hu/messages.po b/src/locale/locales/hu/messages.po
index 324f16786e..7b266cb23d 100644
--- a/src/locale/locales/hu/messages.po
+++ b/src/locale/locales/hu/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: hu\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 16:40\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(jelenleg aktív)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(beágyazott tartalom)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(nincs megadott email-cím)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {# megosztás} other {# megosztás}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# másodperce} other {# másodperce}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# olvasatlan} other {# olvasatlan}}"
@@ -90,17 +90,17 @@ msgstr "{0, plural, one {# olvasatlan} other {# olvasatlan}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# hónapja} other {# hónapja}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {követő} other {követő}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {követett} other {követett}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {kedvelés} other {kedvelés}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {kedvelés} other {kedvelés}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {bejegyzés} other {bejegyzés}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {idézés} other {idézés}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {megosztás} other {megosztás}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, other {{1} bejegyzés}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "{0, plural, one {}other {#}} személy regisztrált ezzel a kezdőcsomaggal!"
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0>a <1>címkékben1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>a <1>szövegekben és címkékben1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr "{0} élő adásban van"
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr "A(z) {0} egy érvénytelen webcím"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} felhasználó csatlakozott ezen a héten"
@@ -137,13 +154,18 @@ msgstr "{1}/{0}"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
-msgstr ""
+msgstr "50/{0}"
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "Eddig {0} személy vette igénybe ezt a kezdőcsomagot."
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "{0} {1}-emojival reagált"
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "{0} {1}-emojival reagált erre: {2}"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "{0} profilképe"
@@ -175,7 +197,7 @@ msgstr "{0} perce"
msgid "{0}s"
msgstr "{0} másodperce"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# olvasatlan} other {# olvasatlan}}"
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, one {# óra} other {# óra}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {# perc} other {# perc}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}}0> további személy mostantól követ Téged"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}}0> további személy kedvelte az egyéni hírfolyamodat"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}}0> további személy kedvelte a bejegyzésedet"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}}0> további személy kedvelte a megosztott bejegyzésedet"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}}0> további személy eltávolította a hitelesítését a fiókodról"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}}0> további személy megosztotta a bejegyzésedet"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}}0> további személy megosztotta a megosztott bejegyzésedet"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}}0> további személy a Te kezdőcsomagoddal regisztrált"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}}0> további személy hitelesített Téged"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} mostantól követ Téged"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} kölcsönözte a követésedet"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "{firstAuthorLink} kedvelte az egyéni hírfolyamodat"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "{firstAuthorLink} kedvelte a bejegyzésedet"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr "{firstAuthorLink} kedvelte a megosztott bejegyzésedet"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr "{firstAuthorLink} eltávolította a hitelesítését a fiókodról"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} megosztotta a bejegyzésedet"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr "{firstAuthorLink} megosztotta a megosztott bejegyzésedet"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} a Te kezdőcsomagoddal regisztrált"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr "{firstAuthorLink} hitelesített Téged"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy mostantól követ Téged"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy kedvelte az egyéni hírfolyamodat"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy kedvelte a bejegyzésedet"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy kedvelte a megosztott bejegyzésedet"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy eltávolította a hitelesítését a fiókodról"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy megosztotta a bejegyzésedet"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy megosztotta a megosztott bejegyzésedet"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy a Te kezdőcsomagoddal regisztrált"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy hitelesített Téged"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} mostantól követ Téged"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} kölcsönözte a követésedet"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "{firstAuthorName} kedvelte az egyéni hírfolyamodat"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "{firstAuthorName} kedvelte a bejegyzésedet"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr "{firstAuthorName} kedvelte a megosztott bejegyzésedet"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr "{firstAuthorName} eltávolította a hitelesítését a fiókodról"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} megosztotta a bejegyzésedet"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr "{firstAuthorName} megosztotta a megosztott bejegyzésedet"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} a Te kezdőcsomagoddal regisztrált"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr "{firstAuthorName} hitelesített Téged"
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} követett"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "{handle} jelenleg nem fogad üzeneteket"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr "{hours, plural, one {# óra {minutesString}} other {# óra {minutesString}}}"
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr "{hours, plural, one {# óra} other {# óra}}"
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "{joinedAllTimeCount, plural, other {#}} felhasználó csatlakozott ezzel!"
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr "{minutes, plural, one {# perc} other {# perc}}"
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# olvasatlan értesítés} other {# olvasatlan értesítés}}"
@@ -301,6 +404,34 @@ msgstr "{profileName} {0} ezelőtt csatlakozott a Blueskyhoz"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} {0} ezelőtt csatlakozott a Blueskyhoz egy kezdőcsomag igénybevételével"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "{type} órája"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr "{userName} egy megbízható hitelesítő"
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr "{userName} hitelesített"
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr "{userName} hitelesítései"
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "+{computedTotal}"
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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>és {2, plural, one {#} other {#}} további személy szerepel a kezdőcsomagodban"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {követő} other {követő}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {követett} other {követett}}"
@@ -343,7 +474,7 @@ msgstr "<0>Kísérleti:0> Ha ez a funkció engedélyezve van, akkor csak az á
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>Te0> és<1> 1><2>{0} 2>szerepeltek a kezdőcsomagodban"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Érvénytelen felhasználónév"
@@ -363,19 +494,28 @@ msgstr "30 napig"
msgid "7 days"
msgstr "7 napig"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "(üres üzenet)"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr "A hitelesítés egy új formája"
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Névjegy"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr "Elfogadás"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr "Csevegési kérelem elfogadása"
@@ -385,37 +525,37 @@ msgid "Accept Request"
msgstr "Kérelem elfogadása"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Kisegítő lehetőségek"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Kisegítő lehetőségek"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Fiók"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
msgstr "Letiltottad a fiókot"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
msgstr "Mostantól követed a fiókot"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
msgstr "Elnémítottad a fiókot"
@@ -429,33 +569,37 @@ msgstr "Elnémított fiók"
msgid "Account Muted by List"
msgstr "Elnémított fiók (lista által)"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Fióklehetőségek"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Eltávolítottad a fiókot a listáról"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
msgstr "Feloldottad a fiók tiltását"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
msgstr "Mostantól már nem követed a fiókot"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
msgstr "Feloldottad a fiók némítását"
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+msgstr "Másokat hitelesíteni csak a <0><1/>0> recés pipával rendelkező fiókok képesek. Ezeket a megbízható hitelesítőket a Bluesky jelöli ki."
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Felvesz"
@@ -473,8 +617,12 @@ msgstr "{displayName} felvétele egy kezdőcsomaghoz"
msgid "Add a content warning"
msgstr "Tartalomfigyelmeztetés felvétele"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr "Lehetőséged van egy ideiglenes állapot beállítására. Így, ha valaki rákattint a profilképedre, akkor megtekintheti az élő adásod részleteit."
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "Felhasználó felvétele a listára"
@@ -485,7 +633,7 @@ msgstr "Fiók felvétele a listára"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Fiók felvétele a listára"
msgid "Add alt text"
msgstr "Helyettesítő szöveg hozzáadása"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Helyettesítő szöveg hozzáadása (nem kötelező)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Fiók felvétele a listára"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Válaszlánc folytatása"
@@ -518,8 +666,12 @@ msgstr "Alkalmazásjelszó létrehozása"
msgid "Add App Password"
msgstr "Alkalmazásjelszó létrehozása"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr "Emoji-reakció hozzáfűzése"
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr "További részletek megadása (nem kötelező)"
@@ -531,15 +683,23 @@ msgstr "Szó elnémítása a megadott beállításokkal"
msgid "Add muted words and tags"
msgstr "Elnémított szavak és címkék felvétele"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Válaszlánc folytatása"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Személyek felvétele"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr "Személyek felvétele a listára"
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr "Reakció hozzáfűzése"
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Ajánlott hírfolyamok felvétele"
@@ -552,27 +712,28 @@ msgstr "Vegyél fel néhány hírfolyamot a kezdőcsomagodhoz!"
msgid "Add the default feed of only people you follow"
msgstr "Az alapértelmezett hírfolyamban az általad követett személyek bejegyzései jelennek meg"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Vedd fel az alábbi DNS-rekordot a tartományodhoz:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Add hozzá ezt a hírfolyamot a gyűjteményedhez!"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "Felvétel listára"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Felvétel listára"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Felvétel a hírfolyamgyűjteménybe"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr "Személy felvétele a listára"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Felvetted a felhasználót a listára"
@@ -581,22 +742,22 @@ msgstr "Felvetted a felhasználót a listára"
msgid "Added to my feeds"
msgstr "Felvetted a hírfolyamot a hírfolyamgyűjteményedbe"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr "További részletek (legfeljebb 300 karakter)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Pornó"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Felnőtt tartalom"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "A felnőtt tartalmakat csak böngészőből, a <0>bsky.app0> honlapon engedélyezheted."
@@ -604,30 +765,35 @@ msgstr "A felnőtt tartalmakat csak böngészőből, a <0>bsky.app0> honlapon
msgid "Adult content is disabled."
msgstr "A felnőtt tartalmak le vannak tiltva."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Felnőtt tartalmi feljegyzések"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Haladó beállítások"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr "janos@pelda.hu"
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Mind"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "Mostantól mindegyik fiókot követed!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "Bármilyen nyelven"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "Itt egy helyen megtalálod az összes elmentett hírfolyamot."
@@ -671,10 +837,10 @@ msgstr "HLYT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Helyettesítő szöveg"
@@ -688,19 +854,18 @@ msgstr "A helyettesítő szöveg segít leírni egy képet vak vagy gyengén lá
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "A helyettesítő szöveg le lesz vágva! Korlát: {0} karakter."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr "A helyettesítő szöveg össze lesz csukva. {MAX_ALT_TEXT, plural, other {Korlát: {0} karakter.}}"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "Küldtünk egy emailt a(z) {0} címre. Ez a levél egy ellenőrzőkódot tartalmaz, amit alább adhatsz meg."
-#: src/view/com/modals/ChangeEmail.tsx:114
-msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
-msgstr "Küldtünk egy emailt a korábbi email címedre: {0}. Ez a levél egy ellenőrzőkódot tartalmaz, amit alább adhatsz meg."
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr "Küldtünk egy emailt a korábbi email címedre: {currentEmail}. Ez a levél egy ellenőrzőkódot tartalmaz, amit alább adhatsz meg."
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "Küldtünk egy emailt. Ez a levél egy ellenőrzőkódot tartalmaz, amit alább adhatsz meg."
@@ -716,7 +881,11 @@ msgstr "Hiba történt"
msgid "An error occurred while compressing the video."
msgstr "A videó tömörítése meghiúsult."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr "A hírfolyam lekérdezése meghiúsult."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "A kezdőcsomag létrehozása meghiúsult. Szeretnéd újra megpróbálni?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "A videó betöltése meghiúsult. Próbáld újra!"
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "A QR-kód mentése meghiúsult!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "A videó kiválasztása meghiúsult"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "Az összes felhasználó követése meghiúsult"
@@ -746,12 +914,17 @@ msgstr "Az összes felhasználó követése meghiúsult"
msgid "An error occurred while uploading the video."
msgstr "A videó feltöltése meghiúsult."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr "A megbízható hitelesítőket a Bluesky jelöli ki, akik ezután képesek más személyeket hitelesíteni."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Olyan probléma, amit nem lehet a többi kategóriába sorolni"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "A csevegés indítása meghiúsult"
@@ -761,13 +934,17 @@ msgstr "A csevegés megnyitása meghiúsult"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Hiba történt. Próbáld újra!"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr "Egy kék pipával rendelkező felhasználó, az iPhone-os Bluesky-alkalmazásban megjelenítve."
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "ismeretlen hiba történt"
@@ -790,6 +967,10 @@ msgstr "Állatok"
msgid "Animated GIF"
msgstr "Animált GIF"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr "Hitelesítés a Blueskyon"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,16 +980,16 @@ msgstr "Antiszociális viselkedés"
msgid "Anybody can interact"
msgstr "Bárki kapcsolatba léphet"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "Alkalmazásikon"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
-msgstr "Az alkalmazás nyelve"
+msgstr "Alkalmazás nyelve"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122
msgid "App Password"
@@ -836,7 +1017,7 @@ msgstr "Egy alkalmazásjelszónak legalább 4 karakter hosszúnak kell lennie"
msgid "App passwords"
msgstr "Alkalmazásjelszók"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Alkalmazásjelszók"
@@ -872,10 +1053,10 @@ msgstr "Felfüggesztés fellebbezése"
msgid "Appeal this decision"
msgstr "Döntés fellebbezése"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Megjelenítés"
@@ -884,12 +1065,12 @@ msgstr "Megjelenítés"
msgid "Apply default recommended feeds"
msgstr "Ajánlott hírfolyamok elfogadása"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Archiválás dátuma: {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Archivált bejegyzés"
@@ -897,15 +1078,15 @@ msgstr "Archivált bejegyzés"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Biztosan törölni akarod a(z) „{0}” nevű alkalmazásjelszót?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Biztosan törölni akarod ezt az üzenetet? Az üzenet a Te nézőpontodból el lesz távolítva, de a másik fél számára nem."
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "Biztosan törölni akarod ezt a kezdőcsomagot?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "Biztosan el akarod vetni a változtatásokat?"
@@ -921,15 +1102,15 @@ msgstr "Biztosan el akarod hagyni ezt a csevegést? Már nem fogsz tudni hozzáf
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Biztosan el akarod távolítani a(z) {0} c. hírfolyamot a gyűjteményedből?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Biztosan el akarod távolítani ezt a hírfolyamgyűjteményedből?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "Biztosan el akarod vetni ezt a piszkozatot?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "Biztosan el akarod vetni ezt a bejegyzést?"
@@ -937,7 +1118,7 @@ msgstr "Biztosan el akarod vetni ezt a bejegyzést?"
msgid "Are you sure?"
msgstr "Biztos vagy benne?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "Jelenleg <0>{suggestedLanguageName}0> nyelven írsz?"
@@ -946,11 +1127,16 @@ msgstr "Jelenleg <0>{suggestedLanguageName}0> nyelven írsz?"
msgid "Art"
msgstr "Művészet"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Művészi- vagy nem erotikus meztelenség"
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr "Témakör hozzárendelése"
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "Adj meg legalább 3 karaktert"
@@ -963,12 +1149,12 @@ msgstr "Sarki Fény"
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Az automatikus lejátszási beállítások elköltöztek a <0>Tartalmi- és médiabeállításokba0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Videók és GIF-ek automatikus lejátszása"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Videók és GIF-ek automatikus lejátszása"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Vissza"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr "Vissza a csevegésekhez"
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "A listakészítés előtt ellenőriznünk kell az email-címedet."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "A bejegyzésírás előtt ellenőriznünk kell az email-címedet."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr "A bejegyzés- vagy válaszírás előtt ellenőriznünk kell az email-címedet."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "A kezdőcsomag-létrehozás előtt ellenőriznünk kell az email-címedet."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr "Az üzenetfogadás előtt ellenőriznünk kell az email-címedet."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
msgstr "Az üzenetküldés előtt ellenőriznünk kell az email-címedet."
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "KÍSÉRLETI"
-
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Születésnap"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Letiltás"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Fiók letiltása"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "Fiók letiltása"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Fiókok letiltása"
@@ -1054,7 +1241,7 @@ msgstr "Letiltás és törlés"
msgid "Block and/or delete this conversation"
msgstr "A másik fél letiltása és/vagy a beszélgetés törlése"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Lista letiltása"
@@ -1062,7 +1249,7 @@ msgstr "Lista letiltása"
msgid "Block or report"
msgstr "Letiltás/jelentés"
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "Fiókok letiltása"
@@ -1079,21 +1266,21 @@ msgstr "Felhasználó letiltása"
msgid "Blocked"
msgstr "Letiltva"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Letiltott fiókok"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Letiltott fiókok"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Az általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre, megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba lépni Veled."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 "Az általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre, megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba lépni Veled. A letiltott fiókok bejegyzéseit nem fogod látni és ez fordítva is érvényes."
@@ -1101,19 +1288,19 @@ msgstr "Az általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre
msgid "Blocked post."
msgstr "Letiltott bejegyzés."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "A feljegyző letiltása nem akadályozza meg abban, hogy feljegyzéseket helyezzen a fiókodra."
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "A letiltás nyilvános. Az általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre, megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba lépni Veled."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "A fiók letiltása nem fogja megakadályozni a feljegyzések hozzárendelését a saját fiókodhoz, viszont a letiltott fiók nem lesz képes válaszolni a bejegyzéseidre és egyéb módon kapcsolatba lépni Veled."
-#: src/view/com/auth/SplashScreen.web.tsx:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blog"
@@ -1122,7 +1309,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "A Bluesky nem tudja megerősíteni a létrehozás dátumát."
@@ -1148,7 +1335,7 @@ msgstr "A Bluesky ismerősökkel még jobb!"
msgid "Bluesky Social Terms of Service"
msgstr "A Bluesky felhasználási feltételei"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "A Bluesky egy javasolt felhasználócsoportot fog kijelölni a hálózatodon."
@@ -1156,6 +1343,10 @@ msgstr "A Bluesky egy javasolt felhasználócsoportot fog kijelölni a hálózat
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "A Bluesky nem fogja mutatni a profilodat és a bejegyzéseidet a kijelentkezett felhasználók számára. Lehetséges, hogy ezt a kérést nem minden alkalmazás fogja tiszteletben tartani. Ez a beállítás nem teszi priváttá a profilodat."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr "A Bluesky mostantól hitelesíti a jelentős és megbízható fiókokat."
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "Képek elhomályosítása és kiszűrés a hírfolyamokból"
msgid "Books"
msgstr "Könyvek"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "További fiókokat a Felfedezés oldalon találsz"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "További hírfolyamokat a Felfedezés oldalon találsz"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "További javaslatok"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "További javaslatokat a Felfedezés oldalon találsz"
@@ -1214,20 +1405,26 @@ msgstr "A(z) „{displayName}” címkével ellátott bejegyzések"
msgid "Browse starter pack {displayName}"
msgstr "A(z) „{displayName}” kezdőcsomag böngészése"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr "A(z) „{0}” témakör böngészése"
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "A(z) „{displayName}” témakör böngészése"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Honlap"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "Szerző: {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Szerző: <0>{0}0>"
@@ -1243,44 +1440,51 @@ msgstr "A fiók létrehozásával elfogadod a <0>felhasználási feltételeket
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "A fiók létrehozásával elfogadod a <0>felhasználási feltételeket0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr "Saját"
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Kamera"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Mégse"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "Fióktörlés megszakítása"
msgid "Cancel image crop"
msgstr "Képkivágás megszakítása"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Profilszerkesztés megszakítása"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Idézés megszakítása"
@@ -1308,8 +1512,7 @@ msgstr "Idézés megszakítása"
msgid "Cancel reactivation and sign out"
msgstr "Újraaktiválás megszakítása és kilépés"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Keresés megszakítása"
@@ -1317,24 +1520,23 @@ msgstr "Keresés megszakítása"
msgid "Cancels opening the linked website"
msgstr "A hivatkozás megnyitásának megszakítása"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "Egy letiltott felhasználóval nem léphetsz kapcsolatba"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Feliratok (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Feliratok és helyettesítő szöveg"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Megváltoztatás"
@@ -1347,46 +1549,41 @@ msgstr "Alkalmazásikon megváltoztatása"
msgid "Change app icon to \"{0}\""
msgstr "Alkalmazásikon megváltoztatása erre: {0}"
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Email-cím megváltoztatása"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr "Alkalmazás nyelvének megváltoztatása"
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Email-cím megváltoztatása"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Felhasználónév megváltoztatása"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr "Címzett megváltoztatása"
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Email-cím megváltoztatása"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Jelszó megváltoztatása"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "Bejegyzés nyelvének megváltoztatása erre: {suggestedLanguageName}"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr "Jelentési ok megváltoztatása"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Email-cím megváltoztatása"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Email-cím megváltoztatása"
@@ -1394,20 +1591,20 @@ msgstr "Email-cím megváltoztatása"
msgid "Changes app icon"
msgstr "Alkalmazásikon megváltoztatása"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr "Tárhelyszolgáltató megváltoztatása"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Csevegés"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
msgstr "Törölted a csevegést"
@@ -1417,20 +1614,19 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Elnémítottad a csevegést"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr "Csevegési kérelmek"
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr "Csevegési kérelmek"
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Csevegések"
@@ -1443,8 +1639,8 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Feloldottad a csevegés némítását"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr "Csevegések"
@@ -1461,7 +1657,7 @@ msgstr "Add meg az emailben kapott megerősítőkódot!"
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Küldtünk egy emailt. Add meg a benne található ellenőrzőkódot:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Tartományhitelesítési módszer"
@@ -1469,7 +1665,7 @@ msgstr "Tartományhitelesítési módszer"
msgid "Choose Feeds"
msgstr "Hírfolyamok böngészése"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Létrehozás automatikusan"
@@ -1477,10 +1673,6 @@ msgstr "Létrehozás automatikusan"
msgid "Choose People"
msgstr "Személyek kiválasztása"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Válaszd ki a médiatartalomra alkalmazható feljegyzési kategóriákat! Ha egyet sem választasz ki, akkor a bejegyzést bármilyen közönség által megtekinthetőnek vesszük."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Válaszd ki az algoritmusokat, amelyek az egyéni hírfolyamaidat működtetik!"
@@ -1493,27 +1685,31 @@ msgstr "Szín használata profilképként"
msgid "Choose your account provider"
msgstr "Tárhelyszolgáltató megadása"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Válaszd ki, hogy milyen idővonalakat akarsz böngészni! A közösség által épített egyéni hírfolyamok segítenek megtalálni a Téged érdeklő tartalmakat."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Jelszó megadása"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "Felhasználónév megadása"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Összes adat törlése"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Összes adat törlése (A program újra fog indulni)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr "Képgyorsítótár ürítése"
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Keresési kifejezés törlése"
@@ -1522,6 +1718,14 @@ msgstr "Keresési kifejezés törlése"
msgid "click here"
msgstr "kattints ide"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr "Hitelesítés most."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr "Email-cím frissítése"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Kattints ide a bejegyzés idézésének letiltásához."
@@ -1534,7 +1738,7 @@ msgstr "Kattints ide a bejegyzés idézésének engedélyezéséhez."
msgid "Click to open tag menu for {tag}"
msgstr "A(z) {tag} címke menüjének megnyitása"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Üzenetküldés megkísérlése ismét"
@@ -1546,24 +1750,34 @@ msgstr "Éghajlat"
msgid "Clip 🐴 clop 🐴"
msgstr "Kipp 🐴 kopp 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Bezárás"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Az előtérben lévő párbeszédablak bezárása"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Alsó kinyíló menü bezárása"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Párbeszédablak bezárása"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr "Oldalsó menü bezárása"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "Emojiválasztó bezárása"
@@ -1600,7 +1816,13 @@ msgstr "Kép bezárása"
msgid "Close image viewer"
msgstr "Képnézegető bezárása"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr "Menü bezárása"
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Párbeszédablak bezárása"
@@ -1608,8 +1830,12 @@ msgstr "Párbeszédablak bezárása"
msgid "Closes password update alert"
msgstr "Jelszófrissítési figyelmeztetés bezárása"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr "A bejegyzésíró bezárása és a piszkozat elvetése"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr "Emojiválasztó bezárása"
@@ -1617,11 +1843,11 @@ msgstr "Emojiválasztó bezárása"
msgid "Closes viewer for header image"
msgstr "Borítókép-nézegető bezárása"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Lista összecsukása"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Egy értesítés felhasználólistájának összecsukása"
@@ -1644,7 +1870,7 @@ msgstr "Humor"
msgid "Comics"
msgstr "Képregények"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Közösségi irányelvek"
@@ -1653,23 +1879,23 @@ msgstr "Közösségi irányelvek"
msgid "Complete onboarding and start using your account"
msgstr "Regisztrációs varázsló befejezése és a Bluesky használatának megkezdése"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Biztonsági kihívás"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Új bejegyzés írása"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "Írj legfeljebb {MAX_GRAPHEME_LENGTH} karakter hosszú bejegyzéseket"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr "Egy bejegyzés legfeljebb {0, plural, other{#}} karakter hosszú lehet"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Válaszírás"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Videó tömörítése folyamatban…"
@@ -1681,23 +1907,17 @@ msgstr "A(z) „{name}” tartalomkategória szűrési beállításai"
msgid "Configured in <0>moderation settings0>."
msgstr "A <0>moderálási beállításokban0> módosítható."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Megerősítés"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Változtatások megerősítése"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Tartalomnyelvi beállítások megerősítése"
@@ -1706,26 +1926,27 @@ msgstr "Tartalomnyelvi beállítások megerősítése"
msgid "Confirm delete account"
msgstr "Fiók törlésének megerősítése"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Életkor megerősítése:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Születési dátum megerősítése"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Megerősítőkód"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Megerősítőkód"
@@ -1733,22 +1954,22 @@ msgstr "Megerősítőkód"
msgid "Connecting..."
msgstr "Csatlakozás folyamatban…"
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Támogatás"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "Tartalom és média"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Tartalom és média"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Tartalom és média"
@@ -1756,15 +1977,15 @@ msgstr "Tartalom és média"
msgid "Content Blocked"
msgstr "Letiltottad a tartalmat"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Tartalomszűrés"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr "Javasolt tartalmak a hálózatról."
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Tartalmak nyelve"
@@ -1785,16 +2006,16 @@ msgstr "Tartalomfigyelmeztetés"
msgid "Content warnings"
msgstr "Tartalomfigyelmeztetések"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "A környezetérzékeny menü háttere. Kattints ide a menü bezárásához!"
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Folytatás"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Folytatás, mint {0} (Bejelentkezve)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Válaszlánc folytatása…"
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Következő lépés"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Törölted a beszélgetést"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Törölted a beszélgetést"
@@ -1826,16 +2047,17 @@ msgstr "Sütés-főzés"
msgid "Copied"
msgstr "Vágólapra helyezve"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Buildszám a vágólapra helyezve"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Vágólapra helyezve"
@@ -1844,25 +2066,29 @@ msgstr "Vágólapra helyezve"
msgid "Copied!"
msgstr "Vágólapra helyezve."
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr "Buildszám másolása a vágólapra"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Másolás"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr "Másolás mégis"
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Alkalmazásjelszó másolása"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr "„at://” URI másolása"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr "Szerző DID-jének másolása"
@@ -1871,57 +2097,69 @@ msgstr "Szerző DID-jének másolása"
msgid "Copy code"
msgstr "Kód másolása"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "DID másolása"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Gazda másolása"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Hivatkozás másolása"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Hivatkozás másolása"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Lista hivatkozásának másolása"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Bejegyzés hivatkozásának másolása"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr "Profil hivatkozásának másolása"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr "Kezdőcsomag hivatkozásának másolása"
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Üzenet szövegének másolása"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr "Bejegyzés „at://” URI-jének másolása"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Bejegyzés szövegének másolása"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "QR-kód másolása"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "TXT-rekord értékének másolása"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Jogi irányelvek"
@@ -1931,11 +2169,11 @@ msgstr "Jogi irányelvek"
msgid "Could not leave chat"
msgstr "A csevegés elhagyása meghiúsult"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "A hírfolyam betöltése meghiúsult"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "A lista betöltése meghiúsult"
@@ -1947,28 +2185,28 @@ msgstr "A csevegés elnémítása meghiúsult"
msgid "Could not process your video"
msgstr "A videó feldolgozása meghiúsult."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Létrehozás"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "QR-kód létrehozása egy kezdőcsomaghoz"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Kezdőcsomag létrehozása"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Automatikus létrehozás"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Automatikus létrehozás"
msgid "Create account"
msgstr "Regisztráció"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Regisztráció"
@@ -1985,11 +2223,16 @@ msgstr "Regisztráció"
msgid "Create an account"
msgstr "Regisztráció"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr "Fiók létrehozása a kezdőcsomag igénybevétele nélkül"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Profilkép létrehozása"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Másik létrehozása"
@@ -1998,7 +2241,7 @@ msgstr "Másik létrehozása"
msgid "Create new account"
msgstr "Regisztráció"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Jelentés neki: {0}"
@@ -2053,17 +2296,17 @@ msgstr "Sötét mód"
msgid "Dark theme"
msgstr "Sötét téma"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Születési dátum"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Fiók deaktiválása"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Moderálási hibakeresés"
@@ -2079,19 +2322,19 @@ msgstr "Alapértelmezett"
msgid "Default icons"
msgstr "Alapértelmezett ikonok"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Törlés"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Fiók törlése"
@@ -2107,19 +2350,19 @@ msgstr "Alkalmazásjelszó törlése"
msgid "Delete app password?"
msgstr "Alkalmazásjelszó törlése"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr "Csevegés törlése"
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Csevegéskijelentési jegyzőkönyv ürítése"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "Beszélgetés törlése"
@@ -2127,19 +2370,19 @@ msgstr "Beszélgetés törlése"
msgid "Delete Conversation"
msgstr "Beszélgetés törlése"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Törlés helyileg"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
msgstr "Lista törlése"
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Üzenet törlése"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Üzenet törlése helyileg"
@@ -2147,26 +2390,26 @@ msgstr "Üzenet törlése helyileg"
msgid "Delete my account"
msgstr "Fiók törlése"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Bejegyzés törlése"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Kezdőcsomag törlése"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "Kezdőcsomag törlése"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "Lista törlése"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "Bejegyzés törlése"
@@ -2174,8 +2417,8 @@ msgstr "Bejegyzés törlése"
msgid "Deleted"
msgstr "Törölt tartalom"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Törölt fiók"
@@ -2183,48 +2426,48 @@ msgstr "Törölt fiók"
msgid "Deleted post."
msgstr "Törölted a bejegyzést."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Leírás"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "A leírás túl hosszú"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "A leírás túl hosszú. A korlát {DESCRIPTION_MAX_GRAPHEMES} karakter."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "A leírás túl hosszú. {DESCRIPTION_MAX_GRAPHEMES, plural, other {Korlát: # karakter.}}"
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Helyettesítő szöveg"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Idézet leválasztása"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "Idézet leválasztása"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
msgstr "Kikapcsoltad a fejlesztői módot"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
msgstr "Bekapcsoltad a fejlesztői módot"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Fejlesztői beállítások"
@@ -2236,6 +2479,15 @@ msgstr "Párbeszédablak: A bejegyzés kapcsolatbalépési jogosultságainak tes
msgid "Dim"
msgstr "Félhomályos"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr "Kétlépcsős azonosítás kikapcsolása"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr "Emailes kétlépcsős azonosítás kikapcsolása"
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "Kétlépcsős azonosítás kikapcsolása"
@@ -2254,25 +2506,25 @@ msgstr "Feliratok letiltása"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Letiltva"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Elvetés"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "Változtatások elvetése"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "Piszkozat elvetése"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "Bejegyzés elvetése"
@@ -2281,24 +2533,24 @@ msgstr "Bejegyzés elvetése"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "A fiók kijelentkezett felhasználók elől való elrejtésének kérelmezése"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr "Hírfolyamok felfedezése"
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Egyéni hírfolyamok felfedezése"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Új hírfolyamok felfedezése"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Új hírfolyamok felfedezése"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Bezárás"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Hiba bezárása"
@@ -2306,6 +2558,10 @@ msgstr "Hiba bezárása"
msgid "Dismiss getting started guide"
msgstr "Gyorstalpaló bezárása"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr "Érdeklődési körök bezárása"
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr "Szakasz bezárása"
@@ -2315,27 +2571,27 @@ msgstr "Szakasz bezárása"
msgid "Display larger alt text badges"
msgstr "A helyettesítő szövegek jelvényeinek megnagyobbítása"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Megjelenítendő név"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Megjelenítendő név"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "A megjelenítendő név túl hosszú"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "A megjelenítendő név túl hosszú. A korlát {DISPLAY_NAME_MAX_GRAPHEMES} karakter."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "A megjelenítendő név túl hosszú. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Korlát: # karakter.}}"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "DNS-panellel"
@@ -2347,37 +2603,45 @@ msgstr "A követett felhasználók kivételt élveznek a némítás alól"
msgid "Does not include nudity."
msgstr "Nem ábrázol meztelenséget."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "Nem kezdődhet vagy végződhet kötőjellel"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "A tartományellenőrzés kész."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr "Ha nem rendelkezel kóddal vagy újra van szükséged, <0>kattints ide0>!"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr "Ha nem kaptad meg, <0>kattints ide0> egy új email küldéséhez!"
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Kész"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Kész"
msgid "Done{extraText}"
msgstr "Kész{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr "Koppints kétszer vagy tartsd lenyomva az üzenetet egy reakció hozzáfűzéséhez!"
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Koppints kétszer a párbeszédablak bezárásához"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr "Koppints kétszer a kedveléshez"
@@ -2413,23 +2681,23 @@ msgstr "A csatoláshoz húzd ide a képet!"
msgid "Duration:"
msgstr "Időtartam:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "pl.: janos"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "pl.: Minta Janos"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "pl.: Minta János"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "pl.: janos.hu"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "pl.: Művész, kutyabarát, könyvmoly."
@@ -2437,19 +2705,19 @@ msgstr "pl.: Művész, kutyabarát, könyvmoly."
msgid "E.g. artistic nudes."
msgstr "Pl.: művészi meztelen képek."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "pl.: Nagyszerű emberek"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "pl.: Spammelők"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "pl.: Akik sosem fognak mellé."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "pl.: Akik folyton csak reklámokkal válaszolnak."
@@ -2457,20 +2725,21 @@ msgstr "pl.: Akik folyton csak reklámokkal válaszolnak."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Mindegyik meghívó csak egyszer használható fel. Időközönként újakat fogsz kapni."
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Szerkesztés"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Szerkesztés"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Profilkép szerkesztése"
@@ -2478,31 +2747,41 @@ msgstr "Profilkép szerkesztése"
msgid "Edit Feeds"
msgstr "Hírfolyamok szerkesztése"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Kép szerkesztése"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Kapcsolatbalépési beállítások szerkesztése"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr "Érdeklődési körök szerkesztése"
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Lista szerkesztése"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr "Élőadásos állapot szerkesztése"
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Moderálólista szerkesztése"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Hírfolyamgyűjtemény szerkesztése"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Profil szerkesztése"
@@ -2515,23 +2794,23 @@ msgstr "Személyek szerkesztése"
msgid "Edit post interaction settings"
msgstr "A bejegyzés kapcsolatbalépési beállításainak szerkesztése"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Profil szerkesztése"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Profil szerkesztése"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Kezdőcsomag szerkesztése"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Felhasználólista szerkesztése"
@@ -2539,15 +2818,15 @@ msgstr "Felhasználólista szerkesztése"
msgid "Edit who can reply"
msgstr "Válaszjogosultsági beállítások szerkesztése"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Megjelenítendő név szerkesztése"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Profilleírás szerkesztése"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Kezdőcsomag szerkesztése"
@@ -2560,9 +2839,8 @@ msgstr "Tanítás-tanulás"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "Letiltottad a lista szerzőjét vagy ő tiltott le Téged."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "Email-cím"
@@ -2583,20 +2861,17 @@ msgstr "Email-cím"
msgid "Email Resent"
msgstr "Email újraküldve"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
-msgstr "Frissítetted az email-címedet"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
+msgstr "Email elküldve!"
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "Frissítetted az email-címedet"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr "Frissítetted az email-címedet."
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
-msgstr "Visszaigazoltad az email-címedet"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
+msgstr "Az emailes hitelesítés sikeresen befejeződött!"
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
msgid "Email Verified"
@@ -2608,8 +2883,8 @@ msgstr "HTML-kód beágyazása"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Bejegyzés beágyazása"
@@ -2617,12 +2892,13 @@ msgstr "Bejegyzés beágyazása"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Jelenítsd meg ezt a bejegyzést a honlapodon! Másold ki az alábbi kódrészletet és illeszd be a honlapod HTML-kódjába."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "Beágyazott videólejátszó"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Engedélyezés"
@@ -2630,13 +2906,13 @@ msgstr "Engedélyezés"
msgid "Enable {0} only"
msgstr "Csak a(z) {0} engedélyezése"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Felnőtt tartalmak engedélyezése"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr "Emailes kétlépcsős azonosítás bekapcsolása"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr "Emailes kétlépcsős azonosítás kikapcsolása"
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2660,30 +2936,30 @@ msgstr "Feliratok engedélyezése"
msgid "Enable this source only"
msgstr "Csak ezen forrás engedélyezése"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "Felkapott témakörök mutatása"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr "Felkapott videók mutatása a Követett hírfolyamon"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr "Felkapott videók mutatása a Követett hírfolyamon."
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Engedélyezve"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "A hírfolyam véget ért"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Minden feliratfájlhoz rendelj hozzá egy nyelvet!"
@@ -2696,13 +2972,14 @@ msgstr "Jelszó megadása"
msgid "Enter a word or tag"
msgstr "Szó vagy címke megadása"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
-msgid "Enter Code"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
msgstr "Kód megadása"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Ellenőrzőkód megadása"
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
+msgid "Enter Code"
+msgstr "Kód megadása"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
@@ -2712,7 +2989,7 @@ msgstr "Belépés teljes képernyős módba"
msgid "Enter the code you received to change your password."
msgstr "Add meg a kapott kódot a jelszavad megváltoztatásához!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Add meg a használni kívánt tartományt"
@@ -2720,20 +2997,20 @@ msgstr "Add meg a használni kívánt tartományt"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Add meg a regisztrációkor használt email-címedet! Küldeni fogunk egy „helyreállítási kódot”, amivel megváltoztathatod a jelszavad."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr "Add meg a fiók létrehozásakor használt felhasználónevet vagy email-címet!"
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Add meg a születési dátumod"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Add meg az email-címed"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Add meg felül az új email-címed"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Add meg alább az új email-címed!"
@@ -2749,7 +3026,11 @@ msgstr "Add meg a felhasználóneved és a jelszavad"
msgid "Enters full screen"
msgstr "Teljes képernyős mód"
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr "Szórakozás"
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Hiba"
@@ -2758,15 +3039,18 @@ msgstr "Hiba"
msgid "Error occurred while saving file"
msgstr "A fájl mentése meghiúsult"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "A captcha válaszának fogadása meghiúsult."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Hiba:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr "Hiba: {error}"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Bárkitől"
@@ -2818,30 +3102,22 @@ msgstr "Képkivágás megszakítása"
msgid "Exits image view"
msgstr "Képnézegető bezárása"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Keresési kifejezés megadásának megszakítása"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Helyettesítő szöveg folytatásának mutatása"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Lista kibontása"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "A válasz forrásaként származó bejegyzés kibontása/összecsukása"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr "Bejegyzés teljes szövegének kibontása/összecsukása"
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr "A válasz forrásaként származó bejegyzés kibontása/összecsukása"
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "Az URI nem old fel egy rekordot"
@@ -2864,6 +3140,10 @@ msgstr "{0} lejár"
msgid "Expires in {0}"
msgstr "Lejár: {0} múlva"
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr "{0} múlva lejár ({1})"
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "A nyugalom megzavarására alkalmas képek és videók."
msgid "Explicit sexual images."
msgstr "Szexuális tartalmakat ábrázoló képek."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr "Felfedezés"
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Adatok exportálása"
@@ -2882,8 +3169,8 @@ msgstr "Adatok exportálása"
msgid "Export My Data"
msgstr "Adatok exportálása"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "Külső médiatartalmak"
@@ -2897,17 +3184,22 @@ msgstr "Külső médiatartalom"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "A külső médiatartalmak engedélyezése lehetővé teszi más honlapok számára az adatgyűjtést Rólad vagy az eszközödről. A „Lejátszás” gomb megnyomásáig semmilyen adatot sem küldünk vagy kérünk le."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Külső médiatartalmak"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
msgstr "A csevegési kérelem elfogadása meghiúsult"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr "Az emoji-reakció hozzáfűzése meghiúsult"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "A felhasználónév megváltoztatása meghiúsult. Próbáld újra!"
@@ -2915,7 +3207,7 @@ msgstr "A felhasználónév megváltoztatása meghiúsult. Próbáld újra!"
msgid "Failed to create app password. Please try again."
msgstr "Az alkalmazásjelszó létrehozása meghiúsult. Próbáld újra!"
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr "A csevegés törlése meghiúsult"
@@ -2924,35 +3216,37 @@ msgstr "A csevegés törlése meghiúsult"
msgid "Failed to create starter pack"
msgstr "A kezdőcsomag létrehozása meghiúsult"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "A lista létrehozása meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!"
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr "A csevegés törlése meghiúsult"
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Az üzenet törlése meghiúsult"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "A bejegyzés törlése meghiúsult. Próbáld újra!"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "A kezdőcsomag törlése meghiúsult"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr "A csevegések betöltése meghiúsult"
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "A hírfolyambeállítások betöltése meghiúsult"
@@ -2964,17 +3258,19 @@ msgstr "A GIF-ek betöltése meghiúsult"
msgid "Failed to load past messages"
msgstr "A korábbi üzenetek betöltése meghiúsult"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "Az ajánlott hírfolyamok betöltése meghiúsult"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "A javasolt személyek betöltése meghiúsult"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr "A kérelmek megjelölése olvasottként meghiúsult"
@@ -2982,7 +3278,16 @@ msgstr "A kérelmek megjelölése olvasottként meghiúsult"
msgid "Failed to pin post"
msgstr "A bejegyzés kitűzése meghiúsult"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr "Az emoji-reakció eltávolítása meghiúsult"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr "A hitelesítés eltávolítása meghiúsult"
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "A kép mentése meghiúsult: {0}"
@@ -2994,20 +3299,39 @@ msgstr "Az értesítési beállítások mentése meghiúsult. Próbáld újra!"
msgid "Failed to save settings. Please try again."
msgstr "A beállítások mentése meghiúsult. Próbáld újra!"
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr "Az érdeklődési körök mentése meghiúsult."
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "A küldés meghiúsult"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr "Az email elküldése meghiúsult. Próbáld újra!"
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "A fellebbezés elküldése meghiúsult. Próbáld újra!"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "A beszélgetés némításának ki-/bekapcsolása meghiúsult. Próbáld újra!"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr "A kétlépcsős azonosítási beállítások mentése meghiúsult"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr "Az email-cím frissítése meghiúsult. Próbáld újra!"
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "A hírfolyamok frissítése meghiúsult"
@@ -3022,20 +3346,24 @@ msgstr "A beállítások mentése meghiúsult"
msgid "Failed to upload video"
msgstr "A videó feltöltése meghiúsult"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr "Az email-cím hitelesítése meghiúsult. Próbáld újra!"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "A felhasználónév hitelesítése meghiúsult. Próbáld újra!"
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Hírfolyam"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Hírfolyam – Szerző: {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "Hírfolyammenü"
@@ -3043,26 +3371,26 @@ msgstr "Hírfolyammenü"
msgid "Feed toggle"
msgstr "Hírfolyam ki/be"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Visszajelzés"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
msgstr "Megkaptuk a visszajelzést!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Hírfolyamok"
@@ -3070,13 +3398,13 @@ msgstr "Hírfolyamok"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "A hírfolyamok olyan egyéni algoritmusok, amelyeket felhasználók építenek egy kis programozási tudással. További információért <0/>!"
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
msgstr "A hírfolyamok frissítése megtörtént"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "További ajánlott hírfolyamok."
@@ -3092,11 +3420,11 @@ msgstr "A fájl mentése sikeresen megtörtént"
msgid "Filter from feeds"
msgstr "Kiszűrés a hírfolyamokból"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr "Szűrés nyelv alapján"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr "Szűrés nyelv alapján (Jelenlegi: {currentLanguageLabel})"
@@ -3110,13 +3438,13 @@ msgstr "Befejezés folyamatban…"
msgid "Find accounts to follow"
msgstr "Követendő fiókok felfedezése"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "Követendő személyek felfedezése"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Bejegyzések, felhasználók és hírfolyamok felfedezése a Blueskyon"
@@ -3148,11 +3476,11 @@ msgid "Flexible"
msgstr "Rugalmas"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Követés"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Követés"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "{0} követése"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr "{handle} követése"
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "{name} követése"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "Kövess 10 fiókot!"
msgid "Follow 7 accounts"
msgstr "Kövess 7 fiókot!"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "Fiók követése"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Összes követése"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Követés kölcsönzése"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Követés kölcsönzése"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "Kövess további felhasználókat, ha szeretnél az érdeklődési köröd alapján kapcsolatokat építeni!"
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "<0>{0}0> követi"
@@ -3224,7 +3544,7 @@ msgstr "<0>{0}0> és <1>{1}1> követi"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "<0>{0}0>, <1>{1}1> és {2, plural, one {#} other {#}} további személy követi"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "@{0} általad ismert követői"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Ismert követők"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Követett"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "Mostantól követed: {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr "Mostantól követed: {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Mostantól követed: {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Követett hírfolyam"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Követett hírfolyam"
@@ -3301,6 +3617,10 @@ msgstr "Biztonsági okokból ezt többé nem tekintheted meg. Ha elveszted ezt a
msgid "For the best experience, we recommend using the theme font."
msgstr "A legjobb élmény érdekében a témabetűtípus használatát javasoljuk."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr "Javasolt"
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Örökké"
@@ -3327,7 +3647,7 @@ msgstr "Gyakran tesz közzé kéretlen tartalmakat"
msgid "From @{sanitizedAuthor}"
msgstr "Forrás: @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "A(z) <0/> hírfolyamból"
@@ -3336,28 +3656,30 @@ msgstr "A(z) <0/> hírfolyamból"
msgid "Gallery"
msgstr "Galéria"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Kezdőcsomag létrehozása"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Súgó"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "Gyorstalpaló"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr "Rendben"
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Gyorstalpaló"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Adj arcot a profilodnak!"
@@ -3366,17 +3688,17 @@ msgstr "Adj arcot a profilodnak!"
msgid "Glaring violations of law or terms of service"
msgstr "A törvény vagy a felhasználási feltételek egyértelmű megszegése"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Vissza"
@@ -3384,10 +3706,10 @@ msgstr "Vissza"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Vissza"
@@ -3408,7 +3730,27 @@ msgstr "Ugrás a kezdőlapra"
msgid "Go Home"
msgstr "Ugrás a kezdőlapra"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr "Élő adás indítása"
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr "Élő adás indítása"
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr "Élő adás indítása az alábbi időintervallumra:"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr "{firstAuthorName} profiljának megnyitása"
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Ugrás a beszélgetéshez vele: {0}"
@@ -3427,8 +3769,8 @@ msgstr "Ugrás a felhasználó profiljára"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Grafikus médiatartalom"
@@ -3437,21 +3779,21 @@ msgstr "Grafikus médiatartalom"
msgid "Half way there!"
msgstr "Már félúton vagy!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Felhasználónév"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "Ez a felhasználónév már foglalt. Adj meg egy másikat!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "Megváltoztattad a felhasználónevedet."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "Ez a felhasználónév túl hosszú. Adj meg egy rövidebbet!"
@@ -3464,7 +3806,7 @@ msgstr "Rezgés"
msgid "Harassment, trolling, or intolerance"
msgstr "Zaklatás, gúnyolódás vagy tűrélytelenség"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Címke"
@@ -3472,19 +3814,24 @@ msgstr "Címke"
msgid "Hashtag {tag}"
msgstr "Címke: {tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr "Ha már rendelkezel kóddal, <0>kattints ide0>!"
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "Problémába ütköztél?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Súgó"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Segíts másoknak megbizonyosodni arról, hogy valódi személy vagy egy profilkép létrehozásával!"
@@ -3497,7 +3844,7 @@ msgstr "Elkészült az alkalmazásjelszó."
msgid "Hidden"
msgstr "Rejtett tartalom"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr "Elrejtve a moderálási beállítások alapján."
@@ -3509,18 +3856,17 @@ msgstr "Rejtett lista"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Elrejtés"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Elrejtés"
@@ -3529,38 +3875,40 @@ msgstr "Elrejtés"
msgid "Hide customization options"
msgstr "Testreszabási lehetőségek elrejtése"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Bejegyzés elrejtése helyileg"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Válasz elrejtése mindenkinek"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Válasz elrejtése helyileg"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr "Kártya elrejtése"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "Bejegyzés elrejtése"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "Válasz elrejtése"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Felkapott témakörök elrejtése"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "Felkapott témakörök elrejtése"
@@ -3569,10 +3917,15 @@ msgstr "Felkapott témakörök elrejtése"
msgid "Hide trending videos?"
msgstr "Felkapott videók elrejtése"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Felhasználólista elrejtése"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr "Hitelesítési jelvények elrejtése"
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "Hmm… Úgy tűnik, hogy a hírfolyamkiszolgáló helytelen választ ado
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Hmm… A hírfolyam felkeresése meghiúsult. Lehetséges, hogy már nem létezik."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Hmmmm… Az adatok betöltése meghiúsult. A részleteket alább láthatod. Ha a probléma fennáll, jelentsd nekünk!"
@@ -3610,15 +3963,15 @@ msgstr "Hmmmm… Ez a moderálási szolgáltatás nem található."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Egy pillanat! A videófeltöltés lehetősége még nem mindenki számára elérhető. Próbáld újra később!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Kezdőlap"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "Gazda:"
@@ -3627,34 +3980,33 @@ msgstr "Gazda:"
msgid "Hosting provider"
msgstr "Tárhelyszolgáltató"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr "Felkapott"
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "A legfelkapottabb válaszok elöl"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "Hogyan nyissuk meg ezt a hivatkozást?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Kóddal rendelkezem"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Kóddal rendelkezem"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Ellenőrzőkóddal rendelkezem"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Saját tartománnyal rendelkezem"
@@ -3667,22 +4019,30 @@ msgstr "Értettem"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Hosszabb helyettesítő szövegek mutatása/levágása"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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 "Ha még nem töltötted be az országod által meghatározott nagykorúsági életkort, akkor az alábbi feltételeket a szülődnek vagy törvényes gondviselődnek kell elolvasnia."
-#: src/view/screens/ProfileList.tsx:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "A lista törlése nem vonható vissza."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Ha rendelkezel saját tartománnyal, akkor az is lehet a felhasználóneved. Így magadtól is hitelesítheted a kiléted. <0>További információ0>."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr "Ha frissítened kell az email-címedet, <0>kattints ide0>."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "A bejegyzés törlése nem vonható vissza."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr "Ha frissíted az email-címedet, akkor a jelenleg beállított kétlépcsős azonosítás ki lesz kapcsolva."
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "A jelszó megváltoztatásához egy ellenőrzőkódot fogunk küldeni, hogy igazolhasd a kiléted."
@@ -3704,9 +4064,22 @@ msgstr "Illegális és sürgős"
msgid "Image"
msgstr "Kép"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "A kép mentése sikeresen megtörtént"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr "Képgyorsítótár kiürítve"
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr "Képgyorsítótár kiürítve. {0} hely felszabadult."
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr "A kép mentésre került"
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr "Fényképek mentéséhez a galériához való hozzáférés szükséges."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "Illetlen üzenetek vagy hivatkozások"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr "Elfogytak a beérkező üzenetek."
@@ -3752,15 +4125,11 @@ msgstr "Jelszó megadása a fiók törléséhez"
msgid "Input the code which has been emailed to you"
msgstr "Emailben kapott kód megadása"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "A regisztrációkor használt felhasználónév vagy email-cím megadása"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "A kapcsolatbalépés korlátozott"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr "Kapcsolatbalépési beállítások"
@@ -3769,11 +4138,11 @@ msgstr "Kapcsolatbalépési beállítások"
msgid "Invalid 2FA confirmation code."
msgstr "Érvénytelen kétlépcsős azonosítási kód."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Érvénytelen felhasználónév. Adj meg egy másikat!"
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "A megadott bejegyzésrekord érvénytelen vagy nem támogatott"
@@ -3789,11 +4158,11 @@ msgstr "Érvénytelen ellenőrzőkód"
msgid "Invite a Friend"
msgstr "Barát meghívása"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Meghívókód"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Érvénytelen meghívókód. Ellenőrizd a helyességét, majd próbáld újra!"
@@ -3805,7 +4174,7 @@ msgstr "Meghívókódok: Még {0} felhasználható"
msgid "Invite codes: 1 available"
msgstr "Meghívókódok: Még 1 felhasználható"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "Hívj meg másokat is ebbe a kezdőcsomagba!"
@@ -3817,7 +4186,7 @@ msgstr "Könnyen oszd meg a barátaiddal a kedvenc hírfolyamaidat és személye
msgid "Invites, but personal"
msgstr "Olyan, mint egy meghívó, csak személyesebb"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "Igen, helyes"
@@ -3825,19 +4194,19 @@ msgstr "Igen, helyes"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Még csak Te szerepelsz a kezdőcsomagban. A fenti keresővel másokat is hozzáadhatsz."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "Állásazonosító: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Karrier"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Csatlakozz a Blueskyhoz!"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "Feljegyezte a szerző."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Feljegyzések"
@@ -3868,7 +4237,7 @@ msgstr "Feljegyzések"
msgid "Labels added"
msgstr "Alkalmaztad a feljegyzéseket"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "A feljegyzések felhasználókra és tartalmakra elhelyezett különleges címkék. A hálózat ezeket használja a különböző tartalmak kategóriákba sorolására, elrejtésére és a megtekintés előtti figyelmeztetések megjelenítésére."
@@ -3884,13 +4253,13 @@ msgstr "A tartalmadra helyezett feljegyzések"
msgid "Language selection"
msgstr "Nyelvválasztás"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Nyelvi beállítások"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Nyelvek"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Nagyobb"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "Legújabb"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "további információ"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr "További információ"
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "További információ"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "További információ a Blueskyról"
@@ -3933,6 +4311,11 @@ msgstr "További információ a tartalommoderálásról."
msgid "Learn more about this warning"
msgstr "További információ erről a figyelmeztetésről"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr "További információ a Blueskyos hitelesítésől"
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "A Bluesky elhagyása"
msgid "left to go."
msgstr "maradt."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Fiókok választása kézileg"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Világos"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "Kedvelés"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Tetszik ({0, plural, one {# kedvelés} other {# kedvelés}})"
@@ -4013,17 +4397,16 @@ msgstr "Kedvelj 10 megjegyzést!"
msgid "Like 10 posts to train the Discover feed"
msgstr "Kedvelj 10 megjegyzést a Követett hírfolyam idomításához!"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Hírfolyam kedvelése"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr "Feljegyző kedvelése"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Kedvelők"
@@ -4033,40 +4416,40 @@ msgstr "Kedvelők"
msgid "Liked By"
msgstr "Kedvelők"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "{0, plural, one {#} other {#}} felhasználó kedveli"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "{likeCount, plural, one {#} other {#}} felhasználó kedveli"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "Kedvelések"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "A bejegyzést kedvelők"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "Egyszerű"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Lista"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Lista profilképe"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
msgstr "Letiltottad a listán szereplő személyeket"
@@ -4084,7 +4467,7 @@ msgstr "Lista – Szerző: <0/>"
msgid "List by you"
msgstr "Lista – Saját"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
msgstr "Törölted a listát"
@@ -4093,35 +4476,35 @@ msgstr "Törölted a listát"
msgid "List has been hidden"
msgstr "Elrejtetted a listát"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "Elrejtett lista"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
msgstr "Elnémítottad a listán szereplő személyeket"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Listacím"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
msgstr "Feloldottad a listán szereplő személyek tiltását"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
msgstr "Feloldottad a listán szereplő személyek némítását"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Listák"
@@ -4129,34 +4512,47 @@ msgstr "Listák"
msgid "Lists blocking this user:"
msgstr "Ez a felhasználó az alábbi tiltólistákon szerepel:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr "ÉLŐ"
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr "Az élő adások kísérleti fázisban vannak"
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr "Élő adás hivatkozása"
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Továbbiak"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "További javasolt hírfolyamok"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "További javasolt személyek"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Új értesítések betöltése"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Új bejegyzések betöltése"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Betöltés…"
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Napló"
@@ -4164,12 +4560,12 @@ msgstr "Napló"
msgid "Logged-out visibility"
msgstr "Láthatóság kijelentkezett felhasználók számára"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "A logó szerzője: @sawaratsuki.bsky.social"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "A logó szerzője: <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "Úgy tűnik, hogy egy hírfolyamot sem tűztél ki. De ne aggódj – al
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Úgy tűnik, hogy hiányzik a Követett hírfolyamod. <0>Kattints ide, ha ki szeretnéd tűzni!0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr "A fiók email-beállításainak testreszabása"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "Automatikus létrehozás"
@@ -4201,18 +4601,22 @@ msgstr "Automatikus létrehozás"
msgid "Make sure this is where you intend to go!"
msgstr "Ellenőrizd, hogy biztosan ide akarsz-e menni!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "Elmentett hírfolyamok kezelése"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr "Hitelesítési beállítások"
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Elnémított szavak és címkék kezelése"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr "Összes megjelölése olvasottként"
@@ -4221,16 +4625,23 @@ msgstr "Összes megjelölése olvasottként"
msgid "Mark as read"
msgstr "Megjelölés olvasottként"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr "Az összes üzenetet megjelölted olvasottként"
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr "Talán később"
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Média"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "A nyugalom megzavarására alkalmas vagy felnőtt témákat ábrázoló médiatartalom."
@@ -4246,23 +4657,27 @@ msgstr "A megemlített felhasználóktól"
msgid "Mentions"
msgstr "Említések"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Menü"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Üzenetküldés neki: {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Törölted az üzenetet"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Törölted az üzenetet"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr "@{0} üzenete: {1}"
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "A kiszolgáló üzenete: {0}"
@@ -4276,7 +4691,11 @@ msgstr "Üzenetbeviteli mező"
msgid "Message is too long"
msgstr "Az üzenet túl hosszú"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr "Üzenetlehetőségek"
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Üzenetek"
@@ -4295,10 +4714,10 @@ msgstr "Félrevezető fiók"
msgid "Misleading Post"
msgstr "Félrevezető bejegyzés"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Moderálás"
@@ -4320,22 +4739,22 @@ msgstr "Moderálólista – Szerző: <0/>"
msgid "Moderation list by you"
msgstr "Moderálólista – Saját"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
msgstr "Létrehoztad a moderálólistát"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
msgstr "Frissítetted a moderálólistát"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Moderálólisták"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Moderálólisták"
@@ -4343,11 +4762,11 @@ msgstr "Moderálólisták"
msgid "moderation settings"
msgstr "moderálási beállítások"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "Moderálási állapotok"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Moderálási eszközök"
@@ -4356,7 +4775,7 @@ msgstr "Moderálási eszközök"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Ezen a tartalmon általános figyelmeztetés van érvényben, egy moderátor döntése alapján."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Továbbiak"
@@ -4365,9 +4784,9 @@ msgstr "Továbbiak"
msgid "More feeds"
msgstr "További hírfolyamok"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "További lehetőségek"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "A legtöbb kedveléssel rendelkező válaszok elöl"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "A legtöbb kedveléssel rendelkező válaszok elöl"
@@ -4400,14 +4819,14 @@ msgstr "Elnémítás"
msgid "Mute {tag}"
msgstr "A(z) {tag} címke elnémítása"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
-msgstr "Fiókok elnémítása"
+msgstr "Fiók elnémítása"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Fiókok elnémítása"
@@ -4420,11 +4839,11 @@ msgstr "Beszélgetés elnémítása"
msgid "Mute in:"
msgstr "Hatáskör:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Lista elnémítása"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "Biztosan el akarod némítani az alábbi fiókokat?"
@@ -4452,26 +4871,26 @@ msgstr "Szó elnémítása csak címkékben"
msgid "Mute this word until you unmute it"
msgstr "Szó elnémítása a némítás feloldásáig"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Válaszlánc elnémítása"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Szavak és címkék elnémítása"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Elnémított fiókok"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Elnémított fiókok"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Egy elnémított fiók nem fog megjelenni a hírfolyamaidban és nem kapsz tőle értesítéseket. A némított fiókok listája nem nyilvános."
@@ -4479,11 +4898,11 @@ msgstr "Egy elnémított fiók nem fog megjelenni a hírfolyamaidban és nem kap
msgid "Muted by \"{0}\""
msgstr "Némítás forrása: {0}"
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Elnémított szavak és címkék"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Egy fiók elnémítása nem nyilvános. Egy elnémított felhasználó képes a fiókoddal kapcsolatba lépni, de ezekről a történésekről nem fogsz értesítéseket kapni és az összes bejegyzésük el lesz rejtve a számodra."
@@ -4492,15 +4911,15 @@ msgstr "Egy fiók elnémítása nem nyilvános. Egy elnémított felhasználó k
msgid "My Birthday"
msgstr "Születésnap megadása"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "Hírfolyamgyűjtemény"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Név"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "A név megadása kötelező"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Természet"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "Ugrás: {0}"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr "Ugrás a kezdőcsomaghoz"
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "Ugrás a következő képernyőre"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Ugrás a profilodra"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "Meg akarod változtatni?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "A szerzői jog megszegését akarod jelenteni?"
@@ -4547,30 +4971,43 @@ msgstr "A szerzői jog megszegését akarod jelenteni?"
msgid "Never lose access to your followers or data."
msgstr "Sose veszítsd el a követőid vagy az adataid!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "Mégse – hozzon létre egy felhasználónevet automatikusan"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Létrehozás"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Létrehozás"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "Új csevegés"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr "Új email-cím"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr "Új funkció"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "Új felhasználónév"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "Új lista"
@@ -4578,7 +5015,7 @@ msgstr "Új lista"
msgid "New messages"
msgstr "Új üzenetek"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Moderálólista létrehozása"
@@ -4590,12 +5027,12 @@ msgstr "Új jelszó"
msgid "New Password"
msgstr "Új jelszó"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Új bejegyzés"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "Új bejegyzés"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Új bejegyzés"
@@ -4613,19 +5050,20 @@ msgstr "Új bejegyzés"
msgid "New user info dialog"
msgstr "Új felhasználó információs párbeszédablaka"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Felhasználólista létrehozása"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "A legújabb válaszok elöl"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Hírek"
@@ -4655,11 +5093,15 @@ msgstr "Következő kép"
msgid "No app passwords yet"
msgstr "Még nem hoztál létre alkalmazásjelszót"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "DNS-panel nélkül"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr "Nem jár le"
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "A kiemelt GIF-ek lekérése meghiúsult. Lehetséges, hogy ez a Tenor hibája."
@@ -4668,21 +5110,25 @@ msgstr "A kiemelt GIF-ek lekérése meghiúsult. Lehetséges, hogy ez a Tenor hi
msgid "No feeds found. Try searching for something else."
msgstr "Nincs találat. Próbálj megadni egy másik keresési kifejezést!"
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr "Nincs előnézet"
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "Még nincsenek kedvelések"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "Abbahagytad {0} követését"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr "Legfeljebb {MAX_SERVICE_HANDLE_LENGTH} karakter"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr "Legfeljebb {MAX_SERVICE_HANDLE_LENGTH, plural, other {# karakter}}"
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "Még nincsenek üzenetek"
@@ -4711,34 +5157,41 @@ msgstr "Még nincsenek idézések"
msgid "No reposts yet"
msgstr "Még nincsenek megosztások"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Nincs találat"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "Nincs találat"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr "A(z) „{0}”-kifejezésre nincs találat."
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "Nincs találat"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
-msgstr "A(z) „{query}” kifejezésre nincs találat"
+msgstr "A(z) „{query}”-kifejezésre nincs találat"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
-msgstr "A(z) „{query}” kifejezésre nincs találat"
+msgstr "A(z) „{query}”-kifejezésre nincs találat"
+
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr "Nincs találat."
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
-msgstr "A(z) „{search}” kifejezésre nincs találat."
+msgstr "A(z) „{search}”-kifejezésre nincs találat."
#: src/components/dialogs/EmbedConsent.tsx:104
#: src/components/dialogs/EmbedConsent.tsx:111
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Senkitől"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "Ezt a tartalmat még senki sem kedvelte. Talán Te lehetnél az első!"
@@ -4775,19 +5227,15 @@ msgstr "Nem szexuális meztelenség"
msgid "Not followed by anyone you're following"
msgstr "Nincsenek ismert követők"
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "Ez a tartalom nem található"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "Talán máskor"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Korlátozott láthatóság"
@@ -4795,7 +5243,7 @@ msgstr "Korlátozott láthatóság"
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 "Megjegyzés: A Bluesky egy nyílt és nyilvános hálózat. Ez a beállítás csak a Bluesky alkalmazásban és -honlapon korlátozza a tartalmaid láthatóságát és nem biztos, hogy más alkalmazások is tiszteletben tartják. Lehetséges, hogy más alkalmazásokban és honlapokon ugyanúgy láthatóak maradnak a tartalmaid kijelentkezett felhasználók számára is."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Nincs itt semmi"
@@ -4803,7 +5251,7 @@ msgstr "Nincs itt semmi"
msgid "Notification filters"
msgstr "Értesítések szűrése"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Értesítési beállítások"
@@ -4820,11 +5268,11 @@ msgstr "Értesítési hangok"
msgid "Notification Sounds"
msgstr "Értesítési hangok"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Értesítések"
@@ -4832,12 +5280,12 @@ msgstr "Értesítések"
msgid "now"
msgstr "épp most"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Épp most"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Meztelenség"
@@ -4859,21 +5307,23 @@ msgstr "Jaj, ne!"
msgid "Oh no! Something went wrong."
msgstr "Jaj, ne! Valami balul sült el."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "Oké"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "A legrégebbi válaszok elöl"
@@ -4881,19 +5331,19 @@ msgstr "A legrégebbi válaszok elöl"
msgid "on<0><1/><2><3/>2>0>"
msgstr "ekkor:<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Alaphelyzetbe állítottad a regisztrációs varázslót"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "Legalább egy GIF-ről hiányzik a helyettesítő szöveg."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "Legalább egy képről hiányzik a helyettesítő szöveg."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "Legalább egy videóról hiányzik a helyettesítő szöveg."
@@ -4905,11 +5355,11 @@ msgstr "Csak a .jpg és a .png formátumok támogatottak"
msgid "Only {0} can reply."
msgstr "Csak {0} válaszolhatnak."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Csak az angol ábécé betűit, számokat és kötőjeleket tartalmazhat"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "Csak a képfájlok támogatottak"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "Hoppá! Valami balul sült el!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "Hoppá!"
@@ -4935,67 +5385,80 @@ msgstr "Hoppá!"
msgid "Open"
msgstr "Megnyitás"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "A menü megnyitása {name} profilján"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Profilképkészítő megnyitása"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "Beszélgetési beállítások megnyitása"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "Oldalsó menü megnyitása"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Emojiválasztó megnyitása"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "Hírfolyam tulajdonságainak megnyitása"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "Hírfolyambeállítások megnyitása"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr "Teljes emojilista megnyitása"
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "A(z) {niceUrl} hivatkozás megnyitása"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "Üzenetlehetőségek megnyitása"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "Moderálási hibakeresési oldal megnyitása"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Elnémított szavak és címkék beállításainak megnyitása"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr "Csomag megnyitása"
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "Bejegyzéslehetőségek megnyitása"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr "Profil megnyitása"
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr "Továbbítási menü megnyitása"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "Kezdőcsomag-menü megnyitása"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Mesekönyv-oldal megnyitása"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Rendszernapló megnyitása"
@@ -5015,19 +5478,19 @@ msgstr "Párbeszédablak megnyitása, ahol megadhatod, hogy ki vehet részt a v
msgid "Opens additional details for a debug entry"
msgstr "Hibakeresési bejegyzés részleteinek megnyitása"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
msgstr "Helyettesítő szöveget tartalmazó ablak megnyitása"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Az eszköz kamerájának megnyitása"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
msgstr "Feliratokat és helyettesítő szöveget tartalmazó ablak megnyitása"
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr "Felhasználónév-megváltoztatási párbeszédablak megnyitása"
@@ -5039,7 +5502,7 @@ msgstr "Bejegyzésíró megnyitása"
msgid "Opens device photo gallery"
msgstr "Az eszköz fényképgalériájának megnyitása"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr "Emojiválasztó megnyitása"
@@ -5057,7 +5520,7 @@ msgstr "Bejelentkezési varázsló megnyitása"
msgid "Opens GIF select dialog"
msgstr "GIF-választó párbeszédablak megnyitása"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr "Támogatási hivatkozás megnyitása böngészőben"
@@ -5065,6 +5528,10 @@ msgstr "Támogatási hivatkozás megnyitása böngészőben"
msgid "Opens list of invite codes"
msgstr "A meghívókódok listájának megnyitása"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr "Élőadásos állapoti párbeszédablak megnyitása"
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Jelszóvisszaállítási űrlap megnyitása"
@@ -5073,12 +5540,12 @@ msgstr "Jelszóvisszaállítási űrlap megnyitása"
msgid "Opens the linked website"
msgstr "Hivatkozás megnyitása"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Saját profil megnyitása"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Videó csatolása"
@@ -5121,11 +5588,11 @@ msgstr "Frissítési állapot: Nincs elérhető frissítés"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Egyéb"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Másik fiók"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Az oldal nem található"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,25 +5652,22 @@ msgstr "Szünet"
msgid "Pause video"
msgstr "Videó szüneteltetése"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "Személyek"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "A(z) @{0} által követett személyek"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "Az őt követő személyek: @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "Galériahozzáférés szükséges."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
msgstr "A galéria hozzáférését megtagadták. Engedélyezd a rendszerbeállításokban!"
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
@@ -5219,43 +5683,38 @@ msgstr "Háziállatok"
msgid "Photography"
msgstr "Fényképészet"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Felnőtteknek szánt képek."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr "Kitűzés"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "Hírfolyam kitűzése"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr "Lehetőséged van kitűzni a felkapott videókat a Felfedezés idővonalra, a könnyebb hozzáféréshez"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr "Hírfolyam kitűzése"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Kitűzés a kezdőlapra"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Kitűzés a kezdőlapra"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Kitűzés a profilodra"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Kitűzve"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "Kitűzted a(z) {0} hírfolyamot"
@@ -5263,7 +5722,7 @@ msgstr "Kitűzted a(z) {0} hírfolyamot"
msgid "Pinned Feeds"
msgstr "Kitűzött hírfolyamok"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "Kitűzted a hírfolyamot"
@@ -5302,24 +5761,28 @@ msgstr "GIF lejátszása"
msgid "Plays the video"
msgstr "Videó lejátszása"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr "Jelöld ki a releváns tartalomfigyelmeztetési kategóriákat!"
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Válassz ki egy felhasználónevet!"
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Válassz ki egy jelszót!"
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr "Kérjük, kattints a tőlünk kapott emailben található hivatkozásra a címed visszaigazolásához! Ez fontos, ha továbbra is használni kívánod a Bluesky összes funkcióját."
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Végezd el a captchás ellenőrzést!"
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Az email-címed megváltoztatása előtt ellenőriznünk kell a jelenlegit. Ez egy átmeneti megoldás, amíg ki nem fejlesztjük a rendes email-cím-frissítő eszközöket."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr "Kérjük ellenőrizd, hogy az email-cím helyesen van megadva!"
@@ -5335,19 +5798,41 @@ msgstr "Adj meg egy jelszót! A jelszónak legalább 8 karakter hosszúnak kell
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Nevezd el egyedien az alkalmazásjelszót vagy használd a véletlenszerűen létrehozottat."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr "A megadott kód érvénytelen."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr "A megadott email-cím érvénytelen."
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Adj meg egy érvényes elnémítandó szót, címkét vagy kifejezést!"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr "Add meg a(z) <0>{0}0>-címre küldött kódot!"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr "Add meg a korábbi email-címedre küldött kódot!"
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Add meg az email-címed!"
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Add meg a meghívókódod!"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr "Add meg az új email-címedet!"
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr "Add meg a jelszót"
@@ -5381,24 +5866,25 @@ msgstr "Add meg a jelentés okát!"
msgid "Please sign in as @{0}"
msgstr "Jelentkezz be, mint @{0}!"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr "Email-cím visszaigazolása"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Igazold vissza az email-címed!"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Politika"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr "Népszerű videók a hálózatról."
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Pornó"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Közzététel"
@@ -5406,25 +5892,25 @@ msgstr "Közzététel"
#: src/view/com/post-thread/PostThread.tsx:540
msgctxt "description"
msgid "Post"
-msgstr "Közzététel"
+msgstr "Bejegyzés"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Összes közzététele"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "{0} bejegyzése"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "@{0} bejegyzése"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
msgstr "Törölted a bejegyzést"
@@ -5433,7 +5919,7 @@ msgstr "Törölted a bejegyzést"
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "A bejegyzés közzététele meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!"
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr "Ezt a bejegyzést törölték."
@@ -5455,7 +5941,7 @@ msgstr "Elrejtetted a bejegyzést"
msgid "Post interaction settings"
msgstr "Kapcsolatbalépési beállítások"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr "Kapcsolatbalépési beállítások"
@@ -5483,8 +5969,9 @@ msgctxt "toast"
msgid "Post unpinned"
msgstr "Feloldottad a bejegyzés kitűzését"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Bejegyzések"
@@ -5524,7 +6011,7 @@ msgstr "Kattints ide a fiók azon követőinek megjelenítéséhez, akiket Te is
msgid "Previous image"
msgstr "Előző kép"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Elsődleges nyelv"
@@ -5537,31 +6024,31 @@ msgstr "Követett személyek előnyben részesítése"
msgid "Priority notifications"
msgstr "Előnyben részesített értesítések"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Adatvédelem"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "Adatvédelem és biztonság"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Adatvédelem és biztonság"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Adatvédelmi irányelvek"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Videó feldolgozása folyamatban…"
@@ -5570,20 +6057,20 @@ msgstr "Videó feldolgozása folyamatban…"
msgid "Processing..."
msgstr "Feldolgozás folyamatban…"
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Profil"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
msgstr "Frissítetted a profilodat"
@@ -5600,6 +6087,26 @@ msgstr "Nyilvános, megosztható fióklisták a tömeges elnémításhoz vagy le
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "Nyilvános, megosztható listák, amelyek hírfolyamként üzemelhetnek."
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr "Bejegyzés közzététele"
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr "Bejegyzések közzététele"
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr "Válaszok közzététele"
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr "Válasz közzététele"
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "A QR-kód vágólapra másolása megtörtént"
@@ -5612,27 +6119,27 @@ msgstr "A QR-kód letöltése megtörtént"
msgid "QR code saved to your camera roll!"
msgstr "A QR-kód fényképalbumba mentése megtörtént"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Idézés"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "Visszakapcsoltad az idézetet"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "Leválasztottad az idézetet"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
-msgstr "Ezt a bejegyzést nem idézhetik mások"
+msgstr "Idézés letiltva"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329
msgid "Quote settings"
@@ -5642,41 +6149,50 @@ msgstr "Idézési beállítások"
msgid "Quotes"
msgstr "Idézések"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "A bejegyzés idézései"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Véletlenszerű (más néven: „Közzétevői rulett”)"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "Korlát átlépve – rövid időn belül túl sokszor próbáltad megváltoztatni a felhasználónevedet. Várj egy kicsit, mielőtt újra megkísérelnéd!"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "Idézet visszakapcsolása"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr "Reagálás a(z) {emoji}-emojival"
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Fiók újraaktiválása"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr "Blogbejegyzés megtekintése (angolul)"
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr "Kevesebb"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr "Több"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
-msgstr "A Bluesky blog megnyitása"
+msgstr "A Bluesky blog megnyitása (angolul)"
#: src/screens/Signup/StepInfo/Policies.tsx:58
#: src/screens/Signup/StepInfo/Policies.tsx:84
@@ -5697,11 +6213,11 @@ msgstr "Fellebbezési ok"
msgid "Reason:"
msgstr "Indoklás:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Keresési előzmények"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "Javasolt"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "Újracsatlakozás"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr "Elutasítás"
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr "Csevegési kérelem elutasítása"
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Beszélgetések újratöltése"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Eltávolítás"
msgid "Remove {displayName} from starter pack"
msgstr "{displayName} eltávolítása a kezdőcsomagból"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr "{historyItem} törlése"
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Fiók eltávolítása"
@@ -5752,13 +6268,13 @@ msgstr "Fiók eltávolítása"
msgid "Remove attachment"
msgstr "Melléklet eltávolítása"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Profilkép eltávolítása"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "Borítókép eltávolítása"
@@ -5776,24 +6292,25 @@ msgstr "Hírfolyam eltávolítása"
msgid "Remove feed?"
msgstr "Hírfolyam eltávolítása"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Eltávolítás a hírfolyamgyűjteményből"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "Eltávolítás a fióklistáról"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "Eltávolítás az elmentett hírfolyamok közül"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr "Eltávolítás a hírfolyamgyűjteményből"
@@ -5802,11 +6319,16 @@ msgstr "Eltávolítás a hírfolyamgyűjteményből"
msgid "Remove image"
msgstr "Kép eltávolítása"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr "Élőadásos állapot eltávolítása"
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Szó némításának feloldása"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Profil eltávolítása"
@@ -5814,12 +6336,12 @@ msgstr "Profil eltávolítása"
msgid "Remove quote"
msgstr "Idézet eltávolítása"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Megosztott bejegyzés eltávolítása"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Feliratfájl eltávolítása"
@@ -5827,6 +6349,21 @@ msgstr "Feliratfájl eltávolítása"
msgid "Remove this feed from your saved feeds"
msgstr "Eltávolítás az elmentett hírfolyamok közül"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr "Személy levétele a listáról"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr "Hitelesítés eltávolítása"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr "Biztosan el akarod távolítani a hitelesítésedet erről a fiókról?"
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "Eltávolította a szerző"
@@ -5835,7 +6372,7 @@ msgstr "Eltávolította a szerző"
msgid "Removed by you"
msgstr "Eltávolítottad ezt a tartalmat"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Levetted a személyt a listáról"
@@ -5845,19 +6382,18 @@ msgid "Removed from my feeds"
msgstr "Eltávolítottad a hírfolyamot a gyűjteményedből"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Eltávolítottad a hírfolyamot az elmentett hírfolyamok közül"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Eltávolítottad a hírfolyamot a gyűjteményedből"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr "Profil eltávolítása a keresési előzményekből"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr "Eltávolítottad a hitelesítést"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
@@ -5868,7 +6404,7 @@ msgstr "Idézett bejegyzés eltávolítása"
msgid "Replace with Discover"
msgstr "Kicserélés a Felfedezés hírfolyamra"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Válaszok"
@@ -5880,12 +6416,13 @@ msgstr "Válaszadás letiltva"
msgid "Replies to this post are disabled."
msgstr "A bejegyzés alatti válaszadás le van tiltva."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Válasz közzététele"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Válasz írása ({0, plural, one {# válasz} other {# válasz}})"
@@ -5907,86 +6444,86 @@ msgstr "Válaszbeállítások"
msgid "Reply settings are chosen by the author of the thread"
msgstr "A teljes válaszlánc beállításait az eredeti szerző kezeli"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "Válaszok rendezése"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Válasz neki: <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Válasz egy letiltott bejegyzésre"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "Válasz egy bejegyzésre"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Válasz a bejegyzésedre"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
msgstr "Frissítetted a válasz láthatóságát"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "Elrejtetted a választ"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Jelentés"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "Fiók jelentése"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Beszélgetés jelentése"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "Párbeszédablak jelentése"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Hírfolyam jelentése"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
msgstr "Lista jelentése"
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Üzenet jelentése"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Bejegyzés jelentése"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "Kezdőcsomag jelentése"
@@ -6030,25 +6567,26 @@ msgstr "Kezdőcsomag jelentése"
msgid "Report this user"
msgstr "Felhasználó jelentése"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Megosztás"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Megosztás"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Megosztás ({0, plural, one {# megosztás} other {# megosztás}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Megosztás vagy idézet"
@@ -6056,27 +6594,27 @@ msgstr "Megosztás vagy idézet"
msgid "Reposted By"
msgstr "Megosztók"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "{0} megosztotta"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "<0><1/>0> megosztotta"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "Megosztottad"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "A bejegyzés megosztásai"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "Változtatás kérelmezése"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr "Megváltoztatás kérelmezése"
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6088,11 +6626,11 @@ msgstr "Kód kérelmezése"
msgid "Require alt text before posting"
msgstr "Helyettesítő szöveg hozzáadásának megkövetelése közzététel előtt"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr "Emailben kapott kód megkövetelése a bejelentkezéshez."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Szükséges a tárhelyszolgáltatóhoz"
@@ -6100,13 +6638,19 @@ msgstr "Szükséges a tárhelyszolgáltatóhoz"
msgid "Required in your region"
msgstr "Szükséges ebben a régióban"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr "Újraküldés"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "Email újraküldése"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "Email újraküldése"
@@ -6123,8 +6667,8 @@ msgstr "Helyreállítási kód"
msgid "Reset Code"
msgstr "Helyreállítási kód"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "Regisztrációs varázsló állapotának alaphelyzetbe állítása"
@@ -6141,16 +6685,16 @@ msgstr "Bejelentkezés újrapróbálása"
msgid "Retries the last action, which errored out"
msgstr "A legutóbb meghiúsult folyamat újrapróbálása"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "A legutóbb meghiúsult folyamat újrapróbálása"
msgid "Retry"
msgstr "Újra"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr "Jelentési lehetőségégek betöltésének újrapróbálása"
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Vissza az előző oldalra"
@@ -6175,11 +6719,11 @@ msgstr "Vissza az előző oldalra"
msgid "Returns to home page"
msgstr "Vissza a kezdőlapra"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "Vissza az előző oldalra"
@@ -6190,24 +6734,26 @@ msgstr "Vissza az előző lépéshez"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Mentés"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Mentés"
@@ -6221,12 +6767,12 @@ msgstr "Születésnap elmentése"
msgid "Save changes"
msgstr "Változtatások mentése"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Változtatások mentése"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Kép mentése"
@@ -6234,16 +6780,16 @@ msgstr "Kép mentése"
msgid "Save image crop"
msgstr "Kép kivágásának mentése"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Felhasználónév mentése"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "QR-kód mentése"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Mentés a hírfolyamgyűjteménybe"
@@ -6251,16 +6797,12 @@ msgstr "Mentés a hírfolyamgyűjteménybe"
msgid "Saved Feeds"
msgstr "Elmentett hírfolyamok"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "Elmentetted a képet a galériába"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "Elmentetted a hírfolyamot a gyűjteményedbe"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "A profilon végzett változtatások mentése"
@@ -6270,8 +6812,8 @@ msgstr "Képkivágási beállítások mentése"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "Köszönj!"
@@ -6280,45 +6822,42 @@ msgstr "Köszönj!"
msgid "Science"
msgstr "Tudomány"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "Vissza a tetejére"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Keresés"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Keresés @{0} bejegyzései között"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "Keresés név vagy érdeklődési kör alapján"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "Profilok keresése"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "Keresés: „{interestsDisplayName}”{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Keresés: {query}"
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "Keresés: {searchText}"
@@ -6326,29 +6865,33 @@ msgstr "Keresés: {searchText}"
msgid "Search for feeds that you want to suggest to others."
msgstr "Ajánlható hírfolyamok keresése."
-#: src/view/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr "További fiókok keresése"
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr "További hírfolyamok keresése"
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
msgstr "Bejegyzések, fiókok és hírfolyamok keresése"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Felhasználók keresése"
-
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "GIF-ek keresése"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr "Keresés a saját bejegyzések között"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr "Keresés a bejegyzések között"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Profilok keresése"
@@ -6356,16 +6899,20 @@ msgstr "Profilok keresése"
msgid "Search Tenor"
msgstr "Keresés a Tenoron"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr "Keresés…"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr "Profilok keresése"
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr "Biztonsági lépés szükséges"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Biztonsági lépés szükséges"
@@ -6385,7 +6932,7 @@ msgstr "A(z) #{tag} címkével ellátott bejegyzések megtekintése"
msgid "See #{tag} posts by user"
msgstr "A felhasználó #{tag} címkével ellátott bejegyzéseinek megtekintése"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Állások a Blueskynál"
@@ -6405,6 +6952,10 @@ msgstr "Szín kiválasztása"
msgid "Select account"
msgstr "Fiók kiválasztása"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr "Alkalmazás nyelvének megadása"
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Profilkép kiválasztása"
@@ -6413,10 +6964,22 @@ msgstr "Profilkép kiválasztása"
msgid "Select an emoji"
msgstr "Emoji kiválasztása"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr "Lehetőség kiválasztása"
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr "Alkalmazás nyelvének megadása"
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Nyelvek kiválasztása"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr "Hossz megadása"
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Fiók kiválasztása"
@@ -6433,15 +6996,15 @@ msgstr "„{0}” GIF kiválasztása"
msgid "Select how long to mute this word for."
msgstr "Add meg, hogy milyen sokáig legyen ez a szó elnémítva!"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Nyelv kiválasztása…"
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Nyelvek kiválasztása"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr "Moderálási szolgáltatás kiválasztása"
@@ -6449,6 +7012,10 @@ msgstr "Moderálási szolgáltatás kiválasztása"
msgid "Select moderator"
msgstr "Moderátor kiválasztása"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr "Elsődleges nyelv megadása"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "A(z) {emojiName} emoji kiválasztása profilképként"
msgid "Select the moderation service(s) to report to"
msgstr "A jelentéseket fogadó moderálási szolgáltatás(ok) megadása"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Videó csatolása"
@@ -6470,23 +7037,24 @@ msgstr "Videó csatolása"
msgid "Select what content this mute word should apply to."
msgstr "Add meg, hogy milyen típusú tartalmakra legyen alkalmazható ez a szó!"
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr "Add meg, hogy milyen nyelven szeretnéd az alkalmazást használni."
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Add meg, hogy milyen nyelveken szeretnél tartalmakat látni a hírfolyamaidban. Ha egy nyelvet sem jelölsz ki, akkor minden bejegyzés láthatóvá válik."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Születési dátum megadása"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "Válaszd ki az érdeklődési köreidet az alábbi lehetőségek közül!"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "Add meg, hogy milyen nyelvre szeretnéd lefordítani a bejegyzéseket."
@@ -6498,19 +7066,17 @@ msgstr "{numItems}/{0}. lehetőség kiválasztása"
msgid "Send a neat website!"
msgstr "Küldj be egy pompás honlapot!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
msgstr "Visszaigazolás küldése"
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Visszaigazoló email küldése"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Visszaigazoló email küldése"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Email küldése"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Email küldése"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Visszajelzés küldése"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Üzenet küldése"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr "Bejegyzés küldése neki: {name}"
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Címzett kiválasztása"
@@ -6544,17 +7114,20 @@ msgstr "Jelentés küldése"
msgid "Send report to {0}"
msgstr "Jelentés küldése neki: {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr "Jelentés küldése neki: {title}"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Visszaigazoló email küldése"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Továbbítás személyes üzenetben"
@@ -6570,7 +7143,7 @@ msgstr "Kiszolgáló címe"
msgid "Set app icon to {0}"
msgstr "Alkalmazásikon megváltoztatása erre: {0}"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "Születési dátum megadása"
@@ -6586,10 +7159,10 @@ msgstr "Fiók beállítása"
msgid "Sets email for password reset"
msgstr "Email cím beállítása jelszóvisszaállításhoz"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Beállítások"
@@ -6598,7 +7171,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Módosítottad a beállításokat"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Szexuális aktusok vagy erotikus meztelenség."
@@ -6606,21 +7179,15 @@ msgstr "Szexuális aktusok vagy erotikus meztelenség."
msgid "Sexually Suggestive"
msgstr "Szexuális tartalom"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Továbbítás"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Továbbítás"
@@ -6633,15 +7200,19 @@ msgstr "Meséld el, hogy mi történt Veled!"
msgid "Share a fun fact!"
msgstr "Mondj el egy érdekességet!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Továbbítás mégis"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr "Szerző DID-jének továbbítása"
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "Hivatkozás továbbítása"
@@ -6650,32 +7221,46 @@ msgstr "Hivatkozás továbbítása"
msgid "Share Link"
msgstr "Hivatkozás továbbítása"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "Hivatkozásmegosztási párbeszédablak"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr "Bejegyzés „at://” URI-jének továbbítása"
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "QR-kód továbbítása"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "Hírfolyam továbbítása"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "Kezdőcsomag továbbítása"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "Oszd meg ezt a kezdőcsomagot, hogy mások is csatlakozhassanak a Blueskyos közösségedhez!"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr "Továbbítás…"
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "Oszd meg a kedvenc hírfolyamod!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "„Megosztott beállítások” tesztelő"
@@ -6685,7 +7270,7 @@ msgstr "A hivatkozott honlap továbbítása"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Mutatás"
@@ -6696,8 +7281,8 @@ msgstr "Helyettesítő szöveg mutatása"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Mutatás mégis"
@@ -6718,8 +7303,8 @@ msgstr "Testreszabási lehetőségek mutatása"
msgid "Show hidden replies"
msgstr "Elrejtett válaszok mutatása"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "Kevesebb ilyet mutasson"
@@ -6727,14 +7312,14 @@ msgstr "Kevesebb ilyet mutasson"
msgid "Show list anyway"
msgstr "Lista mutatása mégis"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Továbbiak"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Több ilyet mutasson"
@@ -6752,7 +7337,7 @@ msgstr "Idézetek mutatása"
msgid "Show replies"
msgstr "Válaszok mutatása"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "Válaszok megjelenése"
@@ -6764,8 +7349,8 @@ msgstr "Válaszok megjelenítése egymásba ágyazva"
msgid "Show replies by people you follow before all other replies"
msgstr "Az Általad követett személyek válaszainak megjelenítése legfelül egy bejegyzés alatt"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "Válasz mutatása mindenkinek"
@@ -6787,11 +7372,11 @@ msgstr "Figyelmeztetés"
msgid "Show warning and filter from feeds"
msgstr "Figyelmeztetés és kiszűrés a hírfolyamokból"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr "További információ a bejegyzés dátumáról"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr "További fiókok megjelenítése váltás céljából"
@@ -6809,8 +7394,8 @@ msgstr "Tartalom mutatása"
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr "Tartalom mutatása"
msgid "Sign in"
msgstr "Bejelentkezés"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Bejelentkezés, mint {0}"
@@ -6826,16 +7411,16 @@ msgstr "Bejelentkezés, mint {0}"
msgid "Sign in as..."
msgstr "Bejelentkezés, mint…"
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr "Jelentkezz be vagy regisztrálj!"
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "Jelentkezz be vagy regisztrálj a csatlakozáshoz!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "Jelentkezz be vagy regisztrálj!"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "Bejelentkezés egy másik felhasználói fiókba"
@@ -6843,15 +7428,15 @@ msgstr "Bejelentkezés egy másik felhasználói fiókba"
msgid "Sign in to Bluesky or create a new account"
msgstr "Jelentkezz be vagy hozz létre egy Bluesky-fiókot!"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Kijelentkezés"
@@ -6859,8 +7444,8 @@ msgstr "Kijelentkezés"
msgid "Sign Out"
msgstr "Kijelentkezés"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "Kijelentkezés"
@@ -6874,11 +7459,6 @@ msgstr "Bejelentkezés szükséges"
msgid "Signed in as @{0}"
msgstr "Bejelentkeztél, mint @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "Regisztráció kezdőcsomag nélkül"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Hasonló fiókok"
@@ -6896,12 +7476,21 @@ msgstr "Folyamat kihagyása"
msgid "Smaller"
msgstr "Kisebb"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr "Emlékeztető elhalasztása"
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Szoftverfejlesztő"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr "A hitelesítéseidnek egy része érvénytelen."
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "További ajánlott hírfolyamok"
@@ -6909,23 +7498,31 @@ msgstr "További ajánlott hírfolyamok"
msgid "Some people can reply"
msgstr "Csak bizonyos személyek válaszolhatnak"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr "Valaki {0}-emojival reagált"
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr "Valaki {0}-emojival reagált erre: {1}"
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Valami nem stimmel a beküldendő adatokkal. Vedd fel a kapcsolatot az ügyfélszolgálattal!"
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Valami balul sült el"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Valami balul sült el. Próbáld újra"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Valami balul sült el. Próbáld újra!"
@@ -6934,16 +7531,16 @@ msgstr "Valami balul sült el. Próbáld újra!"
msgid "Something went wrong!"
msgstr "Valami balul sült el!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr "Valami balul sült el. Próbáld újra!"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "Valami nem stimmel? Vedd fel velünk a kapcsolatot!"
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "Sajnáljuk, de lejárt a munkameneted. Jelentkezz be újra!"
@@ -6978,34 +7575,39 @@ msgstr "Spam; túl sok említés vagy válasz"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Sport"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr "A megkezdett beszélgetések itt fognak megjelenni."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Új csevegés indítása"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "Személyek felvétele"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "Vegyél fel személyeket!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Csevegés indítása vele: {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Kezdőcsomag"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "Kezdőcsomag – Szerző: {0}"
@@ -7013,38 +7615,39 @@ msgstr "Kezdőcsomag – Szerző: {0}"
msgid "Starter pack by <0/>"
msgstr "Kezdőcsomag – Szerző: <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "Kezdőcsomag – Saját"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "Ez a kezdőcsomag érvénytelen"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "Kezdőcsomagok"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "A kezdőcsomagokkal könnyen megoszthatod a kedvenc hírfolyamaidat és személyeidet."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Állapot"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "{1}/{0}. lépés"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "Adatok törölve. Indítsd újra az alkalmazást!"
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "Mesekönyv"
@@ -7063,46 +7666,51 @@ msgstr "Fellebbezés beküldése"
msgid "Submit Appeal"
msgstr "Fellebbezés beküldése"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr "Jelentés küldése"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Feliratkozás"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "Az alábbi feljegyzési kategóriák használatához iratkozz fel a(z) @{0} nevű szolgáltatóra:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "Feliratkozás a feljegyzőre"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "Feliratkozás a feljegyzőre"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "Feliratkozás a listára"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "Siker!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr "Hitelesítetted a fiókot"
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
msgstr "Javasolt fiókok"
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Számodra javasolt"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Felnőtt tartalom"
@@ -7116,16 +7724,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Szürkület"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Támogatás"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Fiókváltás"
@@ -7134,11 +7742,11 @@ msgstr "Fiókváltás"
msgid "Switch Account"
msgstr "Fiókváltás"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "Fiókváltás"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr "Váltás rá: {0}"
@@ -7149,9 +7757,9 @@ msgstr "Váltás rá: {0}"
msgid "System"
msgstr "Rendszer"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Rendszernapló"
@@ -7159,6 +7767,12 @@ msgstr "Rendszernapló"
msgid "Tags only"
msgstr "Csak címkék"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr "Koppints ide a helyi menü bezárásához"
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Koppints ide a bezáráshoz"
@@ -7186,7 +7800,7 @@ msgstr "Technológia"
msgid "Tell a joke!"
msgstr "Mondj el egy viccet!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "Mesélj magadról!"
@@ -7194,17 +7808,17 @@ msgstr "Mesélj magadról!"
msgid "Tell us a little more"
msgstr "További részletek"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Feltételek"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Felhasználási feltételek"
@@ -7232,7 +7846,11 @@ msgstr "Szövegmező"
msgid "Text input field"
msgstr "Szövegbeviteli mező"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr "Köszönjük! A hírfolyam üzemeltetője megkapta a visszajelzést."
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "Köszönjük! Az email-cím visszaigazolása megtörtént."
@@ -7244,7 +7862,7 @@ msgstr "Köszönjük! A jelentést megkaptuk."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Köszönjük! Visszaigazoltad az email-címed – most már bezárhatod ezt az ablakot."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "Az alábbi tartalommal:"
@@ -7252,10 +7870,10 @@ msgstr "Az alábbi tartalommal:"
msgid "That handle is already taken."
msgstr "Ez a felhasználónév már foglalt."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7265,12 +7883,12 @@ msgstr "Ez a kezdőcsomag nem található."
msgid "That's all, folks!"
msgstr "Ez van, srácok!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr "Ez minden!"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "A fiók ismét képes lesz kapcsolatba lépni veled, ha feloldod a letiltását."
@@ -7284,7 +7902,7 @@ msgstr "A beállítások érvénybeléptetése érdekében az alkalmazás újra
msgid "The author of this thread has hidden this reply."
msgstr "A válaszlánc szerzője elrejtette ezt a választ."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "A Bluesky webalkalmazás"
@@ -7304,6 +7922,10 @@ msgstr "A Felfedezés hírfolyam"
msgid "The Discover feed now knows what you like"
msgstr "A Felfedezés hírfolyam olyan tartalmakat mutat, amelyek tetszhetnek Neked"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr "Az új és a régi email-cím megegyezik."
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Az alkalmazás jobb. Töltsd le a Blueskyt és onnan folytatjuk, ahol abbahagytad!"
@@ -7334,17 +7956,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "Az adatvédelmi irányelvek elköltöztek: <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "A kijelölt videó nagyobb, mint 50 MB."
+msgid "The selected video is larger than 100 MB."
+msgstr "A megadott videó nagyobb, mint 100 MB."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "Hibát tapasztaltunk a kiszolgálóval. Próbáld újra egy pár percen belül!"
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "A kezdőcsomag érvénytelen. Ha szeretnéd, törölheted a listáról."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr "A helyi menühöz kapcsolódó személy"
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "A támogatási űrlap elköltözött. Kérjük, <0/> vagy látogasd meg a(z) {HELP_DESK_URL} honlapot a kapcsolatbalépéshez!"
@@ -7369,15 +7996,15 @@ msgstr "A fiók deaktiválásához nem tartozik időkorlát. Bármikor visszajö
msgid "There was an issue connecting to Tenor."
msgstr "Megszakadt a kapcsolat a Tenorral."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "Megszakadt a kapcsolat a kiszolgálóval"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Megszakadt a kapcsolat a kiszolgálóval. Ellenőrizd az internetkapcsolatot, majd próbáld újra!"
@@ -7390,11 +8017,12 @@ msgstr "Megszakadt a kapcsolat a kiszolgálóddal"
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Az értesítések frissítése meghiúsult. Koppints ide az újrapróbálkozáshoz!"
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "A bejegyzések lekérése meghiúsult. Koppints ide az újrapróbálkozáshoz!"
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "A lista lekérése meghiúsult. Koppints ide az újrapróbálkozáshoz!"
@@ -7402,12 +8030,12 @@ msgstr "A lista lekérése meghiúsult. Koppints ide az újrapróbálkozáshoz!"
msgid "There was an issue fetching your app passwords"
msgstr "Hiba történt az alkalmazásjelszavak lekérése közben"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "A listák lekérése meghiúsult. Koppints ide az újrapróbálkozáshoz!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "A kiszolgálód adatainak lekérése meghiúsult"
@@ -7420,26 +8048,26 @@ msgstr "A hírfolyam eltávolítása meghiúsult. Ellenőrizd az internetkapcsol
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "A jelentés küldése meghiúsult. Ellenőrizd az internetkapcsolatot!"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "A hírfolyamok frissítése meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "Hiba történt! {0}"
@@ -7447,10 +8075,10 @@ msgstr "Hiba történt! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Hiba történt. Ellenőrizd az internetkapcsolatot, majd próbáld újra!"
@@ -7471,6 +8099,14 @@ msgstr "Az alábbi beállítások csak a Követett hírfolyamra vonatkoznak."
msgid "This {screenDescription} has been flagged:"
msgstr "Valaki feljegyzést alkalmazott erre a(z) {screenDescription}-ra/-re:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr "Ezt a fiókot egy megbízható forrásból hitelesítési pipával látták el."
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr "Ez a fiók legalább egy hitelesítési javaslattal rendelkezik, de még nincs hitelesítve."
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "Ez a fiók azt kérte, hogy a megtekintéséhez jelentkezz be."
@@ -7479,6 +8115,10 @@ msgstr "Ez a fiók azt kérte, hogy a megtekintéséhez jelentkezz be."
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 "Ezt a felhasználót legalább egy aktív moderálólista letiltotta. Ha szeretnéd feloldani a tiltását, akkor el kell távolítanod a listáról."
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr "Ezt bármikor visszavonhatod."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "A fellebbezés címzettje: <0>{sourceName}0>."
@@ -7512,13 +8152,21 @@ msgstr "Ez a tartalom jelenleg nem elérhető, mert az egyik kapcsolódó felhas
msgid "This content is not viewable without a Bluesky account."
msgstr "Ezt a tartalmat bejelentkezés nélkül nem tekintheted meg."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Ez a beszélgetés egy már törölt vagy deaktivált fiókkal történt. A lehetőségekhez kattints ide"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr "Ez az email-cím már jelenleg is hozzá van rendelve a fiókodhoz."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
-msgstr "Kísérleti funkció. Az adattár-exportálásról bővebben <0>ebben a blogbejegyzésben0> olvashatsz."
+msgstr "Kísérleti funkció. Az adattár-exportálásról bővebben <0>ebben a blogbejegyzésben0> olvashatsz (angolul)."
+
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr "Jelenleg egy alkalmazásjelszóval vagy bejelentkezve. A funkció használatához a valódi jelszavaddal kell bejelentkezned."
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
@@ -7533,8 +8181,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Ez a hírfolyam üres. Lehetséges, hogy nem követsz elég felhasználót vagy rosszul van beállítva a hírfolyam."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Ez a hírfolyam üres."
@@ -7542,7 +8190,7 @@ msgstr "Ez a hírfolyam üres."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Ez a hírfolyam már nem elérhető. Helyette a <0>Felfedezés0> hírfolyamot mutatjuk."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "Ez a felhasználónév le van foglalva. Adj meg egy másikat!"
@@ -7550,9 +8198,10 @@ msgstr "Ez a felhasználónév le van foglalva. Adj meg egy másikat!"
msgid "This information is not shared with other users."
msgstr "Ezt az információt nem osztjuk meg más felhasználókkal."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "Ez fontos, ha a jövőben megváltoztatnád az email-címed vagy a jelszavad."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr "Érvénytelen hivatkozás"
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7562,7 +8211,7 @@ msgstr "Feljegyezte a szerző."
msgid "This label was applied by you."
msgstr "Saját feljegyzés."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "Ez a feljegyző nem jelentette ki a feljegyzési kategóriáit, ezért lehet, hogy nem aktív."
@@ -7578,7 +8227,7 @@ msgstr "Ennek a(z) <0>{0}0> által létrehozott listának a címe vagy leírá
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr "Ennek az Általad létrehozott listának a címe vagy leírása lehetséges, hogy megsérti a Bluesky közösségi irányelveit."
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "Ez a lista üres."
@@ -7586,7 +8235,7 @@ msgstr "Ez a lista üres."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Ez a moderálási szolgáltatás jelenleg nem elérhető. A részleteket alább olvashatod. Ha a probléma fennáll, lépj velünk kapcsolatba!"
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "A bejegyzés adatai szerint az eredeti létrehozási dátuma <0>{0}0> volt, de először ekkor jelent meg a Blueskyon: <1>{1}1>"
@@ -7594,28 +8243,29 @@ msgstr "A bejegyzés adatai szerint az eredeti létrehozási dátuma <0>{0}0>
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr "Ez a bejegyzés egy ismeretlen válaszkapu-típussal rendelkezik. Lehetséges, hogy az alkalmazás verziója elavult."
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "Ezt a bejegyzést törölték."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Ez a bejegyzés csak a bejelentkezett felhasználók számára látható; a kijelentkezett felhasználók számára nem."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Ez a bejegyzés el lesz rejtve a hírfolyamokból és a válaszláncokból. Ez a művelet nem vonható vissza."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "A szerző letiltotta az idézést."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Ez a profil csak a bejelentkezett felhasználók számára látható; a kijelentkezett felhasználók számára nem."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr "Ez a válasz egy rejtett részlegbe lesz sorolva a válaszláncok legalján és se Te, sem pedig mások nem fognak értesítéseket kapni a jövőbeli válaszokról."
@@ -7623,10 +8273,14 @@ msgstr "Ez a válasz egy rejtett részlegbe lesz sorolva a válaszláncok legalj
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Ez a szolgáltatás nem osztotta meg a felhasználási feltételeit vagy az adatvédelmi irányelveit."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "Ez az alábbi helyen fog tartományrekordot létrehozni:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr "Ez a felhasználó nem rendelkezik megjelenítendő névvel, ezért nem hitelesíthető."
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "Ezt a felhasználót még senki sem követi."
@@ -7664,21 +8318,21 @@ msgstr "Ez a felhasználó még senkit sem követ."
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "Ezzel a(z) „{0}” kifejezés el lesz távolítva az elnémított szavak listájáról. Később bármikor újra felveheted."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "Ezzel @{0} el lesz távolítva a fióklistáról."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "Ezzel el fogod távolítani a bejegyzést az idézésből mindenki számára, ami egy helyőrzővel lesz helyettesítve."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "Válaszlánc-beállítások"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Válaszláncok"
@@ -7686,8 +8340,8 @@ msgstr "Válaszláncok"
msgid "Thread Preferences"
msgstr "Válaszláncok"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "Egymásba ágyazott"
@@ -7695,7 +8349,7 @@ msgstr "Egymásba ágyazott"
msgid "Threaded mode"
msgstr "Beágyazott mód"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Válaszlánc-beállítások"
@@ -7707,14 +8361,15 @@ msgstr "Hátralévő idő: {0, plural, one {# másodperc} other {# másodperc}}"
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "A kétlépcsős azonosítás kikapcsolásához vissza kell igazolnod az email-címedet."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr "A kétlépcsős azonosítás kikapcsolásához vissza kell igazolnod az email-címedet: <0>{0}0>"
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "Ha egy beszélgetést szeretnél jelenteni, kérjük egy konkrét üzenetet jelents a csevegési képernyőről. Ez segít a moderátorainknak megérteni a probléma szókörnyezetét."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "A videófeltöltés előtt ellenőriznünk kell az email-címedet."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "Kinek szeretnéd elküldeni ezt a jelentést?"
@@ -7727,7 +8382,7 @@ msgstr "Ma"
msgid "Toggle dropdown"
msgstr "Legördülő menü kibontása/összecsukása"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "Felnőtt tartalmak ki-/bekapcsolása"
@@ -7736,34 +8391,36 @@ msgid "Toggles the sound"
msgstr "Hang némítása"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Felkapott"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "Témakör"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Lefordítás"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "Felkapott"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "Felkapott videók"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr "A bizalom kapcsolatok, közösségek és egy megosztott környezet útján alakul ki, ezért bevezetjük a <0>megbízható hitelesítők0> rendszerét is – ezek olyan egyesületek, amelyek közvetlenül is képesek hitelesíteni másokat."
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7777,7 +8434,7 @@ msgstr "Televízió"
msgid "Two-factor authentication (2FA)"
msgstr "Kétlépcsős azonosítás (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Kívánt felhasználónév megadása"
@@ -7785,18 +8442,11 @@ msgstr "Kívánt felhasználónév megadása"
msgid "Type your message here"
msgstr "Üzenet megadása"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Típus:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Lista tiltásának feloldása"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Lista némításának feloldása"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "A kiszolgáló nem található. Ellenőrizd az internetkapcsolatot, majd próbáld újra!"
@@ -7811,7 +8461,7 @@ msgstr "A kiszolgáló nem található. Ellenőrizd az internetkapcsolatot, majd
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "A szolgáltatással való kapcsolatfelvétel meghiúsult. Ellenőrizd az internetkapcsolatot!"
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "A törlés meghiúsult"
@@ -7819,36 +8469,41 @@ msgstr "A törlés meghiúsult"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Tiltás feloldása"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Tiltás feloldása"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Fiók tiltásának feloldása"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "Fiók tiltásának feloldása"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr "Lista tiltásának feloldása"
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Megosztás visszavonása"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Megosztás visszavonása ({0, plural, one {# megosztás} other {# megosztás}})"
@@ -7857,28 +8512,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Követés megszüntetése"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "{0} követésének megszüntetése"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "Fiók követésének megszüntetése"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr "Követés megszüntetése"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "A feljegyzőid közül egyik sem támogatja ezt a jelentési típust."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr "Ismeretlen hitelesítő"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "Kedvelés visszavonása"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Kedvelés visszavonása ({0, plural, one {# kedvelés} other {# kedvelés}})"
@@ -7888,7 +8548,7 @@ msgctxt "video"
msgid "Unmute"
msgstr "Némítás feloldása"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Némítás feloldása"
@@ -7897,10 +8557,10 @@ msgstr "Némítás feloldása"
msgid "Unmute {tag}"
msgstr "A(z) {tag} némításának feloldása"
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "Fiók némításának feloldása"
@@ -7908,8 +8568,12 @@ msgstr "Fiók némításának feloldása"
msgid "Unmute conversation"
msgstr "Beszélgetés némításának feloldása"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr "Lista némításának feloldása"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Válaszlánc némításának feloldása"
@@ -7917,38 +8581,47 @@ msgstr "Válaszlánc némításának feloldása"
msgid "Unmute video"
msgstr "Videó némításának feloldása"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Kitűzés feloldása"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "Kitűzés feloldása"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr "Kitűzés feloldása"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Kitűzés feloldása a kezdőlapról"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "Kitűzés feloldása a profilodról"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Moderálólista kitűzésének feloldása"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "Feloldottad a(z) {0} kitűzését"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Feloldottad a hírfolyam kitűzését"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr "Emailcím-emlékeztető elhalasztásának visszavonása"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Leiratkozás"
@@ -7957,7 +8630,7 @@ msgstr "Leiratkozás"
msgid "Unsubscribe from list"
msgstr "Leiratkozás a listáról"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Leiratkozás a feljegyzőről"
@@ -7965,11 +8638,11 @@ msgstr "Leiratkozás a feljegyzőről"
msgid "Unsubscribed from list"
msgstr "Leiratkoztál a listáról"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "Nem támogatott videóformátum"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "Nem támogatott videóformátum: {0}"
@@ -7989,17 +8662,28 @@ msgstr "Frissítés"
msgid "Update <0>{displayName}0> in Lists"
msgstr "<0>{displayName}0> listatagságának frissítése"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr "Email-cím frissítése"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Frissítés erre: {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
+msgstr "Email-cím frissítése"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr "Az idézet leválasztása/visszakapcsolása meghiúsult"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "A válasz láthatóságának frissítése meghiúsult"
@@ -8008,30 +8692,30 @@ msgstr "A válasz láthatóságának frissítése meghiúsult"
msgid "Updating..."
msgstr "Frissítés folyamatban…"
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Fénykép feltöltése"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Tölts fel ide egy szöveges fájlt:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Feltöltés a kamerából"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Feltöltés a fájlkezelőből"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Feltöltés a galériából"
@@ -8044,7 +8728,7 @@ msgstr "Képek feltöltése folyamatban…"
msgid "Uploading link thumbnail..."
msgstr "Hivatkozás indexképének feltöltése folyamatban…"
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "Videó feltöltése folyamatban…"
@@ -8052,22 +8736,22 @@ msgstr "Videó feltöltése folyamatban…"
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Egy alkalmazásjelszó használatával bármely egyéb Bluesky-kliensbe bejelentkezhetsz, anélkül hogy teljes hozzáférést biztosítanál a fiókodhoz vagy a valódi jelszavadhoz."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Alapértelmezett adattárszolgáltató használata"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Alkalmazáson belüli böngésző használata"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Hivatkozások megnyitása az alkalmazáson belüli böngészővel"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Alapértelmezett böngésző használata"
@@ -8121,12 +8805,12 @@ msgstr "Felhasználólista – Szerző: {0}"
msgid "User list by you"
msgstr "Felhasználólista – Saját"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
msgstr "Létrehoztad a felhasználólistát"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
msgstr "Frissítetted a felhasználólistát"
@@ -8152,58 +8836,88 @@ msgstr "Csak a követett személyektől"
msgid "Users in \"{0}\""
msgstr "A(z) „{0}”-listán szereplő felhasználóktól"
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "A tartalmat vagy profilt kedvelő felhasználók"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr "Az Általad követett személyektől"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Érték:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "Email-cím-visszaigazolás szükséges"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr "A hitelesítés meghiúsult. Próbáld újra!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr "Hitelesítési beállítások"
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr "Hitelesítési beállítások"
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr "A Bluesky a megszokottól eltérően kezeli a hitelesítéseket. <0>További információ0>."
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr "Hitelesítő:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr "Fiók hitelesítése"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr "Kód megerősítése"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "DNS-rekord ellenőrzése"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr "Email-cím visszaigazolása"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr "Emailes kód megerősítése"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Email-cím-visszaigazoló párbeszédablak"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Új email-cím visszaigazolása"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Visszaigazolás"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Szöveges fájl ellenőrzése"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr "Fiók hitelesítése"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Email-cím visszaigazolása"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Email-cím visszaigazolása"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Verziószám: {appVersion}"
@@ -8216,7 +8930,7 @@ msgstr "Videó"
msgid "Video failed to process"
msgstr "A videó feldolgozása meghiúsult"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr "Videófolyam"
@@ -8226,14 +8940,15 @@ msgstr "{0} videója: {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Videojátékok"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr "Videó szüneteltetve"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr "Videó lejátszása folyamatban"
@@ -8241,11 +8956,11 @@ msgstr "Videó lejátszása folyamatban"
msgid "Video not found."
msgstr "A videó nem található."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Videóbeállítások"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "A videó feltöltése sikeresen befejeződött"
@@ -8253,54 +8968,55 @@ msgstr "A videó feltöltése sikeresen befejeződött"
msgid "Video: {0}"
msgstr "Videó: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "Videók"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
msgstr "A videónak 3 percnél rövidebbnek kell lennie"
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "{0} profilképének megtekintése"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "{0} profiljának megtekintése"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "{displayName} profiljának megtekintése"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "Letiltott felhasználó profiljának megtekintése"
#: src/screens/Settings/components/ExportCarDialog.tsx:100
msgid "View blogpost for more details"
-msgstr "További részleteket a blogbejegyzésben olvashatsz"
+msgstr "További részleteket a blogbejegyzésben olvashatsz (angolul)"
#: src/view/screens/Log.tsx:57
msgid "View debug entry"
msgstr "Hibakeresési bejegyzés megtekintése"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Részletek"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "A szerzői jogi törvényszegés jelentésének részletei"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Teljes válaszlánc megtekintése"
@@ -8310,18 +9026,17 @@ msgstr "További információ a feljegyzésekről"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "Továbbiak megtekintése"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Profil megtekintése"
@@ -8333,7 +9048,11 @@ msgstr "Profilkép megtekintése"
msgid "View the labeling service provided by @{0}"
msgstr "A(z) {0} által kínált feljegyzési szolgáltatás megtekintése"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr "Felhasználó hitelesítéseinek megtekintése"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "A hírfolyamot kedvelő felhasználók megtekintése"
@@ -8341,11 +9060,11 @@ msgstr "A hírfolyamot kedvelő felhasználók megtekintése"
msgid "View video"
msgstr "Videó megtekintése"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Letiltott felhasználók megtekintése"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr "Alapértelmezett kapcsolatbalépési beállítások megtekintése"
@@ -8354,14 +9073,18 @@ msgstr "Alapértelmezett kapcsolatbalépési beállítások megtekintése"
msgid "View your feeds and explore more"
msgstr "Hírfolyamgyűjtemény megnyitása és további hírfolyamok felfedezése"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Moderálólisták megtekintése"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "Elnémított fiókok megjelenítése"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr "Saját hitelesítések megtekintése"
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8394,6 +9117,11 @@ msgstr "Figyelmeztetés"
msgid "Warn content and filter from feeds"
msgstr "Figyelmeztetés és kiszűrés a hírfolyamokból"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr "Megtekintés most"
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "Erre a címkére nincs találat."
@@ -8402,7 +9130,7 @@ msgstr "Erre a címkére nincs találat."
msgid "We couldn't find any results for that topic."
msgstr "Erre a témakörre nincs találat."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "Ez a beszélgetés nem található"
@@ -8422,6 +9150,14 @@ msgstr "Reméljük, jól érzed magad! Ne feledd; a Bluesky:"
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Kifogytunk a követett felhasználók bejegyzéseiből. A további tartalom a(z) <0/> hírfolyamból származik."
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr "Legalább két érdeklődési kör megadása ajánlott."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Küldtünk egy emailt a(z) <0>{0}0>-címre. Kattints rá a benne található hivatkozásra a visszaigazoláshoz!"
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "A videófeltöltési jogosultságod ellenőrzése meghiúsult. Próbáld újra!"
@@ -8430,7 +9166,7 @@ msgstr "A videófeltöltési jogosultságod ellenőrzése meghiúsult. Próbáld
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "A születési dátumod beállításainak betöltése meghiúsult. Próbáld újra!"
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:428
msgid "We were unable to load your configured labelers at this time."
msgstr "A feljegyzőid betöltése meghiúsult."
@@ -8442,20 +9178,28 @@ msgstr "Megszakadt a kapcsolat. A folytatáshoz próbáld újra! Ha a probléma
msgid "We will let you know when your account is ready."
msgstr "Majd szólunk, ha a fiókod használatra kész."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Küldünk egy emailt a(z) <0>{0}0>-címre. Kattints rá a benne található hivatkozásra a visszaigazoláshoz!"
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "Ezeket az adatokat az élményed testreszabására fogjuk felhasználni."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "Hálózati hiba történt. Próbáld újra!"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr "Bevezetjük a hitelesítés egy új formáját: egy könnyen látható jelvényt."
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "Örvendünk, hogy megismerhetünk!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Sajnáljuk, de a lista lekérése meghiúsult. Ha a probléma fennáll, vedd fel a kapcsolatot a lista szerzőjével: @{handleOrDid}"
@@ -8463,11 +9207,11 @@ msgstr "Sajnáljuk, de a lista lekérése meghiúsult. Ha a probléma fennáll,
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Sajnáljuk, de az elnémított szavak listájának betöltése meghiúsult. Próbáld újra!"
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Sajnáljuk, de a keresés meghiúsult. Próbáld újra egy pár percen belül!"
-#: src/view/com/composer/Composer.tsx:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Sajnáljuk, de törölték a bejegyzést, amire válaszolnál."
@@ -8476,7 +9220,7 @@ msgstr "Sajnáljuk, de törölték a bejegyzést, amire válaszolnál."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Sajnáljuk, de a keresett oldal nem található."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Sajnáljuk, de egyszerre csak 20 feljegyzőre iratkozhatsz fel és elérted ezt a korlátot."
@@ -8496,16 +9240,16 @@ msgstr "Milyen érdeklődési köreid vannak?"
msgid "What do you want to call your starter pack?"
msgstr "Milyen címet adnál a kezdőcsomagodnak?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "Mostanában erről beszélnek."
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "Mi a helyzet?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr "Ha rákoppintasz a jelvényre, akkor megtekintheted egy fiók hitelesítőit."
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "Milyen nyelvek fordulnak elő ebben a bejegyzésben?"
@@ -8522,14 +9266,18 @@ msgstr "Kapcsolatbalépési információ"
msgid "Who can reply"
msgstr "Ki válaszolhat?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr "Ki hitelesíthet?"
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "Hoppá!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr "Hoppá! A felkapott videók betöltése meghiúsult."
@@ -8576,11 +9324,11 @@ msgstr "Miért kell ezt a felhasználót átvizsgálni?"
msgid "Write a message"
msgstr "Üzenet írása"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Bejegyzés írása"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Válasz írása"
@@ -8590,11 +9338,16 @@ msgstr "Válasz írása"
msgid "Writers"
msgstr "Írók"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "A kiszolgáló helytelen DID-t adott vissza. Válasz: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr "www.sajátélőadás.tv"
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Igen"
@@ -8603,15 +9356,15 @@ msgstr "Igen"
msgid "Yes, deactivate"
msgstr "Igen – deaktiválás"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Igen – kezdőcsomag törlése"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Igen – leválasztás"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Igen – elrejtés"
@@ -8627,14 +9380,31 @@ msgstr "Tegnap"
msgid "You"
msgstr "Te"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr "Megbítzható hitelesítő vagy"
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
-msgstr ""
+msgstr "Ez a fiók az alábbi tárhelyszolgáltatónál lesz létrehozva:"
#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
msgstr "Sorban állsz."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr "Élő adásban vagy"
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr "Az élő adásod véget ért"
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr "Nincs jogosultságod élő adások elindításához"
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "Nincs jogosultságod a videófeltöltésre."
@@ -8643,6 +9413,27 @@ msgstr "Nincs jogosultságod a videófeltöltésre."
msgid "You are not following anyone."
msgstr "Még senkit sem követsz."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr "Elkezdődött az élő adás!"
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr "Hitelesítve vagy"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr "Jelenleg hitelesítve vagy. Ha megváltoztatod a megjelenítendő nevedet, azzal elveszik a hitelesítésed. <0>További információ0>."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr "Jelenleg hitelesítve vagy. Ha megváltoztatod a felhasználónevedet, azzal elveszik a hitelesítésed. <0>További információ0>."
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr "A megjelenített érdeklődési köröket bármikor szerkesztheted a „Tartalom és média”-beállításokban."
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8671,7 +9462,6 @@ msgstr "Az alapértelmezett beállításokat a <0>Beállítások → Moderálás
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "Ezt a beállítást később is módosíthatod."
@@ -8684,7 +9474,7 @@ msgstr "Még nincsenek követőid."
msgid "You don't follow any users who follow @{name}."
msgstr "Egy olyan felhasználót sem követsz, aki követné őt: @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr "Jelenleg nincsenek bejövő csevegési kérelmek."
@@ -8738,24 +9528,24 @@ msgstr "Elnémítottad ezt a fiókot."
msgid "You have muted this user"
msgstr "Elnémítottad ezt a felhasználót"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "Még senkivel sem kezdtél el beszélgetni. Hajrá!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "A nyilvános hírfolyamgyűjteményed üres."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "Még nincsenek listáid."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Még egy fiókot sem tiltottál le. Ha szeretnél egy fiókot letiltani, akkor nyisd meg a profilját és a menüből válaszd ki a „Fiók letiltása” lehetőséget."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Még egy fiókot sem némítottál el. Ha szeretnél egy fiókot elnémítani, akkor nyisd meg a profilját és a menüből válaszd ki a „Fiók elnémítása” lehetőséget."
@@ -8763,11 +9553,15 @@ msgstr "Még egy fiókot sem némítottál el. Ha szeretnél egy fiókot elném
msgid "You have reached the end"
msgstr "Elérted a hírfolyam végét"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr "Visszaigazoltad az email-címed – most már bezárhatod ezt az ablakot."
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Átmenetileg elérted a videófeltöltési korlátot. Próbáld újra később!"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "Még egy kezdőcsomagot sem hoztál létre!"
@@ -8789,22 +9583,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Lehetőséged van a fellebbezésre, ha úgy gondolod, hogy a feljegyzéseket tévedésből alkalmazták."
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "A kezdőcsomag legfeljebb {STARTER_PACK_MAX_SIZE} profilt tartalmazhat"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr "A csomag legfeljebb {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profilt tartalmazhat}}"
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Legfeljebb 3 hírfolyamot jelölhetsz ki."
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "Legfeljebb 4 képet csatolhatsz"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
+msgid "You must be 13 years of age or older to create an account."
msgstr "A regisztrációhoz legalább 13 évesnek kell lenned."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Egy kezdőcsomag létrehozásához legalább hét különböző személyt követned kell."
@@ -8812,28 +9606,40 @@ msgstr "Egy kezdőcsomag létrehozásához legalább hét különböző személy
msgid "You must grant access to your photo library to save a QR code"
msgstr "A QR-kód mentéséhez először hozzáférést kell biztosítanod a fényképeidhez"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "A kép mentéséhez először hozzáférést kell biztosítanod a fényképeidhez."
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "A jelentéshez ki kell választanod legalább egy címzettet"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr "Az emailes kétlépcsős azonosítás bekapcsolása előtt vissza kell igazolnod a címedet."
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "Korábban deaktiváltad a(z) @{0} fiókot."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr "Lehetséges, hogy most előnyös lenne bezárni és újra megnyitni az alkalmazást."
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr "{0}-emojival reagáltál"
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr "{0}-emojival reagáltál erre: {1}"
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "Ezzel az összes fiókból ki fogsz jelentkezni."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "Mostantól nem fogsz értesítéseket kapni erről a válaszláncról"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Mostantól fogsz értesítéseket kapni erről a válaszláncról"
@@ -8841,23 +9647,23 @@ msgstr "Mostantól fogsz értesítéseket kapni erről a válaszláncról"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Kapni fogsz egy „helyreállítási kódot” tartalmazó emailt. Ezt a kódot itt kell megadnod a jelszó megváltoztatásához."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "Te: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Te: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "Te: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "Az ajánlott felhasználókat és hírfolyamokat a regisztráció befejeztétől fogva követni fogod."
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "A fiókod elkészültével követni fogod a javasolt felhasználókat!"
@@ -8869,7 +9675,7 @@ msgstr "Őket és {0} további felhasználót fogsz követni"
msgid "You'll follow these people right away"
msgstr "Ezeket a személyeket rögtön követni fogod"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "Kapni fogsz egy emailt a(z) <0>{0}0> címre, hogy ellenőrizhessük a kiléted."
@@ -8903,6 +9709,10 @@ msgstr "Követnivaló személyekre találtál."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Elérted a hírfolyamod végét. Kövess még több fiókot!"
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr "Túllépted az egyidejűleg megengedett legtöbb lekérést. Próbáld újra később!"
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Elérted a napi videófeltöltési korlátot (bájthatár meghaladva)"
@@ -8911,11 +9721,11 @@ msgstr "Elérted a napi videófeltöltési korlátot (bájthatár meghaladva)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Elérted a napi videófeltöltési korlátot (videómennyiség meghaladva)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Kifogytunk a videókból. Mit szólnál egy kis szünethez?"
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "Saját fiók"
@@ -8943,7 +9753,7 @@ msgstr "A fiókod megsértette a <0>Bluesky Social felhasználási feltételeit<
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr "A fellebbezést megkaptuk. Pozitív elbírálás esetén fogsz kapni egy megerősítő emailt."
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "Születési dátum"
@@ -8955,26 +9765,30 @@ msgstr "A jelenlegi böngésződ nem támogatja ezt a videóformátumot. Próbá
msgid "Your chats have been disabled"
msgstr "Megfosztottak a csevegési jogosultságodtól"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "Ezt most elmentjük, de a beállításokban később bármikor megváltoztathatod."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr "Ez a választás tartós, de a jövőben bármikor megváltoztathatod az alkalmazás beállításaiban."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "Lefoglaljuk a jelenlegi felhasználónevedet (<0>{0}0>), így bármikor visszaválthatsz rá."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr "Frissítetted az email-címedet, viszont még nem igazoltad vissza. A következő lépésben tedd ezt meg!"
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Az email-címed érvénytelen."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "Frissítetted az email-címed, viszont még nem igazoltad vissza. A következő lépésben tedd ezt meg!"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr "A Bluesky teljes funkcionalitásának kihasználásához az email-címed visszaigazolása szükséges."
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Az email-címed még nincs visszaigazolva. Ez egy fontos biztonsági lépés, amelynek javasoljuk az elvégzését."
@@ -8990,14 +9804,31 @@ msgstr "A Téged követett személyektől"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "A Követett hírfolyamod üres. Kövess több felhasználót, hogy lásd, mi történik!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "A teljes felhasználóneved: <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr "A teljes felhasználóneved: <0>@{0}0>"
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr "Saját érdeklődési körök"
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr "Frissítetted az érdeklődési köröket."
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr "Az érdeklődési köreid megadásával javíthatod az élményedet!"
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Elnémított szavak"
@@ -9006,15 +9837,15 @@ msgstr "Elnémított szavak"
msgid "Your password has been changed successfully!"
msgstr "Sikeresen megváltoztattad a felhasználóneved!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr "A jelszónak legalább 8 karakter hosszúnak kell lennie."
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "Közzétetted a bejegyzést"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "Közzétetted a bejegyzéseket"
@@ -9026,14 +9857,22 @@ msgstr "A bejegyzéseid, kedveléseid és letiltásaid nyilvánosak. Az elnémí
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "A profilod, bejegyzéseid, hírfolyamaid és listáid mostantól el vannak rejtve a többi Bluesky-felhasználó elől. A fiókod újraaktiválásához jelentkezz be!"
-#: src/view/com/composer/Composer.tsx:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Közzétetted a választ"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr "A jelentés címzettje: <0>{0}0>."
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Ez a jelentés a Bluesky moderálási szolgáltatásának lesz elküldve"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr "Az érdeklődési köreid megadásával személyre szabhatod a javasolt tartalmakat."
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr "Saját hitelesítések"
diff --git a/src/locale/locales/ia/messages.po b/src/locale/locales/ia/messages.po
index 6e04aec822..e9963caa57 100644
--- a/src/locale/locales/ia/messages.po
+++ b/src/locale/locales/ia/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ia\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 03:35\n"
+"PO-Revision-Date: 2025-05-30 23:41\n"
"Last-Translator: \n"
"Language-Team: Interlingua\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -18,117 +18,134 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(active)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
-msgstr ""
+msgstr "(include contento incorporate)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
-msgstr ""
+msgstr "(necun e-mail)"
#: src/lib/hooks/useTimeAgo.ts:169
msgid "{0, plural, one {# day} other {# days}}"
-msgstr ""
+msgstr "{0, plural, one {# die} other {# dies}}"
#: src/screens/Profile/ProfileFollowers.tsx:40
msgid "{0, plural, one {# follower} other {# followers}}"
-msgstr ""
+msgstr "{0, plural, one {# sequitor} other {# sequitores}}"
#: src/screens/Profile/ProfileFollows.tsx:40
msgid "{0, plural, one {# following} other {# following}}"
-msgstr ""
+msgstr "{0, plural, one {# sequite} other {# sequites}}"
#: src/lib/hooks/useTimeAgo.ts:159
msgid "{0, plural, one {# hour} other {# hours}}"
-msgstr ""
+msgstr "{0, plural, one {# hora} other {# horas}}"
#: src/components/moderation/LabelsOnMe.tsx:53
msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account"
-msgstr ""
+msgstr "{0, plural, one {# etiquetta} other {# etiquettas}} ha essite placiate sur iste conto"
#: src/components/moderation/LabelsOnMe.tsx:62
msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content"
-msgstr ""
+msgstr "{0, plural, one {# etiquetta} other {# etiquettas}} ha essite placiate sur iste contento"
#: src/screens/Post/PostLikedBy.tsx:41
msgid "{0, plural, one {# like} other {# likes}}"
-msgstr ""
+msgstr "{0, plural, one {# appreciation} other {# appreciationes}}"
#: src/lib/hooks/useTimeAgo.ts:149
msgid "{0, plural, one {# minute} other {# minutes}}"
-msgstr ""
+msgstr "{0, plural, one {# minuta} other {# minutas}}"
#: src/lib/hooks/useTimeAgo.ts:180
msgid "{0, plural, one {# month} other {# months}}"
-msgstr ""
+msgstr "{0, plural, one {# mense} other {# menses}}"
#: src/screens/Post/PostQuotes.tsx:41
msgid "{0, plural, one {# quote} other {# quotes}}"
-msgstr ""
+msgstr "{0, plural, one {# citation} other {# citationes}}"
#: src/screens/Post/PostRepostedBy.tsx:41
msgid "{0, plural, one {# repost} other {# reposts}}"
-msgstr ""
+msgstr "{0, plural, one {# republication} other {# republicationes}}"
#: src/lib/hooks/useTimeAgo.ts:139
msgid "{0, plural, one {# second} other {# seconds}}"
-msgstr ""
+msgstr "{0, plural, one {# secunda} other {# secundas}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
-msgstr ""
+msgstr "{0, plural, one {# elemento non legite} other {# elementos non legite}}"
#. How many months have passed, displayed in a narrow form
#: src/lib/hooks/useTimeAgo.ts:182
msgid "{0, plural, one {#mo} other {#mo}}"
-msgstr ""
+msgstr "{0, plural, one {#me} other {#me}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
-msgstr ""
+msgstr "{0, plural, one {sequitor} other {sequitores}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
-msgstr ""
+msgstr "{0, plural, one {sequite} other {sequites}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
-msgstr ""
+msgstr "{0, plural, one {appreciation} other {appreciationes}}"
#: src/screens/Profile/Header/Metrics.tsx:58
msgid "{0, plural, one {post} other {posts}}"
-msgstr ""
+msgstr "{0, plural, one {publication} other {publicationes}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
-msgstr ""
+msgstr "{0, plural, one {citation} other {citationes}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
-msgstr ""
+msgstr "{0, plural, one {republication} other {republicationes}}"
+
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, one {}other {{1} publicationes}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "{0, plural, one {}other {# personas ha}} usate iste pacchetto de initio!"
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
-msgstr ""
+msgstr "{0} <0>in <1>etiquettas1>0>"
#. Pattern: {wordValue} in text, tags
#: src/components/dialogs/MutedWords.tsx:465
msgid "{0} <0>in <1>text & tags1>0>"
+msgstr "{0} <0>in <1>texto e etiquettas1>0>"
+
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr ""
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
msgstr ""
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
-msgstr ""
+msgstr "{0} se ha inscribite iste septimana"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201
msgid "{0} of {1}"
@@ -137,215 +154,329 @@ msgstr "{0} de {1}"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
-msgstr ""
+msgstr "{0} de 50"
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr ""
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "{0} reageva con {1}"
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "{0} reageva con {1} a {2}"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "Avatar de {0}"
#: src/screens/StarterPack/Wizard/StepDetails.tsx:74
msgid "{0}'s favorite feeds and people - join me!"
-msgstr ""
+msgstr "Le canales e personas favorite de {0} – face como io!"
#: src/screens/StarterPack/Wizard/StepDetails.tsx:46
msgid "{0}'s starter pack"
-msgstr ""
+msgstr "Pacchetto de initio de {0}"
#. How many days have passed, displayed in a narrow form
#: src/lib/hooks/useTimeAgo.ts:171
msgid "{0}d"
-msgstr ""
+msgstr "{0}d"
#. How many hours have passed, displayed in a narrow form
#: src/lib/hooks/useTimeAgo.ts:161
msgid "{0}h"
-msgstr ""
+msgstr "{0}h"
#. How many minutes have passed, displayed in a narrow form
#: src/lib/hooks/useTimeAgo.ts:151
msgid "{0}m"
-msgstr ""
+msgstr "{0}m"
#. How many seconds have passed, displayed in a narrow form
#: src/lib/hooks/useTimeAgo.ts:141
msgid "{0}s"
-msgstr ""
+msgstr "{0}s"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
-msgstr ""
+msgstr "{count, plural, one {# elemento non legite} other {# elementos non legite}}"
#: src/lib/generate-starterpack.ts:111
#: src/screens/StarterPack/Wizard/index.tsx:178
msgid "{displayName}'s Starter Pack"
-msgstr ""
+msgstr "Pacchetto de initio de {displayName}"
#: src/screens/SignupQueued.tsx:216
msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}"
-msgstr ""
+msgstr "{estimatedTimeHrs, plural, one {hora} other {horas}}"
#: src/screens/SignupQueued.tsx:222
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
-msgstr ""
+msgstr "{estimatedTimeMins, plural, one {minuta} other {minutas}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
-msgstr ""
+msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}}0> te ha sequite"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
-msgstr ""
+msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}}0> ha appreciate tu canal personalisate"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
+msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}}0> ha appreciate tu message"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
+msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}}0> ha republicate tu publication"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
+msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}}0> se ha inscribite con tu pacchetto de initio"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} te seque"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} te seque in retorno"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
-msgstr ""
+msgstr "{firstAuthorLink} ha appreciate tu canal personalisate"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
+msgstr "{firstAuthorLink} ha appreciate tu publication"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
+msgstr "{firstAuthorLink} ha republicate tu publication"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
+msgstr "{firstAuthorLink} se ha inscribite con tu pacchetto de initio"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
-msgstr ""
+msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} te seque"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
-msgstr ""
+msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha appreciate tu canal personalisate"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
+msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha appreciate tu publication"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
+msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha republicate tu publication"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
+msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} se ha inscribite con tu pacchetto de initio"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
-msgstr ""
+msgstr "{firstAuthorName} te seque"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
-msgstr ""
+msgstr "{firstAuthorName} te seque in retorno"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
-msgstr ""
+msgstr "{firstAuthorName} ha appreciate tu canal personalisate"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
+msgstr "{firstAuthorName} ha appreciate tu publication"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
+msgstr "{firstAuthorName} ha republicate tu publication"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
+msgstr "{firstAuthorName} se ha inscribite con tu pacchetto de initio"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
+msgstr "{following} sequites"
+
+#: src/components/dialogs/SearchablePeopleList.tsx:412
+msgid "{handle} can't be messaged"
+msgstr "Non es possibile inviar messages a {handle}"
+
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
-msgid "{handle} can't be messaged"
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "{joinedAllTimeCount, plural, one {}other {# usatores}} inscribite!"
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
-msgstr ""
+msgstr "{notificationCount, plural, one {# elemento non legite} other {# elementos non legite}}"
#: src/components/NewskieDialog.tsx:116
msgid "{profileName} joined Bluesky {0} ago"
-msgstr ""
+msgstr "{profileName} se ha inscribite a Bluesky {0} retro"
#: src/components/NewskieDialog.tsx:111
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
+msgstr "{profileName} se ha inscribite a Bluesky con un pacchetto de initio {0} retro"
+
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "{type}h retro"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
msgstr ""
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr ""
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr ""
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "+{computedTotal}"
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
-msgstr ""
+msgstr "<0>{0}, 0><1>{1}, 1>e {2, plural, one {# altere} other {# alteres}} es includite in tu pacchetto de initio"
#: src/screens/StarterPack/Wizard/index.tsx:502
msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
-msgstr ""
+msgstr "<0>{0}, 0><1>{1}, 1>e {2, plural, one {# altere} other {# alteres}} es includite in tu pacchetto de initio"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
-msgstr ""
+msgstr "<0>{0}0> {1, plural, one {sequitor} other {sequitores}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
-msgstr ""
+msgstr "<0>{0}0> {1, plural, one {sequite} other {sequites}}"
#: src/screens/StarterPack/Wizard/index.tsx:490
msgid "<0>{0}0> and<1> 1><2>{1} 2>are included in your starter pack"
-msgstr ""
+msgstr "<0>{0}0> e<1> 1><2>{1} 2>es includite in tu pacchetto de initio"
#: src/screens/StarterPack/Wizard/index.tsx:483
msgid "<0>{0}0> is included in your starter pack"
-msgstr ""
+msgstr "<0>{0}0> es includite in tu pacchetto de initio"
#: src/components/WhoCanReply.tsx:296
msgid "<0>{0}0> members"
-msgstr ""
+msgstr "<0>{0}0> membros"
#: src/components/dms/DateDivider.tsx:69
msgid "<0>{date}0> at {time}"
-msgstr ""
+msgstr "<0>{date}0> a {time}"
#: src/screens/Settings/NotificationSettings.tsx:85
msgid "<0>Experimental:0> 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 "<0>Experimental:0> Quando iste preferentia es activate, tu recipera solmente notificationes de responsa e citation de usatores que tu seque. Nos continuara gradualmente a adder plus controlos hic."
#: src/screens/StarterPack/Wizard/index.tsx:440
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
-msgstr ""
+msgstr "<0>Tu0> e<1> 1><2>{0} 2>es includite in tu pacchetto de initio"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
-msgstr ""
+msgstr "⚠Pseudonymo invalide"
#: src/components/dialogs/MutedWords.tsx:193
msgid "24 hours"
@@ -363,62 +494,71 @@ msgstr "30 dies"
msgid "7 days"
msgstr "7 dies"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "un message"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr ""
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "A proposito"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
-msgstr ""
+msgstr "Acceptar"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
-msgstr ""
+msgstr "Acceptar requesta de chat"
#. Accept a chat request
#: src/screens/Messages/components/RequestListItem.tsx:42
msgid "Accept Request"
-msgstr ""
+msgstr "Acceptar requesta"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Accessibilitate"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
-msgstr ""
+msgstr "Parametros de accessibilitate"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Conto"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "Conto blocate"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "Conto sequite"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "Conto silentiate"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
@@ -429,52 +569,60 @@ msgstr "Conto silentiate"
msgid "Account Muted by List"
msgstr "Conto silentiate per lista"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Optiones de conto"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Conto removite del accesso rapide"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "Conto disblocate"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "Conto non plus sequite"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
+msgstr "Conto dissilentiate"
+
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Adder"
#: src/screens/StarterPack/Wizard/index.tsx:551
msgid "Add {0} more to continue"
-msgstr ""
+msgstr "Adde {0} plus pro continuar"
#: src/components/StarterPack/Wizard/WizardListCard.tsx:59
msgid "Add {displayName} to starter pack"
-msgstr ""
+msgstr "Adder {displayName} al pacchetto de initio"
#: src/view/com/composer/labels/LabelsBtn.tsx:107
#: src/view/com/composer/labels/LabelsBtn.tsx:112
msgid "Add a content warning"
msgstr "Adder un advertimento de contento"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "Adder un usator a iste lista"
@@ -485,7 +633,7 @@ msgstr "Adder conto"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Adder conto"
msgid "Add alt text"
msgstr "Adder texto alternative"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Adder texto alternative (optional)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Adder altere conto"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Adder un altere publication"
@@ -518,61 +666,74 @@ msgstr "Adder contrasigno de application"
msgid "Add App Password"
msgstr "Adder contrasigno de application"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr "Adder reaction con emoji"
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
-msgstr ""
+msgstr "Adder plus detalios (optional)"
#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word with chosen settings"
-msgstr ""
+msgstr "Adder un parola a silentiar con le parametros eligite"
#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr "Adder parolas e etiquettas silentiate"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Adder nove publication"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Adder personas"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr ""
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr "Adder reaction"
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Adder fluxos recommendate"
#: src/screens/StarterPack/Wizard/index.tsx:471
msgid "Add some feeds to your starter pack!"
-msgstr ""
+msgstr "Adde alcun canales a tu pacchetto de initio!"
#: src/screens/Feeds/NoFollowingFeed.tsx:41
msgid "Add the default feed of only people you follow"
-msgstr ""
+msgstr "Adder le canal predefinite de solmente le personas que tu seque"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Adde le sequente registro DNS a tu dominio:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Adde iste fluxo a tu fluxos"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
-msgstr ""
-
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
msgstr "Adder al listas"
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Adder a mi fluxos"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Addite al lista"
@@ -581,55 +742,60 @@ msgstr "Addite al lista"
msgid "Added to my feeds"
msgstr "Addite a mi fluxos"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
-msgstr ""
+msgstr "Detalios additional (limite: 300 characteres)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
-msgstr ""
+msgstr "Adulto"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
-msgstr ""
+msgstr "Contento pro adultos"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
-msgstr ""
+msgstr "Le contento pro adultos pote solmente esser activate via le Web sur <0>bsky.app0>."
#: src/components/moderation/LabelPreference.tsx:242
msgid "Adult content is disabled."
-msgstr ""
+msgstr "Le contento pro adultos es disactivate."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
-msgstr ""
+msgstr "Etiquettas de contento pro adultos"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Avantiate"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr ""
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Toto"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "Tote le contos ha essite sequite!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
-msgstr ""
+msgstr "Tote le linguas"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
-msgstr ""
+msgstr "Tote le canales que tu ha salvate, in un sol loco."
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:146
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:153
@@ -643,7 +809,7 @@ msgstr "Permitter nove messages de"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:344
msgid "Allow quote posts"
-msgstr ""
+msgstr "Permitter citationes"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389
msgid "Allow replies from:"
@@ -660,21 +826,21 @@ msgstr "Ha tu jam un codice?"
#: src/screens/Login/ChooseAccountForm.tsx:43
msgid "Already signed in as @{0}"
-msgstr ""
+msgstr "Tu es ja in session como @{0}"
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:187
#: src/view/com/util/post-embeds/GifEmbed.tsx:186
msgid "ALT"
-msgstr ""
+msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Texto alternative"
@@ -684,98 +850,109 @@ msgstr "Texto alternative"
#: src/view/com/composer/photos/Gallery.tsx:255
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
-msgstr ""
+msgstr "Le texto alternativre describe imagines pro usatores cec o mal vidente, e adjuta a dar contexto a omnes."
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr ""
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr "Le texto alternative essera truncate. {MAX_ALT_TEXT, plural, one {}other {Limite: {0} characteres.}}"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
+msgstr "Un adresse de e-mail ha essite inviate a {0}. Illo include un codice de confirmation que tu pote inserer hic infra."
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:114
-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/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
-msgstr ""
+msgstr "Un message de e-mail ha essite inviate! Per favor insere le codice de confirmation includite in illo hic infra."
#: src/components/dialogs/GifSelect.tsx:265
msgid "An error has occurred"
-msgstr ""
+msgstr "Un error ha occurrite"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420
msgid "An error occurred"
-msgstr ""
+msgstr "Un error ha occurrite"
#: src/view/com/composer/state/video.ts:398
msgid "An error occurred while compressing the video."
-msgstr ""
+msgstr "Un error ha occurrite durante le compression del video."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr "Un error occurreva durante le recuperation del canal."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
-msgstr ""
+msgstr "Un error ha occurrite durante le generation de tu pacchetto de initio. Vole tu tentar lo de novo?"
#: src/view/com/util/post-embeds/VideoEmbed.tsx:160
msgid "An error occurred while loading the video. Please try again later."
-msgstr ""
+msgstr "Un error ha occurrite durante le cargamento del video. Per favor tenta lo de novo plus tarde."
#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198
msgid "An error occurred while loading the video. Please try again."
-msgstr ""
+msgstr "Un error ha occurrite durante le cargamento del video. Per favor tenta lo de novo."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
-msgstr ""
+msgstr "Un error ha occurrite in salvar le codice QR!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
-msgstr ""
+msgstr "Un error ha occurrite durante le selection del video"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
-msgstr ""
+msgstr "Un error ha occurrite durante le tentativa de sequer totes"
#: src/view/com/composer/state/video.ts:435
msgid "An error occurred while uploading the video."
+msgstr "Un error ha occurrite durante le cargamento del video."
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
-msgstr ""
+msgstr "Un problema non includite in iste optiones"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
-msgstr ""
+msgstr "Un problema ha occurrite durante le initialisation del chat"
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47
msgid "An issue occurred while trying to open the chat"
-msgstr ""
+msgstr "Un problema ha occurrite durante le tentativa de aperir le chat"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
+msgstr "Un problema ha occurrite, per favor tenta lo de novo."
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
-msgstr ""
+msgstr "un error incognite ha occurrite"
#: src/components/moderation/ModerationDetailsDialog.tsx:134
#: src/lib/moderation/useModerationCauseDescription.ts:144
msgid "an unknown labeler"
-msgstr ""
+msgstr "un etiquettator incognite"
#: src/components/WhoCanReply.tsx:317
msgid "and"
@@ -790,6 +967,10 @@ msgstr "Animales"
msgid "Animated GIF"
msgstr "GIF animate"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,44 +980,44 @@ msgstr "Comportamento antisocial"
msgid "Anybody can interact"
msgstr "Quicunque pote interager"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
-msgstr ""
+msgstr "Icone del application"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
-msgstr ""
+msgstr "Lingua del application"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122
msgid "App Password"
-msgstr ""
+msgstr "Contrasigno de application"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "Contrasigno de application delite"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
-msgstr ""
+msgstr "Le nomine del contrasigno de application debe esser unic"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62
msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores"
-msgstr ""
+msgstr "Le nomines de contrasigno de application pote solmente continer litteras, numeros, spatios, tractos de union e tractos de sublineamento"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80
msgid "App password names must be at least 4 characters long"
-msgstr ""
+msgstr "Le nomines de contrasigno de application debe haber al minus 4 characteres"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66
msgid "App passwords"
msgstr "Contrasignos de application"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Contrasignos de application"
@@ -844,131 +1025,136 @@ msgstr "Contrasignos de application"
#: src/components/moderation/LabelsOnMeDialog.tsx:150
#: src/components/moderation/LabelsOnMeDialog.tsx:153
msgid "Appeal"
-msgstr ""
+msgstr "Facer appello"
#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Appeal \"{0}\" label"
-msgstr ""
+msgstr "Facer appello del etiquetta “{0}”"
#: src/components/moderation/LabelsOnMeDialog.tsx:258
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "Appello submittite"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
msgid "Appeal suspension"
-msgstr ""
+msgstr "Facer appello del suspension"
#: src/screens/Takendown.tsx:114
msgid "Appeal Suspension"
-msgstr ""
+msgstr "Facer appello del suspension"
#: src/screens/Messages/components/ChatDisabled.tsx:51
#: src/screens/Messages/components/ChatDisabled.tsx:53
#: src/screens/Messages/components/ChatDisabled.tsx:99
#: src/screens/Messages/components/ChatDisabled.tsx:101
msgid "Appeal this decision"
-msgstr ""
+msgstr "Facer appello de iste decision"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Apparentia"
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
-msgstr ""
+msgstr "Applicar le canales recommendate predefinite"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Archivate desde {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Publication archivate"
#: src/screens/Settings/AppPasswords.tsx:209
msgid "Are you sure you want to delete the app password \"{0}\"?"
-msgstr ""
+msgstr "Es tu secur de voler deler le contrasigno del application “{0}”?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
-msgstr ""
+msgstr "Es tu secur de voler deler iste message? Le message essera delite pro te, ma non pro le altere participante."
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
-msgstr ""
+msgstr "Es tu secur de voler deler iste pacchetto de initio?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
-msgstr ""
+msgstr "Es tu secur de voler abandonar tu cambiamentos?"
#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation?"
-msgstr ""
+msgstr "Es tu secur de voler lassar iste conversation?"
#: src/components/dms/LeaveConvoPrompt.tsx:45
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
-msgstr ""
+msgstr "Es tu secur de voler quitar iste conversation? Tu messages essera eliminate pro te, ma non pro le altere participante."
#: src/view/com/feeds/FeedSourceCard.tsx:319
msgid "Are you sure you want to remove {0} from your feeds?"
-msgstr ""
+msgstr "Es tu secur de voler remover {0} de tu canales?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
-msgstr ""
+msgstr "Es tu secur de voler remover isto de tu canales?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
-msgstr ""
+msgstr "Es tu secur de voler discartar iste esbosso?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
-msgstr ""
+msgstr "Es tu secur de voler discartar iste publication?"
#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "Es tu secur?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
-msgstr ""
+msgstr "Scribe tu in <0>{suggestedLanguageName}0>?"
#: src/screens/Onboarding/index.tsx:23
#: src/screens/Onboarding/state.ts:95
msgid "Art"
-msgstr ""
+msgstr "Arte"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
+msgstr "Nuditate artistic o non erotic."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "Al minus 3 characteres"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40
msgctxt "Name of app icon variant"
msgid "Aurora"
-msgstr ""
+msgstr "Aurora"
#: src/screens/Settings/AccessibilitySettings.tsx:105
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
-msgstr ""
+msgstr "Le optiones de reproduction automatic ha essite displaciate al <0>parametros de contento e multimedia0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Reproducer automaticamente videos e GIFs"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,88 +1167,89 @@ msgstr "Reproducer automaticamente videos e GIFs"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Retro"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
-msgstr ""
+msgstr "Retornar al chats"
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Ante de crear un lista, tu debe primo verificar tu adresse de e-posta."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
+msgstr "Ante de crear un pacchetto de initio, tu debe primo verificar tu adresse de e-mail."
+
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr ""
-
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Anniversario"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Blocar"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Blocar conto"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "Blocar conto?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Blocar contos"
#: src/components/dms/ReportDialog.tsx:317
msgid "Block and Delete"
-msgstr ""
+msgstr "Blocar e deler"
#: src/components/dms/ReportDialog.tsx:352
msgid "Block and/or delete this conversation"
-msgstr ""
+msgstr "Blocar e/o deler iste conversation"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Blocar lista"
#: src/screens/Messages/components/ChatStatusInfo.tsx:46
msgid "Block or report"
-msgstr ""
+msgstr "Blocar o signalar"
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "Blocar iste contos?"
@@ -1079,41 +1266,41 @@ msgstr "Blocar usator"
msgid "Blocked"
msgstr "Blocate"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Contos blocate"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Contos blocate"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
-msgstr ""
+msgstr "Le contos blocate non pote responder in tu discussiones, mentionar te, o alteremente interager con te."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 ""
+msgstr "Le contos blocate non pote responder in tu discussiones, mentionar te, o alteremente interager con te. Tu non videra lor contento e illes non potera vider le tue."
#: src/view/com/post-thread/PostThread.tsx:468
msgid "Blocked post."
msgstr "Publication blocate."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
-msgstr ""
+msgstr "Blocar non impedi que iste etiquettator applica etiquettas a tu conto."
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
-msgstr ""
+msgstr "Le blocage es public. Contos blocate non pote responder in tu discussiones, mentionar te o alteremente interager con te."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
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 ""
+msgstr "Le blocage non impedi le application de etiquettas a tu conto, ma iste conto non potera responder in tu discussiones o interager con te."
-#: src/view/com/auth/SplashScreen.web.tsx:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blog"
@@ -1122,22 +1309,22 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
-msgstr ""
+msgstr "Bluesky non pote confirmar le authenticitate del data declarate."
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129
msgctxt "Name of app icon variant"
msgid "Bluesky Classic™"
-msgstr ""
+msgstr "Bluesky Classic™"
#: src/view/com/auth/server-input/index.tsx:212
msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server."
-msgstr ""
+msgstr "Bluesky es un rete aperte ubi tu pote eliger tu fornitor de albergamento. Si tu es un disveloppator, tu pote albergar tu proprie servitor."
#: src/view/com/auth/server-input/index.tsx:149
msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option."
-msgstr ""
+msgstr "Bluesky es un rete aperte ubi tu pote eliger tu fornitor. Si tu es nove hic, nos recommenda eliger le option predefinite, Bluesky Social."
#: src/components/ProgressGuide/List.tsx:53
#: src/components/ProgressGuide/List.tsx:70
@@ -1146,14 +1333,18 @@ msgstr "Bluesky es melior con amicos!"
#: src/screens/Takendown.tsx:217
msgid "Bluesky Social Terms of Service"
-msgstr ""
+msgstr "Conditiones de servicio de Bluesky Social"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
-msgstr ""
+msgstr "Bluesky eligera un insimul de contos recommendate inter le personas in tu rete."
#: src/screens/Settings/components/PwiOptOut.tsx:99
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
+msgstr "Bluesky non monstrara tu profilo e publicationes al usatores que non ha aperite session. Altere applicationes pote non honorar iste requesta. Iste option non rende tu conto private."
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
#: src/screens/Settings/AppIconSettings/index.tsx:99
@@ -1166,121 +1357,134 @@ msgstr "Icones de Bluesky+"
#: src/lib/moderation/useLabelBehaviorDescription.ts:53
msgid "Blur images"
-msgstr ""
+msgstr "Disfocalisar imagines"
#: src/lib/moderation/useLabelBehaviorDescription.ts:51
msgid "Blur images and filter from feeds"
-msgstr ""
+msgstr "Disfocalisar imagines e non monstrar los in canales"
#: src/screens/Onboarding/index.tsx:30
#: src/screens/Onboarding/state.ts:96
msgid "Books"
msgstr "Libros"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
-msgstr ""
+msgstr "Percurre altere contos sur le pagina Explorar"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
-msgstr ""
+msgstr "Percurre altere canales sur le pagina Explorar"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
-msgstr ""
+msgstr "Percurrer plus suggestiones"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
-msgstr ""
+msgstr "Percurre plus suggestiones sur le pagina Explorar"
#: src/screens/Home/NoFeedsPinned.tsx:103
#: src/screens/Home/NoFeedsPinned.tsx:109
msgid "Browse other feeds"
-msgstr ""
+msgstr "Percurrer altere canales"
#: src/components/TrendingTopics.tsx:178
msgid "Browse posts about {displayName}"
-msgstr ""
+msgstr "Percurrer publicationes sur {displayName}"
#: src/components/TrendingTopics.tsx:186
msgid "Browse posts tagged with {displayName}"
-msgstr ""
+msgstr "Percurrer publicationes etiquettate con {displayName}"
#: src/components/TrendingTopics.tsx:195
msgid "Browse starter pack {displayName}"
-msgstr ""
+msgstr "Percurrer le pacchetto de initio {displayName}"
+
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr "Percurrer topico {0}"
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
-msgstr ""
+msgstr "Percurrer le topico {displayName}"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
-msgstr ""
+msgstr "Negotios"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
-msgstr ""
+msgstr "Per {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
-msgstr ""
+msgstr "Per <0>{0}0>"
#: src/screens/Signup/StepInfo/Policies.tsx:81
msgid "By creating an account you agree to the <0>Privacy Policy0>."
-msgstr ""
+msgstr "In crear un conto, tu accepta le <0>politica de privatessa0>."
#: src/screens/Signup/StepInfo/Policies.tsx:48
msgid "By creating an account you agree to the <0>Terms of Service0> and <1>Privacy Policy1>."
-msgstr ""
+msgstr "In crear un conto, tu accepta le <0>conditiones de servicio0> e le <1>politica de privatessa1>."
#: src/screens/Signup/StepInfo/Policies.tsx:68
msgid "By creating an account you agree to the <0>Terms of Service0>."
+msgstr "In crear un conto, tu accepta le <0>conditiones de servicio0>."
+
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
-msgstr ""
+msgstr "Camera"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Cancellar"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1294,47 +1498,45 @@ msgstr "Cancellar suppression de conto"
#: src/view/com/modals/CropImage.web.tsx:94
msgid "Cancel image crop"
-msgstr ""
+msgstr "Cancellar le retalio del imagine"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Cancellar edition de profilo"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
-msgstr ""
+msgstr "Cancellar citation"
#: src/screens/Deactivated.tsx:152
msgid "Cancel reactivation and sign out"
-msgstr ""
+msgstr "Cancellar le reactivation e clauder session"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Cancellar cerca"
#: src/view/com/modals/LinkWarning.tsx:106
msgid "Cancels opening the linked website"
-msgstr ""
+msgstr "Cancella le apertura del sito web ligate"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
-msgstr ""
+msgstr "Impossibile interager con un usator blocate"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Subtitulos (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Subtitulos e texto alternative"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Cambiar"
@@ -1347,90 +1549,84 @@ msgstr "Cambiar icone de application"
msgid "Change app icon to \"{0}\""
msgstr "Cambiar icone de application a \"{0}\""
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
-msgstr ""
+msgstr "Cambiar adresse de e-mail"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Cambiar nomine de usator"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
-msgstr ""
-
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr ""
+msgstr "Cambiar de servicio de moderation"
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Cambiar contrasigno"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
-msgstr ""
+msgstr "Cambiar le lingua del publication a {suggestedLanguageName}"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
-msgstr ""
+msgstr "Cambiar ration de appello"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
-msgstr ""
+msgstr "Cambiar tu e-mail"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
-msgstr ""
+msgstr "Cambiar tu adresse de e-mail"
#: src/screens/Settings/AppIconSettings/index.tsx:216
msgid "Changes app icon"
-msgstr ""
+msgstr "Cambia le icone del application"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
-msgstr ""
+msgstr "Cambia le fornitor de albergamento"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
-msgstr ""
+msgstr "Chat"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
-msgstr ""
+msgstr "Chat delite"
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "Chat silentiate"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr ""
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
-msgstr ""
+msgstr "Requestas de chat"
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Configurationes de Chat"
@@ -1441,12 +1637,12 @@ msgstr "Configurationes de Chat"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "Chat dissilentiate"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
-msgstr ""
+msgstr "Chats"
#: src/screens/SignupQueued.tsx:78
#: src/screens/SignupQueued.tsx:82
@@ -1455,13 +1651,13 @@ msgstr "Verificar mi stato"
#: src/screens/Login/LoginForm.tsx:301
msgid "Check your email for a sign in code and enter it here."
-msgstr ""
+msgstr "Consulta tu e-mail pro un codice de apertura de session e insere lo hic."
#: src/view/com/modals/DeleteAccount.tsx:213
msgid "Check your inbox for an email with the confirmation code to enter below:"
-msgstr ""
+msgstr "Consulta tu cassa de entrata pro un message de e-mail con le codice de confirmation a inserer hic infra:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Elige methodo de verification de dominio"
@@ -1469,7 +1665,7 @@ msgstr "Elige methodo de verification de dominio"
msgid "Choose Feeds"
msgstr "Eliger fluxos"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Elige por me"
@@ -1477,13 +1673,9 @@ msgstr "Elige por me"
msgid "Choose People"
msgstr "Elige personas"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr ""
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
-msgstr ""
+msgstr "Elige le algorithmos que actiona tu canales personalisate."
#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107
msgid "Choose this color as your avatar"
@@ -1493,25 +1685,29 @@ msgstr "Elige iste color como tu avatar"
msgid "Choose your account provider"
msgstr "Elige tu fornitor de conto"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
-msgstr ""
+msgstr "Elige tu proprie linea de tempore! Le canales construite per le communitate te adjuta a trovar contentos que tu ama."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Elige tu contrasigno"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "Elige tu nomine de usator"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Nettar tote le datos de immagazinage"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
+msgstr "Rader tote le datos de immagazinage (reinitiar postea)"
+
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
msgstr ""
#: src/components/forms/SearchInput.tsx:70
@@ -1522,71 +1718,91 @@ msgstr "Nettar texto a cercar"
msgid "click here"
msgstr "clicca hic"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
-msgstr ""
+msgstr "Clicca pro impedir le citationes de iste publication."
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:338
msgid "Click to enable quote posts of this post."
-msgstr ""
+msgstr "Clicca pro permitter le citationes de iste publication."
#: src/components/RichTextTag.tsx:54
msgid "Click to open tag menu for {tag}"
-msgstr ""
+msgstr "Clicca pro aperir un menu de etiquetta pro {tag}"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
-msgstr ""
+msgstr "Clicca pro retentar le message fallite"
#: src/screens/Onboarding/index.tsx:32
msgid "Climate"
-msgstr ""
+msgstr "Climate"
#: src/components/dms/ChatEmptyPill.tsx:39
msgid "Clip 🐴 clop 🐴"
-msgstr ""
+msgstr "Cataclop 🐴 cataclop 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Clauder"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Clauder quadro de dialogo active"
#: src/screens/Login/PasswordUpdatedForm.tsx:31
msgid "Close alert"
-msgstr ""
+msgstr "Clauder alerta"
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
-msgstr ""
+msgstr "Clauder le tiratorio inferior"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Clauder quadro de dialogo"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr ""
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
-msgstr ""
+msgstr "Clauder le selector de emojis"
#: src/components/dialogs/GifSelect.tsx:169
msgid "Close GIF dialog"
@@ -1600,104 +1816,108 @@ msgstr "Clauder imagine"
msgid "Close image viewer"
msgstr "Clauder visualisator de imagine"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr "Clauder menu"
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Clauder iste quadro de dialogo"
#: src/screens/Login/PasswordUpdatedForm.tsx:32
msgid "Closes password update alert"
+msgstr "Claude le alerta de actualisation de contrasigno"
+
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
msgstr ""
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
-msgstr ""
+msgstr "Claude le selector de emojis"
#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:32
msgid "Closes viewer for header image"
-msgstr ""
+msgstr "Claude le visor del imagine de capite"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
-msgstr ""
+msgstr "Collaber lista de usatores"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
-msgstr ""
+msgstr "Contrahe le lista de usatores pro un notification date"
#: src/components/dialogs/Embed.tsx:154
#: src/screens/Settings/AppearanceSettings.tsx:93
msgid "Color mode"
-msgstr ""
+msgstr "Modo de color"
#: src/components/dialogs/Embed.tsx:151
msgid "Color theme"
-msgstr ""
+msgstr "Thema de color"
#: src/screens/Onboarding/index.tsx:38
#: src/screens/Onboarding/state.ts:97
msgid "Comedy"
-msgstr ""
+msgstr "Comedia"
#: src/screens/Onboarding/index.tsx:24
#: src/screens/Onboarding/state.ts:98
msgid "Comics"
msgstr ""
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
-msgstr ""
+msgstr "Guidas del communitate"
#: src/screens/Onboarding/StepFinished.tsx:311
msgid "Complete onboarding and start using your account"
msgstr ""
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
-msgstr ""
+msgstr "Completa le defia"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
-msgstr ""
+msgstr "Scriber un nove publication"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
-msgstr ""
+msgstr "Scriber un responsa"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
-msgstr ""
+msgstr "Compression del video in curso..."
#: src/components/moderation/LabelPreference.tsx:82
msgid "Configure content filtering setting for category: {name}"
-msgstr ""
+msgstr "Configurar le parametros de filtrage de contento pro le categoria: {name}"
#: src/components/moderation/LabelPreference.tsx:244
msgid "Configured in <0>moderation settings0>."
-msgstr ""
+msgstr "Configurate in le <0>parametros de moderation0>."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Confirmar"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Confirmar cambiamentos"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Confirmar configurationes de lingua de contento"
@@ -1706,26 +1926,27 @@ msgstr "Confirmar configurationes de lingua de contento"
msgid "Confirm delete account"
msgstr "Confirmar suppression de conto"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Confirma tu etate:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Codice de confirmation"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Codice de confirmation"
@@ -1733,22 +1954,22 @@ msgstr "Codice de confirmation"
msgid "Connecting..."
msgstr "Connexion in corso..."
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Contactar supporto"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
-msgstr ""
+msgstr "Contento e multimedia"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Contento e multimedia"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Contento e multimedia"
@@ -1756,15 +1977,15 @@ msgstr "Contento e multimedia"
msgid "Content Blocked"
msgstr "Contento blocate"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Filtros de contento"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
-msgstr ""
+msgstr "Contento de tote le rete que poterea placer te."
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Linguas de contento"
@@ -1785,38 +2006,38 @@ msgstr "Advertimento de contento"
msgid "Content warnings"
msgstr "Advertimentos de contento"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
-msgstr ""
+msgstr "Fundo de menu contextual. Clicca pro clauder le menu."
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Continuar"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
-msgstr ""
+msgstr "Continar como {0} (actualmente in session)"
#: src/view/com/post-thread/PostThreadLoadMore.tsx:60
msgid "Continue thread..."
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
-msgstr ""
+msgstr "Continuar al proxime passo"
#: src/components/dms/ReportDialog.tsx:318
#: src/components/dms/ReportDialog.tsx:321
msgctxt "toast"
msgid "Conversation deleted"
-msgstr ""
+msgstr "Conversation delite"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
-msgstr ""
+msgstr "Conversation delite"
#: src/screens/Onboarding/index.tsx:41
msgid "Cooking"
@@ -1826,16 +2047,17 @@ msgstr "Cocina"
msgid "Copied"
msgstr "Copiate"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Version de compilation copiate al area de transferentia"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Copiate al area de transferentia"
@@ -1844,84 +2066,100 @@ msgstr "Copiate al area de transferentia"
msgid "Copied!"
msgstr "Copiate!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
-msgstr ""
+msgstr "Copia le version del compilation al area de transferentia"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Copiar"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr ""
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Copiar contrasigno de application"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
-msgstr ""
+msgstr "Copiar URI at://"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
-msgstr ""
+msgstr "Copiar le DID del autor"
#: src/components/dialogs/Embed.tsx:189
#: src/components/dialogs/Embed.tsx:206
msgid "Copy code"
msgstr "Copiar codice"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Copiar DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
-msgstr ""
+msgstr "Copiar servitor"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Copiar ligamine"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Copiar ligamine"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Copiar ligamine al lista"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Copiar ligamine al publication"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Copiar message de texto"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
-msgstr ""
+msgstr "Copiar URI at:// del publication"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Copiar texto de publication"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Copiar codice QR"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
-msgstr ""
+msgstr "Copiar le valor del registro TXT"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Politica de Copyright"
@@ -1929,46 +2167,46 @@ msgstr "Politica de Copyright"
#: src/components/dms/LeaveConvoPrompt.tsx:35
#: src/components/dms/ReportDialog.tsx:310
msgid "Could not leave chat"
-msgstr ""
+msgstr "Non esseva possibile lassar le chat"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
-msgstr ""
+msgstr "Non poteva cargar le canal"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
-msgstr ""
+msgstr "Non poteva cargar le lista"
#: src/components/dms/ConvoMenu.tsx:182
msgid "Could not mute chat"
-msgstr ""
+msgstr "Non poteva silentiar le chat"
#: src/view/com/composer/videos/VideoPreview.web.tsx:66
msgid "Could not process your video"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Crear"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
-msgstr ""
+msgstr "Crear un codice QR pro un pacchetto de initio"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
-msgstr ""
+msgstr "Crear un pacchetto de initio"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
-msgstr ""
+msgstr "Crea un pacchetto de initio pro me"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr ""
msgid "Create account"
msgstr "Crear conto"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Crear conto"
@@ -1985,23 +2223,28 @@ msgstr "Crear conto"
msgid "Create an account"
msgstr "Crear un conto"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
-msgid "Create an avatar instead"
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/screens/Onboarding/StepProfile/index.tsx:290
+msgid "Create an avatar instead"
+msgstr "In vice de isto, crear un avatar"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
-msgstr ""
+msgstr "Crear un altere"
#: src/view/com/auth/SplashScreen.tsx:47
#: src/view/com/auth/SplashScreen.web.tsx:109
msgid "Create new account"
msgstr "Crear nove conto"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
-msgstr ""
+msgstr "Crear un reporto pro {0}"
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
@@ -2014,7 +2257,7 @@ msgstr "Le creator ha essite blocate"
#: src/screens/Onboarding/index.tsx:26
#: src/screens/Onboarding/state.ts:99
msgid "Culture"
-msgstr ""
+msgstr "Cultura"
#: src/view/com/auth/server-input/index.tsx:142
#: src/view/com/auth/server-input/index.tsx:143
@@ -2023,15 +2266,15 @@ msgstr "Personalisate"
#: src/components/dialogs/Embed.tsx:144
msgid "Customization options"
-msgstr ""
+msgstr "Optiones de personalisation"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:103
msgid "Customize who can interact with this post."
-msgstr ""
+msgstr "Personalisa qui pote interager con iste publication."
#: src/screens/Onboarding/Layout.tsx:56
msgid "Customizes your Bluesky experience"
-msgstr ""
+msgstr "Personalisa tu experientia de Bluesky"
#: src/components/dialogs/Embed.tsx:167
#: src/components/dialogs/Embed.tsx:169
@@ -2053,17 +2296,17 @@ msgstr "Modo obscur"
msgid "Dark theme"
msgstr "Thema obscur"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Disactivar conto"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr ""
@@ -2079,171 +2322,180 @@ msgstr "Predefinite"
msgid "Default icons"
msgstr "Icones predefinite"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
-msgstr ""
+msgstr "Deler"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
-msgstr ""
+msgstr "Deler conto"
#: src/view/com/modals/DeleteAccount.tsx:101
msgid "Delete Account <0>\"0><1>{0}1><2>\"2>"
-msgstr ""
+msgstr "Deler le conto <0>\"0><1>{0}1><2>\"2>"
#: src/screens/Settings/AppPasswords.tsx:187
msgid "Delete app password"
-msgstr ""
+msgstr "Deler le contrasigno de application"
#: src/screens/Settings/AppPasswords.tsx:207
msgid "Delete app password?"
-msgstr ""
+msgstr "Deler le contrasigno de application?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
-msgstr ""
+msgstr "Deler chat"
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
-msgstr ""
+msgstr "Deler le registro de declaration de chat"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
-msgstr ""
+msgstr "Deler conversation"
#: src/components/dms/ReportDialog.tsx:320
msgid "Delete Conversation"
-msgstr ""
+msgstr "Deler conversation"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
-msgstr ""
+msgstr "Deler pro me"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
-msgstr ""
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
+msgstr "Deler lista"
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
-msgstr ""
+msgstr "Deler message"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
-msgstr ""
+msgstr "Deler message pro me"
#: src/view/com/modals/DeleteAccount.tsx:267
msgid "Delete my account"
-msgstr ""
+msgstr "Deler mi conto"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
-msgstr ""
+msgstr "Deler publication"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
-msgstr ""
+msgstr "Deler pacchetto de initio"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
-msgstr ""
+msgstr "Deler pacchetto de initio?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
-msgstr ""
+msgstr "Deler iste lista?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
-msgstr ""
+msgstr "Deler iste publication?"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:94
msgid "Deleted"
-msgstr ""
+msgstr "Delite"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
-msgstr ""
+msgstr "Conto delite"
#: src/view/com/post-thread/PostThread.tsx:454
msgid "Deleted post."
-msgstr ""
+msgstr "Publication delite."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Description"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "Le description es troppo longe"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "Le description es troppo longe. Le numero maxime de characteres es {DESCRIPTION_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Texto alternative descriptive"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
-msgstr ""
+msgstr "Modo de disveloppator dishabilitate"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
-msgstr ""
+msgstr "Modo de disveloppator habilitate"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Optiones de disveloppator"
#: src/components/WhoCanReply.tsx:179
msgid "Dialog: adjust who can interact with this post"
-msgstr ""
+msgstr "Dialogo: adjusta qui pote interager con iste publication"
#: src/screens/Settings/AppearanceSettings.tsx:122
msgid "Dim"
+msgstr "Tenue"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
msgstr ""
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
-msgstr ""
+msgstr "Disactivar le 2FA per e-mail"
#: src/screens/Settings/AccessibilitySettings.tsx:91
#: src/screens/Settings/AccessibilitySettings.tsx:96
msgid "Disable haptic feedback"
-msgstr ""
+msgstr "Disactivar le retroaction haptic"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Disable subtitles"
@@ -2254,130 +2506,142 @@ msgstr "Disactivar subtitulos"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Dishabilitate"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
-msgstr ""
+msgstr "Discartar publication?"
#: src/screens/Settings/components/PwiOptOut.tsx:87
#: src/screens/Settings/components/PwiOptOut.tsx:91
msgid "Discourage apps from showing my account to logged-out users"
-msgstr ""
+msgstr "Discoragiar que applicationes monstra mi conto a usatores sin session aperte"
+
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr "Discoperir canales"
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Discoperi nove fluxos personalisate"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Discoperir nove fluxos"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
-msgstr ""
+msgstr "Discoperir nove canales"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
-msgstr ""
+msgstr "Clauder"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
-msgstr ""
+msgstr "Clauder error"
#: src/components/ProgressGuide/List.tsx:42
msgid "Dismiss getting started guide"
-msgstr ""
+msgstr "Clauder le guida de introduction"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr "Clauder interesses"
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
-msgstr ""
+msgstr "Clauder iste section"
#: src/screens/Settings/AccessibilitySettings.tsx:71
#: src/screens/Settings/AccessibilitySettings.tsx:76
msgid "Display larger alt text badges"
-msgstr ""
+msgstr "Monstrar insignias plus grande de texto alternative"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
-msgstr ""
+msgstr "Nomine a monstrar"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
-msgstr ""
+msgstr "Nomine a monstrar"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
+msgstr "Le nomine a monstrar es troppo longe"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr ""
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
-msgstr ""
+msgstr "Pannello de DNS"
#: src/components/dialogs/MutedWords.tsx:302
msgid "Do not apply this mute word to users you follow"
-msgstr ""
+msgstr "Non applicar iste parola silentiate al usatores que tu seque"
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
-msgstr ""
+msgstr "Non include nuditate."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
+msgstr "Dominio verificate!"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Preste"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2386,221 +2650,232 @@ msgstr "Preste"
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:42
msgid "Done{extraText}"
+msgstr "Facite{extraText}"
+
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
msgstr ""
-#: src/components/Dialog/index.tsx:324
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
-msgstr ""
+msgstr "Tocca duo vices pro clauder le quadro de dialogo"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
-msgstr ""
+msgstr "Tocca duo vices pro appreciar"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321
msgid "Download Bluesky"
-msgstr ""
+msgstr "Discargar Bluesky"
#: src/screens/Settings/components/ExportCarDialog.tsx:79
#: src/screens/Settings/components/ExportCarDialog.tsx:84
msgid "Download CAR file"
-msgstr ""
+msgstr "Discargar file CAR"
#: src/view/com/composer/text-input/TextInput.web.tsx:342
msgid "Drop to add images"
-msgstr ""
+msgstr "Depone pro adder imagines"
#: src/components/dialogs/MutedWords.tsx:153
msgid "Duration:"
-msgstr ""
+msgstr "Duration:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
-msgstr ""
+msgstr "p.ex. alice"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
-msgstr ""
+msgstr "p.ex. Alice Nominedefamilia"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
-msgstr ""
+msgstr "p.ex. Alice Roberts"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
-msgstr ""
+msgstr "p.ex. alice.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
-msgstr ""
+msgstr "p.ex. Artista, amante de canes e lectrice avide."
#: src/lib/moderation/useGlobalLabelStrings.ts:43
msgid "E.g. artistic nudes."
-msgstr ""
+msgstr "P.ex. nuditate artistic."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
-msgstr ""
+msgstr "p.ex. Publicatores excellente"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
-msgstr ""
+msgstr "p.ex. Spammatores"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
-msgstr ""
+msgstr "p.ex. Le personas que sempre ha ration."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
-msgstr ""
+msgstr "p.ex. Usatores qui sempre responde con publicitate."
#: src/view/com/modals/InviteCodes.tsx:97
msgid "Each code works once. You'll receive more invite codes periodically."
-msgstr ""
+msgstr "Cata codice functiona un vice. Tu recipera plus codices de invitation periodicamente."
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
-msgstr ""
+msgstr "Modificar"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
-msgstr ""
+msgstr "Modificar"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
-msgstr ""
+msgstr "Modificar avatar"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111
msgid "Edit Feeds"
-msgstr ""
+msgstr "Modificar canales"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
-msgstr ""
+msgstr "Modificar imagine"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
-msgstr ""
+msgstr "Modificar parametros de interaction"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr "Modificar interesses"
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
+msgstr "Modificar le detalios del lista"
+
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
-msgstr ""
+msgstr "Modificar lista de moderation"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
-msgstr ""
+msgstr "Modificar mi canales"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
-msgstr ""
+msgstr "Modificar mi profilo"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109
msgid "Edit People"
-msgstr ""
+msgstr "Modificar personas"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:239
msgid "Edit post interaction settings"
-msgstr ""
+msgstr "Modificar le parametros de interaction del publication"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
-msgstr ""
+msgstr "Modificar profilo"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
-msgstr ""
+msgstr "Modificar profilo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
-msgstr ""
+msgstr "Modificar pacchetto de initio"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
-msgstr ""
+msgstr "Modificar lista de usatores"
#: src/components/WhoCanReply.tsx:91
msgid "Edit who can reply"
-msgstr ""
+msgstr "Modificar qui pote responder"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
-msgstr ""
+msgstr "Modificar tu nomine a monstrar"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
-msgstr ""
+msgstr "Modificar tu description de profilo"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
-msgstr ""
+msgstr "Modificar tu pacchetto de initio"
#: src/screens/Onboarding/index.tsx:31
#: src/screens/Onboarding/state.ts:101
msgid "Education"
-msgstr ""
+msgstr "Education"
#: src/screens/List/ListHiddenScreen.tsx:141
msgid "Either the creator of this list has blocked you or you have blocked the creator."
-msgstr ""
+msgstr "O le creator de iste lista te ha blocate, o tu ha blocate le creator."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
-msgstr ""
+msgstr "E-mail"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "2FA per e-mail disactivate"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
-msgstr ""
+msgstr "2FA per e-mail activate"
#: src/screens/Login/ForgotPasswordForm.tsx:93
msgid "Email address"
-msgstr ""
+msgstr "Adresse de e-mail"
#: src/components/intents/VerifyEmailIntentDialog.tsx:104
msgid "Email Resent"
+msgstr "E-mail reinviate"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr ""
-
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
msgstr ""
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
msgid "Email Verified"
-msgstr ""
+msgstr "E-mail verificate"
#: src/components/dialogs/Embed.tsx:181
msgid "Embed HTML code"
@@ -2608,21 +2883,22 @@ msgstr ""
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr ""
#: src/components/dialogs/Embed.tsx:112
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
-msgstr ""
+msgstr "Incorporar iste publication in tu sito web. Basta copiar le sequente fragmento e collar lo in le codice HTML de tu sito web."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
-msgstr ""
+msgstr "Reproductor de video incorporate"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Habilitar"
@@ -2630,27 +2906,27 @@ msgstr "Habilitar"
msgid "Enable {0} only"
msgstr "Habilitar {0} solmente"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Habilitar contento pro adultos"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
msgid "Enable external media"
-msgstr ""
+msgstr "Activar contento multimedial externe"
#: src/screens/Settings/ExternalMediaPreferences.tsx:49
msgid "Enable media players for"
-msgstr ""
+msgstr "Activar reproductores multimedial pro"
#: src/screens/Settings/NotificationSettings.tsx:74
#: src/screens/Settings/NotificationSettings.tsx:77
msgid "Enable priority notifications"
-msgstr ""
+msgstr "Activar notificationes prioritari"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387
msgid "Enable subtitles"
@@ -2658,34 +2934,34 @@ msgstr "Activar subtitulos"
#: src/components/dialogs/EmbedConsent.tsx:93
msgid "Enable this source only"
-msgstr ""
+msgstr "Activar iste fonte solmente"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
-msgstr ""
+msgstr "Activar tendentias"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
-msgstr ""
+msgstr "Activar videos de tendentia in tu canal Discoperir"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
-msgstr ""
+msgstr "Activar videos de tendentia in tu canal Discoperir."
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Habilitate"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
-msgstr ""
+msgstr "Fin de canal"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
-msgstr ""
+msgstr "Assecura te que tu ha selectionate un lingua pro cata file de subtitulo."
#: src/screens/Login/SetNewPasswordForm.tsx:143
msgid "Enter a password"
@@ -2696,50 +2972,51 @@ msgstr "Entra un contrasigno"
msgid "Enter a word or tag"
msgstr "Entra un parola o etiquetta"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
msgid "Enter Code"
msgstr "Entra codice"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Entra codice de confirmation"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
-msgstr ""
+msgstr "Passar a plen schermo"
#: src/view/com/modals/ChangePassword.tsx:165
msgid "Enter the code you received to change your password."
-msgstr ""
+msgstr "Insere le codice que tu recipeva pro cambiar tu contrasigno."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
-msgstr ""
+msgstr "Insere le dominio que tu vole usar"
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
-msgstr ""
+msgstr "Insere le e-mail que tu usava pro crear tu conto. Nos te inviara un \"codice de reinitialisation\" a fin que tu defini un nove contrasigno."
+
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr "Insere le nomine de usator o adresse de e-mail que tu usava quando tu creava tu conto"
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
-msgstr ""
+msgstr "Insere tu adresse de e-mail"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr ""
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
-msgstr ""
+msgstr "Insere tu nove adresse de e-mail infra."
#: src/screens/Login/LoginForm.tsx:243
msgid "Enter your password"
-msgstr ""
+msgstr "Insere tu contrasigno"
#: src/screens/Login/index.tsx:123
msgid "Enter your username and password"
@@ -2747,33 +3024,40 @@ msgstr "Entra tu nomine de usator e contrasigno"
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135
msgid "Enters full screen"
-msgstr ""
+msgstr "Passa a plen schermo"
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr "Intertenimento"
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
-msgstr ""
+msgstr "Error"
#: src/screens/Settings/components/ExportCarDialog.tsx:47
msgid "Error occurred while saving file"
-msgstr ""
+msgstr "Un error occurreva durante le salvamento del file"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
-msgstr ""
+msgstr "Error:"
+
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr "Error: {error}"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
-msgstr ""
+msgstr "Totos"
#: src/components/WhoCanReply.tsx:71
msgid "Everybody can reply"
-msgstr ""
+msgstr "Totos pote responder"
#: src/components/WhoCanReply.tsx:222
msgid "Everybody can reply to this post."
@@ -2782,25 +3066,25 @@ msgstr "Totos pote responder a iste publication."
#: src/screens/Messages/Settings.tsx:83
#: src/screens/Messages/Settings.tsx:86
msgid "Everyone"
-msgstr ""
+msgstr "Totes"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:73
#: src/lib/moderation/useReportOptions.ts:73
msgid "Excessive mentions or replies"
-msgstr ""
+msgstr "Mentiones o responsas excessive"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:86
#: src/lib/moderation/useReportOptions.ts:86
msgid "Excessive or unwanted messages"
-msgstr ""
+msgstr "Messages excessive o indesiderabile"
#: src/components/dialogs/MutedWords.tsx:311
msgid "Exclude users you follow"
-msgstr ""
+msgstr "Excluder usatores que tu seque"
#: src/components/dialogs/MutedWords.tsx:514
msgid "Excludes users you follow"
-msgstr ""
+msgstr "Exclude al usatores que tu seque"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Exit fullscreen"
@@ -2808,7 +3092,7 @@ msgstr "Exir del schermo plen"
#: src/view/com/modals/DeleteAccount.tsx:275
msgid "Exits account deletion process"
-msgstr ""
+msgstr "Exi del processo de elimination de conto"
#: src/view/com/modals/CropImage.web.tsx:95
msgid "Exits image cropping process"
@@ -2818,29 +3102,21 @@ msgstr ""
msgid "Exits image view"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr ""
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
-msgstr ""
+msgstr "Expander texto alternative"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
-msgstr ""
+msgstr "Expander lista de usatores"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
-msgstr ""
+msgstr "Expander o contraher le publication integre al qual tu responde"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
-msgstr ""
-
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr ""
+msgstr "Expande o contrahe le texto del publication"
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
@@ -2849,7 +3125,7 @@ msgstr ""
#: src/screens/Settings/FollowingFeedPreferences.tsx:123
#: src/screens/Settings/ThreadPreferences.tsx:137
msgid "Experimental"
-msgstr ""
+msgstr "Experimental"
#: src/components/dialogs/MutedWords.tsx:500
msgid "Expired"
@@ -2862,247 +3138,299 @@ msgstr "Expira {0}"
#: src/components/moderation/LabelsOnMeDialog.tsx:199
#: src/components/moderation/ModerationDetailsDialog.tsx:208
msgid "Expires in {0}"
+msgstr "Expira in {0}"
+
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
-msgstr ""
+msgstr "Multimedia explicite o potentialmente perturbator."
#: src/lib/moderation/useGlobalLabelStrings.ts:35
msgid "Explicit sexual images."
-msgstr ""
+msgstr "Imagines sexual explicite."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr "Explorar"
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
-msgstr ""
+msgstr "Exportar mi datos"
#: src/screens/Settings/components/ExportCarDialog.tsx:62
msgid "Export My Data"
-msgstr ""
+msgstr "Exportar mi datos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
-msgstr ""
+msgstr "Multimedia externe"
#: src/components/dialogs/EmbedConsent.tsx:54
#: src/components/dialogs/EmbedConsent.tsx:58
msgid "External Media"
-msgstr ""
+msgstr "Multimedia externe"
#: src/components/dialogs/EmbedConsent.tsx:70
#: src/screens/Settings/ExternalMediaPreferences.tsx:40
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:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
-msgstr ""
+msgstr "Preferentias de multimedia externe"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
-msgstr ""
+msgstr "Falleva le acceptation del chat"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr "Non esseva possibile adder reaction con emoji"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
-msgstr ""
+msgstr "Non esseva possibile modificar le pseudonymo. Tenta de novo."
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173
msgid "Failed to create app password. Please try again."
-msgstr ""
+msgstr "Non esseva possibile crear le contrasigno del application. Tenta de novo."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
-msgstr ""
+msgstr "Falleva le creation del conversation"
#: src/screens/StarterPack/Wizard/index.tsx:233
#: src/screens/StarterPack/Wizard/index.tsx:241
msgid "Failed to create starter pack"
-msgstr ""
+msgstr "Non esseva possibile crear pacchetto de initio"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
-msgstr ""
+msgstr "Non esseva possibile crear le lista. Verifica tu connexion al internet e tenta de novo."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
-msgstr ""
+msgstr "Falleva le deletion del chat"
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
-msgstr ""
+msgstr "Non esseva possibile deler le message"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
-msgstr ""
+msgstr "Non esseva possibile deler le publication, tenta de novo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
-msgstr ""
+msgstr "Non esseva possibile deler le pacchetto de initio"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
-msgstr ""
+msgstr "Falleva le cargamento del conversationes"
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
-msgstr ""
+msgstr "Non esseva possibile cargar le preferentias de canales"
#: src/components/dialogs/GifSelect.tsx:225
msgid "Failed to load GIFs"
-msgstr ""
+msgstr "Non esseva possibile cargar GIFs"
#: src/screens/Messages/components/MessageListError.tsx:23
msgid "Failed to load past messages"
-msgstr ""
+msgstr "Non esseva possibile cargar le messages passate"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
-msgstr ""
+msgstr "Non esseva possibile cargar le canales suggerite"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
-msgstr ""
+msgstr "Non esseva possibile cargar le suggestiones de usatores a sequer"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
-msgstr ""
+msgstr "Non esseva possibile marcar tote le requestas como legite"
#: src/state/queries/pinned-post.ts:75
msgid "Failed to pin post"
+msgstr "Non esseva possibile fixar le publication"
+
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr "Non esseva possibile remover reaction con emoji"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
msgstr ""
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
-msgstr ""
+msgstr "Non esseva possibile salvar le imagine: {0}"
#: src/state/queries/notifications/settings.ts:39
msgid "Failed to save notification preferences, please try again"
-msgstr ""
+msgstr "Non esseva possibile salvar le preferentias de notification, tenta de novo"
#: src/screens/ModerationInteractionSettings/index.tsx:108
msgid "Failed to save settings. Please try again."
-msgstr ""
+msgstr "Fallimento de salvar le parametros. Tenta lo de novo."
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr "Non esseva possibile salvar tu interesses."
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
+msgstr "Non esseva possibile inviar"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
-msgstr ""
+msgstr "Non esseva possibile inviar le appello, tenta de novo."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/components/FeedCard.tsx:275
-msgid "Failed to update feeds"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr ""
+
+#: src/components/FeedCard.tsx:285
+msgid "Failed to update feeds"
+msgstr "Non esseva possibile actualisar canales"
+
#: src/screens/Messages/Settings.tsx:34
msgid "Failed to update settings"
-msgstr ""
+msgstr "Fallimento de actualisar le parametros"
#: src/lib/media/video/upload.ts:72
#: src/lib/media/video/upload.web.ts:74
#: src/lib/media/video/upload.web.ts:78
#: src/lib/media/video/upload.web.ts:88
msgid "Failed to upload video"
+msgstr "Non esseva possibile cargar video"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
-msgstr ""
+msgstr "Non esseva possibile verificar le pseudonymo. Tenta de novo."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
-msgstr ""
+msgstr "Canal"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
-msgstr ""
+msgstr "Canal de {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
-msgstr ""
+msgstr "Menu de canal"
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Feed toggle"
msgstr ""
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
-msgstr ""
+msgstr "Commentarios"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "Commentarios inviate!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
-msgstr ""
+msgstr "Canales"
#: src/view/screens/SavedFeeds.tsx:198
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
-msgstr ""
+msgstr "Canales es algorithmos personalisate construite per usatores con alicun experientia in programmation. <0/> pro plus information."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "Canales actualisate!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
-msgstr ""
+msgstr "Canales que pote interessar te."
#: src/screens/Settings/components/OTAInfo.tsx:58
msgid "Fetch update"
-msgstr ""
+msgstr "Obtener actualisation"
#: src/screens/Settings/components/ExportCarDialog.tsx:43
msgid "File saved successfully!"
-msgstr ""
+msgstr "File salvate con successo!"
#: src/lib/moderation/useLabelBehaviorDescription.ts:66
msgid "Filter from feeds"
-msgstr ""
+msgstr "Filtro de canales"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
-msgstr ""
+msgstr "Filtrar resultatos per lingua"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
-msgstr ""
+msgstr "Filtrar resultatos per lingua (actualmente: {currentLanguageLabel})"
#: src/screens/Onboarding/StepFinished.tsx:314
msgid "Finalizing"
-msgstr ""
+msgstr "Finalisante"
#: src/view/com/posts/CustomFeedEmptyState.tsx:48
#: src/view/com/posts/FollowingEmptyState.tsx:53
@@ -3110,23 +3438,23 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "Trovar contos a sequer"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
-msgstr ""
+msgstr "Trovar personas a sequer"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
-msgstr ""
+msgstr "Trovar publicationes, usatores e canales sur Bluesky"
#: src/screens/StarterPack/Wizard/index.tsx:195
msgid "Finish"
-msgstr ""
+msgstr "Finir"
#: src/screens/Onboarding/index.tsx:35
msgid "Fitness"
-msgstr ""
+msgstr "Fitness"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117
msgctxt "Name of app icon variant"
@@ -3145,14 +3473,14 @@ msgstr ""
#: src/screens/Onboarding/StepFinished.tsx:294
msgid "Flexible"
-msgstr ""
+msgstr "Flexibile"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Sequer"
@@ -3162,39 +3490,35 @@ msgctxt "action"
msgid "Follow"
msgstr "Sequer"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Sequer {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
-msgstr ""
-
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Sequer {name}"
+msgstr "Sequer {handle}"
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
-msgstr ""
+msgstr "Seque 10 contos"
#: src/components/ProgressGuide/List.tsx:69
msgid "Follow 7 accounts"
-msgstr ""
+msgstr "Seque 7 contos"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
-msgstr ""
+msgstr "Sequer conto"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
-msgstr ""
+msgstr "Sequer totes"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Sequer in retorno"
@@ -3204,119 +3528,115 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Sequer in retorno"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr ""
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
-msgstr ""
+msgstr "Sequite per <0>{0}0>"
#: src/components/KnownFollowers.tsx:220
msgid "Followed by <0>{0}0> and {1, plural, one {# other} other {# others}}"
-msgstr ""
+msgstr "Sequite per <0>{0}0> e {1, plural, one {# altere} other {# alteres}}"
#: src/components/KnownFollowers.tsx:207
msgid "Followed by <0>{0}0> and <1>{1}1>"
-msgstr ""
+msgstr "Sequite per <0>{0}0> e <1>{1}1>"
#: src/components/KnownFollowers.tsx:189
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
-msgstr ""
+msgstr "Sequite per <0>{0}0>, <1>{1}1> e {2, plural, one {# altere} other {# alteres}}"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
-msgstr ""
+msgstr "Sequitores de @{0} que tu cognosce"
#: src/screens/Profile/KnownFollowers.tsx:104
#: src/screens/Profile/KnownFollowers.tsx:121
msgid "Followers you know"
-msgstr ""
+msgstr "Sequitores que tu cognosce"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Sequinte"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
-msgstr ""
+msgstr "Sequente {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
-msgstr ""
+msgstr "Sequente {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Sequente {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
-msgstr ""
+msgstr "Preferentias del canal Sequente"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
-msgstr ""
+msgstr "Preferentias del canal Sequente"
#: src/screens/Profile/Header/Handle.tsx:32
msgid "Follows you"
-msgstr ""
+msgstr "Te seque"
#: src/components/Pills.tsx:175
msgid "Follows You"
-msgstr ""
+msgstr "Te seque"
#: src/screens/Settings/AppearanceSettings.tsx:140
msgid "Font"
-msgstr ""
+msgstr "Typo de litteras"
#: src/screens/Settings/AppearanceSettings.tsx:160
msgid "Font size"
-msgstr ""
+msgstr "Dimension de typo de litteras"
#: src/screens/Onboarding/index.tsx:40
#: src/screens/Onboarding/state.ts:102
msgid "Food"
-msgstr ""
+msgstr "Alimentos"
#: src/view/com/modals/DeleteAccount.tsx:125
msgid "For security reasons, we'll need to send a confirmation code to your email address."
-msgstr ""
+msgstr "Pro rationes de securitate, nos debera inviar un codice de confirmation a tu adresse de e-mail."
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:209
msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one."
-msgstr ""
+msgstr "Pro rationes de securitate, tu non potera visualisar isto de novo. Si tu perde iste contrasigno del app, tu debera generar un nove."
#: src/screens/Settings/AppearanceSettings.tsx:142
msgid "For the best experience, we recommend using the theme font."
-msgstr ""
+msgstr "Pro le melior experientia, nos recommenda usar le fonte del thema."
+
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr "Pro te"
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
-msgstr ""
+msgstr "Pro sempre"
#: src/screens/Login/index.tsx:153
#: src/screens/Login/index.tsx:168
msgid "Forgot Password"
-msgstr ""
+msgstr "Io oblidava mi contrasigno"
#: src/screens/Login/LoginForm.tsx:248
msgid "Forgot password?"
-msgstr ""
+msgstr "Tu oblidava tu contrasigno?"
#: src/screens/Login/LoginForm.tsx:259
msgid "Forgot?"
-msgstr ""
+msgstr "Tu lo oblidava?"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:54
#: src/lib/moderation/useReportOptions.ts:54
@@ -3325,71 +3645,73 @@ msgstr "Publica con frequentia contentos non desirate"
#: src/screens/Hashtag.tsx:120
msgid "From @{sanitizedAuthor}"
-msgstr ""
+msgstr "De @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "De <0/>"
#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50
msgid "Gallery"
-msgstr ""
+msgstr "Galeria"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
-msgstr ""
+msgstr "Generar un pacchetto de initio"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
-msgstr ""
+msgstr "Obtener adjuta"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
msgstr ""
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
-msgstr ""
+msgstr "Pro comenciar"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
-msgstr ""
+msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
-msgstr ""
+msgstr "Da un facie a tu profilo"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39
#: src/lib/moderation/useReportOptions.ts:39
msgid "Glaring violations of law or terms of service"
msgstr ""
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
-msgstr ""
+msgstr "Retornar"
#: src/components/Error.tsx:78
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
-msgstr ""
+msgstr "Retornar"
#: src/components/dms/ReportDialog.tsx:192
#: src/components/ReportDialog/SelectReportOptionView.tsx:78
@@ -3398,227 +3720,258 @@ msgstr ""
#: src/screens/Onboarding/Layout.tsx:188
#: src/screens/Signup/BackNextButtons.tsx:35
msgid "Go back to previous step"
-msgstr ""
+msgstr "Retornar al previe passo"
#: src/view/screens/NotFound.tsx:57
msgid "Go home"
-msgstr ""
+msgstr "Ir al initio"
#: src/view/screens/NotFound.tsx:56
msgid "Go Home"
+msgstr "Ir al initio"
+
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:294
-msgid "Go to conversation with {0}"
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
msgstr ""
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
+msgid "Go to conversation with {0}"
+msgstr "Ir a conversation con {0}"
+
#: src/screens/Login/ForgotPasswordForm.tsx:165
#: src/view/com/modals/ChangePassword.tsx:179
msgid "Go to next"
-msgstr ""
+msgstr "Ir al proxime"
#: src/components/dms/ConvoMenu.tsx:227
msgid "Go to profile"
-msgstr ""
+msgstr "Ir al profilo"
#: src/components/dms/ConvoMenu.tsx:224
msgid "Go to user's profile"
-msgstr ""
+msgstr "Ir al profilo del usator"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
-msgstr ""
+msgstr "Contento explicite"
#: src/state/shell/progress-guide.tsx:218
#: src/state/shell/progress-guide.tsx:228
msgid "Half way there!"
-msgstr ""
+msgstr "Al medietate del cammino!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
-msgstr ""
+msgstr "Pseudonymo"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
-msgstr ""
+msgstr "Pseudonymo ja in uso. Tenta un differente."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
-msgstr ""
+msgstr "Pseudonymo modificate!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
-msgstr ""
+msgstr "Pseudonymo troppo longe. Tenta un plus curte."
#: src/screens/Settings/AccessibilitySettings.tsx:87
msgid "Haptics"
-msgstr ""
+msgstr "Technologia haptic"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:34
#: src/lib/moderation/useReportOptions.ts:34
msgid "Harassment, trolling, or intolerance"
-msgstr ""
+msgstr "Molestia, importunation o intolerantia"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
-msgstr ""
+msgstr "Hashtag"
#: src/components/RichTextTag.tsx:51
msgid "Hashtag {tag}"
+msgstr "Hashtag {tag}"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
msgstr ""
-#: src/screens/Signup/index.tsx:177
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
-msgstr ""
+msgstr "Problemas?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
-msgstr ""
+msgstr "Adjuta"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
-msgstr ""
+msgstr "Adjuta le personas a saper que tu non es un bot cargante un photo o creante un avatar."
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187
msgid "Here is your app password!"
-msgstr ""
+msgstr "Hic es tu contrasigno de application!"
#: src/components/VideoPostCard.tsx:178
#: src/components/VideoPostCard.tsx:454
msgid "Hidden"
msgstr "Occultate"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
-msgstr ""
+msgstr "Celate per tu parametros de moderation."
#: src/components/ListCard.tsx:130
msgid "Hidden list"
-msgstr ""
+msgstr "Lista celate"
#: src/components/interstitials/Trending.tsx:131
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Celar"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Celar"
#: src/components/dialogs/Embed.tsx:128
msgid "Hide customization options"
-msgstr ""
+msgstr "Celar optiones de personalisation"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
-msgstr ""
+msgstr "Celar le publication pro me"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
-msgstr ""
+msgstr "Celar le responsa pro totes"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
+msgstr "Celar le responsa pro me"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "Occultar iste publication?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "Occultar iste responsa?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
-msgstr ""
+msgstr "Celar tendentias"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
-msgstr ""
+msgstr "Celar tendentias?"
#: src/components/interstitials/TrendingVideos.tsx:138
msgid "Hide trending videos?"
-msgstr ""
+msgstr "Celar videos in tendentia?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Celar lista de usatores"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
-msgstr ""
+msgstr "Cela le contento"
#: src/view/com/posts/PostFeedErrorMessage.tsx:117
msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue."
-msgstr ""
+msgstr "Un problema ha occurrite in contactar le servitor de canales. Per favor signala iste problema al proprietario del canal."
#: src/view/com/posts/PostFeedErrorMessage.tsx:105
msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue."
-msgstr ""
+msgstr "Le servitor de canales pare esser mal configurate. Per favor signala iste problema al proprietario del canal."
#: src/view/com/posts/PostFeedErrorMessage.tsx:111
msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue."
-msgstr ""
+msgstr "Le servitor de canales pare esser foras de linea. Per favor signala iste problema al proprietario del canal."
#: src/view/com/posts/PostFeedErrorMessage.tsx:108
msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue."
-msgstr ""
+msgstr "Le servitor de canales ha date un mal responsa. Per favor signala iste problema al proprietario del canal."
#: src/view/com/posts/PostFeedErrorMessage.tsx:102
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
-msgstr ""
+msgstr "Le canal non ha essite trovate. Illo ha forsan essite delite."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
-msgstr ""
+msgstr "Un problema ha occurrite durante le cargamento de iste datos. Vide infra pro plus detalios. Si iste problema persiste, per favor contacta nos."
#: src/screens/Profile/ErrorState.tsx:31
msgid "Hmmmm, we couldn't load that moderation service."
-msgstr ""
+msgstr "Le systema non ha succedite a cargar iste servicio de moderation."
#: src/view/com/composer/state/video.ts:413
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
-msgstr ""
+msgstr "Un momento! Nos concede gradualmente le accesso al video, e tu attende ancora in le cauda. Reveni tosto!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Initio"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr ""
@@ -3627,65 +3980,72 @@ msgstr ""
msgid "Hosting provider"
msgstr ""
-#: src/screens/Settings/ThreadPreferences.tsx:67
-#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
-msgid "Hot replies first"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
msgstr ""
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/screens/Settings/ThreadPreferences.tsx:67
+#: src/screens/Settings/ThreadPreferences.tsx:70
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
+msgid "Hot replies first"
+msgstr "Responsas popular primo"
+
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "Como nos deberea aperir iste ligamine?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Io ha un codice"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Io ha un codice"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Io ha un codice de confirmation"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Io ha mi proprie dominio"
#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:21
msgid "I understand"
-msgstr ""
+msgstr "Io comprende"
#: src/view/com/lightbox/Lightbox.web.tsx:186
msgid "If alt text is long, toggles alt text expanded state"
-msgstr ""
+msgstr "Si le texto alternative es longe, commuta le stato expandite del texto alternative"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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 ""
+msgstr "Si tu non es ancora un adulto secundo le leges de tu pais, tu parente o tutor legal debe leger iste conditiones in tu nomine."
-#: src/view/screens/ProfileList.tsx:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
-msgstr ""
+msgstr "Si tu elimina iste lista, tu non potera recuperar lo."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
+msgstr "Si tu ha un proprie dominio, tu pote usar lo como pseudonymo. Isto te permitte autoverificar tu identitate. <0>Lege plus hic.0>"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Si tu remove iste publication, tu non potera recuperar lo."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr ""
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
-msgstr ""
+msgstr "Si tu vole cambiar tu contrasigno, nos te inviara un codice pro verificar que iste conto es tue."
#: src/view/com/auth/server-input/index.tsx:208
msgid "If you're a developer, you can host your own server."
@@ -3693,38 +4053,51 @@ msgstr ""
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
msgid "If you're trying to change your handle or email, do so before you deactivate."
-msgstr ""
+msgstr "Si tu vole cambiar de pseudonymo o de adresse de e-mail, face lo ante de disactivar."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:38
#: src/lib/moderation/useReportOptions.ts:38
msgid "Illegal and Urgent"
-msgstr ""
+msgstr "Illegal e urgente"
#: src/view/com/util/images/Gallery.tsx:71
msgid "Image"
msgstr "Imagine"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr ""
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr ""
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr ""
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
msgid "Impersonation or false claims about identity or affiliation"
-msgstr ""
+msgstr "Usurpation de identitate o affirmationes false super identitate o affiliation"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68
#: src/lib/moderation/useReportOptions.ts:68
msgid "Impersonation, misinformation, or false claims"
-msgstr ""
+msgstr "Usurpation de identitate, disinformation o affirmationes false"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91
#: src/lib/moderation/useReportOptions.ts:91
msgid "Inappropriate messages or explicit links"
-msgstr ""
+msgstr "Messages inappropriate o ligamines explicite"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr ""
@@ -3734,48 +4107,44 @@ msgstr "Nomine de usator o contrasigno incorrecte"
#: src/screens/Login/SetNewPasswordForm.tsx:131
msgid "Input code sent to your email for password reset"
-msgstr ""
+msgstr "Insere le codice inviate a tu email pro redefinir le contrasigno"
#: src/view/com/modals/DeleteAccount.tsx:228
msgid "Input confirmation code for account deletion"
-msgstr ""
+msgstr "Insere le codice de confirmation pro le deletion del conto"
#: src/screens/Login/SetNewPasswordForm.tsx:155
msgid "Input new password"
-msgstr ""
+msgstr "Insere le nove contrasigno"
#: src/view/com/modals/DeleteAccount.tsx:247
msgid "Input password for account deletion"
-msgstr ""
+msgstr "Insere le contrasigno pro le deletion del conto"
#: src/screens/Login/LoginForm.tsx:289
msgid "Input the code which has been emailed to you"
-msgstr ""
-
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr ""
+msgstr "Insere le codice que ha essite inviate a tu e-mail"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
-msgstr ""
+msgstr "Interaction limitate"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
-msgstr ""
+msgstr "Parametros de interaction"
#: src/screens/Login/LoginForm.tsx:156
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:70
msgid "Invalid 2FA confirmation code."
-msgstr ""
+msgstr "Codice de confirmation 2FA non valide."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
-msgstr ""
+msgstr "Pseudonymo invalide. Tenta un differente."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
-msgstr ""
+msgstr "Registro de publication non valide o non supportate"
#: src/components/moderation/ReportDialog/index.tsx:73
msgid "Invalid report subject"
@@ -3787,132 +4156,141 @@ msgstr "Codice de verification invalide"
#: src/view/com/modals/InviteCodes.tsx:94
msgid "Invite a Friend"
-msgstr ""
+msgstr "Invitar un amico"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
-msgstr ""
+msgstr "Codice de invitation"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
-msgstr ""
+msgstr "Codice de invitation non acceptate. Verifica que tu lo ha inserite correctemente e tenta lo de novo."
#: src/view/com/modals/InviteCodes.tsx:171
msgid "Invite codes: {0} available"
-msgstr ""
+msgstr "Codices de invitation: {0} disponibile"
#: src/view/com/modals/InviteCodes.tsx:170
msgid "Invite codes: 1 available"
-msgstr ""
+msgstr "Codices de invitation: 1 disponibile"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
-msgstr ""
+msgstr "Invita personas a iste pacchetto de initio!"
#: src/screens/StarterPack/Wizard/StepDetails.tsx:34
msgid "Invite your friends to follow your favorite feeds and people"
-msgstr ""
+msgstr "Invita tu amicos a sequer tu canales e personas favorite"
#: src/screens/StarterPack/Wizard/StepDetails.tsx:31
msgid "Invites, but personal"
-msgstr ""
+msgstr "Invitationes, mais personal"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
-msgstr ""
+msgstr "Es correcte"
#: src/screens/StarterPack/Wizard/index.tsx:435
msgid "It's just you right now! Add more people to your starter pack by searching above."
-msgstr ""
+msgstr "Tu es le unic al momento! Adde plus personas a tu pacchetto de initio cercante hic supra."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
-msgstr ""
+msgstr "ID del processo: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
-msgstr ""
+msgstr "Empleos"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
-msgstr ""
+msgstr "Junger te a Bluesky"
#: src/components/StarterPack/QrCode.tsx:68
#: src/view/shell/NavSignupCard.tsx:40
msgid "Join the conversation"
-msgstr ""
+msgstr "Participar al conversation"
#: src/screens/Onboarding/index.tsx:21
#: src/screens/Onboarding/state.ts:104
msgid "Journalism"
-msgstr ""
+msgstr "Journalismo"
#: src/components/moderation/ContentHider.tsx:231
msgid "Labeled by {0}."
-msgstr ""
+msgstr "Etiquettate per {0}."
#: src/components/moderation/ContentHider.tsx:229
msgid "Labeled by the author."
-msgstr ""
+msgstr "Etiquettate per le autor."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
-msgstr ""
+msgstr "Etiquettas"
#: src/view/com/composer/labels/LabelsBtn.tsx:73
msgid "Labels added"
-msgstr ""
+msgstr "Etiquettas addite"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
-msgstr ""
+msgstr "Le etiquettas es annotationes sur usatores e contento. Illos pote esser usate pro celar, advertir e categorisar le rete."
#: src/components/moderation/LabelsOnMeDialog.tsx:72
msgid "Labels on your account"
-msgstr ""
+msgstr "Etiquettas sur tu conto"
#: src/components/moderation/LabelsOnMeDialog.tsx:74
msgid "Labels on your content"
-msgstr ""
+msgstr "Etiquettas sur tu contento"
#: src/view/com/composer/select-language/SelectLangBtn.tsx:107
msgid "Language selection"
msgstr "Selection de lingua"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Configurationes de lingua"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Linguas"
#: src/screens/Settings/AppearanceSettings.tsx:172
msgid "Larger"
-msgstr ""
+msgstr "Plus grande"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
-msgstr ""
+msgstr "Ultime"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "apprender plus"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Apprender plus"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Apprender plus super Bluesky"
@@ -3922,21 +4300,26 @@ msgstr ""
#: src/components/moderation/ContentHider.tsx:149
msgid "Learn more about the moderation applied to this content"
-msgstr ""
+msgstr "Saper plus sur le moderation applicate a iste contento"
#: src/components/moderation/ContentHider.tsx:215
msgid "Learn more about the moderation applied to this content."
-msgstr ""
+msgstr "Saper plus sur le moderation applicate a iste contento."
#: src/components/moderation/PostHider.tsx:100
#: src/components/moderation/ScreenHider.tsx:127
msgid "Learn more about this warning"
msgstr "Apprender plus super iste advertimento"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr ""
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
-msgstr ""
+msgstr "Saper plus sur lo que es public sur Bluesky."
#: src/components/moderation/ContentHider.tsx:239
#: src/view/com/auth/server-input/index.tsx:220
@@ -3958,23 +4341,23 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:269
#: src/components/dms/LeaveConvoPrompt.tsx:42
msgid "Leave conversation"
-msgstr ""
+msgstr "Partir del conversation"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84
msgid "Leave them all unchecked to see any language."
-msgstr ""
+msgstr "Lassa totes non marcate pro vider tote le linguas."
#: src/view/com/modals/LinkWarning.tsx:65
msgid "Leaving Bluesky"
-msgstr ""
+msgstr "Quitar Bluesky"
#: src/screens/SignupQueued.tsx:155
msgid "left to go."
-msgstr ""
+msgstr "remane."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
-msgstr ""
+msgstr "Lassa me eliger"
#: src/screens/Login/index.tsx:154
#: src/screens/Login/index.tsx:169
@@ -3983,199 +4366,212 @@ msgstr ""
#: src/screens/Onboarding/StepFinished.tsx:314
msgid "Let's go!"
-msgstr ""
+msgstr "Vamos!"
#: src/components/dialogs/Embed.tsx:162
#: src/components/dialogs/Embed.tsx:164
#: src/screens/Settings/AppearanceSettings.tsx:101
msgid "Light"
-msgstr ""
+msgstr "Clar"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:14
msgctxt "Name of app icon variant"
msgid "Light"
-msgstr ""
+msgstr "Clar"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
-msgstr ""
+msgstr "Appreciar"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
-msgstr ""
+msgstr "Appreciar ({0, plural, one {# appreciation} other {# appreciationes}})"
#: src/components/ProgressGuide/List.tsx:63
msgid "Like 10 posts"
-msgstr ""
+msgstr "Appreciar 10 publicationes"
#: src/state/shell/progress-guide.tsx:214
#: src/state/shell/progress-guide.tsx:219
msgid "Like 10 posts to train the Discover feed"
-msgstr ""
+msgstr "Apprecia 10 publicationes pro trainar le canal Discoperir"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
-msgstr ""
+msgstr "Appreciar iste canal"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
-msgstr ""
+msgstr "Appreciar iste etiquettator"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
-msgstr ""
+msgstr "Appreciate per"
#: src/screens/Post/PostLikedBy.tsx:38
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
#: src/view/screens/ProfileFeedLikedBy.tsx:30
msgid "Liked By"
-msgstr ""
+msgstr "Appreciate per"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
-msgstr ""
+msgstr "Appreciate per {0, plural, one {# usator} other {# usatores}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
-msgstr ""
+msgstr "Appreciate per {likeCount, plural, one {# usator} other {# usatores}}"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
-msgstr ""
+msgstr "Appreciationes"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
-msgstr ""
+msgstr "Appreciationes de iste publication"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
-msgstr ""
+msgstr "Linear"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
-msgstr ""
+msgstr "Lista"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
-msgstr ""
+msgstr "Avatar del lista"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "Lista blocate"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
msgid "List by {0}"
-msgstr ""
+msgstr "Lista de {0}"
#: src/view/com/profile/ProfileSubpageHeader.tsx:156
msgid "List by <0/>"
-msgstr ""
+msgstr "Lista de <0/>"
#: src/view/com/profile/ProfileSubpageHeader.tsx:154
msgid "List by you"
-msgstr ""
+msgstr "Lista tue"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "Lista eliminate"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
-msgstr ""
+msgstr "Le lista esseva occultate"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr ""
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "Lista silentiate"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
-msgstr ""
+msgstr "Nomine del lista"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "Lista disblocate"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "Lista dissilentiate"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
-msgstr ""
+msgstr "Listas"
#: src/components/dms/BlockedByListDialog.tsx:39
msgid "Lists blocking this user:"
+msgstr "Listas que bloca iste usator:"
+
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:135
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr ""
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
-msgstr ""
+msgstr "Cargar plus"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
-msgstr ""
-
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr ""
+msgstr "Cargar plus canales suggerite"
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
-msgstr ""
+msgstr "Cargar nove notificationes"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Cargar nove publicationes"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
-msgstr ""
+msgstr "Cargante..."
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
-msgstr ""
+msgstr "Registro"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78
msgid "Logged-out visibility"
-msgstr ""
+msgstr "Visibilitate a usatores foras de sessionc"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
-msgstr ""
+msgstr "Logo de @sawaratsuki.bsky.social"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
-msgstr ""
+msgstr "Logo de <0>@sawaratsuki.bsky.social0>"
#: src/components/RichTextTag.tsx:53
msgid "Long press to open tag menu for #{tag}"
-msgstr ""
+msgstr "Preme longemente pro aperir le menu de etiquetta pro #{tag}"
#: src/screens/Login/SetNewPasswordForm.tsx:120
msgid "Looks like XXXXX-XXXXX"
@@ -4183,60 +4579,75 @@ msgstr ""
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39
msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below."
-msgstr ""
+msgstr "Apparentemente tu ancora non ha salvate alcun canal! Usa nostre recommendationes o percurre plus hic infra."
#: src/screens/Home/NoFeedsPinned.tsx:83
msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄"
-msgstr ""
+msgstr "Apparentemente tu ha disfixate tote tu canales. Non te preoccupa, tu pote adder alcunes hic infra 😄"
#: src/screens/Feeds/NoFollowingFeed.tsx:37
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
+msgstr "Apparentemente te manca un canal de sequitos. <0>Clicca hic pro adder un.0>"
+
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
-msgstr ""
+msgstr "Face un pro me"
#: src/view/com/modals/LinkWarning.tsx:79
msgid "Make sure this is where you intend to go!"
-msgstr ""
+msgstr "Assecura te que isto es ubi tu ha le intention de ir!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
+msgstr "Gerer canales salvate"
+
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
-msgstr ""
+msgstr "Gerer tu parolas e etiquettas silentiate"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
-msgstr ""
+msgstr "Marcar toto como legite"
#: src/components/dms/ConvoMenu.tsx:215
#: src/components/dms/ConvoMenu.tsx:218
msgid "Mark as read"
-msgstr ""
+msgstr "Marcar como legite"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
+msgstr "Marcate toto como legite"
+
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
msgstr ""
-#: src/view/screens/Profile.tsx:222
+#: src/view/screens/Profile.tsx:227
msgid "Media"
-msgstr ""
+msgstr "Multimedia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
-msgstr ""
+msgstr "Contento multimedial que pote perturbar o esser innapropriate pro certe publicos."
#: src/components/WhoCanReply.tsx:263
msgid "mentioned users"
-msgstr ""
+msgstr "usatores mentionate"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:423
msgid "Mentioned users"
@@ -4244,24 +4655,28 @@ msgstr "Usatores mentionate"
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
-msgstr ""
+msgstr "Mentiones"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
-msgstr ""
+msgstr "Menu"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
-msgstr ""
+msgstr "Message {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
-msgstr ""
+msgstr "Message delite"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
-msgstr ""
+msgstr "Message eliminate"
+
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr "Message de @{0}: {1}"
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
@@ -4269,16 +4684,20 @@ msgstr "Message del servitor: {0}"
#: src/screens/Messages/components/MessageInput.tsx:152
msgid "Message input field"
-msgstr ""
+msgstr "Campo de insertion de message"
#: src/screens/Messages/components/MessageInput.tsx:79
#: src/screens/Messages/components/MessageInput.web.tsx:60
msgid "Message is too long"
-msgstr ""
+msgstr "Le message es troppo longe"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr "Optiones de messages"
+
+#: src/Navigation.tsx:662
msgid "Messages"
-msgstr ""
+msgstr "Messages"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81
msgctxt "Name of app icon variant"
@@ -4295,68 +4714,68 @@ msgstr ""
msgid "Misleading Post"
msgstr ""
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
-msgstr ""
+msgstr "Moderation"
#: src/components/moderation/ModerationDetailsDialog.tsx:138
msgid "Moderation details"
-msgstr ""
+msgstr "Detalios de moderation"
#: src/components/ListCard.tsx:149
#: src/view/com/modals/UserAddRemoveLists.tsx:222
msgid "Moderation list by {0}"
-msgstr ""
+msgstr "Lista de moderation de {0}"
#: src/view/com/profile/ProfileSubpageHeader.tsx:169
msgid "Moderation list by <0/>"
-msgstr ""
+msgstr "Lista de moderation de <0/>"
#: src/view/com/modals/UserAddRemoveLists.tsx:220
#: src/view/com/profile/ProfileSubpageHeader.tsx:167
msgid "Moderation list by you"
-msgstr ""
+msgstr "Lista de moderation tue"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "Lista de moderation create"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "Lista de moderation actualisate"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
-msgstr ""
+msgstr "Listas de moderation"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
-msgstr ""
+msgstr "Listas de moderation"
#: src/components/moderation/LabelPreference.tsx:247
msgid "moderation settings"
-msgstr ""
+msgstr "parametros de moderation"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
-msgstr ""
+msgstr "Statos de moderation"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Instrumentos de moderation"
#: src/components/moderation/ModerationDetailsDialog.tsx:52
#: src/lib/moderation/useModerationCauseDescription.ts:47
msgid "Moderator has chosen to set a general warning on the content."
-msgstr ""
+msgstr "Le moderator optava pro poner un advertimento general super le contento."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Plus"
@@ -4365,29 +4784,29 @@ msgstr "Plus"
msgid "More feeds"
msgstr "Plus fluxos"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Plus optiones"
#: src/screens/Settings/ThreadPreferences.tsx:94
msgid "Most-liked first"
-msgstr ""
+msgstr "Le plus appreciate primo"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
-msgstr ""
+msgstr "Responsas plus appreciate primo"
#: src/screens/Onboarding/state.ts:105
msgid "Movies"
-msgstr ""
+msgstr "Cinema"
#: src/screens/Onboarding/state.ts:106
msgid "Music"
-msgstr ""
+msgstr "Musica"
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95
@@ -4398,33 +4817,33 @@ msgstr "Silentiar"
#: src/components/RichTextTag.tsx:140
#: src/components/RichTextTag.tsx:153
msgid "Mute {tag}"
-msgstr ""
+msgstr "Silentiar {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
-msgstr ""
+msgstr "Silentiar conto"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Silentiar contos"
#: src/components/dms/ConvoMenu.tsx:232
#: src/components/dms/ConvoMenu.tsx:238
msgid "Mute conversation"
-msgstr ""
+msgstr "Silentiar conversation"
#: src/components/dialogs/MutedWords.tsx:253
msgid "Mute in:"
-msgstr ""
+msgstr "Silentiar in:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
-msgstr ""
+msgstr "Silentiar lista"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "Silentiar iste contos?"
@@ -4450,59 +4869,59 @@ msgstr "Silentiar iste parola solmente in etiquettas"
#: src/components/dialogs/MutedWords.tsx:170
msgid "Mute this word until you unmute it"
-msgstr ""
+msgstr "Silentiar iste parola usque tu lo dissilentia"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
-msgstr ""
+msgstr "Silentiar discussion"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Silentiar parolas e etiquettas"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
-msgstr ""
+msgstr "Contos silentiate"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
-msgstr ""
+msgstr "Contos silentiate"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
-msgstr ""
+msgstr "Le publicationes de contos silentiate es removite de tu canal e de tu notificationes. Le silentiamento es completemente private."
#: src/lib/moderation/useModerationCauseDescription.ts:92
msgid "Muted by \"{0}\""
-msgstr ""
+msgstr "Silentiate per {0}"
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
-msgstr ""
+msgstr "Parolas e etiquettas silentiate"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
-msgstr ""
+msgstr "Le silentiamento es private. Le contos silentiate pote interager con te, ma tu non videra lor publicationes ni recipera notificationes de illos."
#: src/components/dialogs/BirthDateSettings.tsx:35
#: src/components/dialogs/BirthDateSettings.tsx:38
msgid "My Birthday"
-msgstr ""
+msgstr "Mi anniversario"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
-msgstr ""
+msgstr "Mi canales"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
-msgstr ""
+msgstr "Nomine"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
-msgstr ""
+msgstr "Le nomine es requirite"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:98
@@ -4513,121 +4932,140 @@ msgstr ""
#: src/lib/moderation/useReportOptions.ts:106
#: src/lib/moderation/useReportOptions.ts:114
msgid "Name or Description Violates Community Standards"
-msgstr ""
+msgstr "Nomine o description viola le standards del communitate"
#: src/screens/Onboarding/index.tsx:22
#: src/screens/Onboarding/state.ts:107
msgid "Nature"
-msgstr ""
+msgstr "Natura"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
+msgstr "Navigar a {0}"
+
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
-msgstr ""
+msgstr "Naviga al proxime schermo"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
-msgstr ""
+msgstr "Naviga a tu profilo"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
-msgstr ""
+msgstr "Tu debe cambiar lo?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
-msgstr ""
+msgstr "Tu debe signalar un violation de derecto de autor?"
#: src/screens/Onboarding/StepFinished.tsx:282
msgid "Never lose access to your followers or data."
-msgstr ""
+msgstr "Nunquam perde accesso a tu sequitores o tu datos."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
-msgstr ""
+msgstr "Non importa, crea un pseudonymo pro me"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Nove"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
-msgstr ""
+msgstr "Nove"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
+msgstr "Nove chat"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
-msgstr ""
+msgstr "Nove pseudonymo"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
-msgstr ""
+msgstr "Nove lista"
#: src/components/dms/NewMessagesPill.tsx:92
msgid "New messages"
-msgstr ""
+msgstr "Nove messages"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
-msgstr ""
+msgstr "Nove lista de moderation"
#: src/view/com/modals/ChangePassword.tsx:224
msgid "New password"
-msgstr ""
+msgstr "Nove contrasigno"
#: src/view/com/modals/ChangePassword.tsx:229
msgid "New Password"
-msgstr ""
+msgstr "Nove contrasigno"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
-msgstr ""
+msgstr "Nove publication"
#: src/view/com/feeds/FeedPage.tsx:166
msgctxt "action"
msgid "New post"
-msgstr ""
+msgstr "Nove publication"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
-msgstr ""
+msgstr "Nove publication"
#: src/components/NewskieDialog.tsx:83
msgid "New user info dialog"
-msgstr ""
+msgstr "Quadro de dialogo de information de nove usator"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
-msgstr ""
+msgstr "Nove lista de usatores"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
-msgstr ""
+msgstr "Responsas plus nove primo"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
-msgstr ""
+msgstr "Novas"
#: src/screens/Login/ForgotPasswordForm.tsx:137
#: src/screens/Login/ForgotPasswordForm.tsx:143
@@ -4645,115 +5083,129 @@ msgstr ""
#: src/view/com/modals/ChangePassword.tsx:265
#: src/view/com/modals/ChangePassword.tsx:267
msgid "Next"
-msgstr ""
+msgstr "Sequente"
#: src/view/com/lightbox/Lightbox.web.tsx:169
msgid "Next image"
-msgstr ""
+msgstr "Proxime imagine"
#: src/screens/Settings/AppPasswords.tsx:108
msgid "No app passwords yet"
-msgstr ""
+msgstr "Necun contrasigno de application ancora"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
+msgstr "Necun pannello de DNS"
+
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
msgstr ""
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
-msgstr ""
+msgstr "Necun GIF promovite trovate. Il pote haber un problema con Tenor."
#: src/screens/StarterPack/Wizard/StepFeeds.tsx:119
msgid "No feeds found. Try searching for something else."
+msgstr "Necun canal trovate. Tenta cercar un altere cosa."
+
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
-msgstr ""
+msgstr "Necun appreciation ancora"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
-msgstr ""
+msgstr "Non plus sequente {0}"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr ""
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr "Non plus de {MAX_SERVICE_HANDLE_LENGTH, plural, one {}other {# characteres}}"
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
-msgstr ""
+msgstr "Ancora sin messages"
#: src/view/com/notifications/NotificationFeed.tsx:116
msgid "No notifications yet!"
-msgstr ""
+msgstr "Ancora sin notificationes!"
#: src/screens/Messages/Settings.tsx:101
#: src/screens/Messages/Settings.tsx:104
msgid "No one"
-msgstr ""
+msgstr "Necun"
#: src/components/WhoCanReply.tsx:246
msgid "No one but the author can quote this post."
-msgstr ""
+msgstr "Solmente le autor pote citar iste publication."
#: src/screens/Profile/Sections/Feed.tsx:66
msgid "No posts yet."
-msgstr ""
+msgstr "Necun publication ancora."
#: src/view/com/post-thread/PostQuotes.tsx:105
msgid "No quotes yet"
-msgstr ""
+msgstr "Necun citation ancora"
#: src/view/com/post-thread/PostRepostedBy.tsx:90
msgid "No reposts yet"
-msgstr ""
+msgstr "Necun republication ancora"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
-msgstr ""
+msgstr "Necun resultato"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
+msgstr "Necun resultato"
+
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
msgstr ""
#: src/components/Lists.tsx:189
msgid "No results found"
-msgstr ""
+msgstr "Necun resultato trovate"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
-msgstr ""
+msgstr "Necun resultato trovate pro \"{query}\""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
+msgstr "Necun resultato trovate pro {query}"
+
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
msgstr ""
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
-msgstr ""
+msgstr "Necun resultato trovate pro \"{search}\"."
#: src/components/dialogs/EmbedConsent.tsx:104
#: src/components/dialogs/EmbedConsent.tsx:111
msgid "No thanks"
-msgstr ""
+msgstr "No, gratias"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:405
msgid "Nobody"
-msgstr ""
+msgstr "Necuno"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
-msgstr ""
+msgstr "Necuno ha ancora appreciate isto. Sia le prime!"
#: src/view/com/post-thread/PostQuotes.tsx:107
msgid "Nobody has quoted this yet. Maybe you should be the first!"
@@ -4769,82 +5221,78 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:42
msgid "Non-sexual Nudity"
-msgstr ""
+msgstr "Nuditate non sexual"
#: src/components/KnownFollowers.tsx:255
msgid "Not followed by anyone you're following"
msgstr ""
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
-msgstr ""
+msgstr "Non trovate"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr ""
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr ""
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88
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 ""
+msgstr "Nota: Bluesky es un rete aperte e public. Iste parametro solmente limita le visibilitate de tu contento super le application e le sito web de Bluesky, e altere applicationes pote non respicer iste parametro. Tu contento pote ancora esser monstrate a usatores sin session aperte per altere applicationes e sitos web."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
-msgstr ""
+msgstr "Nihil hic"
#: src/screens/Settings/NotificationSettings.tsx:64
msgid "Notification filters"
-msgstr ""
+msgstr "Filtros de notification"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
-msgstr ""
+msgstr "Parametros de notification"
#: src/screens/Settings/NotificationSettings.tsx:46
msgid "Notification Settings"
-msgstr ""
+msgstr "Parametros de notification"
#: src/screens/Messages/Settings.tsx:123
msgid "Notification sounds"
-msgstr ""
+msgstr "Sonos de notification"
#: src/screens/Messages/Settings.tsx:120
msgid "Notification Sounds"
-msgstr ""
+msgstr "Sonos de notification"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
-msgstr ""
+msgstr "Notificationes"
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
-msgstr ""
+msgstr "ora"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
-msgstr ""
+msgstr "Ora"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
-msgstr ""
+msgstr "Nuditate"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:78
#: src/lib/moderation/useReportOptions.ts:78
msgid "Nudity or adult content not labeled as such"
-msgstr ""
+msgstr "Nuditate o contento adulte non etiquettate como tal"
#: src/lib/moderation/useLabelBehaviorDescription.ts:11
msgid "Off"
@@ -4853,216 +5301,235 @@ msgstr ""
#: src/components/dialogs/GifSelect.tsx:268
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "Oh no!"
-msgstr ""
+msgstr "Oh no!"
#: src/screens/Onboarding/StepInterests/index.tsx:124
msgid "Oh no! Something went wrong."
-msgstr ""
+msgstr "Oh no! Alcun error occurreva."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr ""
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
-msgstr ""
+msgstr "Responsas plus ancian primo"
#: src/components/StarterPack/QrCode.tsx:82
msgid "on<0><1/><2><3/>2>0>"
msgstr ""
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
-msgstr ""
+msgstr "Manca texto alternative a un o plus GIFs."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
-msgstr ""
+msgstr "Manca texto alternative a un o plus imagines."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
-msgstr ""
+msgstr "Manca texto alternative a un o plus videos."
#: src/screens/Onboarding/StepProfile/index.tsx:115
msgid "Only .jpg and .png files are supported"
-msgstr ""
+msgstr "Solmente files .jpg e .png es supportate"
#: src/components/WhoCanReply.tsx:226
msgid "Only {0} can reply."
-msgstr ""
+msgstr "Solmente {0} pote responder."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr ""
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
-msgstr ""
+msgstr "Solmente files de imagine es supportate"
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40
msgid "Only WebVTT (.vtt) files are supported"
-msgstr ""
+msgstr "Solmente files WebVTT (.vtt) es supportate"
#: src/components/Lists.tsx:94
msgid "Oops, something went wrong!"
-msgstr ""
+msgstr "Ops, alcun error occurreva!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
-msgstr ""
+msgstr "Ops!"
#: src/screens/Onboarding/StepFinished.tsx:278
msgid "Open"
msgstr "Aperir"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr ""
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
-msgstr ""
+msgstr "Aperir creator de avatar"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
-msgstr ""
+msgstr "Aperir optiones de conversation"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
-msgstr ""
+msgstr "Aperir selector de emojis"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
-msgstr ""
+msgstr "Aperir schermo de information de canal"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
-msgstr ""
+msgstr "Aperir menu de optiones de canal"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr "Aperir le lista complete de emojis"
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
-msgstr ""
+msgstr "Aperir ligamine a {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
-msgstr ""
+msgstr "Aperir optiones de message"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
-msgstr ""
+msgstr "Aperir pagina de depuration del moderation"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
-msgstr ""
+msgstr "Aperir parametros de parolas e etiquettas silentiate"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr "Aperir pacchetto"
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
+msgstr "Aperir menu de optiones de publication"
+
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
-msgstr ""
+msgstr "Aperir menu de pacchetto de initio"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr ""
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Aperir registro de systema"
#: src/view/com/util/forms/DropdownButton.tsx:162
msgid "Opens {numItems} options"
-msgstr ""
+msgstr "Aperi {numItems} optiones"
#: src/view/com/composer/labels/LabelsBtn.tsx:62
msgid "Opens a dialog to add a content warning to your post"
-msgstr ""
+msgstr "Aperi un quadro de dialogo pro adder un advertimento de contento a tu publication"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:61
msgid "Opens a dialog to choose who can reply to this thread"
-msgstr ""
+msgstr "Aperi un quadro de dialogo pro selectionar qui pote responder a iste filo"
#: src/view/screens/Log.tsx:59
msgid "Opens additional details for a debug entry"
-msgstr ""
-
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
-msgid "Opens alt text dialog"
-msgstr ""
-
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
-msgid "Opens camera on device"
-msgstr ""
+msgstr "Aperi detalios additional pro un entrata de depuration"
#: src/view/com/composer/videos/SubtitleDialog.tsx:44
-msgid "Opens captions and alt text dialog"
-msgstr ""
+msgid "Opens alt text dialog"
+msgstr "Aperi dialogo de texto alternative"
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+msgid "Opens camera on device"
+msgstr "Aperi camera sur dispositivo"
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
+msgid "Opens captions and alt text dialog"
+msgstr "Aperi le dialogo de subtitulos e texto alternative"
+
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
-msgstr ""
+msgstr "Aperi quadro de dialogo de modification de pseudonymo"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35
msgid "Opens composer"
-msgstr ""
+msgstr "Aperi le fenestra de redaction"
#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51
msgid "Opens device photo gallery"
-msgstr ""
+msgstr "Aperi le galeria de photos del dispositivo"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
-msgstr ""
+msgstr "Aperi le selector de emojis"
#: src/view/com/auth/SplashScreen.tsx:49
#: src/view/com/auth/SplashScreen.web.tsx:111
msgid "Opens flow to create a new Bluesky account"
-msgstr ""
+msgstr "Aperi le fluxo pro crear un nove conto Bluesky"
#: src/view/com/auth/SplashScreen.tsx:63
#: src/view/com/auth/SplashScreen.web.tsx:125
msgid "Opens flow to sign in to your existing Bluesky account"
-msgstr ""
+msgstr "Aperi le fluxo pro aperir session con tu conto Bluesky existente"
#: src/view/com/composer/photos/SelectGifBtn.tsx:36
msgid "Opens GIF select dialog"
-msgstr ""
+msgstr "Aperi quadro de dialogo de selection de GIF"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
-msgstr ""
+msgstr "Aperi le servicio de assistentia technic in le navigator"
#: src/view/com/modals/InviteCodes.tsx:173
msgid "Opens list of invite codes"
+msgstr "Aperi le lista de codices de invitation"
+
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
msgstr ""
#: src/screens/Login/LoginForm.tsx:249
@@ -5071,21 +5538,21 @@ msgstr "Aperi le formulario de reinitialisation de contrasigno"
#: src/view/com/modals/LinkWarning.tsx:93
msgid "Opens the linked website"
-msgstr ""
+msgstr "Aperi le sito web ligate"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Aperi iste profilo"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
-msgstr ""
+msgstr "Aperi le selector de videos"
#: src/components/dms/ReportDialog.tsx:221
#: src/components/ReportDialog/SubmitView.tsx:168
msgid "Optionally provide additional information below:"
-msgstr ""
+msgstr "Optionalmente provide information additional hic infra:"
#: src/components/dialogs/MutedWords.tsx:299
msgid "Options:"
@@ -5093,23 +5560,23 @@ msgstr "Optiones:"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Or combine these options:"
-msgstr ""
+msgstr "O combina iste optiones:"
#: src/screens/Deactivated.tsx:200
msgid "Or, continue with another account."
-msgstr ""
+msgstr "O continua con un altere conto."
#: src/screens/Deactivated.tsx:187
msgid "Or, sign in to one of your other accounts."
-msgstr ""
+msgstr "O aperi session con un de tu altere contos."
#: src/screens/Settings/components/OTAInfo.tsx:52
msgid "OTA status: ..."
-msgstr ""
+msgstr "Stato OTA: ..."
#: src/screens/Settings/components/OTAInfo.tsx:48
msgid "OTA status: Available!"
-msgstr ""
+msgstr "Stato OTA: Disponibile!"
#: src/screens/Settings/components/OTAInfo.tsx:50
msgid "OTA status: Error fetching update"
@@ -5117,25 +5584,25 @@ msgstr ""
#: src/screens/Settings/components/OTAInfo.tsx:54
msgid "OTA status: None available"
-msgstr ""
+msgstr "Stato OTA: Necun disponibile"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
-msgstr ""
+msgstr "Altere"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
-msgstr ""
+msgstr "Altere conto"
#: src/view/com/composer/select-language/SelectLangBtn.tsx:93
msgid "Other..."
-msgstr ""
+msgstr "Alteres..."
#: src/components/dms/ReportDialog.tsx:348
msgid "Our moderation team has received your report."
-msgstr ""
+msgstr "Nostre equipa de moderation ha recipite tu reporto."
#: src/screens/Messages/components/ChatDisabled.tsx:28
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
@@ -5144,16 +5611,16 @@ msgstr ""
#: src/components/Lists.tsx:190
#: src/view/screens/NotFound.tsx:47
msgid "Page not found"
-msgstr ""
+msgstr "Pagina non trovate"
#: src/view/screens/NotFound.tsx:44
msgid "Page Not Found"
-msgstr ""
+msgstr "Pagina non trovate"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5161,49 +5628,46 @@ msgstr "Contrasigno"
#: src/view/com/modals/ChangePassword.tsx:154
msgid "Password Changed"
-msgstr ""
+msgstr "Contrasigno cambiate"
#: src/view/com/modals/ChangePassword.tsx:99
msgid "Password must be at least 8 characters long."
-msgstr ""
+msgstr "Le contrasigno debe haber al minus 8 characteres."
#: src/screens/Login/index.tsx:181
msgid "Password updated"
-msgstr ""
+msgstr "Contrasigno actualisate"
#: src/screens/Login/PasswordUpdatedForm.tsx:23
msgid "Password updated!"
-msgstr ""
+msgstr "Contrasigno actualisate!"
#: src/view/com/util/post-embeds/GifEmbed.tsx:43
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369
msgid "Pause"
-msgstr ""
+msgstr "Pausar"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320
msgid "Pause video"
-msgstr ""
+msgstr "Pausar video"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
-msgstr ""
+msgstr "Personas"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
-msgstr ""
+msgstr "Personas sequite per @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
-msgstr ""
+msgstr "Personas qui seque @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr ""
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
msgstr ""
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
@@ -5213,229 +5677,251 @@ msgstr ""
#: src/screens/Onboarding/index.tsx:28
#: src/screens/Onboarding/state.ts:109
msgid "Pets"
-msgstr ""
+msgstr "Animales domestic"
#: src/screens/Onboarding/state.ts:110
msgid "Photography"
-msgstr ""
+msgstr "Photographia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
-msgstr ""
+msgstr "Imagines destinate a adultos."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
+msgstr "Fixar canal"
+
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
msgstr ""
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr ""
-
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
-msgstr ""
+msgstr "Fixar al initio"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
-msgstr ""
+msgstr "Fixar al initio"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
-msgstr ""
+msgstr "Fixar in tu profilo"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
-msgstr ""
+msgstr "Fixate"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
-msgstr ""
+msgstr "Fixate {0} al Initio"
#: src/view/screens/SavedFeeds.tsx:123
msgid "Pinned Feeds"
-msgstr ""
+msgstr "Canales fixate"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
-msgstr ""
+msgstr "Fixate in tu canales"
#: src/view/com/util/post-embeds/GifEmbed.tsx:43
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370
msgid "Play"
-msgstr ""
+msgstr "Reproducer"
#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107
msgid "Play {0}"
-msgstr ""
+msgstr "Reproducer {0}"
#: src/view/com/util/post-embeds/VideoEmbed.tsx:134
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321
msgid "Play video"
-msgstr ""
+msgstr "Reproducer video"
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
-msgstr ""
+msgstr "Reproducer video"
#: src/view/com/util/post-embeds/GifEmbed.tsx:42
msgid "Plays or pauses the GIF"
-msgstr ""
+msgstr "Reproduce o pausa le GIF"
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141
msgid "Plays or pauses the video"
-msgstr ""
+msgstr "Reproduce o pausa le video"
#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106
msgid "Plays the GIF"
-msgstr ""
+msgstr "Reproduce le GIF"
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59
msgid "Plays the video"
+msgstr "Reproduce le video"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
-#: src/screens/Signup/state.ts:235
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
-msgstr ""
+msgstr "Per favor elige tu pseudonymo."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
+msgstr "Per favor elige tu contrasigno."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
msgstr ""
-#: src/screens/Signup/state.ts:249
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
-msgstr ""
+msgstr "Per favor completa le captcha de verification."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr ""
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
-msgstr ""
+msgstr "Verifica duplemente que tu ha inserite tu adresse de e-mail correctemente."
#: src/screens/Login/SetNewPasswordForm.tsx:58
msgid "Please enter a password."
-msgstr ""
+msgstr "Insere un contrasigno."
#: src/view/com/modals/ChangePassword.tsx:94
msgid "Please enter a password. It must be at least 8 characters long."
-msgstr ""
+msgstr "Insere un contrasigno. Illo debe haber al minus 8 characteres."
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114
msgid "Please enter a unique name for this app password or use our randomly generated one."
+msgstr "Insere un nomine unic pro iste contrasigno del application o usa illo que nos generava aleatorimente."
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
msgstr ""
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
+msgstr "Insere un parola, etiquetta o phrase valide pro silentiar lo"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr ""
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
-msgstr ""
+msgstr "Per favor insere tu adresse de e-mail."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
+msgstr "Per favor insere tu codice de invitation."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
msgstr ""
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
-msgstr ""
+msgstr "Insere tu contrasigno"
#: src/view/com/modals/DeleteAccount.tsx:235
msgid "Please enter your password as well:"
-msgstr ""
+msgstr "Insere tu contrasigno tamben:"
#: src/screens/Login/LoginForm.tsx:94
msgid "Please enter your username"
-msgstr ""
+msgstr "Insere tu nomine de usator"
#: src/components/moderation/LabelsOnMeDialog.tsx:290
msgid "Please explain why you think this label was incorrectly applied by {0}"
-msgstr ""
+msgstr "Explica proque tu pensa que iste etiquetta esseva incorrectemente applicate a {0}"
#: src/screens/Messages/components/ChatDisabled.tsx:110
msgid "Please explain why you think your chats were incorrectly disabled"
-msgstr ""
+msgstr "Explica proque tu pensa que tu chats esseva disactivate incorrectemente"
#: src/components/moderation/ReportDialog/action.ts:31
msgid "Please select a moderation service"
-msgstr ""
+msgstr "Selige un servicio de moderation"
#: src/components/moderation/ReportDialog/action.ts:28
msgid "Please select a reason for this report"
-msgstr ""
+msgstr "Selige un motivo pro iste reporto"
#: src/lib/hooks/useAccountSwitcher.ts:45
#: src/lib/hooks/useAccountSwitcher.ts:55
msgid "Please sign in as @{0}"
+msgstr "Per favor aperi session como @{0}"
+
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
-msgstr ""
+msgstr "Verifica tu e-mail"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
-msgstr ""
+msgstr "Politica"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr ""
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
-msgstr ""
+msgstr "Pornographia"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
-msgstr ""
+msgstr "Publication"
#: src/view/com/post-thread/PostThread.tsx:540
msgctxt "description"
msgid "Post"
-msgstr ""
+msgstr "Publication"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
-msgstr ""
+msgstr "Publicar toto"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
-msgstr ""
+msgstr "Publication de {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
-msgstr ""
+msgstr "Publication de @{0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "Publication eliminate"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
-msgstr ""
+msgstr "Non esseva possibile cargar le publication. Verifica tu connexion al Internet e tenta de novo."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
-msgstr ""
+msgstr "Le publication ha essite eliminate"
#: src/view/com/post-thread/PostThread.tsx:269
msgid "Post hidden"
@@ -5449,65 +5935,66 @@ msgstr ""
#: src/components/moderation/ModerationDetailsDialog.tsx:110
#: src/lib/moderation/useModerationCauseDescription.ts:115
msgid "Post Hidden by You"
-msgstr ""
+msgstr "Publication occultate per te"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:100
msgid "Post interaction settings"
-msgstr ""
+msgstr "Parametros de interaction del publication"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
-msgstr ""
+msgstr "Parametros de interaction del publication"
#: src/view/com/composer/select-language/SelectLangBtn.tsx:89
msgid "Post language"
-msgstr ""
+msgstr "Lingua de publication"
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:77
msgid "Post Languages"
-msgstr ""
+msgstr "Linguas de publication"
#: src/view/com/post-thread/PostThread.tsx:264
#: src/view/com/post-thread/PostThread.tsx:276
msgid "Post not found"
-msgstr ""
+msgstr "Publication non trovate"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "Publication fixate"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "Publication disfixate"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
-msgstr ""
+msgstr "Publicationes"
#: 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 ""
+msgstr "Publicationes pote esser silentiate secundo lor texto, lor etiquettas, o ambes. Nos recommenda evitar parolas commun que appare in multe publicationes, proque illo pote resultar in que necun publication sia monstrate."
#: src/view/com/posts/PostFeedErrorMessage.tsx:68
msgid "Posts hidden"
-msgstr ""
+msgstr "Publicationes celate"
#: src/view/com/modals/LinkWarning.tsx:60
msgid "Potentially Misleading Link"
-msgstr ""
+msgstr "Ligamine potentialmente fraudulente"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "Preferentia salvate"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
-msgstr ""
+msgstr "Preme pro tentar reconnecter"
#: src/components/Error.tsx:60
#: src/components/Lists.tsx:99
@@ -5518,163 +6005,192 @@ msgstr "Pressa pro retentar"
#: src/components/KnownFollowers.tsx:125
msgid "Press to view followers of this account that you also follow"
-msgstr ""
+msgstr "Preme pro vider sequitores de iste conto que tu tamben seque"
#: src/view/com/lightbox/Lightbox.web.tsx:150
msgid "Previous image"
-msgstr ""
+msgstr "Imagine precedente"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Lingua principal"
#: src/screens/Settings/ThreadPreferences.tsx:112
#: src/screens/Settings/ThreadPreferences.tsx:117
msgid "Prioritize your Follows"
-msgstr ""
+msgstr "Priorisar qui tu seque"
#: src/screens/Settings/NotificationSettings.tsx:67
msgid "Priority notifications"
-msgstr ""
+msgstr "Notificationes prioritari"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
-msgstr ""
+msgstr "Privatessa"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
-msgstr ""
+msgstr "Privatessa e securitate"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
-msgstr ""
+msgstr "Privatessa e securitate"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Politica de privatessa"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
-msgstr ""
+msgstr "Processante video..."
#: src/lib/api/index.ts:60
#: src/screens/Login/ForgotPasswordForm.tsx:149
msgid "Processing..."
-msgstr ""
+msgstr "Processante..."
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
-msgstr ""
+msgstr "profilo"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Profilo"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "Profilo actualisate"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
-msgstr ""
+msgstr "Public"
#: src/view/com/lists/MyLists.tsx:77
msgid "Public, sharable lists of users to mute or block in bulk."
-msgstr ""
+msgstr "Listas public e compartibile de usatores a silentiar o blocar in massa."
#: src/view/com/lists/MyLists.tsx:72
msgid "Public, sharable lists which can be used to drive feeds."
msgstr ""
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr ""
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr ""
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr "Publicar responsas"
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr "Publicar responsa"
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "Codice QR copiate a tu area de transferentia!"
#: src/components/StarterPack/QrCodeDialog.tsx:112
msgid "QR code has been downloaded!"
-msgstr ""
+msgstr "Le codice QR ha essite discargate!"
#: src/components/StarterPack/QrCodeDialog.tsx:113
msgid "QR code saved to your camera roll!"
-msgstr ""
+msgstr "Codice QR salvate in tu rolo del camera!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
-msgstr ""
+msgstr "Citar publication"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
-msgstr ""
+msgstr "Le citation esseva re-attaccate"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
-msgstr ""
+msgstr "Le citation esseva distaccate con successo"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
-msgstr ""
+msgstr "Citationes disactivate"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:329
msgid "Quote settings"
-msgstr ""
+msgstr "Parametros de citation"
#: src/screens/Post/PostQuotes.tsx:38
msgid "Quotes"
-msgstr ""
+msgstr "Citationes"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
-msgstr ""
+msgstr "Citationes de iste publication"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
-msgstr ""
+msgstr "Aleatori (o \"Roulette del publicator\")"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr ""
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr ""
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Reactivar tu conto"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr "Leger publication del blog"
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
-msgstr ""
+msgstr "Leger minus"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
-msgstr ""
+msgstr "Leger plus"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Lege le blog de Bluesky"
@@ -5686,22 +6202,22 @@ msgstr "Lege le politica de privatessa de Bluesky"
#: src/screens/Signup/StepInfo/Policies.tsx:51
#: src/screens/Signup/StepInfo/Policies.tsx:71
msgid "Read the Bluesky Terms of Service"
-msgstr ""
+msgstr "Lege le conditiones de servicio de Bluesky"
#: src/screens/Takendown.tsx:162
#: src/screens/Takendown.tsx:170
msgid "Reason for appeal"
-msgstr ""
+msgstr "Motivo del appello"
#: src/components/dms/ReportDialog.tsx:212
msgid "Reason:"
-msgstr ""
+msgstr "Motivo:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Cercas recente"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "Recommendate"
@@ -5710,41 +6226,41 @@ msgid "Reconnect"
msgstr "Reconnecter"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
-msgstr ""
+msgstr "Rejectar"
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
-msgstr ""
+msgstr "Rejectar requesta de chat"
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
-msgstr ""
+msgstr "Recargar conversationes"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
-msgstr ""
+msgstr "Remover"
#: src/components/StarterPack/Wizard/WizardListCard.tsx:58
msgid "Remove {displayName} from starter pack"
-msgstr ""
+msgstr "Remover {displayName} del pacchetto de initio"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
-msgstr ""
+msgstr "Remover {historyItem}"
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Remover conto"
@@ -5752,13 +6268,13 @@ msgstr "Remover conto"
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
-msgstr ""
+msgstr "Remover avatar"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr ""
@@ -5770,124 +6286,145 @@ msgstr ""
#: src/view/com/posts/FeedShutdownMsg.tsx:120
#: src/view/com/posts/PostFeedErrorMessage.tsx:169
msgid "Remove feed"
-msgstr ""
+msgstr "Remover canal"
#: src/view/com/posts/PostFeedErrorMessage.tsx:210
msgid "Remove feed?"
-msgstr ""
+msgstr "Remover canal?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
-msgstr ""
+msgstr "Remover de mi canales"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
-msgstr ""
+msgstr "Remover del accesso rapide?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
-msgstr ""
+msgstr "Remover de tu canales salvate"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
-msgstr ""
+msgstr "Remover de tu canales?"
#: src/view/com/composer/photos/Gallery.tsx:203
msgid "Remove image"
+msgstr "Remover imagine"
+
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
-msgstr ""
+msgstr "Remover parola silentiate de tu lista"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
-msgstr ""
+msgstr "Remover profilo"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:290
msgid "Remove quote"
-msgstr ""
+msgstr "Remover citation"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
-msgstr ""
+msgstr "Remover republication"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
-msgstr ""
+msgstr "Remover file de subtitulos"
#: src/view/com/posts/PostFeedErrorMessage.tsx:211
msgid "Remove this feed from your saved feeds"
+msgstr "Remover iste canal de tu canales salvate"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
msgstr ""
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
-msgstr ""
+msgstr "Removite per le autor"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:108
msgid "Removed by you"
-msgstr ""
+msgstr "Removite per te"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
-msgstr ""
+msgstr "Removite del lista"
#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
-msgstr ""
+msgstr "Removite de mi canales"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
-msgstr ""
+msgstr "Removite del canales salvate"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
-msgstr ""
+msgstr "Removite de tu canales"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
msgstr ""
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
-msgstr ""
+msgstr "Remove citation"
#: src/view/com/posts/FeedShutdownMsg.tsx:129
#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
-msgstr ""
+msgstr "Reimplaciar con Discover"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
-msgstr ""
+msgstr "Responsas"
#: src/components/WhoCanReply.tsx:73
msgid "Replies disabled"
-msgstr ""
+msgstr "Responsas disactivate"
#: src/components/WhoCanReply.tsx:224
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
-msgstr ""
+msgstr "Responsa"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
-msgstr ""
+msgstr "Responsa ({0, plural, one {# responsa} other {# responsas}})"
#: src/components/moderation/ModerationDetailsDialog.tsx:116
#: src/lib/moderation/useModerationCauseDescription.ts:125
@@ -5901,98 +6438,98 @@ msgstr ""
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:385
msgid "Reply settings"
-msgstr ""
+msgstr "Parametros de responsa"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:370
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
-msgstr ""
+msgstr "Ordinamento de responsas"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
-msgstr ""
+msgstr "Responsa a <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
-msgstr ""
+msgstr "Responsa a un publication blocate"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
-msgstr ""
+msgstr "Responder a un publication"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
-msgstr ""
+msgstr "Responsa a te"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "Visibilitate del responsa actualisate"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Signalar"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
-msgstr ""
+msgstr "Signalar conto"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
-msgstr ""
+msgstr "Signalar conversation"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
-msgstr ""
+msgstr "Signalar dialogo"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Signalar fluxo"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
msgstr "Signalar lista"
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
-msgstr ""
+msgstr "Signalar message"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
-msgstr ""
+msgstr "Signalar publication"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
-msgstr ""
+msgstr "Signalar pacchetto de initio"
#: src/components/dms/ReportDialog.tsx:345
msgid "Report submitted"
-msgstr ""
+msgstr "Signalar inviate"
#: src/components/ReportDialog/SelectReportOptionView.tsx:41
msgid "Report this content"
@@ -6013,107 +6550,114 @@ msgstr "Signalar iste lista"
#: src/components/moderation/ReportDialog/copy.ts:43
#: src/components/ReportDialog/SelectReportOptionView.tsx:60
msgid "Report this message"
-msgstr ""
+msgstr "Signalar iste message"
#: src/components/moderation/ReportDialog/copy.ts:19
#: src/components/ReportDialog/SelectReportOptionView.tsx:48
msgid "Report this post"
-msgstr ""
+msgstr "Signalar iste publication"
#: src/components/moderation/ReportDialog/copy.ts:37
#: src/components/ReportDialog/SelectReportOptionView.tsx:57
msgid "Report this starter pack"
-msgstr ""
+msgstr "Signalar iste pacchetto de initio"
#: src/components/moderation/ReportDialog/copy.ts:13
#: src/components/ReportDialog/SelectReportOptionView.tsx:45
msgid "Report this user"
-msgstr ""
+msgstr "Signalar iste usator"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
-msgstr ""
+msgstr "Republication"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
-msgstr ""
+msgstr "Republication"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
-msgstr ""
+msgstr "Republication ({0, plural, one {# republication} other {# republicationes}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
-msgstr ""
+msgstr "Republication o citation"
#: src/screens/Post/PostRepostedBy.tsx:38
msgid "Reposted By"
-msgstr ""
+msgstr "Republicate per"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
-msgstr ""
+msgstr "Republicate per {0}"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
-msgstr ""
+msgstr "Republicate per <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
-msgstr ""
+msgstr "Republicate per te"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
-msgstr ""
+msgstr "Republicationes de iste publication"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
msgstr ""
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
msgid "Request Code"
-msgstr ""
+msgstr "Requestar codice"
#: src/screens/Settings/AccessibilitySettings.tsx:60
#: src/screens/Settings/AccessibilitySettings.tsx:65
msgid "Require alt text before posting"
-msgstr ""
+msgstr "Require texto alternative ante le publication"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
-msgstr ""
+msgstr "Require in codice de e-mail pro initiar session in tu conto."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
-msgstr ""
+msgstr "Obligatori pro iste fornitor"
#: src/components/LabelingServiceCard/index.tsx:80
msgid "Required in your region"
+msgstr "Requirite in tu region"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
msgstr ""
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
-msgstr ""
+msgstr "Reinviar e-mail"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
-msgstr ""
+msgstr "Reinviar e-mail"
#: src/components/intents/VerifyEmailIntentDialog.tsx:122
msgid "Resend Verification Email"
-msgstr ""
+msgstr "Reinviar e-mail de verification"
#: src/view/com/modals/ChangePassword.tsx:197
msgid "Reset code"
@@ -6123,8 +6667,8 @@ msgstr "Reinitialisar codice"
msgid "Reset Code"
msgstr "Reinitialisar codice"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr ""
@@ -6141,16 +6685,16 @@ msgstr ""
msgid "Retries the last action, which errored out"
msgstr ""
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6159,55 +6703,57 @@ msgstr ""
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
-msgstr ""
+msgstr "Tentar de novo"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr ""
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
-msgstr ""
+msgstr "Retornar al pagina precedente"
#: src/view/screens/NotFound.tsx:61
msgid "Returns to home page"
-msgstr ""
+msgstr "Retorna al pagina de initio"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
-msgstr ""
+msgstr "Retorna al pagina precedente"
#: src/screens/StarterPack/Wizard/index.tsx:287
msgid "Returns to the previous step"
-msgstr ""
+msgstr "Retorna al passo precedente"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Salvar"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Salvar"
@@ -6219,31 +6765,31 @@ msgstr ""
#: src/view/screens/SavedFeeds.tsx:105
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save changes"
-msgstr ""
+msgstr "Salvar cambiamentos"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
-msgstr ""
+msgstr "Salvar cambiamentos"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Salvar imagine"
#: src/view/com/modals/CropImage.web.tsx:104
msgid "Save image crop"
-msgstr ""
+msgstr "Salvar retalio de imagine"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
-msgstr ""
+msgstr "Salvar nove pseudonymo"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "Salvar codice QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Salvar a mi fluxos"
@@ -6251,18 +6797,14 @@ msgstr "Salvar a mi fluxos"
msgid "Saved Feeds"
msgstr "Fluxos salvate"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
-msgstr ""
+msgstr "Salvate in tu canales"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
-msgstr ""
+msgstr "Salva qualcunque cambio a tu profilo"
#: src/view/com/modals/CropImage.web.tsx:105
msgid "Saves image crop settings"
@@ -6270,102 +6812,107 @@ msgstr ""
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
-msgstr ""
+msgstr "Dice hallo!"
#: src/screens/Onboarding/index.tsx:33
#: src/screens/Onboarding/state.ts:112
msgid "Science"
-msgstr ""
+msgstr "Scientia"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
-msgstr ""
+msgstr "Rolar al alto"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
-msgstr ""
+msgstr "Cercar"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
-msgstr ""
+msgstr "Cercar publicationes de @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
-msgstr ""
+msgstr "Cercar per nomine o interesse"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
-msgstr ""
+msgstr "Cercar canales"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
-msgstr ""
+msgstr "Cercar pro \"{interestsDisplayName}\"{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
-msgstr ""
+msgstr "Cercar pro \"{query}\""
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
-msgstr ""
+msgstr "Cercar pro \"{searchText}\""
#: src/screens/StarterPack/Wizard/index.tsx:474
msgid "Search for feeds that you want to suggest to others."
-msgstr ""
+msgstr "Cercar canales que tu vole suggerer a alteres."
-#: src/view/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr "Cercar plus contos"
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr "Cercar plus canales"
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
-msgstr ""
-
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr ""
+msgstr "Cercar publicationes, usatores o canales"
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
-msgstr ""
+msgstr "Cercar GIFs"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
-msgstr ""
+msgstr "Cercar mi publicationes"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
-msgstr ""
+msgstr "Cercar publicationes"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Cercar profilos"
#: src/components/dialogs/GifSelect.tsx:178
msgid "Search Tenor"
-msgstr ""
+msgstr "Cercar in Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
-msgstr ""
+msgstr "Cercar..."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr "Cercas per profilos"
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Passo de securitate requirite"
@@ -6385,9 +6932,9 @@ msgstr "Vider le publicationes sur #{tag}"
msgid "See #{tag} posts by user"
msgstr "Vider le publicationes sur #{tag} per usator"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
-msgstr ""
+msgstr "Vider offertas de empleo a Bluesky"
#: src/view/screens/SavedFeeds.tsx:205
msgid "See this guide"
@@ -6405,6 +6952,10 @@ msgstr "Selige un color"
msgid "Select account"
msgstr "Selectionar conto"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Selectionar un avatar"
@@ -6413,40 +6964,56 @@ msgstr "Selectionar un avatar"
msgid "Select an emoji"
msgstr "Selectiona un emoji"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Selectionar linguas de contento"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr ""
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Selectiona desde un conto existente"
#: src/view/com/composer/photos/SelectGifBtn.tsx:35
msgid "Select GIF"
-msgstr ""
+msgstr "Seliger GIF"
#: src/components/dialogs/GifSelect.tsx:306
msgid "Select GIF \"{0}\""
-msgstr ""
+msgstr "Seliger GIF \"{0}\""
#: src/components/dialogs/MutedWords.tsx:142
msgid "Select how long to mute this word for."
-msgstr ""
+msgstr "Selige per quante tempore silentiar iste parola."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Selectionar lingua..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Selectionar linguas"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
-msgstr ""
+msgstr "Seliger servicio de moderation"
#: src/components/ReportDialog/SelectLabelerView.tsx:28
msgid "Select moderator"
+msgstr "Seliger moderator"
+
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
msgstr ""
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
@@ -6456,61 +7023,60 @@ msgstr "Selectionar file de subtitulos (.vtt)"
#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83
msgid "Select the {emojiName} emoji as your avatar"
-msgstr ""
+msgstr "Seliger le emoji {emojiName} como tu avatar"
#: src/components/ReportDialog/SubmitView.tsx:141
msgid "Select the moderation service(s) to report to"
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Selectionar video"
#: src/components/dialogs/MutedWords.tsx:242
msgid "Select what content this mute word should apply to."
-msgstr ""
+msgstr "Seliger a qual contento iste parola silentiate debe applicar se."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
-msgstr ""
+msgstr "Selige qual lingua usar pro le interfacie de usator del application."
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
-msgstr ""
+msgstr "Selige qual linguas tu vole que tu canales subscribite include. Si necun es selectionate, tote le linguas essera monstrate."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
-msgstr ""
+msgstr "Selectiona tu data de nascentia"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
-msgstr ""
+msgstr "Selige tu interesses desde le optiones hic infra"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
-msgstr ""
+msgstr "Selectiona tu lingua preferite pro traductiones in tu canal."
#: src/view/com/util/forms/DropdownButton.tsx:297
msgid "Selects option {0} of {numItems}"
-msgstr ""
+msgstr "Selige le option {0} de {numItems}"
#: src/components/dms/ChatEmptyPill.tsx:38
msgid "Send a neat website!"
+msgstr "Invia un sito web interessante!"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr "Inviar confirmation"
-
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Inviar e-posta de confirmation"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Inviar e-posta de confirmation"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Inviar e-posta"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Inviar e-posta"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Inviar commentarios"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Inviar message"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr ""
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Inviar message a..."
@@ -6544,17 +7114,20 @@ msgstr "Inviar reporto"
msgid "Send report to {0}"
msgstr "Inviar reporto a {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
-msgstr ""
+msgstr "Inviar reporto a {title}"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Inviar e-posta de verification"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Inviar via message directe"
@@ -6570,9 +7143,9 @@ msgstr "Adresse de servitor"
msgid "Set app icon to {0}"
msgstr "Definir le icone de application a {0}"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
-msgstr ""
+msgstr "Definir data de nascentia"
#: src/screens/Login/SetNewPasswordForm.tsx:106
msgid "Set new password"
@@ -6580,47 +7153,41 @@ msgstr "Definir nove contrasigno"
#: src/screens/Onboarding/Layout.tsx:47
msgid "Set up your account"
-msgstr ""
+msgstr "Configurar tu conto"
#: src/screens/Login/ForgotPasswordForm.tsx:107
msgid "Sets email for password reset"
-msgstr ""
+msgstr "Defini email pro reinitialisation de contrasigno"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Parametros"
#: src/screens/ModerationInteractionSettings/index.tsx:102
msgctxt "toast"
msgid "Settings saved"
-msgstr ""
+msgstr "Parametros salvate"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
-msgstr ""
+msgstr "Activitate sexual o nuditate erotic."
#: src/lib/moderation/useGlobalLabelStrings.ts:38
msgid "Sexually Suggestive"
-msgstr ""
+msgstr "Sexualmente suggestive"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr ""
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr ""
@@ -6633,15 +7200,19 @@ msgstr ""
msgid "Share a fun fact!"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr ""
@@ -6650,32 +7221,46 @@ msgstr ""
msgid "Share Link"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Compartir codice QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr ""
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr ""
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr ""
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr ""
@@ -6685,26 +7270,26 @@ msgstr ""
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Monstrar"
#: src/view/com/util/post-embeds/GifEmbed.tsx:178
msgid "Show alt text"
-msgstr ""
+msgstr "Monstrar texto alternative"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
-msgstr ""
+msgstr "Mostrar nonobstante"
#: src/lib/moderation/useLabelBehaviorDescription.ts:27
#: src/lib/moderation/useLabelBehaviorDescription.ts:63
msgid "Show badge"
-msgstr ""
+msgstr "Monstrar insignia"
#: src/lib/moderation/useLabelBehaviorDescription.ts:61
msgid "Show badge and filter from feeds"
@@ -6712,29 +7297,29 @@ msgstr ""
#: src/components/dialogs/Embed.tsx:129
msgid "Show customization options"
-msgstr ""
+msgstr "Monstrar optiones de personalisation"
#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22
msgid "Show hidden replies"
msgstr "Monstrar responsas celate"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
-msgstr ""
+msgstr "Monstrar minus como iste"
#: src/screens/List/ListHiddenScreen.tsx:186
msgid "Show list anyway"
-msgstr ""
+msgstr "Monstrar le lista nonobstante"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Monstrar plus"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Monstrar plus como isto"
@@ -6745,16 +7330,16 @@ msgstr "Monstrar responsas silentiate"
#: src/screens/Settings/FollowingFeedPreferences.tsx:104
#: src/screens/Settings/FollowingFeedPreferences.tsx:114
msgid "Show quote posts"
-msgstr ""
+msgstr "Monstrar citationes"
#: src/screens/Settings/FollowingFeedPreferences.tsx:68
#: src/screens/Settings/FollowingFeedPreferences.tsx:78
msgid "Show replies"
msgstr "Monstrar responsas"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
-msgstr ""
+msgstr "Monstrar responsas como"
#: src/screens/Settings/ThreadPreferences.tsx:151
msgid "Show replies as threaded"
@@ -6762,17 +7347,17 @@ msgstr ""
#: src/screens/Settings/ThreadPreferences.tsx:126
msgid "Show replies by people you follow before all other replies"
-msgstr ""
+msgstr "Monstrar le responsas del personas que tu seque ante tote le altere responsas"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
-msgstr ""
+msgstr "Monstrar responsa pro totes"
#: src/screens/Settings/FollowingFeedPreferences.tsx:86
#: src/screens/Settings/FollowingFeedPreferences.tsx:96
msgid "Show reposts"
-msgstr ""
+msgstr "Monstrar republicationes"
#: src/screens/Settings/FollowingFeedPreferences.tsx:129
#: src/screens/Settings/FollowingFeedPreferences.tsx:139
@@ -6787,18 +7372,18 @@ msgstr "Monstrar advertimento"
msgid "Show warning and filter from feeds"
msgstr "Monstrar advertimento e filtrar desde fluxos"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
-msgstr ""
+msgstr "Monstra information super quando iste publication esseva create"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
-msgstr ""
+msgstr "Monstrar altere contos al qual tu pote cambiar"
#: src/components/moderation/ContentHider.tsx:152
#: src/components/moderation/PostHider.tsx:79
msgid "Shows the content"
-msgstr ""
+msgstr "Monstra le contento"
#: src/components/dialogs/Signin.tsx:97
#: src/components/dialogs/Signin.tsx:99
@@ -6809,79 +7394,74 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
-msgstr ""
+msgstr "Aperir session"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
-msgstr ""
+msgstr "Aperir session como {0}"
#: src/screens/Login/ChooseAccountForm.tsx:80
msgid "Sign in as..."
+msgstr "Aperir session como..."
+
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
msgstr ""
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
-msgstr ""
+msgstr "Aperi session o crea tu conto pro participar al conversation!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr ""
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
-msgstr ""
+msgstr "Aperir session con un conto que non es listate"
#: src/components/dialogs/Signin.tsx:46
msgid "Sign in to Bluesky or create a new account"
-msgstr ""
+msgstr "Aperi session in Bluesky o crea un nove conto"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
-msgstr ""
+msgstr "Clauder session"
#: src/screens/Takendown.tsx:88
msgid "Sign Out"
-msgstr ""
+msgstr "Clauder session"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
-msgstr ""
+msgstr "Clauder session?"
#: src/components/moderation/ScreenHider.tsx:91
#: src/lib/moderation/useGlobalLabelStrings.ts:28
msgid "Sign-in Required"
-msgstr ""
+msgstr "Apertura de session necessari"
#: src/lib/hooks/useAccountSwitcher.ts:41
#: src/screens/Login/ChooseAccountForm.tsx:53
msgid "Signed in as @{0}"
-msgstr ""
-
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr ""
+msgstr "In session como @{0}"
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
-msgstr ""
+msgstr "Contos similar"
#: src/screens/Onboarding/StepInterests/index.tsx:231
#: src/screens/StarterPack/Wizard/index.tsx:195
@@ -6890,10 +7470,15 @@ msgstr "Saltar"
#: src/screens/Onboarding/StepInterests/index.tsx:228
msgid "Skip this flow"
-msgstr ""
+msgstr "Saltar iste canal"
#: src/screens/Settings/AppearanceSettings.tsx:164
msgid "Smaller"
+msgstr "Minor"
+
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
msgstr ""
#: src/screens/Onboarding/index.tsx:37
@@ -6901,150 +7486,168 @@ msgstr ""
msgid "Software Dev"
msgstr "Disveloppamento de software"
-#: src/components/FeedInterstitials.tsx:472
-msgid "Some other feeds you might like"
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
msgstr ""
+#: src/components/FeedInterstitials.tsx:474
+msgid "Some other feeds you might like"
+msgstr "Alcun altere canales que pote placer te"
+
#: src/components/WhoCanReply.tsx:74
msgid "Some people can reply"
msgstr "Alicun personas pote responder"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
-msgstr ""
+msgstr "Alcun error occurreva"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
-msgstr ""
+msgstr "Alcun error occurreva, tenta de novo"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
-msgstr ""
+msgstr "Alcun error occurreva, tenta de novo."
#: src/components/Lists.tsx:174
#: src/screens/Settings/NotificationSettings.tsx:55
msgid "Something went wrong!"
-msgstr ""
+msgstr "Alcun error occurreva!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
-msgstr ""
+msgstr "Alcun error occurreva. Tenta de novo."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
-msgstr ""
+msgstr "Alcun problema? Informa nos."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
-msgstr ""
+msgstr "Pardono! Tu session expirava. Aperi session de novo."
#: src/screens/Settings/ThreadPreferences.tsx:55
msgid "Sort replies"
-msgstr ""
+msgstr "Ordinar responsas"
#: src/screens/Settings/ThreadPreferences.tsx:62
msgid "Sort replies by"
-msgstr ""
+msgstr "Ordinar responsas per"
#: src/screens/Settings/ThreadPreferences.tsx:59
msgid "Sort replies to the same post by:"
-msgstr ""
+msgstr "Ordinar responsas al mesme publication per:"
#: src/components/moderation/LabelsOnMeDialog.tsx:178
#: src/components/moderation/ModerationDetailsDialog.tsx:186
msgid "Source: <0>{sourceName}0>"
-msgstr ""
+msgstr "Fonte: <0>{sourceName}0>"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:85
#: src/lib/moderation/useReportOptions.ts:72
#: src/lib/moderation/useReportOptions.ts:85
msgid "Spam"
-msgstr ""
+msgstr "Spam"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55
#: src/lib/moderation/useReportOptions.ts:55
msgid "Spam; excessive mentions or replies"
-msgstr ""
+msgstr "Spam; mentiones o responsas excessive"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
-msgid "Start a new chat"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
-msgid "Start adding people"
-msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
+msgid "Start a new chat"
+msgstr "Comenciar un nove chat"
#: src/view/screens/ProfileList.tsx:846
#: src/view/screens/ProfileList.tsx:967
-msgid "Start adding people!"
-msgstr ""
+msgid "Start adding people"
+msgstr "Comenciar a adder personas"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
+msgid "Start adding people!"
+msgstr "Comencia a adder personas!"
+
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Initiar chat con {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
-msgstr ""
+msgstr "Pacchetto de initio"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
-msgstr ""
+msgstr "Pacchetto de initio de {0}"
#: src/view/com/profile/ProfileSubpageHeader.tsx:182
msgid "Starter pack by <0/>"
-msgstr ""
+msgstr "Pacchetto de initio de <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
-msgstr ""
+msgstr "Pacchetto de initio tue"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
-msgstr ""
+msgstr "Le pacchetto de initio es invalide"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
-msgstr ""
+msgstr "Pacchettos de initio"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
-msgstr ""
+msgstr "Le pacchettos de initio te permitte condivider facilemente tu canales e personas favorite con tu amicos."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Pagina de stato"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
-msgstr ""
+msgstr "Passo {0} de {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr ""
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr ""
@@ -7053,58 +7656,63 @@ msgstr ""
#: src/screens/Messages/components/ChatDisabled.tsx:142
#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Submit"
-msgstr ""
+msgstr "Inviar"
#: src/screens/Takendown.tsx:70
msgid "Submit appeal"
-msgstr ""
+msgstr "Inviar appello"
#: src/screens/Takendown.tsx:76
msgid "Submit Appeal"
-msgstr ""
+msgstr "Inviar appello"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
-msgstr ""
+msgstr "Inviar reporto"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Subscriber"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
-msgstr ""
+msgstr "Subscriber se al etiquettator"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
-msgstr ""
+msgstr "Subscriber se a iste etiquettator"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "Subscriber te a iste lista"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
+msgstr "Successo!"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
msgstr ""
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
-msgstr ""
+msgstr "Suggerite pro te"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
-msgstr ""
+msgstr "Suggestive"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60
msgctxt "Name of app icon variant"
@@ -7116,16 +7724,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Supporto"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Cambiar conto"
@@ -7134,13 +7742,13 @@ msgstr "Cambiar conto"
msgid "Switch Account"
msgstr "Cambiar conto"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "Cambiar contos"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
-msgstr ""
+msgstr "Cambia a {0}"
#: src/components/dialogs/Embed.tsx:157
#: src/components/dialogs/Embed.tsx:159
@@ -7149,9 +7757,9 @@ msgstr ""
msgid "System"
msgstr "Systema"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Registro de systema"
@@ -7159,52 +7767,58 @@ msgstr "Registro de systema"
msgid "Tags only"
msgstr "Solmente etiquettas"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Tocca pro clauder"
#: src/state/shell/progress-guide.tsx:233
msgid "Task complete - 10 follows!"
-msgstr ""
+msgstr "Carga complite - 10 personas sequite!"
#: src/state/shell/progress-guide.tsx:223
msgid "Task complete - 10 likes!"
-msgstr ""
+msgstr "Carga complite - 10 appreciationes!"
#: src/components/ProgressGuide/List.tsx:64
msgid "Teach our algorithm what you like"
-msgstr ""
+msgstr "Insenia a nostra algorithmo lo que te place"
#: src/screens/Onboarding/index.tsx:36
#: src/screens/Onboarding/state.ts:114
msgid "Tech"
-msgstr ""
+msgstr "Technologia"
#: src/components/dms/ChatEmptyPill.tsx:35
msgid "Tell a joke!"
-msgstr ""
+msgstr "Conta un burla!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
-msgstr ""
+msgstr "Conta nos un pauco de te"
#: src/screens/StarterPack/Wizard/StepDetails.tsx:69
msgid "Tell us a little more"
-msgstr ""
+msgstr "Conta nos un pauco plus"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
-msgstr ""
+msgstr "Terminos"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
-msgstr ""
+msgstr "Conditiones de servicio"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:60
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99
@@ -7215,7 +7829,7 @@ msgstr ""
#: src/lib/moderation/useReportOptions.ts:107
#: src/lib/moderation/useReportOptions.ts:115
msgid "Terms used violate community standards"
-msgstr ""
+msgstr "Terminos usate viola de standards del communitate"
#: src/components/dialogs/MutedWords.tsx:266
msgid "Text & tags"
@@ -7223,16 +7837,20 @@ msgstr "Texto e etiquettas"
#: src/components/dms/ReportDialog.tsx:229
msgid "Text field"
-msgstr ""
+msgstr "Campo de texto"
#: src/components/moderation/LabelsOnMeDialog.tsx:288
#: src/screens/Messages/components/ChatDisabled.tsx:108
msgid "Text input field"
+msgstr "Campo de insertion de texto"
+
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
-msgstr ""
+msgstr "Gratias! Tu e-mail ha essite verificate con successo."
#: src/components/ReportDialog/SubmitView.tsx:83
msgid "Thank you. Your report has been sent."
@@ -7240,59 +7858,59 @@ msgstr ""
#: src/components/intents/VerifyEmailIntentDialog.tsx:82
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
-msgstr ""
+msgstr "Gratias, tu ha verificate tu adresse de e-mail con successo. Tu pote clauder iste quadro de dialogo."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
-msgstr ""
+msgstr "Illo contine le sequente:"
#: src/screens/Signup/StepHandle.tsx:55
msgid "That handle is already taken."
-msgstr ""
+msgstr "Iste pseudonymo es ja in uso."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
-msgstr ""
+msgstr "Le pacchetto de initio non poteva esser trovate."
#: src/view/com/post-thread/PostQuotes.tsx:132
msgid "That's all, folks!"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr ""
#: src/screens/Settings/AppIconSettings/index.tsx:41
#: src/screens/Settings/AppIconSettings/index.tsx:222
msgid "The app will be restarted"
-msgstr ""
+msgstr "Le application essera reinitiate"
#: src/components/moderation/ModerationDetailsDialog.tsx:119
#: src/lib/moderation/useModerationCauseDescription.ts:128
msgid "The author of this thread has hidden this reply."
-msgstr ""
+msgstr "Le autor de iste topico ha celate iste responsa."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "Le application web de Bluesky"
#: src/view/screens/CommunityGuidelines.tsx:38
msgid "The Community Guidelines have been moved to <0/>"
-msgstr ""
+msgstr "Le Guidas del communitate ha essite displaciate a <0/>"
#: src/view/screens/CopyrightPolicy.tsx:35
msgid "The Copyright Policy has been moved to <0/>"
-msgstr ""
+msgstr "Le Politica de Copyright ha essite displaciate a <0/>"
#: src/view/com/posts/FeedShutdownMsg.tsx:102
msgid "The Discover feed"
@@ -7302,6 +7920,10 @@ msgstr "Le fluxo Discoperir"
msgid "The Discover feed now knows what you like"
msgstr "Le fluxo Discoperir ora cognosce lo que tu ama"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -7316,7 +7938,7 @@ msgstr "Le sequente etiquettas ha essite applicate a tu conto."
#: src/components/moderation/LabelsOnMeDialog.tsx:60
msgid "The following labels were applied to your content."
-msgstr ""
+msgstr "Le sequente etiquettas esseva applicate a tu contento."
#: src/screens/ModerationInteractionSettings/index.tsx:42
msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer."
@@ -7329,18 +7951,23 @@ msgstr ""
#: src/view/screens/PrivacyPolicy.tsx:35
msgid "The Privacy Policy has been moved to <0/>"
-msgstr ""
+msgstr "Le Politica de privatessa ha essite displaciate a <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
+msgid "The selected video is larger than 100 MB."
msgstr ""
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
+msgstr "Le servitor pare haber problemas. Tenta de novo post alcun instantes."
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
+msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
-msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
msgstr ""
#: src/view/screens/Support.tsx:37
@@ -7349,7 +7976,7 @@ msgstr ""
#: src/view/screens/TermsOfService.tsx:35
msgid "The Terms of Service have been moved to"
-msgstr ""
+msgstr "Le conditiones de servicio ha essite displaciate a"
#: src/components/intents/VerifyEmailIntentDialog.tsx:94
msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one."
@@ -7365,101 +7992,102 @@ msgstr ""
#: src/components/dialogs/GifSelect.tsx:226
msgid "There was an issue connecting to Tenor."
-msgstr ""
+msgstr "Il habeva un problema in connecter a Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
-msgstr ""
+msgstr "Il habeva un problema in connecter al servitor"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
-msgstr ""
+msgstr "Il habeva un problema in connecter al servidor, verifica tu connexion al internet e tenta de novo."
#: src/view/com/feeds/FeedSourceCard.tsx:127
#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
-msgstr ""
+msgstr "Il habeva un problema durante le contacto con tu servitor"
#: src/view/com/notifications/NotificationFeed.tsx:124
msgid "There was an issue fetching notifications. Tap here to try again."
-msgstr ""
+msgstr "Il habeva un problema durante le recuperation del notificationes. Tocca hic pro tentar de novo."
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
-msgstr ""
+msgstr "Il habeva un problema durante le recuperation del publicationes. Tocca hic pro tentar de novo."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
-msgstr ""
+msgstr "Il habeva un problema durante le recuperation del lista. Tocca hic pro tentar de novo."
#: src/screens/Settings/AppPasswords.tsx:60
msgid "There was an issue fetching your app passwords"
-msgstr ""
+msgstr "Il habeva un problema durante le recuperation de tu contrasignos del application"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
-msgstr ""
+msgstr "Il habeva un problema durante le recuperation tu listas. Tocca hic pro tentar de novo."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
-msgstr ""
+msgstr "Il habeva un problema durante le recuperation de tu information de servicio"
#: src/view/com/posts/PostFeedErrorMessage.tsx:145
msgid "There was an issue removing this feed. Please check your internet connection and try again."
-msgstr ""
+msgstr "Il habeva un problema durante le remotion de iste canal. Verifica tu connexion al internet e tenta de novo."
#: src/components/dms/ReportDialog.tsx:259
#: src/components/ReportDialog/SubmitView.tsx:88
msgid "There was an issue sending your report. Please check your internet connection."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
-msgstr ""
+msgstr "Il habeva un problema durante le actualisation de tu canales, verifica tu connexion al internet e tenta de novo."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
-msgstr ""
+msgstr "Occurreva un problema! {0}"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:217
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
-msgstr ""
+msgstr "Il habeva un problema. Verifica tu connexion al internet e tenta de novo."
#: src/components/dialogs/GifSelect.tsx:270
#: src/view/com/util/ErrorBoundary.tsx:59
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
-msgstr ""
+msgstr "Il habeva un problema impreviste in le application. Informa nos si isto eveniva a te!"
#: src/screens/SignupQueued.tsx:130
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
-msgstr ""
+msgstr "Il ha habite un grande quantitate de usatores nove a Bluesky! Nos activara tu conto le plus tosto possibile."
#: src/screens/Settings/FollowingFeedPreferences.tsx:62
msgid "These settings only apply to the Following feed."
@@ -7469,33 +8097,45 @@ msgstr ""
msgid "This {screenDescription} has been flagged:"
msgstr ""
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
-msgstr ""
+msgstr "Iste conto require que usatores aperi session pro vider su profilo."
#: src/components/dms/BlockedByListDialog.tsx:34
msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user."
msgstr ""
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
-msgstr ""
+msgstr "Iste appello essera inviate a <0>{sourceName}0>."
#: src/screens/Messages/components/ChatDisabled.tsx:104
msgid "This appeal will be sent to Bluesky's moderation service."
-msgstr ""
+msgstr "Iste appello essera inviate al servicio de moderation de Bluesky."
#: src/screens/Messages/components/MessageListError.tsx:18
msgid "This chat was disconnected"
-msgstr ""
+msgstr "Iste chat esseva disconnectite"
#: src/lib/moderation/useGlobalLabelStrings.ts:19
msgid "This content has been hidden by the moderators."
-msgstr ""
+msgstr "Le contento ha essite celate per le moderatores."
#: src/lib/moderation/useGlobalLabelStrings.ts:24
msgid "This content has received a general warning from moderators."
-msgstr ""
+msgstr "Iste contento ha recipite un advertimento general del moderatores."
#: src/components/dialogs/EmbedConsent.tsx:63
msgid "This content is hosted by {0}. Do you want to enable external media?"
@@ -7508,19 +8148,27 @@ msgstr ""
#: src/view/com/posts/PostFeedErrorMessage.tsx:114
msgid "This content is not viewable without a Bluesky account."
-msgstr ""
+msgstr "Le contento non se pote visualisar sin un conto de Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
+msgstr "Iste conversation es con un conto eliminate o disactivate. Preme pro optiones"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
msgstr ""
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr ""
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr ""
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
-msgstr ""
+msgstr "Iste function non es disponibile quando se usa un contrasigno de application. Per favor aperi session con tu contrasigno principal."
#: src/view/com/posts/PostFeedErrorMessage.tsx:120
msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr ""
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Iste fluxo es vacue."
@@ -7540,16 +8188,17 @@ msgstr "Iste fluxo es vacue."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
-msgstr ""
+msgstr "Iste pseudonymo es reservate. Tenta un altere."
#: src/components/dialogs/BirthDateSettings.tsx:41
msgid "This information is not shared with other users."
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
msgstr ""
#: src/components/moderation/ModerationDetailsDialog.tsx:168
@@ -7560,13 +8209,13 @@ msgstr "Iste etiquetta ha essite applicate per le autor."
msgid "This label was applied by you."
msgstr "Iste etiquetta ha essite applicate per te."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr ""
#: src/view/com/modals/LinkWarning.tsx:72
msgid "This link is taking you to the following website:"
-msgstr ""
+msgstr "Iste ligamine te porta al sequente sito web:"
#: src/screens/List/ListHiddenScreen.tsx:151
msgid "This list – created by <0>{0}0> – contains possible violations of Bluesky's community guidelines in its name or description."
@@ -7576,15 +8225,15 @@ msgstr ""
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr ""
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "Iste lista es vacue."
#: src/screens/Profile/ErrorState.tsx:40
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
-msgstr ""
+msgstr "Iste servicio de moderation es indisponibile. Vide hic infra pro plus detalios. Si iste problema persiste, contacta nos."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr ""
@@ -7592,91 +8241,96 @@ msgstr ""
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
-msgstr ""
+msgstr "Iste message ha essite delite."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
-msgstr ""
+msgstr "Le autor del publication ha disactivate le citationes."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
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 "Iste servicio non ha fornite conditiones de servicio o un politica de privatessa."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
+msgid "This should create a domain record at:"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
-msgid "This should create a domain record at:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
msgstr ""
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
-msgstr ""
+msgstr "Iste usator non ha sequitores."
#: src/components/dms/MessagesListBlockedFooter.tsx:68
msgid "This user has blocked you"
-msgstr ""
+msgstr "Iste usator te ha blocate"
#: src/components/moderation/ModerationDetailsDialog.tsx:79
#: src/lib/moderation/useModerationCauseDescription.ts:75
msgid "This user has blocked you. You cannot view their content."
-msgstr ""
+msgstr "Iste usator te ha blocate. Tu non pote vider su contento."
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
-msgstr ""
+msgstr "Iste usator ha requestate que su contento se monstra solmente a usatores in session."
#: src/components/moderation/ModerationDetailsDialog.tsx:59
msgid "This user is included in the <0>{0}0> list which you have blocked."
-msgstr ""
+msgstr "Iste usator es includite in le lista <0>{0}0> que tu ha blocate."
#: src/components/moderation/ModerationDetailsDialog.tsx:91
msgid "This user is included in the <0>{0}0> list which you have muted."
-msgstr ""
+msgstr "Iste usator es includite in le lista <0>{0}0> que tu ha silentiate."
#: src/components/NewskieDialog.tsx:65
msgid "This user is new here. Press for more info about when they joined."
-msgstr ""
+msgstr "Iste usator es nove hic. Preme pro plus informationes sur quando illes se jungeva."
#: src/view/com/profile/ProfileFollows.tsx:95
msgid "This user isn't following anyone."
-msgstr ""
+msgstr "Iste usator non seque alcuno."
#: src/components/dialogs/MutedWords.tsx:435
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr ""
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
-msgstr ""
+msgstr "Isto removera @{0} del lista de accesso rapide."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr ""
@@ -7684,8 +8338,8 @@ msgstr ""
msgid "Thread Preferences"
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr ""
@@ -7693,24 +8347,25 @@ msgstr ""
msgid "Threaded mode"
msgstr ""
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr ""
#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:34
msgid "Time remaining: {0, plural, one {# second} other {# seconds}}"
-msgstr ""
+msgstr "Tempore restante: {0, plural, one {# secunda} other {# secundas}}"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:99
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr ""
-#: src/components/dms/ReportConversationPrompt.tsx:19
-msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
+#: src/components/dms/ReportConversationPrompt.tsx:19
+msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr ""
#: src/components/ReportDialog/SelectLabelerView.tsx:31
@@ -7725,7 +8380,7 @@ msgstr "Hodie"
msgid "Toggle dropdown"
msgstr ""
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr ""
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr "Commuta le sono"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr ""
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Traducer"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "Tendentias"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "Videos in tendentia"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr ""
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "Television"
msgid "Two-factor authentication (2FA)"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Scribe tu nomine de usator desirate"
@@ -7783,18 +8440,11 @@ msgstr "Scribe tu nomine de usator desirate"
msgid "Type your message here"
msgstr "Scribe tu message hic"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Typo:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr ""
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr ""
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr ""
@@ -7807,46 +8457,51 @@ msgstr ""
#: src/view/com/modals/ChangePassword.tsx:71
#: src/view/com/modals/ChangePassword.tsx:117
msgid "Unable to contact your service. Please check your Internet connection."
-msgstr ""
+msgstr "Impossibile contactar tu servicio. Per favor verifica tu connexion a internet."
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
-msgstr ""
+msgstr "Impossibile deler"
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Disblocar"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Disblocar"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Disblocar conto"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "Disblocar le conto?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
@@ -7855,50 +8510,55 @@ msgctxt "action"
msgid "Unfollow"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
-msgid "Unlike"
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
+msgid "Unlike"
+msgstr "Disappreciar"
+
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
-msgstr ""
+msgstr "Disappreciar ({0, plural, one {# appreciation} other {# appreciationes}})"
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94
msgctxt "video"
msgid "Unmute"
-msgstr ""
+msgstr "Dissilentiar"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
-msgstr ""
+msgstr "Dissilentiar"
#: src/components/RichTextTag.tsx:140
#: src/components/RichTextTag.tsx:153
msgid "Unmute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr ""
@@ -7906,98 +8566,122 @@ msgstr ""
msgid "Unmute conversation"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr ""
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318
msgid "Unmute video"
-msgstr ""
+msgstr "Dissilentiar video"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
-msgstr ""
+msgstr "Disfixar"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
+msgstr "Disfixar canal"
+
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
-msgstr ""
+msgstr "Disfixar del initio"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
-msgstr ""
+msgstr "Disfixar del profilo"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
-msgstr ""
+msgstr "Disfixar lista de moderation"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
-msgstr ""
+msgstr "Disfixate {0} del Initio"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
+msgstr "Disfixate de tu canales"
+
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
-msgstr ""
+msgstr "Cancellar le subscription"
#: src/screens/List/ListHiddenScreen.tsx:198
#: src/screens/List/ListHiddenScreen.tsx:208
msgid "Unsubscribe from list"
-msgstr ""
+msgstr "Cancellar le subscription del lista"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
-msgstr ""
+msgstr "Cancellar le subscription de iste etiquettator"
#: src/screens/List/ListHiddenScreen.tsx:86
msgid "Unsubscribed from list"
-msgstr ""
+msgstr "Cancellate le subscription del lista"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
-msgstr ""
+msgstr "Typo de video non supportate"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
-msgstr ""
+msgstr "Typo de video non supportate: {0}"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:77
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:90
#: src/lib/moderation/useReportOptions.ts:77
#: src/lib/moderation/useReportOptions.ts:90
msgid "Unwanted Sexual Content"
-msgstr ""
+msgstr "Contento sexual indesirabile"
#: src/screens/Settings/components/OTAInfo.tsx:58
#: src/screens/Settings/components/OTAInfo.tsx:74
msgid "Update"
-msgstr ""
+msgstr "Actualisar"
#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update <0>{displayName}0> in Lists"
+msgstr "Actualisar <0>{displayName}0> in Listas"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Actualisar a {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
@@ -8006,66 +8690,66 @@ msgstr ""
msgid "Updating..."
msgstr "Actualisante..."
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Incargar un photo in su loco"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
-msgstr ""
+msgstr "Incargar un file de texto a:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Cargar desde le camera"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Cargar desde files"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Cargar desde bibliotheca"
#: src/lib/api/index.ts:302
msgid "Uploading images..."
-msgstr ""
+msgstr "Incargante imagines..."
#: src/lib/api/index.ts:356
#: src/lib/api/index.ts:380
msgid "Uploading link thumbnail..."
-msgstr ""
+msgstr "Incargante miniatura de ligamine..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
-msgstr ""
+msgstr "Incargante video..."
#: src/screens/Settings/AppPasswords.tsx:67
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
-msgstr ""
+msgstr "Usa contrasignos de application pro aperir session in altere clientes Bluesky sin conceder un accesso total a tu conto o contrasigno."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Usar fornitor predefinite"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr ""
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Usar mi navigator predefinite"
@@ -8084,7 +8768,7 @@ msgstr "Usate per:"
#: src/components/dms/ReportDialog.tsx:324
msgctxt "toast"
msgid "User blocked"
-msgstr ""
+msgstr "Usator blocate"
#: src/components/moderation/ModerationDetailsDialog.tsx:71
#: src/lib/moderation/useModerationCauseDescription.ts:63
@@ -8119,15 +8803,15 @@ msgstr ""
msgid "User list by you"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "Lista de usator create"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "Lista de usator actualisate"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8135,73 +8819,103 @@ msgstr "Nomine de usator o adresse de e-posta"
#: src/components/WhoCanReply.tsx:280
msgid "users followed by <0>@{0}0>"
-msgstr ""
+msgstr "usatores sequite per <0>@{0}0>"
#: src/components/WhoCanReply.tsx:267
msgid "users following <0>@{0}0>"
-msgstr ""
+msgstr "usatores sequente <0>@{0}0>"
#: src/screens/Messages/Settings.tsx:92
#: src/screens/Messages/Settings.tsx:95
msgid "Users I follow"
-msgstr ""
+msgstr "Usatores que io seque"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:456
msgid "Users in \"{0}\""
-msgstr ""
-
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr ""
+msgstr "Usatores in \"{0}\""
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
-msgstr ""
+msgstr "Usatores que tu seque"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Valor:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "Un adresse de e-posta verificate es requirite"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr ""
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr ""
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Verificar registro DNS"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Dialogo de verification de e-posta"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Verificar nove e-posta"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Verificar ora"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Verificar file de texto"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Verificar tu e-posta"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Verificar tu e-posta"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Version {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "Video"
msgid "Video failed to process"
msgstr "Falleva le processamento del video"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr "Fluxo de video"
@@ -8224,14 +8938,15 @@ msgstr "Video de {0}: {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Videojocos"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr "Video in pausa"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr "Video in reproduction"
@@ -8239,11 +8954,11 @@ msgstr "Video in reproduction"
msgid "Video not found."
msgstr "Video non trovate."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Configurationes de video"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Video cargate"
@@ -8251,31 +8966,32 @@ msgstr "Video cargate"
msgid "Video: {0}"
msgstr "Video: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "Videos"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "Vider le avatar de {0}"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "Visualisar profilo de {0}"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "Visualisar profilo de {displayName}"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "Visualisar profilo de usator blocate"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "Vider entrata de depuration"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Visualisar detalios"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "Visualisar detalios pro signalar un violation de copyright"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Visualisar topico complete"
@@ -8308,18 +9024,17 @@ msgstr "Visualisar information sur iste etiquettas"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "Vider plus"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Visualisar profilo"
@@ -8331,19 +9046,23 @@ msgstr "Visualisar le avatar"
msgid "View the labeling service provided by @{0}"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
-msgid "View users who like this feed"
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
msgstr ""
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
+msgid "View users who like this feed"
+msgstr "Vider usatores qui apprecia iste canal"
+
#: src/components/VideoPostCard.tsx:398
msgid "View video"
msgstr "Vider video"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Visualisar tu contos blocate"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr ""
@@ -8352,14 +9071,18 @@ msgstr ""
msgid "View your feeds and explore more"
msgstr "Vider tu fluxos e explorar plus"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Vider tu listas de moderation"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "Vider tu contos silentiate"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8367,7 +9090,7 @@ msgstr ""
#: src/components/VideoPostCard.tsx:121
msgid "Views video in immersive mode"
-msgstr ""
+msgstr "Vide le video in modo immersive"
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
@@ -8392,6 +9115,11 @@ msgstr "Advertir contento"
msgid "Warn content and filter from feeds"
msgstr "Advertir contento e filtrar desde fluxos"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr ""
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "Nos non poteva trovar necun resultatos pro iste hashtag."
@@ -8400,17 +9128,17 @@ msgstr "Nos non poteva trovar necun resultatos pro iste hashtag."
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "Nos non poteva cargar iste conversation"
#: src/screens/SignupQueued.tsx:160
msgid "We estimate {estimatedTime} until your account is ready."
-msgstr ""
+msgstr "Nos estima {estimatedTime} ante que tu conto es preste."
#: src/components/intents/VerifyEmailIntentDialog.tsx:107
msgid "We have sent another verification email to <0>{0}0>."
-msgstr ""
+msgstr "Nos ha inviate altere e-mail de verification a <0>{0}0>."
#: src/screens/Onboarding/StepFinished.tsx:256
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
@@ -8420,6 +9148,14 @@ msgstr ""
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr ""
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr ""
@@ -8428,7 +9164,7 @@ 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:428
msgid "We were unable to load your configured labelers at this time."
msgstr ""
@@ -8438,22 +9174,30 @@ msgstr ""
#: src/screens/SignupQueued.tsx:164
msgid "We will let you know when your account is ready."
+msgstr "Nos te informara quando tu conto es preste."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
-msgstr ""
+msgstr "Nos usara isto pro personalisar tu experientia."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
+msgstr "Nos ha problemas de rete, tenta de novo"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
-#: src/screens/Signup/index.tsx:95
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
-msgstr ""
+msgstr "Nos es multo felice de accolliger te!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr ""
@@ -8461,20 +9205,20 @@ msgstr ""
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr ""
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
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:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
-msgstr ""
+msgstr "Nos regretta! Le publication que tu responde ha essite delite."
#: src/components/Lists.tsx:194
#: src/view/screens/NotFound.tsx:50
msgid "We're sorry! We can't find the page you were looking for."
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr ""
@@ -8494,23 +9238,23 @@ msgstr ""
msgid "What do you want to call your starter pack?"
msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr ""
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "Como va?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr ""
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "Qual linguas es usate in iste publication?"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:79
msgid "Which languages would you like to see in your algorithmic feeds?"
-msgstr ""
+msgstr "Qual linguas tu vole vider in tu canales algorithmic?"
#: src/components/WhoCanReply.tsx:183
msgid "Who can interact with this post?"
@@ -8520,14 +9264,18 @@ msgstr "Qui pote interager con iste publication?"
msgid "Who can reply"
msgstr "Qui pote responder"
-#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
-msgid "Whoops!"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
msgstr ""
+#: src/screens/Home/NoFeedsPinned.tsx:79
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
+msgid "Whoops!"
+msgstr "Ops!"
+
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr ""
@@ -8574,11 +9322,11 @@ msgstr ""
msgid "Write a message"
msgstr "Scribe un message"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Scriber message"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Scribe tu responsa"
@@ -8588,11 +9336,16 @@ msgstr "Scribe tu responsa"
msgid "Writers"
msgstr "Scriptores"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
+msgstr "Le servitor retornava un DID incorrecte. Recipite: {0}"
+
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
msgstr ""
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Si"
@@ -8601,15 +9354,15 @@ msgstr "Si"
msgid "Yes, deactivate"
msgstr "Si, disactivar"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
-msgstr ""
+msgstr "Si, deler iste pacchetto de initio"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Si, celar"
@@ -8625,12 +9378,29 @@ msgstr "Heri"
msgid "You"
msgstr "Tu"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr ""
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
msgstr ""
#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
+msgstr "Tu es in fila."
+
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr ""
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr ""
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
msgstr ""
#: src/view/com/composer/state/video.ts:410
@@ -8639,12 +9409,33 @@ msgstr "Tu non es permitte incargar videos."
#: src/view/com/profile/ProfileFollows.tsx:94
msgid "You are not following anyone."
+msgstr "Tu non seque alcuno."
+
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
msgstr ""
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
-msgstr ""
+msgstr "Tu anque pote discoperir nove Canales personalisate pro sequer."
#: src/view/com/modals/DeleteAccount.tsx:198
msgid "You can also temporarily deactivate your account instead, and reactivate it at any time."
@@ -8657,7 +9448,7 @@ msgstr ""
#: src/screens/Login/index.tsx:182
#: src/screens/Login/PasswordUpdatedForm.tsx:26
msgid "You can now sign in with your new password."
-msgstr ""
+msgstr "Tu pote ora aperir session con tu nove contrasigno."
#: src/screens/Deactivated.tsx:133
msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
@@ -8669,7 +9460,6 @@ msgstr ""
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "Tu pote actualisar iste plus tarde desde tu configurationes."
@@ -8682,7 +9472,7 @@ msgstr "Tu ha necun sequitor."
msgid "You don't follow any users who follow @{name}."
msgstr "Tu seque necun usator qui seque @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr ""
@@ -8736,38 +9526,42 @@ msgstr "Tu ha silentiate iste conto."
msgid "You have muted this user"
msgstr "Tu ha silentiate iste usator"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "Tu non ha ancora conversationes. Initia un!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "Tu non ha fluxos."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "Tu non ha listas."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr ""
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr ""
#: src/components/Lists.tsx:57
msgid "You have reached the end"
+msgstr "Tu ha attingite le fin"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
msgstr ""
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
-msgstr ""
+msgstr "Tu ha temporarimente attingite le limite pro le incargamento de video. Tenta lo de novo plus tarde."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
-msgstr ""
+msgstr "Tu non ha create ancora un pacchetto de initio!"
#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
@@ -8787,51 +9581,63 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr ""
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "Tu solmente pote adder usque {STARTER_PACK_MAX_SIZE} profilos"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Tu pote solmente adder usque 3 fluxos"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "Tu pote selectionar solmente 4 imagines"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "Tu debe haber 13 annos o plus de etate pro inscriber te."
-
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
-msgid "You must be following at least seven other people to generate a starter pack."
+msgid "You must be 13 years of age or older to create an account."
msgstr ""
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+msgid "You must be following at least seven other people to generate a starter pack."
+msgstr "Tu debe sequer al minus septe altere personas pro generar un pacchetto de initio."
+
#: src/components/StarterPack/QrCodeDialog.tsx:61
msgid "You must grant access to your photo library to save a QR code"
msgstr "Tu debe conceder accesso a tu bibliotheca de photos pro salvar un codice QR"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "Tu debe conceder accesso a tu bibliotheca de photos pro salvar le imagine."
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr ""
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr ""
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
-msgid "You will be signed out of all your accounts."
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
+msgid "You will be signed out of all your accounts."
+msgstr "Le session de tote tu contos se claudera."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr ""
@@ -8839,25 +9645,25 @@ msgstr ""
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
-msgstr ""
+msgstr "Tu: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr ""
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
-msgstr ""
+msgstr "Tu sequera le usatores e canales suggerite quando tu termina le creation de tu conto!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
-msgstr ""
+msgstr "Tu sequera le usatores suggerite quando tu termina le creation de tu conto!"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:236
msgid "You'll follow these people and {0} others"
@@ -8867,7 +9673,7 @@ msgstr ""
msgid "You'll follow these people right away"
msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr ""
@@ -8899,6 +9705,10 @@ msgstr "Tu ha trovate alicun personas a sequer"
#: src/view/com/posts/FollowingEndOfFeed.tsx:44
msgid "You've reached the end of your feed! Find some more accounts to follow."
+msgstr "Tu ha attingite le fin de tu canal! Trova alcun altere contos pro sequer."
+
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
msgstr ""
#: src/view/com/composer/state/video.ts:421
@@ -8909,17 +9719,17 @@ msgstr ""
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "Tu conto"
#: src/view/com/modals/DeleteAccount.tsx:84
msgid "Your account has been deleted"
-msgstr ""
+msgstr "Tu conto ha essite delite"
#: src/screens/Takendown.tsx:146
msgid "Your account has been suspended"
@@ -8941,7 +9751,7 @@ msgstr ""
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "Tu data de anniversario"
@@ -8953,28 +9763,32 @@ msgstr "Tu navigator non supporta le formato de video. Retenta con un navigator
msgid "Your chats have been disabled"
msgstr "Tu chats ha essite dishabilitate"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr ""
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Il pare que tu adresse de e-posta es invalide."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
-msgstr ""
+msgstr "Tu e-mail ancora non ha essite verificate. Iste es un passo importante de securitate que nos recommenda."
#: src/state/shell/progress-guide.tsx:213
msgid "Your first like!"
@@ -8988,12 +9802,29 @@ msgstr "Tu sequitores"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Tu fluxo de sequites es vacue! Seque plus de usatores pro vider lo que passa."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "Tu nomine de usator complete sera <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
+msgstr "Tu nomine de usator complete essera <0>@{0}0>"
+
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr ""
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:369
@@ -9004,34 +9835,42 @@ msgstr "Tu parolas silentiate"
msgid "Your password has been changed successfully!"
msgstr "Tu contrasigno ha essite cambiate con successo!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "Tu message ha essite publicate"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "Tu messages ha essite publicate"
#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Your posts, likes, and blocks are public. Mutes are private."
-msgstr ""
+msgstr "Tu publicationes, appreciationes e blocages es public. Le silentiamentos es private."
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr ""
-#: src/view/com/composer/Composer.tsx:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Tu responsa ha essite publicate"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
-msgstr ""
+msgstr "Tu reporto essera inviate a <0>{0}0>."
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Tu reporto sera inviate al Servicio de Moderation de Bluesky"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr ""
diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po
index 7e1c999746..15af841b64 100644
--- a/src/locale/locales/id/messages.po
+++ b/src/locale/locales/id/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: id\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 16:40\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(aktif)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(berisi konten yang disisipkan)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(tidak ada email)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, other {# postingan ulang}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, other {# detik}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, other {# item belum dibaca}}"
@@ -90,17 +90,17 @@ msgstr "{0, plural, other {# item belum dibaca}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, other {# bln}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, other {pengikut}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, other {mengikuti}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, other {suka}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, other {suka}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, other {postingan}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, other {kutipan}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, other {posting ulang}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, other {{1} postingan}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "{0, plural, other {# orang}} telah menggunakan paket pemula ini!"
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0>dalam <1>tagar1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>dalam <1>teks & tagar1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr "{0} sedang siaran langsung"
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr "{0} merupakan URL yang tidak valid"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} telah bergabung minggu ini"
@@ -137,13 +154,18 @@ msgstr "{0} dari {1}"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
-msgstr ""
+msgstr "{0} dari 50"
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0} orang telah menggunakan paket pemula ini!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "{0} menanggapi {1}"
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "{0} menanggapi {1} pada {2}"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "Avatar {0}"
@@ -175,7 +197,7 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}d"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, other {# item belum dibaca}}"
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, other {jam}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, other {menit}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}}0> mengikuti Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}}0> menyukai feed kustom Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}}0> menyukai postingan Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}}0> menghapus verifikasi mereka dari akun Anda"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}}0> memposting ulang postingan Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}}0> mendaftar dengan paket pemula Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}}0> memverifikasi Anda"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} mengikuti Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} mengikuti Anda kembali"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "{firstAuthorLink} menyukai feed kustom Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "{firstAuthorLink} menyukai postingan Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr "{firstAuthorLink} menghapus verifikasi mereka dari akun Anda"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} memposting ulang postingan Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} mendaftar dengan paket pemula Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr "{firstAuthorLink} memverfikasi Anda"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} mengikuti Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menyukai feed kustom Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menyukai postingan Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menghapus verifikasi mereka dari akun Anda"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} memposting ulang postingan Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} mendaftar dengan paket pemula Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} memverifikasi Anda"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} mengikuti Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} mengikuti Anda kembali"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "{firstAuthorName} menyukai feed kustom Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "{firstAuthorName} menyukai postingan Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr "{firstAuthorName} menghapus verifikasi mereka dari akun Anda"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} memposting ulang postingan Anda"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} mendaftar dengan paket pemula Anda"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr "{firstAuthorName} memverifikasi Anda"
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} mengikuti"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "{handle} tidak dapat dikirimi pesan"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr "{hours, plural, other {# jam {minutesString}}}"
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr "{hours, plural, other {# jam}}"
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "{joinedAllTimeCount, plural, other {# pengguna telah}} bergabung!"
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr "{minutes, plural, other {# menit}}"
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, other {# item belum dibaca}}"
@@ -301,6 +404,34 @@ msgstr "{profileName} bergabung di Bluesky {0} yang lalu"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} bergabung di Bluesky menggunakan paket pemula {0} yang lalu"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "{type}j yang lalu"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr "{userName} adalah verifikator terpercaya"
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr "{userName} telah diverifikasi"
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr "Verifikasi {userName}"
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "+{computedTotal}"
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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>dan {2, plural, other {# lainnya}} sudah disertakan dalam paket pemula Anda"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, other {pengikut}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, other {mengikuti}}"
@@ -343,7 +474,7 @@ msgstr "<0>Eksperimental:0> Jika preferensi ini diaktifkan, Anda hanya akan me
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>Anda0> dan<1> 1><2>{0} 2>sudah disertakan dalam paket pemula"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Panggilan Tidak Valid"
@@ -363,19 +494,28 @@ msgstr "30 hari"
msgid "7 days"
msgstr "7 hari"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "sebuah pesan"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr "Bentuk baru verifikasi"
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Tentang"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr "Terima"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr "Terima permintaan obrolan"
@@ -385,37 +525,37 @@ msgid "Accept Request"
msgstr "Terima Permintaan"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Aksesibilitas"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Pengaturan Aksesibilitas"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Akun"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "Akun diblokir"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
msgstr "Akun diikuti"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
msgstr "Akun dibisukan"
@@ -429,33 +569,37 @@ msgstr "Akun Dibisukan"
msgid "Account Muted by List"
msgstr "Akun Dibisukan oleh Daftar"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Pengaturan akun"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "Akun dihapus dari akses cepat"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "Akun batal diblokir"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
msgstr "Akun tidak diikuti"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
msgstr "Akun tidak dibisukan"
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+msgstr "Akun dengan tanda cek biru bergerigi <0><1/>0> dapat memverifikasi lainnya. Verifikator ini telah dipilih oleh Bluesky."
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Tambah"
@@ -473,8 +617,12 @@ msgstr "Tambahkan {displayName} dalam paket pemula"
msgid "Add a content warning"
msgstr "Tambahkan peringatan konten"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr "Tambahkan status sementara siaran langsung pada profil Anda. Ketika seseorang menekan avatar Anda, mereka dapat melihat informasi tentang siaran langsung Anda."
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "Tambahkan pengguna ke daftar ini"
@@ -485,7 +633,7 @@ msgstr "Tambahkan akun"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Tambahkan akun"
msgid "Add alt text"
msgstr "Tambahkan teks alt"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Tambahkan teks alt (opsional)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Tambahkan akun lain"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Tambahkan postingan lain"
@@ -518,8 +666,12 @@ msgstr "Tambahkan sandi aplikasi"
msgid "Add App Password"
msgstr "Tambahkan Sandi Aplikasi"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr "Tambahkan emoji reaksi"
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr "Tambahkan rincian lengkap (optional)"
@@ -531,15 +683,23 @@ msgstr "Tambahkan kata bisu yang dipilih pengaturan"
msgid "Add muted words and tags"
msgstr "Tambah kata dan tagar untuk dibisukan"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Tambahkan postingan baru"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Tambahkan orang"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr "Tambahkan orang ke daftar"
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr "Tambahkan Reaksi"
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Tambahkan feed rekomendasi"
@@ -552,27 +712,28 @@ msgstr "Tambahkan beberapa feed ke dalam paket pemula Anda!"
msgid "Add the default feed of only people you follow"
msgstr "Tambahkan feed bawaan hanya untuk orang yang Anda ikuti"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Tambahkan catatan DNS berikut ke domain Anda:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Tambahkan feed ini ke daftar feed Anda"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "Tambahkan dalam daftar"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Tambahkan ke Daftar"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Tambahkan ke daftar feed saya"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr "Tambahkan pengguna ke daftar"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Ditambahkan ke daftar"
@@ -581,22 +742,22 @@ msgstr "Ditambahkan ke daftar"
msgid "Added to my feeds"
msgstr "Ditambahkan ke daftar feed saya"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr "Rincian tambahan (batas 300 karakter)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Dewasa"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Konten Dewasa"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
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>."
@@ -604,30 +765,35 @@ msgstr "Konten dewasa hanya dapat diaktifkan melalui laman <0>bsky.app0>."
msgid "Adult content is disabled."
msgstr "Konten dewasa dinonaktifkan."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Label Konten Dewasa"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "Lanjutan"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr "kresna@contoh.com"
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Semua"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "Semua akun telah diikuti!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "Semua bahasa"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "Berisi semua feed yang telah Anda simpan dalam satu tempat."
@@ -671,10 +837,10 @@ msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Teks alt"
@@ -688,19 +854,18 @@ msgstr "Teks alt menjelaskan gambar untuk pengguna tunanetra dan pengguna dengan
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "Teks alt akan dipangkas. Batas: {0} karakter."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr "Teks alt akan disingkat. {MAX_ALT_TEXT, plural, other {Batas: {0} karakter.}}"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "Email telah dikirim ke {0}. Email tersebut berisi kode konfirmasi yang dapat Anda masukkan di bawah ini."
-#: src/view/com/modals/ChangeEmail.tsx:114
-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/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr "Email telah dikirimkan ke alamat Anda sebelumnya, {currentEmail}. Email tersebut menyertakan kode konfirmasi yang dapat Anda masukkan di bawah ini."
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "Email telah dikirim! Silakan masukkan kode konfirmasi yang tercantum dalam email tersebut di bawah ini."
@@ -716,7 +881,11 @@ msgstr "Terjadi kesalahan"
msgid "An error occurred while compressing the video."
msgstr "Terjadi kesalahan saat mengompresi video."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr "Terjadi kesalahan saat mengambil feed."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Terjadi kesalahan saat membuat paket pemula. Coba lagi?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "Terjadi kesalahan saat memuat video. Silakan coba lagi."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "Terjadi kesalahan saat menyimpan kode QR!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "Terjadi kesalahan saat memilih video"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "Terjadi kesalahan saat mencoba mengikuti semua"
@@ -746,12 +914,17 @@ msgstr "Terjadi kesalahan saat mencoba mengikuti semua"
msgid "An error occurred while uploading the video."
msgstr "Terjadi kesalahan saat mengunggah video."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr "Sebuah ilustrasi menampilkan Bluesky memilih verifikator terpercaya, dan verifikator terpercaya pada waktunya memverifikasi akun pengguna individual."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: 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:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "Terjadi masalah saat memulai obrolan"
@@ -761,13 +934,17 @@ msgstr "Terjadi masalah saat mencoba membuka obrolan"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Terjadi masalah, silakan coba lagi."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr "Maket iPhone yang menampilkan aplikasi Bluesky terbuka profil pengguna terverifikasi dengan tanda centang biru di sebelah nama tampilan mereka."
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "terjadi kesalahan yang tidak diketahui"
@@ -790,6 +967,10 @@ msgstr "Hewan"
msgid "Animated GIF"
msgstr "Animasi GIF"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr "Mengumumkan verifikasi Bluesky"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Perilaku Anti-Sosial"
msgid "Anybody can interact"
msgstr "Siapa saja dapat berinteraksi"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "Ikon Aplikasi"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "Bahasa Aplikasi"
@@ -836,7 +1017,7 @@ msgstr "Nama sandi aplikasi harus terdiri dari minimal 4 karakter"
msgid "App passwords"
msgstr "Sandi aplikasi"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Kata Sandi Aplikasi"
@@ -854,7 +1035,7 @@ msgstr "Banding label \"{0}\""
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "Banding diajukan"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -872,10 +1053,10 @@ msgstr "Banding Penangguhan"
msgid "Appeal this decision"
msgstr "Ajukan banding atas keputusan ini"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Tampilan"
@@ -884,12 +1065,12 @@ msgstr "Tampilan"
msgid "Apply default recommended feeds"
msgstr "Tambahkan feed bawaan yang direkomendasikan"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Arsip dari {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Arsip postingan"
@@ -897,15 +1078,15 @@ msgstr "Arsip postingan"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Anda yakin ingin menghapus sandi aplikasi \"{0}\"?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
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:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "Anda yakin ingin menghapus paket pemula ini?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "Anda yakin ingin membuang perubahan?"
@@ -921,15 +1102,15 @@ msgstr "Anda yakin ingin meninggalkan percakapan ini? Pesan akan dihapus untuk A
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Anda yakin ingin menghapus {0} dari daftar feed Anda?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Anda yakin ingin menghapus ini dari daftar feed Anda?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "Anda yakin ingin membuang draf ini?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "Anda yakin ingin membuang postingan ini?"
@@ -937,7 +1118,7 @@ msgstr "Anda yakin ingin membuang postingan ini?"
msgid "Are you sure?"
msgstr "Anda yakin?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "Apakah Anda menulis dalam <0>{suggestedLanguageName}0>?"
@@ -946,29 +1127,34 @@ msgstr "Apakah Anda menulis dalam <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Seni"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Ketelanjangan artistik atau non-erotis."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr "Tetapkan topik untuk algoritma"
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "Minimal 3 karakter"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40
msgctxt "Name of app icon variant"
msgid "Aurora"
-msgstr ""
+msgstr "Aurora"
#: src/screens/Settings/AccessibilitySettings.tsx:105
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Opsi putar otomatis telah dipindahkan ke pengaturan <0>Konten dan Media0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Putar otomatis video dan GIF"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Putar otomatis video dan GIF"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Kembali"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr "Kembali ke Obrolan"
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Untuk membuat daftar, harap verifikasi email Anda terlebih dahulu."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Untuk membuat postingan, harap verifikasi email Anda terlebih dahulu."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr "Untuk membuat postingan atau membalas, harap verifikasi email Anda terlebih dahulu."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Untuk membuat paket pemula, harap verifikasi email Anda terlebih dahulu."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr "Untuk dapat menerima permintaan obrolan ini, harap verifikasi email Anda terlebih dahulu."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
msgstr "Untuk dapat mengirim pesan ke pengguna lain, harap verifikasi email Anda terlebih dahulu."
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BETA"
-
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Tanggal lahir"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Blokir"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Blokir akun"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "Blokir Akun?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Blokir akun"
@@ -1054,7 +1241,7 @@ msgstr "Blokir dan Hapus"
msgid "Block and/or delete this conversation"
msgstr "Blokir dan/atau hapus percakapan ini"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Blokir daftar"
@@ -1062,7 +1249,7 @@ msgstr "Blokir daftar"
msgid "Block or report"
msgstr "Blokir atau lapor"
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "Blokir akun-akun ini?"
@@ -1079,21 +1266,21 @@ msgstr "Blokir Pengguna"
msgid "Blocked"
msgstr "Diblokir"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Akun yang diblokir"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Akun yang Diblokir"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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."
@@ -1101,19 +1288,19 @@ msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau b
msgid "Blocked post."
msgstr "Postingan diblokir."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
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:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Pemblokiran bersifat publik. Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
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:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blog"
@@ -1122,14 +1309,14 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky tidak dapat memastikan keaslian tanggal yang diklaim."
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129
msgctxt "Name of app icon variant"
msgid "Bluesky Classic™"
-msgstr ""
+msgstr "Bluesky Classic™"
#: src/view/com/auth/server-input/index.tsx:212
msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server."
@@ -1148,7 +1335,7 @@ msgstr "Bluesky lebih seru jika bersama teman!"
msgid "Bluesky Social Terms of Service"
msgstr "Ketentuan Layanan Bluesky Social"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
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."
@@ -1156,6 +1343,10 @@ msgstr "Bluesky akan memilih serangkaian akun yang direkomendasikan dari orang-o
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky tidak akan menampilkan profil dan postingan Anda kepada pengguna yang tidak masuk. Aplikasi lain mungkin tidak akan mematuhi permintaan ini. Ini tidak membuat akun Anda menjadi privat."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr "Bluesky akan secara pro-aktif verifikasi akun-akun penting dan otentik."
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "Buramkan gambar dan saring dari feed"
msgid "Books"
msgstr "Buku"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "Jelajahi akun lainnya pada halaman Jelajah"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "Jelajahi feed lainnya pada halaman Jelajah"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Jelajahi saran lainnya"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "Jelajahi saran lainnya pada halaman Jelajah"
@@ -1214,20 +1405,26 @@ msgstr "Jelajahi postingan yang ditandai dengan {displayName}"
msgid "Browse starter pack {displayName}"
msgstr "Telusuri paket pemula {displayName}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr "Jelajahi topik {0}"
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "Jelajahi topik {displayName}"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Bisnis"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "Oleh {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Oleh <0>{0}0>"
@@ -1243,44 +1440,51 @@ msgstr "Dengan membuat akun, Anda menyatakan setuju dengan <0>Ketentuan Layanan<
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Dengan membuat akun, Anda menyatakan setuju dengan <0>Ketentuan Layanan0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr "Oleh anda"
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Kamera"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Batal"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "Batal menghapus akun"
msgid "Cancel image crop"
msgstr "Batal memotong gambar"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Batal mengedit profil"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Batal mengutip postingan"
@@ -1308,8 +1512,7 @@ msgstr "Batal mengutip postingan"
msgid "Cancel reactivation and sign out"
msgstr "Batalkan pengaktifan kembali dan keluar"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Batal mencari"
@@ -1317,24 +1520,23 @@ msgstr "Batal mencari"
msgid "Cancels opening the linked website"
msgstr "Membatalkan membuka situs web tertaut"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "Tidak dapat berinteraksi dengan pengguna yang diblokir"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Subtitel (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Subtitel & teks alt"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Ubah"
@@ -1347,46 +1549,41 @@ msgstr "Ubah ikon aplikasi"
msgid "Change app icon to \"{0}\""
msgstr "Ganti ikon aplikasi ke \"{0}\""
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Ubah email"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr "Ganti bahasa aplikasi"
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Ubah alamat email"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Ubah Panggilan"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr "Ubah layanan moderasi"
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Ubah email saya"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Ubah Kata Sandi"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "Ubah bahasa postingan ke {suggestedLanguageName}"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr "Ubah alasan melapor"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Ubah Email Anda"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Ubah alamat email Anda"
@@ -1394,43 +1591,42 @@ msgstr "Ubah alamat email Anda"
msgid "Changes app icon"
msgstr "Mengganti ikon aplikasi"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr "Mengganti penyedia hosting"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Obrolan"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
-msgstr ""
+msgstr "Obrolan dihapus"
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "Obrolan dibisukan"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
-msgstr ""
+msgstr "Kotak masuk permintaan obrolan"
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr "Permintaan obrolan"
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Pengaturan obrolan"
@@ -1441,10 +1637,10 @@ msgstr "Pengaturan Obrolan"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "Obrolan dibunyikan"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr "Obrolan"
@@ -1461,7 +1657,7 @@ msgstr "Periksa email Anda untuk mendapatkan kode login dan masukkan di sini."
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Periksa kotak masuk email Anda untuk kode konfirmasi dan masukkan di bawah ini:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Pilih metode verifikasi domain"
@@ -1469,7 +1665,7 @@ msgstr "Pilih metode verifikasi domain"
msgid "Choose Feeds"
msgstr "Pilih Feed"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Pilihkan untuk saya"
@@ -1477,10 +1673,6 @@ msgstr "Pilihkan untuk saya"
msgid "Choose People"
msgstr "Pilih Pengguna"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Pilih label mandiri sesuai dengan media yang Anda posting. Jika tidak ada yang dipilih, maka postingan ini cocok untuk semua orang."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Pilih algoritma yang akan digunakan untuk feed kustom Anda."
@@ -1493,27 +1685,31 @@ msgstr "Pilih warna ini sebagai avatar Anda"
msgid "Choose your account provider"
msgstr "Pilih penyedia akun Anda"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Pilih sendiri linimasa Anda! Feed buatan komunitas dapat membantu menemukan konten yang Anda sukai."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Pilih kata sandi Anda"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "Panggilan Anda"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Hapus semua data penyimpanan"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Hapus semua data penyimpanan (mulai ulang setelah ini)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr "Hapus tembolok gambar"
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Hapus kueri pencarian"
@@ -1522,6 +1718,14 @@ msgstr "Hapus kueri pencarian"
msgid "click here"
msgstr "klik di sini"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr "Klik di sini untuk mengulang proses verifikasi."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr "Klik disini untuk memperbarui email Anda"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Klik untuk menonaktifkan kutipan pada postingan ini."
@@ -1534,7 +1738,7 @@ msgstr "Klik untuk mengaktifkan kutipan pada postingan ini."
msgid "Click to open tag menu for {tag}"
msgstr "Klik untuk membuka menu tagar {tag}"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Ketuk untuk mengirim ulang pesan yang gagal"
@@ -1546,24 +1750,34 @@ msgstr "Iklim"
msgid "Clip 🐴 clop 🐴"
msgstr "Keletak 🐴 keletuk 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Tutup"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Tutup dialog aktif"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Tutup kotak bawah"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Tutup dialog"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr "Tutup menu geser"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "Tutup pemilih emoji"
@@ -1600,7 +1816,13 @@ msgstr "Tutup gambar"
msgid "Close image viewer"
msgstr "Tutup penampil gambar"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr "Tutup menu"
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Tutup dialog ini"
@@ -1608,8 +1830,12 @@ msgstr "Tutup dialog ini"
msgid "Closes password update alert"
msgstr "Menutup peringatan pembaruan kata sandi"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr "Menutup komposer pos dan menghapus draf postingan"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr "Menutup pemilih emoji"
@@ -1617,11 +1843,11 @@ msgstr "Menutup pemilih emoji"
msgid "Closes viewer for header image"
msgstr "Menutup penampil gambar header"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "Ciutkan daftar pengguna"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Menciutkan daftar pengguna untuk notifikasi tertentu"
@@ -1644,7 +1870,7 @@ msgstr "Komedi"
msgid "Comics"
msgstr "Komik"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Panduan Komunitas"
@@ -1653,23 +1879,23 @@ msgstr "Panduan Komunitas"
msgid "Complete onboarding and start using your account"
msgstr "Selesaikan orientasi dan mulai menggunakan akun Anda"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Selesaikan tantangan"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Tulis postingan baru"
-#: src/view/com/composer/Composer.tsx:834
-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/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr "Tulis postingan hingga {0, plural, other {# karakter}} panjangnya"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Tulis balasan"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Mengompres video..."
@@ -1681,23 +1907,17 @@ msgstr "Konfigurasikan pengaturan penyaringan konten untuk kategori: {name}"
msgid "Configured in <0>moderation settings0>."
msgstr "Diatur pada <0>pengaturan moderasi0>."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Konfirmasi"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Konfirmasi Perubahan"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Konfirmasi pengaturan bahasa konten"
@@ -1706,26 +1926,27 @@ msgstr "Konfirmasi pengaturan bahasa konten"
msgid "Confirm delete account"
msgstr "Konfirmasi hapus akun"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Konfirmasi usia Anda:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Konfirmasi tanggal lahir Anda"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Kode konfirmasi"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Kode Konfirmasi"
@@ -1733,22 +1954,22 @@ msgstr "Kode Konfirmasi"
msgid "Connecting..."
msgstr "Menghubungkan..."
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Hubungi pusat dukungan"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "Konten & Media"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Konten dan media"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Konten dan Media"
@@ -1756,15 +1977,15 @@ msgstr "Konten dan Media"
msgid "Content Blocked"
msgstr "Konten Diblokir"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Penyaring konten"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr "Konten dari seluruh jaringan yang mungkin Anda sukai."
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Bahasa Konten"
@@ -1785,16 +2006,16 @@ msgstr "Peringatan Konten"
msgid "Content warnings"
msgstr "Peringatan konten"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "Latar menu konteks, klik untuk menutup menu."
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Lanjutkan"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Lanjutkan sebagai {0} (sudah masuk)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Lanjutkan utas..."
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Lanjutkan ke langkah berikutnya"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Percakapan dihapus"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Percakapan dihapus"
@@ -1826,16 +2047,17 @@ msgstr "Memasak"
msgid "Copied"
msgstr "Disalin"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Versi build disalin ke papan klip"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Disalin ke papan klip"
@@ -1844,25 +2066,29 @@ msgstr "Disalin ke papan klip"
msgid "Copied!"
msgstr "Tersalin!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr "Menyalin versi build ke papan klip"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Salin"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr "Tetap salin"
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Salin Sandi Aplikasi"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr "Salin URI at://"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr "Salin DID pemosting"
@@ -1871,57 +2097,69 @@ msgstr "Salin DID pemosting"
msgid "Copy code"
msgstr "Salin kode"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Salin DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Salin host"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Salin tautan"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Salin Tautan"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "Salin tautan daftar"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "Salin tautan postingan"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr "Salin tautan ke profil"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr "Salin tautan ke paket pemula"
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Salin teks pesan"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr "Salin URI postingan at://"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Salin teks postingan"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Salin kode QR"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "Salin nilai data TXT"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Kebijakan Hak Cipta"
@@ -1931,11 +2169,11 @@ msgstr "Kebijakan Hak Cipta"
msgid "Could not leave chat"
msgstr "Tidak dapat meninggalkan obrolan"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "Tidak dapat memuat feed"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "Tidak dapat memuat daftar"
@@ -1947,28 +2185,28 @@ msgstr "Tidak dapat membisukan obrolan"
msgid "Could not process your video"
msgstr "Tidak dapat memproses video"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Buat"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "Buat kode QR untuk paket pemula"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Buat paket pemula"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Buatkan paket pemula untuk saya"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Buatkan paket pemula untuk saya"
msgid "Create account"
msgstr "Daftar"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Buat Akun"
@@ -1985,11 +2223,16 @@ msgstr "Buat Akun"
msgid "Create an account"
msgstr "Buat akun"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr "Buat akun tanpa menggunakan paket pemula ini"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "Buat avatar saja"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Buat paket lain"
@@ -1998,7 +2241,7 @@ msgstr "Buat paket lain"
msgid "Create new account"
msgstr "Buat akun baru"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Buat laporan untuk {0}"
@@ -2053,17 +2296,17 @@ msgstr "Mode gelap"
msgid "Dark theme"
msgstr "Tema gelap"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Tanggal lahir"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Nonaktifkan akun"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Debug Moderasi"
@@ -2079,19 +2322,19 @@ msgstr "Standar"
msgid "Default icons"
msgstr "Ikon bawaan"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Hapus"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Hapus akun"
@@ -2107,19 +2350,19 @@ msgstr "Hapus kata sandi aplikasi"
msgid "Delete app password?"
msgstr "Hapus kata sandi aplikasi?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr "Hapus obrolan"
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Hapus catatan deklarasi obrolan"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "Hapus percakapan"
@@ -2127,19 +2370,19 @@ msgstr "Hapus percakapan"
msgid "Delete Conversation"
msgstr "Hapus Percakapan"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Hapus untuk saya"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
msgstr "Hapus daftar"
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Hapus pesan"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Hapus pesan untuk saya"
@@ -2147,26 +2390,26 @@ msgstr "Hapus pesan untuk saya"
msgid "Delete my account"
msgstr "Hapus akun saya"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Hapus postingan"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Hapus paket pemula"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "Hapus paket pemula?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "Hapus daftar ini?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "Hapus postingan ini?"
@@ -2174,8 +2417,8 @@ msgstr "Hapus postingan ini?"
msgid "Deleted"
msgstr "Dihapus"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Akun Telah Dihapus"
@@ -2183,48 +2426,48 @@ msgstr "Akun Telah Dihapus"
msgid "Deleted post."
msgstr "Postingan dihapus."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Deskripsi"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "Deskripsi terlalu panjang"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "Deskripsi terlalu panjang. Jumlah karakter maksimum adalah {DESCRIPTION_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Deskripsi terlalu panjang. {DESCRIPTION_MAX_GRAPHEMES, plural, other {Maksimum jumlah karakter adalah #.}}"
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Teks alt deskriptif"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Lepaskan kutipan"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "Lepaskan kutipan ini?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
msgstr "Mode pengembang dimatikan"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
msgstr "Mode pengembang dinyalakan"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Opsi pengembang"
@@ -2236,6 +2479,15 @@ msgstr "Dialog: sesuaikan siapa saja yang dapat berinteraksi dengan postingan in
msgid "Dim"
msgstr "Redup"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr "Nonaktifkan 2FA"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr "Nonaktifkan email 2FA"
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "Nonaktifkan Email 2FA"
@@ -2254,25 +2506,25 @@ msgstr "Matikan subtitel"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Dinonaktifkan"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Buang"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "Buang perubahan?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "Buang draf?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "Buang postingan?"
@@ -2281,24 +2533,24 @@ msgstr "Buang postingan?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Cegah aplikasi menampilkan akun saya ke pengguna yang tidak masuk"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr "Jelajahi Feed"
+
#: 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:425
-msgid "Discover new feeds"
-msgstr "Temukan feed baru"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Temukan Feed Baru"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Tutup"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Abaikan kesalahan"
@@ -2306,6 +2558,10 @@ msgstr "Abaikan kesalahan"
msgid "Dismiss getting started guide"
msgstr "Tutup panduan memulai"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr "Abaikan minat"
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr "Tutup bagian ini"
@@ -2315,27 +2571,27 @@ msgstr "Tutup bagian ini"
msgid "Display larger alt text badges"
msgstr "Tampilkan lencana teks alt yang lebih besar"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Nama tampilan"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Nama Tampilan"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "Nama tampilan terlalu panjang"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "Nama tampilan terlalu panjang. Maksimum jumlah karakter adalah {DISPLAY_NAME_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Nama tampilan terlalu panjang. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Maksimum jumlah karakter adalah #.}}"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "Panel DNS"
@@ -2347,37 +2603,45 @@ msgstr "Jangan bisukan kata ini pada pengguna yang Anda ikuti"
msgid "Does not include nudity."
msgstr "Tidak termasuk ketelanjangan."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "Tidak diawali atau diakhiri dengan tanda hubung"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "Domain terverifikasi!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr "Tidak memiliki kode atau perlu yang baru? <0>Klik di sini.0>"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr "Tidak dapat melihat email? <0>Klik di sini untuk kirim ulang.0>"
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Selesai"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Selesai"
msgid "Done{extraText}"
msgstr "Selesai{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr "Ketuk dua kali atau tekan lama pada pesan untuk menambahkan reaksi"
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Ketuk dua kali untuk menutup dialog"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr "Ketuk dua kali untuk menyukai"
@@ -2413,23 +2681,23 @@ msgstr "Lepaskan untuk menambahkan gambar"
msgid "Duration:"
msgstr "Durasi:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "contoh: kresna"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "contoh: Langit Kresna"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "contoh: Langit Kresna"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "contoh: kresna.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "contoh: Penulis, penyiar radio, dan sejarawan."
@@ -2437,19 +2705,19 @@ msgstr "contoh: Penulis, penyiar radio, dan sejarawan."
msgid "E.g. artistic nudes."
msgstr "Contoh: ketelanjangan artistik."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "contoh: Pemosting Keren"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "contoh: Spammer"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "contoh: Pemosting yang selalu tepat sasaran."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "contoh: Pengguna yang membalas dengan iklan secara berulang."
@@ -2457,20 +2725,21 @@ 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/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Ubah"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Ubah"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "Ubah avatar"
@@ -2478,31 +2747,41 @@ msgstr "Ubah avatar"
msgid "Edit Feeds"
msgstr "Ubah Daftar Feed"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "Edit gambar"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Ubah pengaturan interaksi"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr "Ubah minat"
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Ubah rincian daftar"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr "Ubah status siaran langsung"
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Ubah Daftar Moderasi"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Ubah Daftar Feed"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Edit profil saya"
@@ -2515,23 +2794,23 @@ msgstr "Ubah Daftar Pengguna"
msgid "Edit post interaction settings"
msgstr "Ubah pengaturan interaksi postingan"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "Edit profil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "Edit Profil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Ubah paket pemula"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Ubah Daftar Pengguna"
@@ -2539,15 +2818,15 @@ msgstr "Ubah Daftar Pengguna"
msgid "Edit who can reply"
msgstr "Ubah siapa yang dapat membalas"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Ubah nama tampilan Anda"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Sunting deskripsi profil Anda"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Ubah paket pemula Anda"
@@ -2560,16 +2839,15 @@ msgstr "Pendidikan"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "Pembuat daftar ini mungkin telah memblokir Anda atau Anda telah memblokirnya."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "Email"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "Email 2FA dinonaktifkan"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
@@ -2583,20 +2861,17 @@ msgstr "Alamat email"
msgid "Email Resent"
msgstr "Email Dikirim Ulang"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
-msgstr "Email diperbarui"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
+msgstr "Email terkirim!"
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "Email Diperbarui"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr "Email diperbarui!"
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
-msgstr "Email terverifikasi"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
+msgstr "Verifikasi email selesai!"
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
msgid "Email Verified"
@@ -2608,8 +2883,8 @@ msgstr "Sisipkan kode HTML"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Sisipkan postingan"
@@ -2617,12 +2892,13 @@ msgstr "Sisipkan postingan"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Sisipkan postingan ini di situs web Anda. Salin potongan kode berikut dan tempelkan ke dalam kode HTML situs web Anda."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "Pemutar video tertanam"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Aktifkan"
@@ -2630,13 +2906,13 @@ msgstr "Aktifkan"
msgid "Enable {0} only"
msgstr "Aktifkan {0} saja"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Aktifkan konten dewasa"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr "Aktifkan Email 2FA"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr "Aktifkan email 2FA"
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2660,30 +2936,30 @@ msgstr "Nyalakan subtitel"
msgid "Enable this source only"
msgstr "Aktifkan hanya sumber ini saja"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "Aktifkan tren topik"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr "Aktifkan tren video dalam feed Discover Anda"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr "Aktifkan tren video dalam feed Discover Anda."
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Diaktifkan"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Akhir feed"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Pastikan Anda telah memilih bahasa untuk masing-masing berkas subtitel."
@@ -2696,14 +2972,15 @@ msgstr "Masukkan kata sandi"
msgid "Enter a word or tag"
msgstr "Masukkan kata atau tagar"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr "Masukkan kode"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
msgid "Enter Code"
msgstr "Masukkan Kode"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Masukkan Kode Konfirmasi"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
msgstr "Masuk ke layar penuh"
@@ -2712,7 +2989,7 @@ msgstr "Masuk ke layar penuh"
msgid "Enter the code you received to change your password."
msgstr "Masukkan kode yang Anda terima untuk mengubah kata sandi Anda."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Masukkan domain yang ingin Anda gunakan"
@@ -2720,20 +2997,20 @@ msgstr "Masukkan domain yang ingin Anda gunakan"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Masukkan email yang Anda gunakan untuk membuat akun. Kami akan mengirimkan \"kode reset\" untuk mengatur kata sandi baru."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr "Masukkan nama pengguna atau alamat email yang Anda gunakan saat membuat akun Anda"
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Masukkan tanggal lahir Anda"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Masukkan alamat email Anda"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Masukkan email baru Anda di atas"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Masukkan alamat email baru Anda di bawah ini."
@@ -2749,7 +3026,11 @@ msgstr "Masukkan nama pengguna dan kata sandi Anda"
msgid "Enters full screen"
msgstr "Masuk ke mode layar penuh"
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr "Hiburan"
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Galat"
@@ -2758,15 +3039,18 @@ msgstr "Galat"
msgid "Error occurred while saving file"
msgstr "Terjadi kesalahan saat menyimpan berkas"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "Kesalahan saat menerima respons captcha."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Galat:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr "Kesalahan: {error}"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Semua orang"
@@ -2818,30 +3102,22 @@ msgstr "Keluar dari proses pemotongan gambar"
msgid "Exits image view"
msgstr "Keluar dari tampilan gambar"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Keluar dari memasukkan kueri pencarian"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Bentangkan teks alt"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Bentangkan daftar pengguna"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "Bentangkan atau ciutkan postingan lengkap yang Anda balas"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr "Bentangkan atau ciutkan postingan"
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr "Bentangkan atau ciutkan postingan lengkap yang Anda balas"
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "URI diharapkan mengarah ke suatu catatan data"
@@ -2864,6 +3140,10 @@ msgstr "Kedaluwarsa {0}"
msgid "Expires in {0}"
msgstr "Kedaluwarsa dalam {0}"
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr "Kadaluarsa dalam {0} pada {1}"
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "Media eksplisit atau berpotensi mengganggu."
msgid "Explicit sexual images."
msgstr "Gambar seksual eksplisit."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr "Jelajahi"
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Ekspor data saya"
@@ -2882,8 +3169,8 @@ msgstr "Ekspor data saya"
msgid "Export My Data"
msgstr "Ekspor Data Saya"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "Media eksternal"
@@ -2897,17 +3184,22 @@ msgstr "Media Eksternal"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Media eksternal memungkinkan situs web untuk mengumpulkan informasi tentang Anda dan perangkat Anda. Tidak ada informasi yang dikirim atau diminta hingga Anda menekan tombol \"putar\"."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Preferensi Media Eksternal"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Gagal menerima obrolan"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr "Gagal menambahkan emoji reaksi"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "Gagal mengubah panggilan. Silakan coba lagi."
@@ -2915,7 +3207,7 @@ msgstr "Gagal mengubah panggilan. Silakan coba lagi."
msgid "Failed to create app password. Please try again."
msgstr "Gagal membuat sandi aplikasi. Silakan coba lagi."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr "Gagal membuat percakapan"
@@ -2924,35 +3216,37 @@ msgstr "Gagal membuat percakapan"
msgid "Failed to create starter pack"
msgstr "Gagal membuat paket pemula"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "Gagal membuat daftar. Periksa koneksi internet Anda dan coba lagi."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Gagal menghapus obrolan"
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Gagal menghapus pesan"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "Gagal menghapus postingan, silakan coba lagi"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "Gagal menghapus paket pemula"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr "Gagal memuat percakapan"
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "Gagal memuat preferensi feed"
@@ -2964,17 +3258,19 @@ msgstr "Gagal memuat GIF"
msgid "Failed to load past messages"
msgstr "Gagal memuat pesan terdahulu"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "Gagal memuat daftar feed yang disarankan"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "Gagal memuat saran akun untuk diikuti"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr "Gagal menandai semua permintaan sebagai dibaca"
@@ -2982,7 +3278,16 @@ msgstr "Gagal menandai semua permintaan sebagai dibaca"
msgid "Failed to pin post"
msgstr "Gagal menyematkan postingan"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr "Gagal menghapus emoji reaksi"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr "Gagal menghapus verifikasi"
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Gagal menyimpan gambar: {0}"
@@ -2994,20 +3299,39 @@ msgstr "Gagal menyimpan preferensi notifikasi, silakan coba lagi"
msgid "Failed to save settings. Please try again."
msgstr "Gagal menyimpan pengaturan. Silakan coba lagi."
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr "Gagal untuk menyimpan minat Anda."
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "Gagal mengirim"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr "Gagal mengirim email, silakan coba lagi."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Gagal mengajukan banding, silakan coba lagi."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "Gagal membisukan utas, silakan coba lagi"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr "Gagal memperbarui pengaturan email 2FA"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr "Gagal memperbarui email, silakan coba lagi."
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "Gagal memperbarui daftar feed"
@@ -3022,20 +3346,24 @@ msgstr "Gagal memperbarui pengaturan"
msgid "Failed to upload video"
msgstr "Gagal menggunggah video"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr "Gagal memverifikasi email, silakan coba lagi."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "Gagal verifikasi panggilan. Silakan coba lagi."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Feed"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Feed oleh {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "Menu feed"
@@ -3043,26 +3371,26 @@ msgstr "Menu feed"
msgid "Feed toggle"
msgstr "Tombol alih feed"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Masukan"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
msgstr "Masukan terkirim!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Feed"
@@ -3070,13 +3398,13 @@ msgstr "Feed"
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."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "Daftar feed diperbarui!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "Feed yang kami rasa Anda sukai."
@@ -3092,11 +3420,11 @@ msgstr "Berkas berhasil disimpan!"
msgid "Filter from feeds"
msgstr "Saring dari feed"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr "Saring pencarian berdasarkan bahasa"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr "Saring pencarian berdasarkan bahasa (saat ini: {currentLanguageLabel})"
@@ -3110,13 +3438,13 @@ msgstr "Menyelesaikan"
msgid "Find accounts to follow"
msgstr "Temukan akun untuk diikuti"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "Cari orang untuk diikuti"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Temukan postingan, pengguna dan feed di Bluesky"
@@ -3131,28 +3459,28 @@ msgstr "Kebugaran"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117
msgctxt "Name of app icon variant"
msgid "Flat Black"
-msgstr ""
+msgstr "Hitam Flat"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93
msgctxt "Name of app icon variant"
msgid "Flat Blue"
-msgstr ""
+msgstr "Biru Flat"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105
msgctxt "Name of app icon variant"
msgid "Flat White"
-msgstr ""
+msgstr "Putih Flat"
#: src/screens/Onboarding/StepFinished.tsx:294
msgid "Flexible"
msgstr "Fleksibel"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Ikuti"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Ikuti"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Ikuti {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr "Ikuti {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Ikuti {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "Ikuti 10 akun"
msgid "Follow 7 accounts"
msgstr "Ikuti 7 akun"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "Ikuti akun"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Ikuti semua"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "Ikuti Balik"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Ikuti Balik"
-#: src/view/screens/Search/Explore.tsx:370
-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."
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "Diikuti oleh <0>{0}0>"
@@ -3224,7 +3544,7 @@ 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/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Pengikut @{0} yang Anda kenal"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Pengikut yang Anda kenal"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Mengikuti"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "Mengikuti {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr "Mengikuti {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Mengikuti {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Preferensi feed Mengikuti"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Preferensi Feed Mengikuti"
@@ -3301,6 +3617,10 @@ msgstr "Untuk alasan keamanan, Anda tidak akan dapat melihat ini lagi. Jika Anda
msgid "For the best experience, we recommend using the theme font."
msgstr "Untuk pengalaman terbaik, kami sarankan menggunakan font tema."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr "Untuk Anda"
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Selamanya"
@@ -3327,7 +3647,7 @@ msgstr "Sering Memposting Konten yang Tidak Diinginkan"
msgid "From @{sanitizedAuthor}"
msgstr "Dari @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Dari <0/>"
@@ -3336,28 +3656,30 @@ msgstr "Dari <0/>"
msgid "Gallery"
msgstr "Galeri"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Buatkan paket pemula"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Dapatkan bantuan"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "Mulai"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr "Memulai"
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Memulai"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Beri wajah pada profil Anda"
@@ -3366,17 +3688,17 @@ 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/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Kembali"
@@ -3384,10 +3706,10 @@ msgstr "Kembali"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Kembali"
@@ -3408,7 +3730,27 @@ msgstr "Kembali ke beranda"
msgid "Go Home"
msgstr "Ke Beranda"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr "Siaran langsung"
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr "Siaran Langsung"
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr "Siaran langsung untuk"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr "Buka profil {firstAuthorName}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Buka percakapan dengan {0}"
@@ -3427,8 +3769,8 @@ msgstr "Buka profil pengguna"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Media Sensitif"
@@ -3437,21 +3779,21 @@ msgstr "Media Sensitif"
msgid "Half way there!"
msgstr "Setengah jalan lagi!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Panggilan"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "Panggilan sudah digunakan. Silakan coba yang lain."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "Panggilan diubah!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "Panggilan terlalu panjang. Silakan coba yang lebih pendek."
@@ -3464,7 +3806,7 @@ msgstr "Haptik"
msgid "Harassment, trolling, or intolerance"
msgstr "Pelecehan, unggah sulut, atau intoleransi"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Tagar"
@@ -3472,19 +3814,24 @@ msgstr "Tagar"
msgid "Hashtag {tag}"
msgstr "Tagar {tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr "Punya kode? <0>Klik di sini.0>"
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "Mengalami masalah?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Bantuan"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Beri tahu orang-orang bahwa Anda bukan bot dengan mengunggah gambar atau membuat avatar."
@@ -3497,7 +3844,7 @@ msgstr "Berikut adalah sandi aplikasi Anda!"
msgid "Hidden"
msgstr "Disembunyikan"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr "Disembunyikan berdasarkan aturan moderasi Anda."
@@ -3509,18 +3856,17 @@ msgstr "Daftar yang disembunyikan"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Sembunyikan"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Sembunyikan"
@@ -3529,38 +3875,40 @@ msgstr "Sembunyikan"
msgid "Hide customization options"
msgstr "Sembunyikan opsi penyesuaian"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Sembunyikan postingan untuk saya"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Sembunyikan balasan untuk semua"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Sembunyikan balasan untuk saya"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr "Sembunyikan kartu ini"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "Sembunyikan postingan ini?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "Sembunyikan balasan ini?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Sembunyikan tren topik"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "Sembunyikan tren topik?"
@@ -3569,10 +3917,15 @@ msgstr "Sembunyikan tren topik?"
msgid "Hide trending videos?"
msgstr "Sembunyikan tren video?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Sembunyikan daftar pengguna"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr "Sembunyikan lencana verifikasi"
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "Hmm, server feed memberikan respons yang buruk. Harap beri tahu pemilik
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Hmm, kami kesulitan menemukan feed ini. Mungkin sudah dihapus."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Hmmmm, sepertinya kami kesulitan memuat data ini. Lihat di bawah untuk keterangan lebih lanjut. Jika masalah berlanjut, mohon hubungi kami."
@@ -3610,15 +3963,15 @@ msgstr "Hmmmm, kami tidak dapat memuat layanan moderasi."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Harap tunggu! Kami secara bertahap memberikan akses video, dan Anda masih dalam antrian. Periksa kembali nanti!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Beranda"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "Host:"
@@ -3627,34 +3980,33 @@ msgstr "Host:"
msgid "Hosting provider"
msgstr "Penyedia hosting"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr "Sedang hangat"
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "Balasan hangat lebih dulu"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "Bagaimana kami harus membuka tautan ini?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Saya punya kode"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Saya Mempunyai Kode"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Saya punya kode konfirmasi"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Saya punya domain sendiri"
@@ -3667,22 +4019,30 @@ msgstr "Saya mengerti"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Beralih ke status teks alt yang dibentangkan jika teks alt panjang"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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:758
+#: src/view/screens/ProfileList.tsx:765
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/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Jika Anda memiliki domain sendiri, Anda dapat menggunakannya sebagai panggilan. Ini memungkinkan Anda untuk memverifikasi identitas secara mandiri. <0>Pelajari selengkapnya di sini.0>"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr "Jika Anda perlu memperbarui email Anda, <0>Klik di sini0>."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Jika Anda menghapus postingan ini, Anda tidak dapat memulihkannya lagi."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr "Jika Anda memperbarui alamat email Anda, email 2FA akan dinonaktifkan."
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Jika Anda ingin mengubah kata sandi, kami akan mengirimkan kode untuk memverifikasi bahwa ini adalah akun Anda."
@@ -3704,9 +4064,22 @@ msgstr "Ilegal dan Urgen"
msgid "Image"
msgstr "Gambar"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "Gambar telah disimpan ke rol kamera Anda!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr "Tembolok gambar dibersihkan"
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr "Tembolok gambar dibersihkan, sisa {0}"
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr "Gambar tersimpan"
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,9 +4097,9 @@ msgid "Inappropriate messages or explicit links"
msgstr "Pesan tidak pantas atau tautan eksplisit"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
-msgstr ""
+msgstr "Kotak masuk kosong!"
#: src/screens/Login/LoginForm.tsx:164
msgid "Incorrect username or password"
@@ -3752,15 +4125,11 @@ msgstr "Masukkan kata sandi untuk penghapusan akun"
msgid "Input the code which has been emailed to you"
msgstr "Masukkan kode yang telah dikirim ke email Anda"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "Masukkan nama pengguna atau alamat email yang Anda gunakan saat mendaftar"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Interaksi dibatasi"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr "Pengaturan interaksi"
@@ -3769,11 +4138,11 @@ msgstr "Pengaturan interaksi"
msgid "Invalid 2FA confirmation code."
msgstr "Kode konfirmasi 2FA tidak valid."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Panggilan tidak valid. Silakan coba yang lain."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "Catatan postingan tidak valid atau tidak didukung"
@@ -3789,11 +4158,11 @@ msgstr "Kode Verifikasi Tidak Valid"
msgid "Invite a Friend"
msgstr "Undang Teman"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Kode Undangan"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
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."
@@ -3805,7 +4174,7 @@ msgstr "Kode undangan: {0} tersedia"
msgid "Invite codes: 1 available"
msgstr "Kode undangan: 1 tersedia"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "Undang orang lain ke paket pemula ini!"
@@ -3817,7 +4186,7 @@ msgstr "Undang teman untuk mengikuti feed dan akun favorit Anda"
msgid "Invites, but personal"
msgstr "Undangan, tetapi personal"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "Sudah benar"
@@ -3825,19 +4194,19 @@ msgstr "Sudah benar"
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/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "ID Kerja: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Karir"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Bergabung di Bluesky"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "Dilabeli oleh pemosting."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Label"
@@ -3868,7 +4237,7 @@ msgstr "Label"
msgid "Labels added"
msgstr "Label ditambahkan"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "Label adalah anotasi yang diterapkan pada pengguna dan konten. Label dapat digunakan untuk menyembunyikan, memperingatkan, dan mengkategorikan jaringan."
@@ -3884,13 +4253,13 @@ msgstr "Label pada konten Anda"
msgid "Language selection"
msgstr "Pilih bahasa"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Pengaturan Bahasa"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Bahasa"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Lebih besar"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "Terbaru"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "pelajari lebih lanjut"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr "Pelajari selengkapnya"
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Pelajari Lebih Lanjut"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Pelajari lebih lanjut tentang Bluesky"
@@ -3933,6 +4311,11 @@ msgstr "Pelajari lebih lanjut tentang moderasi yang diterapkan pada konten ini."
msgid "Learn more about this warning"
msgstr "Pelajari lebih lanjut tentang peringatan ini"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr "Pelajari selengkapnya mengenai verifikasi di Bluesky (dalam bahasa Inggris)"
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "Meninggalkan Bluesky"
msgid "left to go."
msgstr "yang tersisa"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Biarkan saya memilih"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Terang"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "Suka"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Suka ({0, plural, other {# suka}})"
@@ -4013,17 +4397,16 @@ msgstr "Sukai 10 postingan"
msgid "Like 10 posts to train the Discover feed"
msgstr "Sukai 10 postingan untuk melatih feed Discover"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Sukai feed ini"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr "Sukai labeler ini"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Disukai oleh"
@@ -4033,43 +4416,43 @@ msgstr "Disukai oleh"
msgid "Liked By"
msgstr "Disukai Oleh"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Disukai oleh {0, plural, other {# pengguna}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Disukai oleh {likeCount, plural, other {# pengguna}}"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "Suka"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "Suka pada postingan ini"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "Linier"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Daftar"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Avatar Daftar"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "Daftar diblokir"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4084,44 +4467,44 @@ msgstr "Daftar oleh <0/>"
msgid "List by you"
msgstr "Daftar oleh Anda"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "Daftar dihapus"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
msgstr "Daftar telah disembunyikan"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "Daftar Disembunyikan"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "Daftar dibisukan"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Nama Daftar"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "Daftar batal diblokir"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "Daftar batal dibisukan"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Daftar"
@@ -4129,34 +4512,47 @@ msgstr "Daftar"
msgid "Lists blocking this user:"
msgstr "Daftar yang memblokir pengguna ini:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr "Siaran langsung"
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr "Fitur siaran langsung sedang uji coba beta"
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr "Tautan siaran langsung"
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Muat lebih banyak"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "Muat lebih banyak feed yang disarankan"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Muat lebih banyak akun untuk diikuti"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Muat notifikasi baru"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Muat postingan baru"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Memuat..."
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Catatan"
@@ -4164,12 +4560,12 @@ msgstr "Catatan"
msgid "Logged-out visibility"
msgstr "Visibilitas pengguna yang tidak masuk"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo oleh @sawaratsuki.bsky.social"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo oleh <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "Sepertinya Anda menghapus semua feed tersemat. Tapi jangan khawatir, And
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Sepertinya Anda belum memiliki feed mengikuti. <0>Klik di sini untuk menambahkan.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr "Buat penyesuaian untuk pengaturan email akun Anda"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "Buatkan untuk saya"
@@ -4201,18 +4601,22 @@ msgstr "Buatkan untuk saya"
msgid "Make sure this is where you intend to go!"
msgstr "Pastikan ini adalah situs web yang Anda tuju!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "Kelola feed tersimpan"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr "Kelola pengaturan verifikasi"
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Kelola kata dan tagar yang dibisukan"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr "Tandai semua sebagai dibaca"
@@ -4221,16 +4625,23 @@ msgstr "Tandai semua sebagai dibaca"
msgid "Mark as read"
msgstr "Tandai telah dibaca"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr "Ditandai semua sebagai dibaca"
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr "Mungkin nanti"
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Media"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Media yang mungkin mengganggu atau tidak pantas untuk sebagian orang."
@@ -4246,23 +4657,27 @@ msgstr "Pengguna yang Anda sebut"
msgid "Mentions"
msgstr "Sebutan"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Menu"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Kirim pesan ke {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Pesan dihapus"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Pesan dihapus"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr "Pesan dari @{0}: {1}"
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Pesan dari server: {0}"
@@ -4276,7 +4691,11 @@ msgstr "Kotak input pesan"
msgid "Message is too long"
msgstr "Pesan terlalu panjang"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr "Opsi pesan"
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Pesan"
@@ -4295,10 +4714,10 @@ msgstr "Akun Menyesatkan"
msgid "Misleading Post"
msgstr "Postingan yang Menyesatkan"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Moderasi"
@@ -4320,22 +4739,22 @@ msgstr "Daftar moderasi oleh <0/>"
msgid "Moderation list by you"
msgstr "Daftar moderasi Anda"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
msgstr "Daftar moderasi dibuat"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
msgstr "Daftar moderasi diperbarui"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Daftar moderasi"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Daftar Moderasi"
@@ -4343,11 +4762,11 @@ msgstr "Daftar Moderasi"
msgid "moderation settings"
msgstr "pengaturan moderasi"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "Status moderasi"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Alat moderasi"
@@ -4356,7 +4775,7 @@ msgstr "Alat moderasi"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Moderator telah memilih untuk menetapkan peringatan umum pada konten."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Selengkapnya"
@@ -4365,9 +4784,9 @@ msgstr "Selengkapnya"
msgid "More feeds"
msgstr "Feed lainnya"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Opsi lainnya"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "Yang paling disukai lebih dulu"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Balasan yang paling disukai lebih dulu"
@@ -4400,14 +4819,14 @@ msgstr "Bisukan"
msgid "Mute {tag}"
msgstr "Bisukan {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "Bisukan akun"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Bisukan akun"
@@ -4420,11 +4839,11 @@ msgstr "Bisukan percakapan"
msgid "Mute in:"
msgstr "Bisukan pada:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Bisukan daftar"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "Bisukan akun-akun ini?"
@@ -4452,26 +4871,26 @@ msgstr "Bisukan kata ini hanya dalam tagar"
msgid "Mute this word until you unmute it"
msgstr "Bisukan kata ini sampai Anda membunyikannya"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Bisukan utas"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Bisukan kata & tagar"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Akun yang dibisukan"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Akun yang Dibisukan"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
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."
@@ -4479,11 +4898,11 @@ msgstr "Postingan dari akun yang dibisukan akan dihilangkan dari feed dan notifi
msgid "Muted by \"{0}\""
msgstr "Dibisukan oleh \"{0}\""
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Kata & tagar yang dibisukan"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
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."
@@ -4492,15 +4911,15 @@ msgstr "Pembisuan bersifat privat. Akun yang dibisukan tetap dapat berinteraksi
msgid "My Birthday"
msgstr "Tanggal Lahir Saya"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "Daftar Feed Saya"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Nama"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "Nama harus diisi"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Alam"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "Menuju ke {0}"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr "Menuju ke paket pemula"
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "Menuju ke layar berikutnya"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Menuju ke profil Anda"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "Ingin mengubahnya?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "Perlu melaporkan pelanggaran hak cipta?"
@@ -4547,30 +4971,43 @@ msgstr "Perlu melaporkan pelanggaran hak cipta?"
msgid "Never lose access to your followers or data."
msgstr "Tidak akan lagi kehilangan akses ke data dan pengikut Anda."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "Tidak usah, buatkan panggilan untuk saya"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Baru"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Baru"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "Obrolan baru"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr "Alamat email baru"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr "Fitur Baru"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "Panggilan baru"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "Daftar baru"
@@ -4578,7 +5015,7 @@ msgstr "Daftar baru"
msgid "New messages"
msgstr "Pesan baru"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Daftar Moderasi Baru"
@@ -4590,12 +5027,12 @@ msgstr "Kata sandi baru"
msgid "New Password"
msgstr "Kata Sandi Baru"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Postingan baru"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "Postingan baru"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Postingan Baru"
@@ -4613,19 +5050,20 @@ msgstr "Postingan Baru"
msgid "New user info dialog"
msgstr "Dialog informasi pengguna baru"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Daftar Pengguna Baru"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "Balasan terbaru lebih dulu"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Berita"
@@ -4655,11 +5093,15 @@ msgstr "Gambar berikutnya"
msgid "No app passwords yet"
msgstr "Tidak ada sandi aplikasi"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "Tanpa Panel DNS"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr "Tidak ada kadaluarsa dipasang"
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "GIF tidak ditemukan. Mungkin ada masalah dengan Tenor."
@@ -4668,21 +5110,25 @@ 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/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr "Tidak ada gambar"
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "Belum ada yang menyukai"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "Tidak lagi mengikuti {0}"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr "Tidak lebih dari {MAX_SERVICE_HANDLE_LENGTH} karakter"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr "Tidak lebih dari {MAX_SERVICE_HANDLE_LENGTH, plural, other {# karakter}}"
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "Belum ada pesan"
@@ -4711,31 +5157,38 @@ msgstr "Belum ada kutipan"
msgid "No reposts yet"
msgstr "Belum ada postingan ulang"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Tidak ada hasil"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "Tidak ada hasil"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr "Tidak ada hasil untuk \"{0}\"."
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "Tidak ditemukan hasil"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "Tidak ditemukan hasil untuk \"{query}\""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "Tidak ditemukan hasil untuk {query}"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr "Tidak ada hasil."
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "Tidak ditemukan hasil pencarian untuk \"{search}\"."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Tak seorang pun"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "Belum ada yang menyukai ini. Mungkin Anda bisa jadi yang pertama!"
@@ -4773,21 +5225,17 @@ msgstr "Ketelanjangan Non-Seksual"
#: src/components/KnownFollowers.tsx:255
msgid "Not followed by anyone you're following"
-msgstr ""
+msgstr "Tidak diikuti oleh siapapun yang Anda ikuti"
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "Tidak Ditemukan"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "Jangan sekarang"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Catatan tentang berbagi"
@@ -4795,7 +5243,7 @@ msgstr "Catatan tentang berbagi"
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."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Kosong"
@@ -4803,7 +5251,7 @@ msgstr "Kosong"
msgid "Notification filters"
msgstr "Filter notifikasi"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Pengaturan notifikasi"
@@ -4820,11 +5268,11 @@ msgstr "Suara notifikasi"
msgid "Notification Sounds"
msgstr "Suara Notifikasi"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Notifikasi"
@@ -4832,12 +5280,12 @@ msgstr "Notifikasi"
msgid "now"
msgstr "sekarang"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Sekarang"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Ketelanjangan"
@@ -4859,21 +5307,23 @@ msgstr "Oh tidak!"
msgid "Oh no! Something went wrong."
msgstr "Oh tidak! Ada yang tidak beres."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "Oke"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "Balasan terlama lebih dulu"
@@ -4881,19 +5331,19 @@ msgstr "Balasan terlama lebih dulu"
msgid "on<0><1/><2><3/>2>0>"
msgstr "di<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Pengaturan ulang orientasi"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "Satu atau beberapa GIF belum memiliki teks alt."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "Satu atau beberapa gambar belum memiliki teks alt."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "Satu atau beberapa video belum memiliki teks alt."
@@ -4905,11 +5355,11 @@ msgstr "Hanya mendukung berkas .jpg dan .png"
msgid "Only {0} can reply."
msgstr "Hanya {0} yang dapat membalas."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Hanya berisi huruf, angka, dan tanda hubung"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "Hanya mendukung berkas gambar"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "Ups, ada yang tidak beres!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "Ups!"
@@ -4935,67 +5385,80 @@ msgstr "Ups!"
msgid "Open"
msgstr "Terbuka"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "Buka menu pintasan profil {name}"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Buka pembuat avatar"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "Buka opsi percakapan"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "Buka menu geser"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Buka pemilih emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "Buka halaman info feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "Buka menu opsi feed"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr "Buka daftar emoji lengkap"
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "Buka tautan {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "Buka opsi pesan"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "Buka halaman debug moderasi"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Buka pengaturan kata dan tagar yang dibisukan"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr "Buka paket"
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "Buka menu opsi postingan"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr "Buka profil"
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr "Buka menu berbagi"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "Buka menu paket pemula"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Buka halaman buku cerita"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Buka log sistem"
@@ -5015,19 +5478,19 @@ msgstr "Membuka dialog untuk memilih siapa yang dapat membalas utas ini"
msgid "Opens additional details for a debug entry"
msgstr "Membuka detail tambahan untuk entri debug"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
msgstr "Membuka dialog teks alt"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Membuka kamera pada perangkat"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
-msgstr ""
+msgstr "Membuka dialog subtitel dan teks alt"
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr "Membuka dialog ubah panggilan"
@@ -5039,7 +5502,7 @@ msgstr "Membuka penyusun postingan"
msgid "Opens device photo gallery"
msgstr "Membuka galeri foto perangkat"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr "Membuka pemilih emoji"
@@ -5057,7 +5520,7 @@ msgstr "Membuka alur untuk masuk ke akun Bluesky Anda yang sudah ada"
msgid "Opens GIF select dialog"
msgstr "Membuka dialog pemilihan GIF"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr "Membuka bantuan dalam peramban"
@@ -5065,6 +5528,10 @@ msgstr "Membuka bantuan dalam peramban"
msgid "Opens list of invite codes"
msgstr "Membuka daftar kode undangan"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr "Membuka dialog status siaran langsung"
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Membuka formulir pengaturan ulang kata sandi"
@@ -5073,12 +5540,12 @@ msgstr "Membuka formulir pengaturan ulang kata sandi"
msgid "Opens the linked website"
msgstr "Membuka situs web tertaut"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Membuka profil ini"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Membuka pemilih video"
@@ -5105,27 +5572,27 @@ msgstr "Atau, masuk ke salah satu akun Anda yang lain."
#: src/screens/Settings/components/OTAInfo.tsx:52
msgid "OTA status: ..."
-msgstr ""
+msgstr "Status OTA: ..."
#: src/screens/Settings/components/OTAInfo.tsx:48
msgid "OTA status: Available!"
-msgstr ""
+msgstr "Status OTA: Tersedia!"
#: src/screens/Settings/components/OTAInfo.tsx:50
msgid "OTA status: Error fetching update"
-msgstr ""
+msgstr "Status OTA: Gagal mengambil pembaruan"
#: src/screens/Settings/components/OTAInfo.tsx:54
msgid "OTA status: None available"
-msgstr ""
+msgstr "Status OTA: Tidak ada yang tersedia"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Lainnya"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Akun lainnya"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Halaman Tidak Ditemukan"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "Jeda"
msgid "Pause video"
msgstr "Jeda video"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "Profil"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "Orang yang diikuti oleh @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "Orang yang mengikuti @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "Diperlukan izin untuk mengakses rol kamera."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "Izin untuk mengakses rol kamera ditolak. Silakan aktifkan di pengaturan sistem Anda."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr ""
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "Hewan Peliharaan"
msgid "Photography"
msgstr "Fotografi"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Gambar yang ditujukan untuk orang dewasa."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr "Sematkan"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "Sematkan feed"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr "Sematkan feed tren video pada beranda Anda untuk memudahkan akses"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr "Sematkan Feed"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Sematkan ke beranda"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Sematkan ke Beranda"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Sematkan ke profil"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Disematkan"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "{0} disematkan ke Beranda"
@@ -5263,7 +5722,7 @@ msgstr "{0} disematkan ke Beranda"
msgid "Pinned Feeds"
msgstr "Feed Tersemat"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "Disematkan ke daftar feed Anda"
@@ -5302,24 +5761,28 @@ msgstr "Putar GIF"
msgid "Plays the video"
msgstr "Memutar video"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr "Silakan tambahkan label peringatan konten yang sesuai dengan media yang Anda posting."
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Silakan tentukan panggilan Anda."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Masukkan kata sandi Anda."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr "Silakan klik pada tautan dalam email yang telah kami kirimkan untuk memverifikasi alamat email baru Anda. Ini merupakan langkah penting agar Anda menikmati terus semua fitur dari Bluesky."
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Mohon selesaikan verifikasi captcha."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Harap konfirmasi email Anda sebelum mengubahnya. Ini adalah persyaratan sementara selama alat pembaruan email ditambahkan, dan akan segera dihapus."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr "Mohon periksa kembali apakah Anda telah memasukkan alamat email dengan benar."
@@ -5335,19 +5798,41 @@ msgstr "Silakan masukkan kata sandi. Kata sandi harus memiliki setidaknya 8 kara
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Masukkan nama unik untuk sandi aplikasi ini atau gunakan nama yang kami buat secara acak."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr "Silakan masukkan kode yang valid."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr "Silakan masukkan alamat email yang valid."
+
#: 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:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr "Silakan masukkan kode yang kami kirimkan pada <0>{0}0> dibawah."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr "Silakan masukkan kode keamanan yang kami kirimkan pada alamat email Anda sebelumnya."
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Masukkan email Anda."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Silakan masukkan kode undangan Anda."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr "Silakan masukkan alamat email baru Anda."
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr "Silakan masukkan kata sandi"
@@ -5381,24 +5866,25 @@ msgstr "Silakan pilih alasan untuk laporan ini"
msgid "Please sign in as @{0}"
msgstr "Silakan masuk sebagai @{0}"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr "Silakan verifikasi email Anda"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Mohon Verifikasi Email Anda"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Politik"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr "Video populer di jaringan Anda."
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Pornografi"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Posting"
@@ -5406,34 +5892,34 @@ msgstr "Posting"
#: src/view/com/post-thread/PostThread.tsx:540
msgctxt "description"
msgid "Post"
-msgstr "Posting"
+msgstr "Postingan"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Posting Semua"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "Postingan oleh {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "Postingan oleh @{0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "Postingan dihapus"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Postingan gagal diunggah. Silakan periksa koneksi internet Anda dan coba lagi."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr "Postingan telah dihapus"
@@ -5455,7 +5941,7 @@ msgstr "Postingan yang Anda sembunyikan"
msgid "Post interaction settings"
msgstr "Pengaturan interaksi postingan"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr "Pengaturan Interaksi Postingan"
@@ -5476,15 +5962,16 @@ msgstr "Postingan tidak ditemukan"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "Postingan disematkan"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "Postingan dilepaskan"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Postingan"
@@ -5524,7 +6011,7 @@ msgstr "Tekan untuk melihat pengikut akun ini yang juga Anda ikuti"
msgid "Previous image"
msgstr "Gambar sebelumnya"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Bahasa Utama"
@@ -5537,31 +6024,31 @@ msgstr "Dahulukan yang Anda ikuti"
msgid "Priority notifications"
msgstr "Notifikasi prioritas"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Privasi"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "Privasi dan keamanan"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Privasi dan Keamanan"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Kebijakan Privasi"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Memproses video..."
@@ -5570,20 +6057,20 @@ msgstr "Memproses video..."
msgid "Processing..."
msgstr "Memproses..."
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Profil"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
msgstr "Profil diperbarui"
@@ -5600,6 +6087,26 @@ msgstr "Daftar terbuka yang dapat dibagikan untuk membisukan atau memblokir peng
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "Daftar terbuka yang dapat dibagikan dan digunakan sebagai feed."
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr "Kirim postingan"
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr "Kirim postingan"
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr "Kirim balasan"
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr "Kirim balasan"
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "Kode QR telah disalin ke papan klip!"
@@ -5612,25 +6119,25 @@ msgstr "Kode QR telah diunduh!"
msgid "QR code saved to your camera roll!"
msgstr "Kode QR disimpan ke rol kamera Anda!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Kutip postingan"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "Kutipan kembali dilampirkan"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "Kutipan berhasil dilepaskan"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "Kutipan dinonaktifkan"
@@ -5642,39 +6149,48 @@ msgstr "Pengaturan kutipan"
msgid "Quotes"
msgstr "Kutipan"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "Kutipan postingan ini"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Acak (alias \"Rolet Pemosting\")"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "Melebihi batas perubahan – Anda terlalu sering mengubah panggilan dalam waktu singkat. Harap tunggu beberapa saat sebelum mencoba kembali."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "Kembalikan kutipan"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr "Reaksi dengan {emoji}"
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Aktifkan kembali akun Anda"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr "Baca blog postingan (dalam bahasa Inggris)"
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr "Sembunyikan"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr "Lihat selengkapnya"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Baca blog Bluesky"
@@ -5697,11 +6213,11 @@ msgstr "Alasan banding"
msgid "Reason:"
msgstr "Alasan:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Pencarian Terakhir"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "Direkomendasikan"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "Hubungkan kembali"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr "Tolak"
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr "Tolak permintaan obrolan"
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Memuat ulang percakapan"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Hapus"
msgid "Remove {displayName} from starter pack"
msgstr "Hapus {displayName} dari paket pemula"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr "Hapus {historyItem}"
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Hapus akun"
@@ -5752,13 +6268,13 @@ msgstr "Hapus akun"
msgid "Remove attachment"
msgstr "Hapus sisipan"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Hapus Avatar"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "Hapus Sampul"
@@ -5776,24 +6292,25 @@ msgstr "Hapus feed"
msgid "Remove feed?"
msgstr "Hapus feed?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Hapus dari daftar feed saya"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "Hapus dari akses cepat?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "Hapus dari feed tersimpan"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr "Hapus dari feed Anda?"
@@ -5802,11 +6319,16 @@ msgstr "Hapus dari feed Anda?"
msgid "Remove image"
msgstr "Hapus gambar"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr "Hapus status siaran langsung"
+
#: 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:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Hapus profil"
@@ -5814,12 +6336,12 @@ msgstr "Hapus profil"
msgid "Remove quote"
msgstr "Hapus kutipan"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Hapus postingan ulang"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Hapus berkas subtitel"
@@ -5827,6 +6349,21 @@ msgstr "Hapus berkas subtitel"
msgid "Remove this feed from your saved feeds"
msgstr "Hapus feed ini dari feed tersimpan Anda"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr "Hapus pengguna dari daftar"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr "Hapus verifikasi"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr "Hapus verifikasi Anda dari akun ini?"
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "Dilepaskan oleh pemosting"
@@ -5835,7 +6372,7 @@ msgstr "Dilepaskan oleh pemosting"
msgid "Removed by you"
msgstr "Dilepaskan oleh Anda"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Dihapus dari daftar"
@@ -5845,19 +6382,18 @@ msgid "Removed from my feeds"
msgstr "Dihapus dari daftar feed saya"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Dihapus dari feed tersimpan"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Dihapus dari daftar feed Anda"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr "Menghapus profil dari riwayat pencarian"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr "Hapus verifikasi"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
@@ -5868,7 +6404,7 @@ msgstr "Menghapus postingan yang dikutip"
msgid "Replace with Discover"
msgstr "Ganti dengan Discover"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Balasan"
@@ -5880,12 +6416,13 @@ msgstr "Balasan dinonaktifkan"
msgid "Replies to this post are disabled."
msgstr "Balasan ke postingan ini dinonaktifkan."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Balas"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Balas ({0, plural, other {# balasan}})"
@@ -5907,86 +6444,86 @@ msgstr "Pengaturan balasan"
msgid "Reply settings are chosen by the author of the thread"
msgstr "Pengaturan balasan dipilih oleh pembuat utas"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "Urutan balasan"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Membalas <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Membalas postingan yang diblokir"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "Membalas postingan"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Membalas Anda"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "Visibilitas balasan diperbarui"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "Balasan berhasil disembunyikan"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Laporkan"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "Laporkan akun"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Laporkan percakapan"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "Dialog laporan"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Laporkan feed"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
-msgstr "Laporkan Daftar"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
+msgstr "Laporkan daftar"
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Laporkan pesan"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Laporkan postingan"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "Laporkan paket pemula"
@@ -6030,25 +6567,26 @@ msgstr "Laporkan paket pemula ini"
msgid "Report this user"
msgstr "Laporkan pengguna ini"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Posting ulang"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Posting ulang"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Posting ulang ({0, plural, other {# postingan ulang}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Posting ulang atau kutip postingan"
@@ -6056,27 +6594,27 @@ msgstr "Posting ulang atau kutip postingan"
msgid "Reposted By"
msgstr "Diposting Ulang Oleh"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "Diposting ulang oleh {0}"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "Diposting ulang oleh <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "Diposting ulang oleh Anda"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "Postingan ulang postingan ini"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "Ajukan Perubahan"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr "Ajukan perubahan"
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6088,11 +6626,11 @@ msgstr "Minta Kode"
msgid "Require alt text before posting"
msgstr "Wajibkan teks alt sebelum memposting"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr "Gunakan kode email untuk masuk ke akun Anda."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Diwajibkan untuk provider ini"
@@ -6100,13 +6638,19 @@ msgstr "Diwajibkan untuk provider ini"
msgid "Required in your region"
msgstr "Diperlukan di wilayah Anda"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr "Kirim ulang"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "Kirim ulang email"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "Kirim Ulang Email"
@@ -6123,8 +6667,8 @@ msgstr "Kode reset"
msgid "Reset Code"
msgstr "Kode Reset"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "Reset status orientasi"
@@ -6141,16 +6685,16 @@ msgstr "Mencoba masuk kembali"
msgid "Retries the last action, which errored out"
msgstr "Mencoba kembali tindakan terakhir yang gagal"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "Mencoba kembali tindakan terakhir yang gagal"
msgid "Retry"
msgstr "Ulangi"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr "Ulangi memuat opsi laporan"
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Kembali ke halaman sebelumnya"
@@ -6175,11 +6719,11 @@ msgstr "Kembali ke halaman sebelumnya"
msgid "Returns to home page"
msgstr "Kembali ke beranda"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "Kembali ke halaman sebelumnya"
@@ -6190,24 +6734,26 @@ msgstr "Kembali ke langkah sebelumnya"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Simpan"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Simpan"
@@ -6221,12 +6767,12 @@ msgstr "Simpan tanggal lahir"
msgid "Save changes"
msgstr "Simpan perubahan"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Simpan Perubahan"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Simpan gambar"
@@ -6234,16 +6780,16 @@ msgstr "Simpan gambar"
msgid "Save image crop"
msgstr "Simpan potongan gambar"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Simpan panggilan baru"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "Simpan kode QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Simpan ke daftar feed saya"
@@ -6251,16 +6797,12 @@ msgstr "Simpan ke daftar feed saya"
msgid "Saved Feeds"
msgstr "Feed Tersimpan"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "Disimpan ke rol kamera Anda"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "Disimpan ke daftar feed Anda"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "Simpan setiap perubahan pada profil Anda"
@@ -6270,8 +6812,8 @@ msgstr "Menyimpan pengaturan pemangkasan gambar"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "Katakan halo!"
@@ -6280,45 +6822,42 @@ msgstr "Katakan halo!"
msgid "Science"
msgstr "Sains"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "Gulir ke atas"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Cari"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Cari postingan @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "Cari berdasarkan nama atau minat"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "Cari feed"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "Cari \"{interestsDisplayName}\"{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Cari \"{query}\""
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "Cari \"{searchText}\""
@@ -6326,29 +6865,33 @@ msgstr "Cari \"{searchText}\""
msgid "Search for feeds that you want to suggest to others."
msgstr "Cari feed yang ingin Anda sarankan kepada orang lain."
-#: src/view/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr "Cari lebih banyak akun"
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr "Cari lebih banyak umpan"
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
msgstr "Cari postingan, pengguna, atau feed"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Cari pengguna"
-
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "Cari GIF"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr "Cari postingan saya"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr "Cari postingan"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Cari profil"
@@ -6356,16 +6899,20 @@ msgstr "Cari profil"
msgid "Search Tenor"
msgstr "Cari di Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr "Cari..."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr "Mencari profil"
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr "Tahap keamanan diperlukan"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Langkah Keamanan Diperlukan"
@@ -6385,7 +6932,7 @@ msgstr "Lihat postingan #{tag}"
msgid "See #{tag} posts by user"
msgstr "Lihat postingan #{tag} dari pengguna"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Lihat lowongan pekerjaan di Bluesky"
@@ -6405,6 +6952,10 @@ msgstr "Pilih warna"
msgid "Select account"
msgstr "Pilih akun"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr "Pilih bahasa aplikasi"
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Pilih avatar"
@@ -6413,10 +6964,22 @@ msgstr "Pilih avatar"
msgid "Select an emoji"
msgstr "Pilih emoji"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr "Pilih suatu opsi"
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr "Pilih bahasa aplikasi"
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Pilih bahasa konten"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr "Pilih durasi"
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Pilih dari akun yang sudah ada"
@@ -6433,15 +6996,15 @@ msgstr "Pilih GIF \"{0}\""
msgid "Select how long to mute this word for."
msgstr "Pilih berapa lama kata ini akan dibisukan."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Pilih bahasa..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Pilih bahasa"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr "Pilih layanan moderasi"
@@ -6449,6 +7012,10 @@ msgstr "Pilih layanan moderasi"
msgid "Select moderator"
msgstr "Pilih moderator"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr "Pilih bahasa utama"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "Pilih emoji {emojiName} sebagai avatar Anda"
msgid "Select the moderation service(s) to report to"
msgstr "Pilih layanan moderasi untuk melaporkan"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Pilih video"
@@ -6470,23 +7037,24 @@ msgstr "Pilih video"
msgid "Select what content this mute word should apply to."
msgstr "Pilih di konten mana saja kata ini akan dibisukan."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr "Pilih bahasa apa yang digunakan untuk antarmuka pengguna."
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
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."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Pilih tanggal lahir Anda"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "Pilih minat Anda dari opsi di bawah ini"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "Pilih bahasa yang disukai untuk terjemahan dalam feed Anda."
@@ -6498,19 +7066,17 @@ msgstr "Memilih opsi {0} dari {numItems}"
msgid "Send a neat website!"
msgstr "Kirimkan situs web yang bagus!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr "Kirim Konfirmasi"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
+msgstr "Kirim konfirmasi"
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Kirim email konfirmasi"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Kirim Email Konfirmasi"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Kirim email"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Kirim Email"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Kirim masukan"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Kirim pesan"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr "Kirim postingan ke {name}"
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Kirim postingan ke..."
@@ -6544,17 +7114,20 @@ msgstr "Kirim laporan"
msgid "Send report to {0}"
msgstr "Kirim laporan ke {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr "Kirim laporan ke {title}"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Kirim email verifikasi"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Kirim melalui pesan"
@@ -6570,7 +7143,7 @@ msgstr "Alamat server"
msgid "Set app icon to {0}"
msgstr "Ubah ikon aplikasi ke {0}"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "Atur tanggal lahir"
@@ -6586,10 +7159,10 @@ msgstr "Siapkan akun Anda"
msgid "Sets email for password reset"
msgstr "Atur email untuk pengaturan ulang kata sandi"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Pengaturan"
@@ -6598,7 +7171,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Pengaturan disimpan"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Aktivitas seksual atau ketelanjangan erotis."
@@ -6606,21 +7179,15 @@ msgstr "Aktivitas seksual atau ketelanjangan erotis."
msgid "Sexually Suggestive"
msgstr "Bermuatan Seksual"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Bagikan"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Bagikan"
@@ -6633,15 +7200,19 @@ msgstr "Bagikan cerita seru!"
msgid "Share a fun fact!"
msgstr "Bagikan fakta menarik!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Tetap bagikan"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr "Bagikan DID pemosting"
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "Bagikan tautan"
@@ -6650,32 +7221,46 @@ msgstr "Bagikan tautan"
msgid "Share Link"
msgstr "Bagikan Tautan"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "Dialog berbagi tautan"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr "Bagikan URI postingan at://"
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Bagikan kode QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "Bagikan feed ini"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "Bagikan paket pemula ini"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "Bagikan paket pemula ini dan bantu orang-orang untuk bergabung dengan komunitas Anda di Bluesky."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr "Bagikan lewat..."
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "Bagikan feed favorit Anda!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "Penguji Preferensi Bersama"
@@ -6685,7 +7270,7 @@ msgstr "Membagikan situs web tertaut"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Tampilkan"
@@ -6696,8 +7281,8 @@ msgstr "Tampilkan teks alt"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Tetap tampilkan"
@@ -6718,8 +7303,8 @@ msgstr "Tampilkan opsi penyesuaian"
msgid "Show hidden replies"
msgstr "Tampilkan balasan yang disembunyikan"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "Kurangi postingan serupa"
@@ -6727,14 +7312,14 @@ msgstr "Kurangi postingan serupa"
msgid "Show list anyway"
msgstr "Tetap tampilkan daftar"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Tampilkan Lebih Lanjut"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Perbanyak postingan serupa"
@@ -6752,7 +7337,7 @@ msgstr "Tampilkan kutipan postingan"
msgid "Show replies"
msgstr "Tampilkan balasan"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "Tampilkan balasan"
@@ -6764,8 +7349,8 @@ msgstr "Tampilkan balasan dalam bentuk bersusun"
msgid "Show replies by people you follow before all other replies"
msgstr "Tampilkan balasan dari orang yang Anda ikuti sebelum balasan lainnya"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "Tampilkan balasan untuk semua"
@@ -6787,11 +7372,11 @@ msgstr "Tampilkan peringatan"
msgid "Show warning and filter from feeds"
msgstr "Tampilkan peringatan dan saring dari feed"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr "Menampilkan informasi tentang kapan postingan ini dibuat"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr "Menampilkan akun lain yang dapat Anda alihkan"
@@ -6809,8 +7394,8 @@ msgstr "Menampilkan konten"
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr "Menampilkan konten"
msgid "Sign in"
msgstr "Masuk"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Masuk sebagai {0}"
@@ -6826,16 +7411,16 @@ msgstr "Masuk sebagai {0}"
msgid "Sign in as..."
msgstr "Masuk sebagai..."
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr "Masuk atau buat akun"
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "Masuk atau buat akun Anda untuk bergabung dalam percakapan!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "Masuk atau daftar"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "Masuk ke akun yang tidak tercantum dalam daftar"
@@ -6843,15 +7428,15 @@ msgstr "Masuk ke akun yang tidak tercantum dalam daftar"
msgid "Sign in to Bluesky or create a new account"
msgstr "Masuk ke Bluesky atau buat akun baru"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Keluar"
@@ -6859,8 +7444,8 @@ msgstr "Keluar"
msgid "Sign Out"
msgstr "Keluar"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "Keluar?"
@@ -6874,11 +7459,6 @@ msgstr "Wajib Masuk"
msgid "Signed in as @{0}"
msgstr "Masuk sebagai @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "Mendaftar tanpa paket pemula"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Akun serupa"
@@ -6896,12 +7476,21 @@ msgstr "Lewati tahap ini"
msgid "Smaller"
msgstr "Lebih kecil"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr "Menunda pengingat"
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Pengembang Perangkat Lunak"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr "Beberapa dari verifikasi Anda tidak valid."
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "Beberapa feed lain yang mungkin Anda suka"
@@ -6909,23 +7498,31 @@ msgstr "Beberapa feed lain yang mungkin Anda suka"
msgid "Some people can reply"
msgstr "Beberapa orang dapat membalas"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr "Seseorang menanggapi {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr "Seseorang menanggapi {0} ke {1}"
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Ada sesuatu yang kurang benar dengan data yang Anda laporkan. Silakan hubungi bantuan."
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Ada yang tidak beres"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Ada yang tidak beres, silakan coba lagi"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Ada yang tidak beres, silakan coba lagi."
@@ -6934,16 +7531,16 @@ msgstr "Ada yang tidak beres, silakan coba lagi."
msgid "Something went wrong!"
msgstr "Ada yang tidak beres!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr "Ada yang tidak beres. Silakan coba lagi."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "Ada masalah? Beri tahu kami."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "Maaf! Sesi Anda telah berakhir. Silakan masuk lagi."
@@ -6978,34 +7575,39 @@ msgstr "Spam; menyebut atau membalas secara berlebihan"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Olahraga"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr "Mulai percakapan, dan percakapan akan muncul di sini."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Mulai obrolan baru"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "Mulai tambahkan orang"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "Mulai tambahkan orang!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Mulai obrolan dengan {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Paket Pemula"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "Paket pemula dari {0}"
@@ -7013,38 +7615,39 @@ msgstr "Paket pemula dari {0}"
msgid "Starter pack by <0/>"
msgstr "Paket pemula dari <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "Paket pemula dari Anda"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "Paket pemula tidak valid"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "Paket Pemula"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Paket pemula memudahkan Anda untuk berbagi feed dan akun favorit Anda dengan teman."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Halaman Status"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "Langkah {0} dari {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "Penyimpanan dibersihkan, Anda perlu memulai ulang aplikasi sekarang."
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "Storybook"
@@ -7063,69 +7666,74 @@ msgstr "Ajukan banding"
msgid "Submit Appeal"
msgstr "Ajukan Banding"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr "Kirim laporan"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Berlangganan"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "Berlangganan @{0} untuk menggunakan label berikut:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "Berlangganan Pelabel"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "Berlangganan pelabel ini"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "Berlangganan ke daftar ini"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "Sukses!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr "Berhasil diverifikasi"
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
msgstr "Akun yang disarankan"
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Disarankan untuk Anda"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Sugestif"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60
msgctxt "Name of app icon variant"
msgid "Sunrise"
-msgstr ""
+msgstr "Terbit"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70
msgctxt "Name of app icon variant"
msgid "Sunset"
-msgstr ""
+msgstr "Terbenam"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Dukungan"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Ganti akun"
@@ -7134,11 +7742,11 @@ msgstr "Ganti akun"
msgid "Switch Account"
msgstr "Beralih Akun"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "Ganti akun"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr "Beralih ke {0}"
@@ -7149,9 +7757,9 @@ msgstr "Beralih ke {0}"
msgid "System"
msgstr "Sistem"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Log sistem"
@@ -7159,6 +7767,12 @@ msgstr "Log sistem"
msgid "Tags only"
msgstr "Hanya tagar"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr "Ketuk untuk tutup menu konteks"
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Ketuk untuk menutup"
@@ -7184,7 +7798,7 @@ msgstr "Teknologi"
msgid "Tell a joke!"
msgstr "Ceritakan sebuah lelucon!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "Ceritakan sedikit tentang diri Anda"
@@ -7192,17 +7806,17 @@ msgstr "Ceritakan sedikit tentang diri Anda"
msgid "Tell us a little more"
msgstr "Beritahu kami lebih lanjut"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Ketentuan"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Ketentuan Layanan"
@@ -7230,7 +7844,11 @@ msgstr "Kolom teks"
msgid "Text input field"
msgstr "Area input teks"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr "Terima kasih atas umpan balik Anda! Ini telah dikirim ke operator feed."
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "Terima kasih! Email Anda berhasil diverifikasi."
@@ -7242,7 +7860,7 @@ msgstr "Terima kasih. Laporan Anda telah terkirim."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Terima kasih, Anda telah berhasil memverifikasi alamat email Anda. Anda bisa menutup dialog ini."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "Berisi hal berikut:"
@@ -7250,10 +7868,10 @@ msgstr "Berisi hal berikut:"
msgid "That handle is already taken."
msgstr "Panggilan telah terpakai."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "Tidak dapat menemukan paket pemula."
msgid "That's all, folks!"
msgstr "Sekian!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr "Itu saja!"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "Akun ini dapat berinteraksi kembali dengan Anda setelah blokir dibuka."
@@ -7282,7 +7900,7 @@ msgstr "Aplikasi akan dimulai ulang"
msgid "The author of this thread has hidden this reply."
msgstr "Pembuat utas telah menyembunyikan balasan ini."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "Aplikasi web Bluesky"
@@ -7302,6 +7920,10 @@ msgstr "Feed Discover"
msgid "The Discover feed now knows what you like"
msgstr "Feed Discover kini tahu apa yang Anda sukai"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr "Alamat email yang Anda masukkan sama dengan alamat email Anda saat ini."
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
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."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "Kebijakan Privasi telah dipindahkan ke <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "Video yang dipilih lebih besar dari 50MB."
+msgid "The selected video is larger than 100 MB."
+msgstr "Video yang dipilih lebih besar dari 100 MB."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "Server tampaknya mengalami masalah. Silahkan coba lagi dalam beberapa saat."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
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."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr "Subyek dari menu konteks"
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "Formulir dukungan telah dipindahkan. Jika Anda memerlukan bantuan, silakan <0/> atau kunjungi {HELP_DESK_URL} untuk menghubungi kami."
@@ -7367,15 +7994,15 @@ msgstr "Tidak ada batasan waktu untuk penonaktifan akun, Anda bisa kembali kapan
msgid "There was an issue connecting to Tenor."
msgstr "Ada masalah saat menghubungkan ke Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "Ada masalah saat menghubungi server"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Ada masalah saat menghubungi server, silakan periksa koneksi internet Anda dan coba lagi."
@@ -7388,11 +8015,12 @@ msgstr "Ada masalah saat menghubungi server Anda"
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/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Ada masalah saat mengambil postingan. Ketuk di sini untuk mencoba lagi."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
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."
@@ -7400,12 +8028,12 @@ msgstr "Ada masalah saat mengambil daftar. Ketuk di sini untuk mencoba lagi."
msgid "There was an issue fetching your app passwords"
msgstr "Ada masalah saat mengambil sandi aplikasi Anda"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
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/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "Ada masalah saat mengambil info layanan Anda"
@@ -7418,26 +8046,26 @@ msgstr "Ada masalah saat menghapus feed ini. Silakan periksa koneksi internet An
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Ada masalah saat mengirimkan laporan. Silakan periksa koneksi internet Anda."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "Ada masalah saat memperbarui feed Anda, silakan periksa koneksi internet dan coba lagi."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "Ada masalah! {0}"
@@ -7445,10 +8073,10 @@ msgstr "Ada masalah! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Ada masalah. Periksa koneksi internet Anda dan coba lagi."
@@ -7469,6 +8097,14 @@ msgstr "Pengaturan ini hanya berlaku untuk feed Mengikuti."
msgid "This {screenDescription} has been flagged:"
msgstr "{screenDescription} ini telah ditandai:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr "Akun ini memiliki tanda centang karena telah diverifikasi oleh sumber terpercaya."
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr "Akun ini memiliki satu atau beberapa kali upaya verifikasi, namun saat ini belum terverifikasi."
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "Akun ini mewajibkan pengguna untuk masuk agar bisa melihat profilnya."
@@ -7477,6 +8113,10 @@ msgstr "Akun ini mewajibkan pengguna untuk masuk agar bisa melihat profilnya."
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 "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/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr "Tindakan ini dapat dibatalkan kapan saja."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Banding ini akan dikirim ke <0>{sourceName}0>."
@@ -7510,14 +8150,22 @@ msgstr "Konten ini tidak tersedia karena salah satu pengguna yang terlibat telah
msgid "This content is not viewable without a Bluesky account."
msgstr "Konten ini tidak dapat dilihat tanpa akun Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Percakapan ini dilakukan dengan akun yang telah dihapus atau dinonaktifkan. Tekan untuk opsi lain"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr "Email ini sudah terhubung dengan akun Anda."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "Fitur ini masih dalam versi beta. Anda dapat membaca lebih lanjut tentang ekspor repositori di <0>postingan blog ini0>."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr "Fitur ini tidak tersedia saat menggunakan sandi aplikasi. Silakan masuk dengan sandi utama Anda."
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "Fitur ini tidak tersedia saat menggunakan sandi aplikasi. Silakan masuk dengan sandi utama Anda."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Feed ini kosong! Anda mungkin perlu mengikuti lebih banyak pengguna atau menyesuaikan pengaturan bahasa."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Feed ini kosong."
@@ -7540,7 +8188,7 @@ msgstr "Feed ini kosong."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Feed ini tidak lagi online. Kami akan menampilkan <0>Discover0> sebagai gantinya."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "Panggilan ini sudah digunakan. Silakan coba yang lain."
@@ -7548,9 +8196,10 @@ msgstr "Panggilan ini sudah digunakan. Silakan coba yang lain."
msgid "This information is not shared with other users."
msgstr "Informasi ini tidak akan dibagikan ke pengguna lain."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "Ini penting dilakukan untuk berjaga-jaga jika Anda perlu mengubah email atau mengatur ulang kata sandi."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr "Tautan ini tidak valid"
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "Label ini diterapkan oleh pemosting."
msgid "This label was applied by you."
msgstr "Label ini diterapkan oleh Anda."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "Pelabel ini belum menyatakan label apa yang diterbitkannya, dan mungkin tidak aktif."
@@ -7576,7 +8225,7 @@ msgstr "Daftar yang dibuat oleh <0>{0}0> ini mengandung kemungkinan pelanggara
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr "Daftar ini – dibuat oleh Anda –mengandung kemungkinan pelanggaran pedoman komunitas Bluesky pada nama atau deskripsinya."
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "Daftar ini kosong."
@@ -7584,7 +8233,7 @@ msgstr "Daftar ini kosong."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Layanan moderasi ini tidak tersedia. Lihat detail lebih lanjut di bawah. Jika masalah berlanjut, hubungi kami."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Postingan ini mengklaim dibuat pada <0>{0}0>, tetapi baru terlihat di Bluesky pada <1>{1}1>."
@@ -7592,28 +8241,29 @@ msgstr "Postingan ini mengklaim dibuat pada <0>{0}0>, tetapi baru terlihat di
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr "Postingan ini menggunakan pembatasan interaksi yang tidak dikenali. Anda mungkin perlu memperbarui aplikasi."
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "Postingan ini telah dihapus."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed 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/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Postingan ini akan disembunyikan dari semua feed dan utas. Tindakan ini tidak dapat dibatalkan."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "Pembuat postingan ini telah menonaktifkan kutipan."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Profil ini hanya dapat dilihat oleh pengguna yang masuk. Ini tidak akan terlihat bagi pengguna yang belum masuk."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr "Balasan ini akan disortir ke bagian tersembunyi di bawah utas Anda dan akan membisukan notifikasi balasan selanjutnya - baik untuk Anda maupun orang lain."
@@ -7621,10 +8271,14 @@ msgstr "Balasan ini akan disortir ke bagian tersembunyi di bawah utas Anda dan a
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Layanan ini tidak menyediakan ketentuan layanan atau kebijakan privasi."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "Ini akan membuat catatan domain di:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr "Pengguna ini tidak memiliki nama tampilan, dan oleh karena itu tidak dapat diverifikasi."
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "Pengguna ini tidak memiliki pengikut."
@@ -7662,21 +8316,21 @@ msgstr "Pengguna ini tidak mengikuti siapa pun."
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/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "Ini akan menghapus @{0} dari daftar akses cepat."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "Ini akan menghapus postingan Anda dari kutipan ini untuk semua pengguna, dan menempatkan teks pengganti."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "Opsi utas"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Preferensi utas"
@@ -7684,8 +8338,8 @@ msgstr "Preferensi utas"
msgid "Thread Preferences"
msgstr "Preferensi Utas"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "Bersusun"
@@ -7693,7 +8347,7 @@ msgstr "Bersusun"
msgid "Threaded mode"
msgstr "Mode bersusun"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Preferensi Utas"
@@ -7705,14 +8359,15 @@ msgstr "Waktu tersisa: {0, plural, other {# detik}}"
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "Untuk menonaktifkan metode 2FA melalui email, silakan verifikasi akses Anda ke alamat email tersebut."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr "Untuk menonaktifkan metode email 2FA Anda, silakan verifikasi akses Anda ke <0>{0}0>"
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "Untuk melaporkan percakapan, silakan laporkan salah satu pesannya melalui laman percakapan. Ini akan membantu moderator kami memahami konteks masalah Anda."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Untuk mengunggah video ke Bluesky, Anda harus memverifikasi email Anda terlebih dahulu."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "Kepada siapa Anda ingin mengirimkan laporan ini?"
@@ -7725,7 +8380,7 @@ msgstr "Hari ini"
msgid "Toggle dropdown"
msgstr "Beralih dropdown"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "Beralih untuk mengaktifkan atau menonaktifkan konten dewasa"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr "Mengaktifkan atau menonaktifkan suara"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Teratas"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "Topik"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Terjemahkan"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "Trending"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "Tren Video"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr "Percaya muncul dari hubungan, komunitas, dan konteks bersama, oleh karena itu kami juga aktifkan <0>verifikator terpecaya0>: organisasi yang bisa langsung terbitkan verifikasi."
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "TV"
msgid "Two-factor authentication (2FA)"
msgstr "Autentikasi Dua Faktor (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Masukkan panggilan Anda"
@@ -7783,18 +8440,11 @@ msgstr "Masukkan panggilan Anda"
msgid "Type your message here"
msgstr "Ketik pesan Anda di sini"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Tipe:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Buka blokir daftar"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Bunyikan daftar"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "Tidak dapat tersambung. Silakan periksa koneksi internet Anda dan coba lagi."
@@ -7809,7 +8459,7 @@ msgstr "Tidak dapat tersambung. Silakan periksa koneksi internet Anda dan coba l
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:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "Tidak dapat menghapus"
@@ -7817,36 +8467,41 @@ msgstr "Tidak dapat menghapus"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Buka blokir"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Buka blokir"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Buka blokir akun"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "Buka Blokir Akun?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr "Buka blokir daftar"
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Batalkan posting ulang"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Batal posting ulang ({0, plural, other {# postingan ulang}})"
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Berhenti ikuti"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "Berhenti ikuti {0}"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "Berhenti ikuti akun"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr "Berhenti mengikuti pengguna"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Sayangnya, tidak ada dari labeler yang Anda langgani mendukung tipe laporan ini."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr "Verifikator tidak diketahui"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "Batal suka"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Batal suka ({0, plural, other {# suka}})"
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr "Bunyikan"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Bunyikan"
@@ -7895,10 +8555,10 @@ msgstr "Bunyikan"
msgid "Unmute {tag}"
msgstr "Bunyikan {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "Bunyikan akun"
@@ -7906,8 +8566,12 @@ msgstr "Bunyikan akun"
msgid "Unmute conversation"
msgstr "Bunyikan percakapan"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr "Bunyikan daftar"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Bunyikan utas"
@@ -7915,38 +8579,47 @@ msgstr "Bunyikan utas"
msgid "Unmute video"
msgstr "Bunyikan video"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Lepas sematan"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "Lepaskan feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr "Lepaskan Feed"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Lepaskan sematan dari beranda"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "Lepas sematan dari profil"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Lepas sematan daftar moderasi"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "{0} dilepaskan dari Beranda"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Dilepaskan dari daftar feed Anda"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr "Batalkan penundaan pengingat email"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Berhenti langganan"
@@ -7955,7 +8628,7 @@ msgstr "Berhenti langganan"
msgid "Unsubscribe from list"
msgstr "Berhenti langganan daftar ini"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Berhenti langganan pelabel ini"
@@ -7963,11 +8636,11 @@ msgstr "Berhenti langganan pelabel ini"
msgid "Unsubscribed from list"
msgstr "Telah berhenti berlangganan dari daftar"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "Tipe video tidak didukung"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "Tipe video tidak didukung: {0}"
@@ -7987,49 +8660,60 @@ msgstr "Perbarui"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Perbarui <0>{displayName}0> dalam Daftar"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr "Perbarui email"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Perbarui ke {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
+msgstr "Perbarui email Anda"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
msgctxt "toast"
msgid "Updating quote attachment failed"
-msgstr ""
+msgstr "Gagal memperbarui lampiran kutipan"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "Gagal memperbarui visibilitas balasan"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "Memperbarui..."
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "Unggah foto saja"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Unggah berkas teks ke:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Unggah dari Kamera"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Unggah dari Berkas"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Unggah dari Pustaka"
@@ -8042,7 +8726,7 @@ msgstr "Mengunggah gambar..."
msgid "Uploading link thumbnail..."
msgstr "Mengunggah keluku tautan..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "Mengunggah video..."
@@ -8050,22 +8734,22 @@ msgstr "Mengunggah video..."
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Gunakan kata sandi aplikasi untuk masuk ke klien Bluesky lain tanpa memberikan akses penuh ke akun atau kata sandi Anda."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Gunakan penyedia panggilan bawaan"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Gunakan peramban dalam aplikasi"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Gunakan peramban dalam aplikasi untuk membuka tautan"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Gunakan peramban baku saya"
@@ -8084,7 +8768,7 @@ msgstr "Digunakan oleh:"
#: src/components/dms/ReportDialog.tsx:324
msgctxt "toast"
msgid "User blocked"
-msgstr ""
+msgstr "Pengguna diblokir"
#: src/components/moderation/ModerationDetailsDialog.tsx:71
#: src/lib/moderation/useModerationCauseDescription.ts:63
@@ -8119,15 +8803,15 @@ msgstr "Daftar pengguna {0}"
msgid "User list by you"
msgstr "Daftar pengguna Anda"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "Daftar pengguna dibuat"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "Daftar pengguna diperbarui"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8150,58 +8834,88 @@ msgstr "Pengguna yang saya ikuti"
msgid "Users in \"{0}\""
msgstr "Pengguna di \"{0}\""
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "Pengguna yang telah menyukai konten atau profil"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr "Pengguna yang saya ikuti"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Nilai:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "Diperlukan email yang terverifikasi"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr "Verifikasi gagal, silakan coba lagi."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr "Pengaturan verifikasi"
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr "Pengaturan Verifikasi"
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr "Verifikasi di Bluesky bekerja secara berbeda dibanding platform lain. <0>Pelajari selengkapnya di sini. (dalam Bahasa Inggris)0>"
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr "Diverifikasi oleh:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr "Verifikasi akun"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr "Verifikasi kode"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Verifikasi DNS"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr "Verifikasi email"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr "Verifikasi kode email"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Dialog verifikasi email"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Verifikasi Email Baru"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Verifikasi sekarang"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Verifikasi Berkas"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr "Verifikasi akun ini?"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Verifikasi email Anda"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Verifikasi Email Anda"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Versi {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "Video"
msgid "Video failed to process"
msgstr "Video gagal diproses"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr "Feed Video"
@@ -8224,14 +8938,15 @@ msgstr "Video dari {0}: {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Permainan Video"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr "Video telah dijeda"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr "Video sedang diputar"
@@ -8239,11 +8954,11 @@ msgstr "Video sedang diputar"
msgid "Video not found."
msgstr "Video tidak ditemukan."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Pengaturan video"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Video diunggah"
@@ -8251,31 +8966,32 @@ msgstr "Video diunggah"
msgid "Video: {0}"
msgstr "Video: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "Video"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
-msgstr ""
+msgstr "Durasi video harus kurang dari 3 menit"
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "Lihat avatar {0}"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "Lihat profil {0}"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "Lihat profil {displayName}"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "Lihat profil pengguna yang diblokir"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "Lihat entri debug"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Lihat detail"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "Lihat detail untuk melaporkan pelanggaran hak cipta"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Lihat utas lengkap"
@@ -8308,18 +9024,17 @@ msgstr "Lihat informasi tentang label ini"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "Lihat lainnya"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Lihat profil"
@@ -8331,7 +9046,11 @@ msgstr "Lihat avatar"
msgid "View the labeling service provided by @{0}"
msgstr "Lihat layanan pelabelan yang disediakan oleh @{0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr "Lihat verifikasi pengguna ini"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "Lihat pengguna yang menyukai feed ini"
@@ -8339,11 +9058,11 @@ msgstr "Lihat pengguna yang menyukai feed ini"
msgid "View video"
msgstr "Lihat video"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Lihat daftar akun yang Anda blokir"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr "Lihat standar pengaturan interaksi untuk unggahan Anda"
@@ -8352,14 +9071,18 @@ msgstr "Lihat standar pengaturan interaksi untuk unggahan Anda"
msgid "View your feeds and explore more"
msgstr "Lihat daftar feed Anda dan jelajahi lebih lanjut"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Lihat daftar moderasi Anda"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "Lihat daftar akun yang Anda bisukan"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr "Lihat verifikasi Anda"
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "Peringatkan konten"
msgid "Warn content and filter from feeds"
msgstr "Peringatkan konten dan saring dari feed"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr "Tonton sekarang"
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "Kami tidak menemukan hasil apa pun untuk tagar tersebut."
@@ -8400,7 +9128,7 @@ msgstr "Kami tidak menemukan hasil apa pun untuk tagar tersebut."
msgid "We couldn't find any results for that topic."
msgstr "Kami tidak menemukan hasil apa pun untuk topik tersebut."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "Kami tidak dapat memuat percakapan ini"
@@ -8420,6 +9148,14 @@ msgstr "Semoga Anda senang dan betah di sini. Ingat, Bluesky itu:"
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/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr "Kami sarankan memilih setidaknya dua minat."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Kami telah mengirimkan email ke <0>{0}0> yang berisi tautan. Silakan klik tautan tersebut untuk menyelesaikan proses verifikasi email."
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Kami tidak dapat memastikan apakah Anda diizinkan untuk mengunggah video. Silakan coba lagi."
@@ -8428,7 +9164,7 @@ msgstr "Kami tidak dapat memastikan apakah Anda diizinkan untuk mengunggah video
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:428
msgid "We were unable to load your configured labelers at this time."
msgstr "Kami tidak dapat memuat pelabel yang Anda konfigurasikan saat ini."
@@ -8440,20 +9176,28 @@ 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/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Kami akan mengirimkan email ke <0>{0}0> yang berisi tautan. Silakan klik tautan tersebut untuk menyelesaikan proses verifikasi email."
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "Kami akan menggunakan ini untuk menyesuaikan pengalaman Anda."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "Kami mengalami masalah jaringan, coba lagi"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr "Kami memperkenalkan lapisan verifikasi baru di Bluesky — tanda centang yang mudah dilihat."
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "Kami sangat senang Anda bergabung dengan kami!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Maaf, kami tidak dapat memuat daftar ini. Jika masalah berlanjut, silakan hubungi pembuat daftar, @{handleOrDid}."
@@ -8461,11 +9205,11 @@ msgstr "Maaf, kami tidak dapat memuat daftar ini. Jika masalah berlanjut, silaka
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."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
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:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Kami mohon maaf! Postingan yang Anda balas telah dihapus."
@@ -8474,7 +9218,7 @@ msgstr "Kami mohon maaf! Postingan yang Anda balas telah dihapus."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Maaf! Kami tidak dapat menemukan halaman yang Anda cari."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Maaf! Anda hanya dapat berlangganan dua puluh pelabel, dan Anda telah mencapai batas tersebut."
@@ -8494,16 +9238,16 @@ msgstr "Apa saja minat Anda?"
msgid "What do you want to call your starter pack?"
msgstr "Apa nama paket pemula Anda?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "Apa yang sedang dibicarakan orang."
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "Apa kabar?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr "Saat Anda ketuk pada tanda centang, Anda akan melihat organisasi mana yang telah memberikan verifikasi."
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "Bahasa apa yang digunakan di postingan ini?"
@@ -8520,14 +9264,18 @@ msgstr "Siapa yang dapat berinteraksi dengan postingan ini?"
msgid "Who can reply"
msgstr "Siapa yang dapat membalas"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr "Siapa yang dapat memverifikasi?"
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "Waduh!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr "Waduh! Tren video gagal dimuat."
@@ -8574,11 +9322,11 @@ msgstr "Mengapa pengguna ini perlu ditinjau?"
msgid "Write a message"
msgstr "Tulis pesan"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Tulis postingan"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Tulis balasan Anda"
@@ -8588,11 +9336,16 @@ msgstr "Tulis balasan Anda"
msgid "Writers"
msgstr "Penulis"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "DID yang dikembalikan dari server salah: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr "www.mylivestream.tv"
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Ya"
@@ -8601,15 +9354,15 @@ msgstr "Ya"
msgid "Yes, deactivate"
msgstr "Ya, nonaktifkan"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Ya, hapus paket pemula ini"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Ya, lepaskan"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Ya, sembunyikan"
@@ -8625,14 +9378,31 @@ msgstr "Kemarin"
msgid "You"
msgstr "Anda"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr "Anda adalah verifikator terpercaya"
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
-msgstr ""
+msgstr "Anda akan membuat akun pada"
#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
msgstr "Anda sedang dalam antrian."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr "Anda sedang siaran langsung"
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr "Anda tidak lagi bersiaran langsung"
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr "Anda tidak diizinkan untuk siaran langsung"
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "Anda tidak diizinkan untuk mengunggah video."
@@ -8641,6 +9411,27 @@ msgstr "Anda tidak diizinkan untuk mengunggah video."
msgid "You are not following anyone."
msgstr "Anda tidak mengikuti siapa pun."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr "Anda sekarang bersiaran langsung!"
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr "Anda telah diverifikasi"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr "Anda telah diverfikasi. Status verifikasi Anda akan hilang jika Anda mengganti nama tampilan Anda. <0>Pelajari selengkapnya. (dalam bahasa Inggris)0>"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr "Anda telah diverfikasi. Status verifikasi Anda akan hilang jika Anda mengganti nama panggilan Anda. <0>Pelajari selengkapnya.0>"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr "Anda dapat menyesuaikan minat Anda kapan saja melalui pengaturan \"Konten dan Media\"."
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr "Anda dapat mengatur standar pengaturan interaksi di <0>Pengaturan → Mo
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "Anda bisa mengubahnya nanti melalui pengaturan."
@@ -8682,7 +9472,7 @@ msgstr "Anda tidak memiliki pengikut."
msgid "You don't follow any users who follow @{name}."
msgstr "Anda tidak mengikuti satu pun pengguna yang mengikuti @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr "Anda belum memiliki permintaan obrolan saat ini."
@@ -8736,24 +9526,24 @@ msgstr "Anda telah membisukan akun ini."
msgid "You have muted this user"
msgstr "Anda telah membisukan pengguna ini"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "Anda belum memiliki percakapan. Mulai sekarang!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "Anda tidak memiliki feed."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "Anda tidak memiliki daftar."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Anda belum memblokir akun apa pun. Untuk memblokir akun, buka profil mereka dan pilih \"Blokir akun\" dari menu di akunnya."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Anda belum membisukan akun apa pun. Untuk membisukan akun, buka profil mereka dan pilih \"Bisukan akun\" dari menu di akunnya."
@@ -8761,11 +9551,15 @@ msgstr "Anda belum membisukan akun apa pun. Untuk membisukan akun, buka profil m
msgid "You have reached the end"
msgstr "Anda telah mencapai akhir"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr "Anda telah berhasil memverifikasi alamat email Anda. Anda dapat menutup dialog ini."
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Anda telah mencapai batas sementara unggahan video. Silakan coba lagi nanti."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "Anda belum membuat paket pemula!"
@@ -8787,22 +9581,22 @@ 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:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "Anda hanya boleh menambahkan maksimal {STARTER_PACK_MAX_SIZE} profil"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr "Anda hanya dapat menambahkan hingga {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profil}}"
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Anda hanya boleh menambahkan maksimal 3 feed"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "Anda hanya boleh memilih maksimal 4 gambar"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "Anda harus berusia 13 tahun atau lebih untuk mendaftar."
+msgid "You must be 13 years of age or older to create an account."
+msgstr "Anda harus berusia 13 tahun atau lebih untuk membuat akun."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Anda harus mengikuti setidaknya tujuh orang sebelum membuat paket pemula."
@@ -8810,28 +9604,40 @@ msgstr "Anda harus mengikuti setidaknya tujuh orang sebelum membuat paket pemula
msgid "You must grant access to your photo library to save a QR code"
msgstr "Anda harus memberikan akses ke pustaka foto Anda untuk menyimpan kode QR"
-#: src/components/StarterPack/ShareDialog.tsx:68
-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:211
msgid "You must select at least one labeler for a report"
msgstr "Anda harus memilih setidaknya satu pelabel untuk sebuah laporan"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr "Anda perlu memverifikasi email Anda sebelum Anda mengaktifkan email 2FA."
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "Anda telah menonaktifkan @{0} sebelumnya."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr "Anda mungkin ingin memuat ulang aplikasi sekarang."
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr "Anda menanggapi {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr "Anda menanggapi {0} pada {1}"
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "Anda akan keluar dari semua akun."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
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/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Anda sekarang akan menerima notifikasi untuk utas ini"
@@ -8839,23 +9645,23 @@ msgstr "Anda sekarang akan menerima notifikasi untuk utas ini"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Anda akan menerima email berisikan \"kode reset\". Masukkan kode tersebut di sini, lalu masukkan kata sandi baru."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "Anda: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Anda: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "Anda: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
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:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "Anda akan mengikuti pengguna yang disarankan setelah selesai membuat akun!"
@@ -8867,7 +9673,7 @@ msgstr "Anda akan mengikuti pengguna ini dan {0} lainnya"
msgid "You'll follow these people right away"
msgstr "Anda akan otomatis mengikuti para pengguna ini"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "Anda akan menerima email di <0>{0}0> untuk memverifikasi bahwa ini benar Anda."
@@ -8901,6 +9707,10 @@ msgstr "Anda telah menemukan orang-orang untuk diikuti"
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/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr "Anda telah mencapai jumlah maksimum permintaan yang diizinkan. Silakan coba lagi."
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak bita)"
@@ -8909,11 +9719,11 @@ msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak bita)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak video)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Anda kehabisan video untuk ditonton. Mungkin sudah saatnya untuk beristirahat?"
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "Akun Anda"
@@ -8941,7 +9751,7 @@ msgstr "Akun Anda dinyatakan telah melanggar <0>Ketentuan Layanan Bluesky Social
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr "Banding Anda telah diajukan. Jika banding Anda berhasil, Anda akan menerima email."
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "Tanggal lahir Anda"
@@ -8953,26 +9763,30 @@ msgstr "Peramban Anda tidak mendukung format video. Silakan coba peramban lain."
msgid "Your chats have been disabled"
msgstr "Obrolan Anda telah dinonaktifkan"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "Pilihan Anda akan disimpan, tetapi dapat diubah nanti di pengaturan."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr "Pilihan Anda akan diingat untuk tautan selanjutnya. Anda dapat mengubahnya kapan saja di pengaturan."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "Nama panggilan Anda <0>{0}0> akan otomatis dicadangkan untuk Anda. Anda bisa kembali menggantinya kapan saja dari akun ini."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr "Alamat email Anda sudah diperbarui tapi belum diverifikasi. Langkah selanjutnya, silakan verifikasi surel baru Anda."
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Email Anda tidak valid."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "Alamat email Anda telah diperbarui namun belum diverifikasi. Silakan verifikasi alamat email baru Anda."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr "Email Anda masih belum terverifikasi. Silakan verifikasi email Anda untuk dapat menikmati semua fitur dari Bluesky."
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
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."
@@ -8988,14 +9802,31 @@ msgstr "Pengikut Anda"
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/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "Panggilan lengkap Anda akan menjadi <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr "Nama pengguna lengkap Anda akan menjadi <0> {0} 0>"
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr "Minat Anda"
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr "Minat Anda telah diperbarui!"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr "Minat Anda membantu kami mencari apa yang Anda sukai!"
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Kata yang Anda bisukan"
@@ -9004,15 +9835,15 @@ msgstr "Kata yang Anda bisukan"
msgid "Your password has been changed successfully!"
msgstr "Kata sandi Anda telah berhasil diubah!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr "Kata sandi Anda harus terdiri dari setidaknya 8 karakter."
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "Postingan Anda telah dipublikasikan"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "Postingan Anda telah dipublikasikan"
@@ -9024,14 +9855,22 @@ msgstr "Postingan, suka, dan pemblokiran Anda bersifat publik. Sedangkan pembisu
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:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "Balasan Anda telah dipublikasikan"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr "Laporan anda akan dikirimkan ke <0>{0}0>."
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Laporan Anda akan dikirim ke Layanan Moderasi Bluesky"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr "Minat yang anda pilih membantu kami menyajikan konten yang Anda inginkan."
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr "Verifikasi Anda"
diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po
index ba98bc07fb..9e62e9916d 100644
--- a/src/locale/locales/it/messages.po
+++ b/src/locale/locales/it/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: it\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 16:40\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(attivo)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(contiene allegati)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(nessuna email)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {# ripubblicazione} other {# ripubblicazioni}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# secondo} other {# secondi}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# elemento non letto} other {# elementi non letti}}"
@@ -90,17 +90,17 @@ msgstr "{0, plural, one {# elemento non letto} other {# elementi non letti}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# mese} other {# mesi}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {follower} other {follower}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {seguito} other {seguiti}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {mi piace} other {mi piace}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {mi piace} other {mi piace}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {post} other {post}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citazione} other {citazioni}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {repost} other {repost}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, other {{1} post}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "{0, plural, other {# persone hanno}} usato questo starter pack!"
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0>in <1>tag1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>in <1>testo e tag1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr "{0} è in diretta"
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr "{0} non è un URL valido"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} aggiunti questa settimana"
@@ -137,13 +154,18 @@ msgstr "{0} di {1}"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
-msgstr ""
+msgstr "{0} di 50"
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0} persone hanno usato questo starter pack!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "{0} ha reagito con {1}"
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "{0} ha reagito con {1} a {2}"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "Foto profilo di {0}"
@@ -175,7 +197,7 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}s"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# elemento non letto} other {# elementi non letti}}"
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, one {ora} other {ore}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {minuto} other {minuti}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}}0> ti hanno seguito"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "A {firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}}0> è piaciuto il tuo feed personalizzato"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "A {firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}}0> è piaciuto il tuo post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr "A {firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}}0> è piaciuto il tuo repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}}0> hanno rimosso le loro verifiche dal tuo account"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}}0> hanno ripubblicato il tuo post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}}0> hanno ripubblicato il tuo repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}}0> si sono iscritti al tuo starter pack"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}}0> ti hanno verificato"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} ha iniziato a seguirti"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} ha iniziato a seguirti a sua volta"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "A {firstAuthorLink} è piaciuto il tuo feed personalizzato"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "A {firstAuthorLink} è piaciuto il tuo post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr "A {firstAuthorLink} è piaciuto il tuo repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr "{firstAuthorLink} ha rimosso la propria verifica dal tuo account"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} ha ripubblicato il tuo post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr "{firstAuthorLink} ha ripubblicato il tuo repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} si è iscritto con il tuo starter pack"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr "{firstAuthorLink} ti ha verificato"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno iniziato a seguirti"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "A {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} è piaciuto il tuo feed personalizzato"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "A {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} è piaciuto il tuo post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr "A {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} è piaciuto il tuo repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno rimosso le loro verifiche dal tuo account"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno ripubblicato il tuo post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno ripubblicato il tuo repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} si sono iscritti al tuo starter pack"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} ti hanno verificato"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} ha iniziato a seguirti"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} ha iniziato a seguirti a sua volta"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "A {firstAuthorName} è piaciuto il tuo feed personalizzato"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "A {firstAuthorName} è piaciuto il tuo post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr "A {firstAuthorName} è piaciuto il tuo repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr "{firstAuthorName} ha rimosso la propria verifica dal tuo account"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} ha ripubblicato il tuo post"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr "{firstAuthorName} ha ripubblicato il tuo repost"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} si è iscritto al tuo starter pack"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr "{firstAuthorName} ti ha verificato"
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} seguiti"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "{handle} non può ricevere messaggi"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr "{hours, plural, one {# ora {minutesString}} other {# ore {minutesString}}}"
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr "{hours, plural, one {# ora} other {# ore}}"
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "{joinedAllTimeCount, plural, other {# utenti si sono uniti}}!"
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr "{minutes, plural, one {# minuto} other {# minuti}}"
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# elemento non letto} other {# elementi non letti}}"
@@ -301,6 +404,34 @@ msgstr "{profileName} si è iscritto a Bluesky {0} fa"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} si è iscritto a Bluesky usando uno starter pack {0} fa"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "{type}h fa"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr "{userName} è un certificatore attendibile"
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr "{userName} è verificato"
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr "Verifiche di {userName}"
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "+{computedTotal}"
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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>e {2, plural, one {# altro} other {# altri}} sono inclusi nel tuo starter pack"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
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:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {seguito} other {seguiti}}"
@@ -343,7 +474,7 @@ msgstr "<0>Sperimentale:0> Attivando questa opzione riceverai solo le notifich
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>Tu0> e<1> 1><2>{0} 2>sono inclusi nel tuo starter pack"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Nome utente non valido"
@@ -363,19 +494,28 @@ msgstr "30 giorni"
msgid "7 days"
msgstr "7 giorni"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "un messaggio"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr "Una nuova forma di verifica"
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Risorse aggiuntive"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr "Accetta"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr "Accetta richiesta"
@@ -385,37 +525,37 @@ msgid "Accept Request"
msgstr "Accetta richiesta"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "Accessibilità"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "Impostazioni di accessibilità"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "Account"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
msgstr "Account bloccato"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
msgstr "Account seguito"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
msgstr "Account silenziato"
@@ -429,33 +569,37 @@ msgstr "Account silenziato"
msgid "Account Muted by List"
msgstr "Account silenziato dalla lista"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "Opzioni dell'account"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
-msgstr "Account rimosso dall'accesso immediato"
+msgstr "Account rimosso dall'accesso rapido"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
msgstr "Account sbloccato"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
msgstr "Non segui più questo account"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
msgstr "Account riattivato"
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+msgstr "Gli account con una spunta blu dentellata <0><1/>0> possono verificare l'identità di altri account. I certificatori attendibili sono selezionati da Bluesky."
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "Aggiungi"
@@ -473,10 +617,14 @@ msgstr "Aggiungi {displayName} allo starter pack"
msgid "Add a content warning"
msgstr "Aggiungi un avviso sul contenuto"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr "Imposta temporaneamente il tuo stato come in diretta. Quando qualcuno fa clic sul tuo avatar, vedrà le informazioni sul tuo evento in diretta."
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
-msgstr "Aggiungi un utente a questo elenco"
+msgstr "Aggiungi un utente a questa lista"
#: src/components/dialogs/SwitchAccount.tsx:55
#: src/screens/Deactivated.tsx:192
@@ -485,7 +633,7 @@ msgstr "Aggiungi account"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "Aggiungi account"
msgid "Add alt text"
msgstr "Aggiungi testo alternativo"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "Aggiungi testo alternativo (opzionale)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "Aggiungi un altro account"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "Aggiungi un altro post"
@@ -518,8 +666,12 @@ msgstr "Aggiungi password per app"
msgid "Add App Password"
msgstr "Aggiungi password per app"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr "Aggiungi reazione con emoji"
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr "Aggiungi ulteriori dettagli (facoltativo)"
@@ -531,15 +683,23 @@ msgstr "Aggiungi parola silenziata con le impostazioni indicate"
msgid "Add muted words and tags"
msgstr "Aggiungi parole e tag silenziati"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "Aggiungi nuovo post"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "Aggiungi persone"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr "Aggiungi persone alla lista"
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr "Aggiungi reazione"
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Aggiungi feed consigliati"
@@ -552,27 +712,28 @@ msgstr "Aggiungi dei feed al tuo starter pack!"
msgid "Add the default feed of only people you follow"
msgstr "Aggiungi il feed predefinito delle sole persone che segui"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "Aggiungi il seguente record DNS al tuo dominio:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "Aggiungi feed"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "Aggiungi a liste"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "Aggiungi alle liste"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "Aggiungi ai miei feed"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr "Aggiungi utente alla lista"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "Aggiunto alla lista"
@@ -581,22 +742,22 @@ msgstr "Aggiunto alla lista"
msgid "Added to my feeds"
msgstr "Aggiunto ai miei feed"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr "Ulteriori dettagli (massimo 300 caratteri)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "Esplicito"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "Contenuto per adulti"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "I contenuti per adulti possono essere abilitati solo dal sito Web a <0>bsky.app0>."
@@ -604,30 +765,35 @@ msgstr "I contenuti per adulti possono essere abilitati solo dal sito Web a <0>b
msgid "Adult content is disabled."
msgstr "Il contenuto per adulti è disattivato."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "Etichette per contenuti per adulti"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
-msgstr "Avanzato"
+msgstr "Avanzate"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr "alice@example.com"
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "Tutte"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "Tutti gli account sono stati seguiti!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "Tutte le lingue"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "Tutti i feed che hai salvato, in un unico posto."
@@ -651,7 +817,7 @@ msgstr "Consenti risposte da:"
#: src/screens/Settings/AppPasswords.tsx:200
msgid "Allows access to direct messages"
-msgstr "Consenti l'accesso ai tuoi messaggi"
+msgstr "Consente l'accesso ai tuoi messaggi"
#: src/screens/Login/ForgotPasswordForm.tsx:171
#: src/view/com/modals/ChangePassword.tsx:182
@@ -660,7 +826,7 @@ msgstr "Hai già un codice?"
#: src/screens/Login/ChooseAccountForm.tsx:43
msgid "Already signed in as @{0}"
-msgstr "Hai già effettuato l'accesso come @{0}"
+msgstr "Hai effettuato l'accesso come @{0}"
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:187
@@ -671,10 +837,10 @@ msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "Testo alternativo"
@@ -688,19 +854,18 @@ msgstr "Il testo alternativo descrive le immagini per gli utenti non vedenti ed
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "Il testo alternativo verrà troncato. Limite: {0} caratteri."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr "Il testo alternaivo verrà troncato. {MAX_ALT_TEXT, plural, other {Limite: {0} caratteri.}}"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "È stata inviata un'email a {0}. Include un codice di conferma che puoi inserire di seguito."
-#: src/view/com/modals/ChangeEmail.tsx:114
-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/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr "Abbiamo inviato un'email al tuo indirizzo precedente, {currentEmail}. Include un codice di conferma che puoi inserire qui sotto."
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "Un email è stata inviata! Inserisci qui sotto il codice di conferma presente nell'email."
@@ -716,7 +881,11 @@ msgstr "Si è verificato un errore"
msgid "An error occurred while compressing the video."
msgstr "Si è verificato un errore durante la compressione del video."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr "Si è verificato un errore recuperando il feed."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Si è verificato un errore nel creare il tuo starter pack. Vuoi riprovare?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "Si è verificato un errore durante il caricamento del video. Riprova."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "Si è verificato un errore nel salvare il codice QR!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "Si è verificato un errore durante la selezione del video"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "Si è verificato un errore nel seguire tutti"
@@ -746,12 +914,17 @@ msgstr "Si è verificato un errore nel seguire tutti"
msgid "An error occurred while uploading the video."
msgstr "Si è verificato un errore nel caricare il video."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr "Un'illustrazione che mostra che Bluesky seleziona certificatori attendibili e questi a loro volta verificano gli account dei singoli utenti."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Un problema non incluso in queste opzioni"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "Si è verificato un problema nel creare la chat"
@@ -761,13 +934,17 @@ msgstr "Si è verificato un problema nell'aprire la chat"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Si è verificato un problema, riprova."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr "Un'immagine di un iPhone che mostra l'app Bluesky aperta sul profilo di un utente verificato, con un segno di spunta blu accanto al suo nome."
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "si è verificato un errore sconosciuto"
@@ -790,6 +967,10 @@ msgstr "Animali"
msgid "Animated GIF"
msgstr "GIF animata"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr "Annuncio delle verifiche in Bluesky"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "Comportamento antisociale"
msgid "Anybody can interact"
msgstr "Tutti possono interagire"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "Icona app"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "Lingua dell'app"
@@ -836,7 +1017,7 @@ msgstr "I nomi delle password per app devono essere lunghi almeno 4 caratteri"
msgid "App passwords"
msgstr "Password per app"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Password per app"
@@ -872,10 +1053,10 @@ msgstr "Revisione sospensione"
msgid "Appeal this decision"
msgstr "Fai ricorso contro questa decisione"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "Aspetto"
@@ -884,12 +1065,12 @@ msgstr "Aspetto"
msgid "Apply default recommended feeds"
msgstr "Applica i feed consigliati predefiniti"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "Archiviato da {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "Post archiviato"
@@ -897,15 +1078,15 @@ msgstr "Post archiviato"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Eliminare la password per app \"{0}\"?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Eliminare questo messaggio? Il messaggio verrà eliminato per te, ma non per gli altri partecipanti."
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "Eliminare questo starter pack?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "Annullare le modifiche?"
@@ -921,15 +1102,15 @@ msgstr "Abbandonare questa conversazione? I messaggi verranno eliminati per te,
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:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Vuoi rimuoverlo dai tuoi feed?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "Scartare questa bozza?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "Scartare questo post?"
@@ -937,7 +1118,7 @@ msgstr "Scartare questo post?"
msgid "Are you sure?"
msgstr "Confermi?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "Stai scrivendo in <0>{suggestedLanguageName}0>?"
@@ -946,11 +1127,16 @@ msgstr "Stai scrivendo in <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Arte"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "Nudità artistica o non erotica."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr "Assegna argomento per l'algoritmo"
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "Almeno 3 caratteri"
@@ -963,12 +1149,12 @@ msgstr "Aurora"
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Le opzioni di riproduzione automatica sono state spostate nelle <0>impostazioni di contenuti e media0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "Riproduci automaticamente video e GIF"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "Riproduci automaticamente video e GIF"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Indietro"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr "Vai ai messaggi"
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "Prima di creare una lista, devi verificare il tuo indirizzo email."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "Prima di creare un post, devi verificare la tua email."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr "Devi verificare il tuo indirizzo email prima di creare un post o rispondere."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Prima di creare uno starter pack, devi verificare la tua email."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "Prima di poter inviare un messaggio a un altro utente, devi verificare la tua email."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr "Devi verificare il tuo indirizzo email prima di poter accettare questa richiesta di chat."
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
+msgstr "Devi verificare il tuo indirizzo email prima di poter inviare un messaggio a un altro utente."
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "Compleanno"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "Blocca"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "Blocca account"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "Bloccare account?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "Blocca gli account"
@@ -1054,7 +1241,7 @@ msgstr "Blocca ed elimina"
msgid "Block and/or delete this conversation"
msgstr "Blocca e/o elimina questa conversazione"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "Lista di account bloccati"
@@ -1062,7 +1249,7 @@ msgstr "Lista di account bloccati"
msgid "Block or report"
msgstr "Blocca o segnala"
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "Vuoi bloccare questi account?"
@@ -1079,21 +1266,21 @@ msgstr "Blocca utente"
msgid "Blocked"
msgstr "Bloccato"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "Account bloccati"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "Account bloccati"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Gli account bloccati non possono rispondere alle tue discussioni, menzionarti o interagire in nessun altro modo con te."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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."
@@ -1101,19 +1288,19 @@ msgstr "Gli account bloccati non possono rispondere alle tue discussioni, menzio
msgid "Blocked post."
msgstr "Post bloccato."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Il blocco non impedisce all'etichettatore di inserire etichette sul tuo account."
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Il blocco è pubblico. Gli account bloccati non possono rispondere alle tue discussioni, menzionarti, o interagire con te in nessun altro modo."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
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:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "Blog"
@@ -1122,7 +1309,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky non può confermare l'autenticità della data dichiarata."
@@ -1148,13 +1335,17 @@ msgstr "Bluesky è meglio con gli amici!"
msgid "Bluesky Social Terms of Service"
msgstr "Termini di servizio di Bluesky"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky sceglierà un set di account consigliati dal tuo network."
#: src/screens/Settings/components/PwiOptOut.tsx:99
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."
+msgstr "Bluesky non mostrerà il tuo profilo e i tuoi post agli utenti che non hanno effettuato l'accesso. Altre applicazioni potrebbero non rispettare questa istruzione. Questo non rende il tuo account privato."
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr "Bluesky verificherà in modo proattivo gli account notevoli e autentici."
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "Sfoca le immagini e filtra dai feed"
msgid "Books"
msgstr "Libri"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "Scopri altri account dalla Ricerca"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "Scopri nuovi feed dalla Ricerca"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "Scopri nuovi suggerimenti"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "Scopri nuovi suggerimenti dalla Ricerca"
@@ -1214,20 +1405,26 @@ msgstr "Sfoglia i post con tag {displayName}"
msgid "Browse starter pack {displayName}"
msgstr "Sfoglia lo starter pack {displayName}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr "Sfoglia l'argomento {0}"
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "Sfoglia l'argomento {displayName}"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "Attività commerciale"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "Di {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Di <0>{0}0>"
@@ -1243,44 +1440,51 @@ msgstr "Iscrivendoti accetti i <0>Termini di servizio0> e l'<1>Informativa sul
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Iscrivendoti accetti i <0>Termini di servizio0>."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr "Da te"
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "Fotocamera"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "Annulla"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "Annulla l'eliminazione dell'account"
msgid "Cancel image crop"
msgstr "Annulla il ritaglio dell'immagine"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "Annulla la modifica del profilo"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "Annnulla la citazione del post"
@@ -1308,8 +1512,7 @@ msgstr "Annnulla la citazione del post"
msgid "Cancel reactivation and sign out"
msgstr "Annulla la riattivazione e disconnettiti"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "Annulla la ricerca"
@@ -1317,24 +1520,23 @@ msgstr "Annulla la ricerca"
msgid "Cancels opening the linked website"
msgstr "Annulla l'apertura del sito collegato"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "Non puoi interagire con un utente bloccato"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "Sottotitoli (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "Sottotitoli e testo alternativo"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Cambia"
@@ -1347,46 +1549,41 @@ msgstr "Cambia icona app"
msgid "Change app icon to \"{0}\""
msgstr "Cambia l'icona dell'app in \"{0}\""
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "Modifica email"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr "Cambia lingua app"
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "Cambia indirizzo email"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "Modifica il nome utente"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr "Modifica servizio di moderazione"
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "Modifica la mia email"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "Modifica la password"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "Cambia la lingua del post in {suggestedLanguageName}"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr "Modifica motivo della segnalazione"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "Modifica la tua email"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "Modifica il tuo indirizzo email"
@@ -1394,20 +1591,20 @@ msgstr "Modifica il tuo indirizzo email"
msgid "Changes app icon"
msgstr "Cambia icona dell'app"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr "Cambia il fornitore di hosting"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "Messaggi"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
msgstr "Conversazione eliminata"
@@ -1417,20 +1614,19 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Conversazione silenziata"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr "Richieste"
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
-msgstr "Richieste"
+msgstr "Richieste di messaggi"
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "Impostazioni chat"
@@ -1443,10 +1639,10 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Conversazione riattivata"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
-msgstr "Conversazioni"
+msgstr "Messaggi"
#: src/screens/SignupQueued.tsx:78
#: src/screens/SignupQueued.tsx:82
@@ -1461,7 +1657,7 @@ msgstr "Controlla la tua casella di posta e inserisci qui il codice di accesso."
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Controlla la tua posta in arrivo, dovrebbe contenere un'email con il codice di conferma da inserire di seguito:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "Scegli il metodo di verifica del dominio"
@@ -1469,7 +1665,7 @@ msgstr "Scegli il metodo di verifica del dominio"
msgid "Choose Feeds"
msgstr "Scegli feed"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "Scegli per me"
@@ -1477,10 +1673,6 @@ msgstr "Scegli per me"
msgid "Choose People"
msgstr "Scegli utenti"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "Scegli le etichette che si adattano meglio ai media che stai pubblicando. Se non ne viene selezionata nessuna, questo post è adatto a tutti i tipi di pubblico."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "Scegli gli algoritmi che compilano i tuoi feed personalizzati."
@@ -1493,27 +1685,31 @@ msgstr "Scegli questo colore per il tuo avatar"
msgid "Choose your account provider"
msgstr "Scegli il fornitore del tuo account"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Personalizza la tua cronologia! I feed creati dalla collettività ti permettono di scoprire i contenuti di tuo interesse."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "Scegli la tua password"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "Scegli il tuo nome utente"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "Cancella tutti i dati in archivio"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "Cancella tutti i dati in archivio (poi ricomincia)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr "Svuota cache immagini"
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "Annulla la ricerca"
@@ -1522,6 +1718,14 @@ msgstr "Annulla la ricerca"
msgid "click here"
msgstr "clicca qui"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr "Fai clic qui per riavviare il processo di verifica."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr "Fai clic qui per aggiornare il tuo indirizzo email"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "Clicca per disattivare le citazioni di questo post."
@@ -1534,7 +1738,7 @@ msgstr "Clicca per attivare le citazioni di questo post."
msgid "Click to open tag menu for {tag}"
msgstr "Clicca per aprire il menu per {tag}"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "Clicca per riprovare l'invio"
@@ -1546,24 +1750,34 @@ msgstr "Clima"
msgid "Clip 🐴 clop 🐴"
msgstr "Clop 🐴 clop 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "Chiudi"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "Chiudi la finestra attiva"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "Chiudi menu a scomparsa inferiore"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "Chiudi la finestra di dialogo"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr "Chiudi il menu a scomparsa"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "Chiudi selettore emoji"
@@ -1600,7 +1816,13 @@ msgstr "Chiudi l'immagine"
msgid "Close image viewer"
msgstr "Chiudi il visualizzatore di immagini"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr "Chiudi menu"
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "Chiudi la finestra"
@@ -1608,8 +1830,12 @@ msgstr "Chiudi la finestra"
msgid "Closes password update alert"
msgstr "Chiude l'avviso di aggiornamento della password"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr "Annulla la creazione del post ed elimina la bozza"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr "Chiude il selettore emoji"
@@ -1617,11 +1843,11 @@ msgstr "Chiude il selettore emoji"
msgid "Closes viewer for header image"
msgstr "Chiude il visualizzatore dell'immagine di intestazione"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
-msgstr "Chiudi la lista di utenti"
+msgstr "Comprimi la lista di utenti"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "Comprime l'elenco degli utenti per una determinata notifica"
@@ -1644,7 +1870,7 @@ msgstr "Commedia"
msgid "Comics"
msgstr "Fumetti"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Linee guida della community"
@@ -1653,23 +1879,23 @@ msgstr "Linee guida della community"
msgid "Complete onboarding and start using your account"
msgstr "Completa la registrazione e inizia a usare il tuo account"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "Completa la challenge"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "Scrivi un nuovo post"
-#: src/view/com/composer/Composer.tsx:834
-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/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr "Scrivi post fino a {0, plural, other {# caratteri}}"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "Scrivi la risposta"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "Compressione del video..."
@@ -1681,23 +1907,17 @@ msgstr "Configura l'impostazione del filtro dei contenuti per la categoria: {nam
msgid "Configured in <0>moderation settings0>."
msgstr "Configurato nelle <0>impostazioni di moderazione0>."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Conferma"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "Conferma il cambio"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "Conferma le impostazioni della lingua del contenuto"
@@ -1706,26 +1926,27 @@ msgstr "Conferma le impostazioni della lingua del contenuto"
msgid "Confirm delete account"
msgstr "Conferma l'eliminazione dell'account"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "Conferma la tua età:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "Conferma la tua data di nascita"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Codice di conferma"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "Codice di conferma"
@@ -1733,22 +1954,22 @@ msgstr "Codice di conferma"
msgid "Connecting..."
msgstr "Connessione in corso..."
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "Contatta il supporto"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "Contenuti e media"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "Contenuti e media"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "Contenuti e media"
@@ -1756,15 +1977,15 @@ msgstr "Contenuti e media"
msgid "Content Blocked"
msgstr "Contenuto bloccato"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "Filtri dei contenuti"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr "Contenuti dalla rete che potrebbero piacerti."
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "Lingue dei contenuti"
@@ -1785,16 +2006,16 @@ msgstr "Avviso sul contenuto"
msgid "Content warnings"
msgstr "Avviso sui contenuti"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
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:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "Continua"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "Continua come {0} (attualmente connesso)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "Continua thread..."
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "Vai al passaggio successivo"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversazione eliminata"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "Conversazione eliminata"
@@ -1826,16 +2047,17 @@ msgstr "Cucina"
msgid "Copied"
msgstr "Copiato"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "Versione della build copiata negli appunti"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "Copiato negli appunti"
@@ -1844,25 +2066,29 @@ msgstr "Copiato negli appunti"
msgid "Copied!"
msgstr "Copiato!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr "Copia la versione negli appunti"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "Copia"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr "Copia comunque"
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "Copia password per app"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr "Copia URL at://"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr "Copia DID dell'autore"
@@ -1871,57 +2097,69 @@ msgstr "Copia DID dell'autore"
msgid "Copy code"
msgstr "Copia codice"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "Copia DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "Copia host"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "Copia link"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "Copia link"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
-msgstr "Copia link alla lista"
+msgstr "Copia link"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
-msgstr "Copia link al post"
+msgstr "Copia link del post"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr "Copia collegamento al profilo"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr "Copia collegamento allo starter pack"
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "Copia testo del messaggio"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr "Copia URL at:// del post"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "Copia testo del post"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "Copia codice QR"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "Copia valore del record TXT"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Politica sul diritto d'autore"
@@ -1931,11 +2169,11 @@ msgstr "Politica sul diritto d'autore"
msgid "Could not leave chat"
msgstr "Errore nell'abbandonare la conversazione"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "Non è stato possibile caricare il feed"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "Non è stato possibile caricare la lista"
@@ -1947,28 +2185,28 @@ msgstr "Errore nel silenziare la conversazione"
msgid "Could not process your video"
msgstr "Impossibile processare il tuo video"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "Crea"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "Crea un codice QR per uno starter pack"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "Crea uno starter pack"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "Crea uno starter pack per me"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "Crea uno starter pack per me"
msgid "Create account"
msgstr "Crea account"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "Crea un account"
@@ -1985,11 +2223,16 @@ msgstr "Crea un account"
msgid "Create an account"
msgstr "Crea un account"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr "Crea un account senza usare questo starter pack"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "In alternativa crea un avatar"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "Creane un altro"
@@ -1998,7 +2241,7 @@ msgstr "Creane un altro"
msgid "Create new account"
msgstr "Crea un nuovo account"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Crea un report per {0}"
@@ -2053,17 +2296,17 @@ msgstr "Aspetto scuro"
msgid "Dark theme"
msgstr "Tema scuro"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "Data di nascita"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "Disattiva account"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "Eliminare errori nella Moderazione"
@@ -2079,19 +2322,19 @@ msgstr "Predefinito"
msgid "Default icons"
msgstr "Icone predefinite"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "Elimina"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "Elimina account"
@@ -2107,19 +2350,19 @@ msgstr "Elimina la password per app"
msgid "Delete app password?"
msgstr "Eliminare la password per app?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr "Elimina conversazione"
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "Elimina il record della dichiarazione della chat"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "Elimina conversazione"
@@ -2127,19 +2370,19 @@ msgstr "Elimina conversazione"
msgid "Delete Conversation"
msgstr "Elimina conversazione"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "Elimina per me"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
-msgstr "Elimina la lista"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
+msgstr "Elimina lista"
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "Elimina messaggio"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "Elimina messaggio per me"
@@ -2147,26 +2390,26 @@ msgstr "Elimina messaggio per me"
msgid "Delete my account"
msgstr "Elimina il mio account"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "Elimina il post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "Elimina starter pack"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "Eliminare lo starter pack?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "Eliminare questa lista?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "Eliminare questo post?"
@@ -2174,8 +2417,8 @@ msgstr "Eliminare questo post?"
msgid "Deleted"
msgstr "Eliminato"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "Account eliminato"
@@ -2183,48 +2426,48 @@ msgstr "Account eliminato"
msgid "Deleted post."
msgstr "Post eliminato."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "Descrizione"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "Descrizione troppo lunga"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "La descrizione è troppo lunga. Il numero massimo di caratteri è {DESCRIPTION_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "La descrizione è troppo lunga. {DESCRIPTION_MAX_GRAPHEMES, plural, other {Il numero massimo di caratteri è #.}}"
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "Testo descrittivo alternativo"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "Scollega citazione"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "Scollegare la citazione del post?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
msgstr "Modalità sviluppatore disattivata"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
msgstr "Modalità sviluppatore attivata"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "Opzioni sviluppatore"
@@ -2236,9 +2479,18 @@ msgstr "Dialog: configura chi può interagire con questo post"
msgid "Dim"
msgstr "Soffuso"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr "Disabilita 2FA"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr "Disabilita 2FA via email"
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
-msgstr "Disattiva l'email 2FA"
+msgstr "Disattiva 2FA via email"
#: src/screens/Settings/AccessibilitySettings.tsx:91
#: src/screens/Settings/AccessibilitySettings.tsx:96
@@ -2254,25 +2506,25 @@ msgstr "Disattiva sottotitoli"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "Disabilitato"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "Scartare"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "Scartare le modifiche?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "Scartare la bozza?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "Scartare il post?"
@@ -2281,24 +2533,24 @@ msgstr "Scartare il post?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Scoraggia le app dal mostrare il mio account agli utenti disconnessi"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr "Scopri feed"
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Scopri nuovi feed personalizzati"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "Scopri nuovi feed"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "Scopri nuovi feed"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "Ignora"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "Ignora errore"
@@ -2306,6 +2558,10 @@ msgstr "Ignora errore"
msgid "Dismiss getting started guide"
msgstr "Ignora la guida iniziale"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr "Ignora gli interessi"
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr "Ignora questa sezione"
@@ -2315,27 +2571,27 @@ msgstr "Ignora questa sezione"
msgid "Display larger alt text badges"
msgstr "Aumenta dimensione dell'icona del testo alternativo"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "Nome visualizzato"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "Nome visualizzato"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "Il nome visualizzato è troppo lungo"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "Il nome visualizzato è troppo lungo. Il numero massimo di caratteri è {DISPLAY_NAME_MAX_GRAPHEMES}."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "Il nome visualizzato è troppo lungo. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Il numero massimo di caratteri è #.}}"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "Pannello DNS"
@@ -2347,37 +2603,45 @@ msgstr "Non applicare questa parola silenziata agli utenti seguiti"
msgid "Does not include nudity."
msgstr "Non include nudità."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "Non inizia o termina con un trattino"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "Dominio verificato!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr "Non hai un codice o ne hai bisogno di uno nuovo? <0>Fai clic qui.0>"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr "Non trovi l'email? <0>Fai clic qui per inviarla di nuovo.0>"
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Fatto"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "Fatto"
msgid "Done{extraText}"
msgstr "Fatto{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr "Tocca due volte o tieni premuto il messaggio per aggiungere una reazione"
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "Tocca due volte per chiudere la finestra"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr "Tocca due volte per mettere mi piace"
@@ -2413,23 +2681,23 @@ msgstr "Trascina e rilascia per aggiungere immagini"
msgid "Duration:"
msgstr "Durata:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "es. alice"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "es. Mario Rossi"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "es. Alice Roberts"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "es. alice.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "es. Artista, amo i gatti, mi piace leggere."
@@ -2437,19 +2705,19 @@ msgstr "es. Artista, amo i gatti, mi piace leggere."
msgid "E.g. artistic nudes."
msgstr "Es: nudi artistici."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "es. Gli utenti più seguiti"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "es. Spammer"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "es. Utenti più prolifici."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "es. Utenti che rispondono ripetutamente con annunci."
@@ -2457,52 +2725,63 @@ msgstr "es. 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/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "Modifica"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "Modifica"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
-msgstr "Modifica l'avatar"
+msgstr "Modifica avatar"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111
msgid "Edit Feeds"
msgstr "Modifica i feed"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
-msgstr "Modifica l'immagine"
+msgstr "Modifica immagine"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "Modifica impostazioni di interazione"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr "Modifica interessi"
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "Modifica lista"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr "Modifica stato in diretta"
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "Modifica lista di moderazione"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "Modifica i miei feed"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "Modifica il mio profilo"
@@ -2515,23 +2794,23 @@ msgstr "Modifica utenti"
msgid "Edit post interaction settings"
msgstr "Modifica impostazioni di interazione del post"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
-msgstr "Modifica il profilo"
+msgstr "Modifica profilo"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
-msgstr "Modifica il profilo"
+msgstr "Modifica profilo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "Modifica starter pack"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "Modifica lista"
@@ -2539,15 +2818,15 @@ msgstr "Modifica lista"
msgid "Edit who can reply"
msgstr "Modifica chi può rispondere"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "Modifica il tuo nome visualizzato"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "Modifica la descrizione del tuo profilo"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "Modifica il tuo starter pack"
@@ -2560,16 +2839,15 @@ msgstr "Formazione scolastica"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "L'autore di questa lista ti ha bloccato o tu hai bloccato l'autore."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "Email"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "2FA via email disattivata"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
@@ -2583,20 +2861,17 @@ msgstr "Indirizzo email"
msgid "Email Resent"
msgstr "Email inviata nuovamente"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
-msgstr "Email aggiornata"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
+msgstr "Email inviata!"
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "Email aggiornata"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr "Email aggiornata!"
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
-msgstr "Email verificata"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
+msgstr "Verifica email completata!"
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
msgid "Email Verified"
@@ -2608,8 +2883,8 @@ msgstr "Incorpora il codice HTML"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "Incorpora il post"
@@ -2617,12 +2892,13 @@ msgstr "Incorpora il post"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "Incorpora questo post nel tuo sito web. Copia il seguente ritaglio e incollalo nel codice HTML del tuo sito web."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "Lettore video incorporato"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Abilita"
@@ -2630,12 +2906,12 @@ msgstr "Abilita"
msgid "Enable {0} only"
msgstr "Abilita solo {0}"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "Attiva il contenuto per adulti"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
msgstr "Abilita 2FA via email"
#: src/components/dialogs/EmbedConsent.tsx:81
@@ -2660,30 +2936,30 @@ msgstr "Attiva sottotitoli"
msgid "Enable this source only"
msgstr "Abilita solo questa fonte"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "Abilita gli argomenti di tendenza"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr "Attiva i video di tendenza nel feed Discover"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr "Attiva i video di tendenza nel feed Discover."
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "Abilitato"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "Fine del feed"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Assicurati di aver selezionato una lingua per ogni file dei sottotitoli."
@@ -2696,13 +2972,14 @@ msgstr "Inserisci una password"
msgid "Enter a word or tag"
msgstr "Inserisci una parola o tag"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
-msgid "Enter Code"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
msgstr "Inserisci codice"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "Inserire il codice di conferma"
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
+msgid "Enter Code"
+msgstr "Inserisci codice"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
@@ -2712,7 +2989,7 @@ msgstr "Passa a schermo intero"
msgid "Enter the code you received to change your password."
msgstr "Inserisci il codice che hai ricevuto per modificare la tua password."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "Inserisci il dominio che vuoi usare"
@@ -2720,20 +2997,20 @@ msgstr "Inserisci il dominio che vuoi usare"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Inserisci l'email che hai usato per creare il tuo account. Ti invieremo un codice in modo che tu possa scegliere una nuova password."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr "Inserisci il nome utente o l'indirizzo email che hai usato quando hai creato il tuo account"
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "Inserisci la tua data di nascita"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "Inserisci il tuo indirizzo email"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "Inserisci la tua nuova email qui sopra"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "Inserisci il tuo nuovo indirizzo email qui sotto."
@@ -2749,7 +3026,11 @@ msgstr "Inserisci il tuo nome utente e la tua password"
msgid "Enters full screen"
msgstr "Passa a schermo intero"
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr "Intrattenimento"
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Errore"
@@ -2758,15 +3039,18 @@ msgstr "Errore"
msgid "Error occurred while saving file"
msgstr "C'è stato un errore durante il salvataggio del file"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "Errore nella risposta del captcha."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "Errore:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr "Errore: {error}"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "Tutti"
@@ -2818,30 +3102,22 @@ msgstr "Uscita dal processo di ritaglio dell'immagine"
msgid "Exits image view"
msgstr "Uscita dalla visualizzazione dell'immagine"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "Uscita dall'inserzione della domanda di ricerca"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "Espandi il testo alternativo"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "Espandi la lista di utenti"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "Espandi o comprimi il post a cui stai rispondendo"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr "Espande o comprime il testo del post"
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr "Espande o comprime il post a cui stai rispondendo"
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "L'URI dovrebbe risolvere in un record"
@@ -2864,6 +3140,10 @@ msgstr "Scade {0}"
msgid "Expires in {0}"
msgstr "Scade tra {0}"
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr "Scade tra {0} alle {1}"
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "Media espliciti o potenzialmente inquietanti."
msgid "Explicit sexual images."
msgstr "Immagini sessuali esplicite."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr "Esplora"
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "Esporta i miei dati"
@@ -2882,8 +3169,8 @@ msgstr "Esporta i miei dati"
msgid "Export My Data"
msgstr "Esporta i miei dati"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "Media esterni"
@@ -2895,19 +3182,24 @@ msgstr "Media esterni"
#: src/components/dialogs/EmbedConsent.tsx:70
#: src/screens/Settings/ExternalMediaPreferences.tsx:40
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
-msgstr "I media esterni 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\"."
+msgstr "I media esterni potrebbero consentire ai siti web di raccogliere informazioni su di te e sul tuo dispositivo. Nessuna informazione viene inviata o richiesta finché non si preme il pulsante \"Riproduci\"."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Preferenze media esterni"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
-msgstr ""
+msgstr "Impossibile accettare la richiesta"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr "Non è stato possibile aggiungere la reazione"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "Non è stato possibile cambiare il nome utente. Riprovare."
@@ -2915,7 +3207,7 @@ msgstr "Non è stato possibile cambiare il nome utente. Riprovare."
msgid "Failed to create app password. Please try again."
msgstr "Errore durante la creazione della password per app. Riprovare."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr "Impossibile creare la conversazione"
@@ -2924,35 +3216,37 @@ msgstr "Impossibile creare la conversazione"
msgid "Failed to create starter pack"
msgstr "Impossibile creare starter pack"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "Impossibile creare l'elenco. Controlla la connessione Internet e riprova."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Impossibile eliminare la conversazione"
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "Errore nell'eliminazione del messaggio"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "Non è stato possibile eliminare il post, riprovare"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "Impossibile eliminare lo starter pack"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr "Impossibile caricare le conversazioni"
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "Impossibile caricare preferenze feed"
@@ -2964,17 +3258,19 @@ msgstr "Impossibile caricare GIF"
msgid "Failed to load past messages"
msgstr "Impossibile caricare messaggi vecchi"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "Impossibile caricare feed consigliati"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "Impossibile caricare follow consigliati"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr "Impossibile segnare le richieste come lette"
@@ -2982,7 +3278,16 @@ msgstr "Impossibile segnare le richieste come lette"
msgid "Failed to pin post"
msgstr "Errore nel fissare il post"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr "Non è stato possibile rimuovere la reazione"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr "Non è stato possibile rimuovere la verifica"
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "Errore nel salvare l'immagine: {0}"
@@ -2994,20 +3299,39 @@ msgstr "Errore nel salvataggio delle modifiche, riprovare"
msgid "Failed to save settings. Please try again."
msgstr "Non è stato possibile salvare le impostazioni. Riprovare."
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr "Non è stato possibile salvare i tuoi interessi."
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "Impossibile inviare messaggio"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr "Non è stato possibile inviare l'email: riprova."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Errore nell'invio dell'appello, riprovare."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "Impossibile abilitare silenziamento thread, riprovare"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr "Non è stato possibile aggiornare le impostazioni della 2FA via email"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr "Non è stato possibile aggiornare l'email: riprova."
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "Impossibile aggiornare i feed"
@@ -3022,20 +3346,24 @@ msgstr "Errore nell'aggiornamento delle impostazioni"
msgid "Failed to upload video"
msgstr "Errore nel caricamento video"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr "Non è stato possibile verificare l'email: riprova."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "Non è stato possibile verificare il nome utente. Riprovare."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "Feed"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "Feed creato da {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "Menu del feed"
@@ -3043,26 +3371,26 @@ msgstr "Menu del feed"
msgid "Feed toggle"
msgstr "Attiva/disattiva feed"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "Commenti"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
msgstr "Feedback inviato!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "Feed"
@@ -3070,13 +3398,13 @@ msgstr "Feed"
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 possono creare con una conoscenza base di programmazione. <0/> per ulteriori informazioni."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
msgstr "Feed aggiornati!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "Feed che potrebbero piacerti."
@@ -3092,11 +3420,11 @@ msgstr "File salvato con successo!"
msgid "Filter from feeds"
msgstr "Filtra dai feed"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr "Filtra la ricerca per lingua"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr "Filtra la ricerca per lingua (attualmente: {currentLanguageLabel})"
@@ -3110,13 +3438,13 @@ msgstr "Finalizzando"
msgid "Find accounts to follow"
msgstr "Scopri account da seguire"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "Trova persone da seguire"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Cerca post, utenti, e feed su Bluesky"
@@ -3148,11 +3476,11 @@ msgid "Flexible"
msgstr "Flessibile"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "Segui"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "Segui"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "Segui {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr "Segui {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "Segui {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,29 +3508,25 @@ msgstr "Segui 10 account"
msgid "Follow 7 accounts"
msgstr "Segui 7 account"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "Segui account"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "Segui tutti"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
-msgstr "Ricambia follow"
+msgstr "Segui anche tu"
#: src/view/com/profile/FollowButton.tsx:81
msgctxt "action"
msgid "Follow Back"
-msgstr "Ricambia follow"
-
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "Segui altri account per connetterti ai tuoi interessi e creare la tua rete personale."
+msgstr "Segui anche tu"
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
@@ -3224,7 +3544,7 @@ msgstr "Seguito da <0>{0}0> e <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Seguito da <0>{0}0>, <1>{1}1>, e {2, plural, one {# altro} other {# altri}}"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "Follower di @{0} che conosci"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "Follower che conosci"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Seguito"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "Stai seguendo {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr "Stai seguendo {handle}"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "Stai seguendo {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Preferenze del feed Seguiti"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Preferenze del feed Seguiti"
@@ -3301,6 +3617,10 @@ msgstr "Per motivi di sicurezza non potrai più visualizzarla. Se perdi questa p
msgid "For the best experience, we recommend using the theme font."
msgstr "Per una migliore esperienza, consigliamo di usare il font del tema."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr "Per te"
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "Per sempre"
@@ -3327,7 +3647,7 @@ msgstr "Pubblica spesso contenuti indesiderati"
msgid "From @{sanitizedAuthor}"
msgstr "Di @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Da <0/>"
@@ -3336,28 +3656,30 @@ msgstr "Da <0/>"
msgid "Gallery"
msgstr "Galleria"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "Genera uno starter pack"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "Ottieni aiuto"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "Inizia"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr "Per cominciare"
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Iniziamo"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "Dai un volto al tuo profilo"
@@ -3366,17 +3688,17 @@ 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/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "Torna indietro"
@@ -3384,10 +3706,10 @@ msgstr "Torna indietro"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "Torna indietro"
@@ -3408,7 +3730,27 @@ msgstr "Vai alla home"
msgid "Go Home"
msgstr "Vai alla home"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr "Vai in diretta"
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr "Vai in diretta"
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr "Vai in diretta per"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr "Vai al profilo di {firstAuthorName}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "Vai alla conversazione con {0}"
@@ -3427,8 +3769,8 @@ msgstr "Vai al profilo dell'utente"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "Contenuto sensibile"
@@ -3437,21 +3779,21 @@ msgstr "Contenuto sensibile"
msgid "Half way there!"
msgstr "Siamo a metà!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "Nome utente"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "Nome utente già in uso. Prova con uno diverso."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "Nome utente modificato!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "Nome utente troppo lungo. Provarne uno più breve."
@@ -3464,7 +3806,7 @@ msgstr "Vibrazione"
msgid "Harassment, trolling, or intolerance"
msgstr "Molestie, trolling o intolleranza"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "Hashtag"
@@ -3472,19 +3814,24 @@ msgstr "Hashtag"
msgid "Hashtag {tag}"
msgstr "Hashtag {tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr "Hai un codice? <0>Fai clic qui.0>"
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "Ci sono problemi?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "Aiuto"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Aiuta le persone a sapere che tu non sei un bot caricando una immagine o creando un avatar."
@@ -3497,7 +3844,7 @@ msgstr "Ecco la tua password per app!"
msgid "Hidden"
msgstr "Nascosto"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr "Nascosto dalle tue impostazioni di moderazione."
@@ -3509,18 +3856,17 @@ msgstr "Lista nascosta"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Nascondi"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "Nascondi"
@@ -3529,38 +3875,40 @@ msgstr "Nascondi"
msgid "Hide customization options"
msgstr "Nascondi opzioni di personalizzazione"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "Nascondi post per me"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "Nascondi risposta per tutti"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "Nascondi risposta per me"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr "Nascondi"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "Nascondere questo post?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "Nascondere questa risposta?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Nascondi gli argomenti di tendenza"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "Nascondere gli argomenti di tendenza?"
@@ -3569,10 +3917,15 @@ msgstr "Nascondere gli argomenti di tendenza?"
msgid "Hide trending videos?"
msgstr "Nascondere i video di tendenza?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "Nascondi elenco utenti"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr "Nascondi spunta di verifica"
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "Il server del feed ha dato una risposta negativa. Informa il proprietari
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Stiamo riscontrando problemi nel trovare questo feed. Potrebbe essere stato eliminato."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "Stiamo riscontrando problemi a caricare questi dati. Vedi sotto per maggiori dettagli. Se il problema persiste, contattaci."
@@ -3610,15 +3963,15 @@ msgstr "Non siamo riusciti a caricare il servizio di moderazione."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Un po' di pazienza: stiamo gradualmente dando accesso al video e tu sei ancora in coda. Ricontrolla presto!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "Home"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "Hosting:"
@@ -3627,34 +3980,33 @@ msgstr "Hosting:"
msgid "Hosting provider"
msgstr "Fornitore di hosting"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr "Hot"
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "Prima le risposte più popolari"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "Come dovremmo aprire questo link?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "Ho un codice"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "Ho il codice"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "Ho un codice di conferma"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "Ho il mio dominio"
@@ -3667,22 +4019,30 @@ msgstr "Ho capito"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Se il testo alternativo è lungo, attiva l'opzione Espandi testo alternativo"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "Se elimini questa lista, non potrai recuperarla."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Se hai un tuo dominio, puoi usarlo come nome utente. Questo consente di auto-verificare la tua identità. <0>Ulteriori informazioni.0>"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr "<0>Fai clic qui0> per aggiornare la tua email."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "Se rimuovi questo post, non potrai recuperarlo."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr "Se aggiorni il tuo indirizzo email, la 2FA via email verrà disabilitata."
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Se vuoi modificare la password, ti invieremo un codice per verificare che questo è il tuo account."
@@ -3704,9 +4064,22 @@ msgstr "Illegale e urgente"
msgid "Image"
msgstr "Immagine"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "Immagine salvata nella galleria!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr "Cache delle immagini svuotata"
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr "Cache delle immagini svuotata, liberati {0}"
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr "Immagine salvata"
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr "Per salvare le immagini è necessario concedere l'accesso alla tua libreria foto."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "Messaggi inappropriati o link espliciti"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr "Nessuna richiesta!"
@@ -3752,15 +4125,11 @@ msgstr "Inserisci la password per l'eliminazione dell'account"
msgid "Input the code which has been emailed to you"
msgstr "Inserisci il codice che ti è stato inviato via email"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "Inserisci il nome utente o l'indirizzo email che hai usato al momento della registrazione"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Interazione limitata"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr "Impostazioni per le interazioni"
@@ -3769,11 +4138,11 @@ msgstr "Impostazioni per le interazioni"
msgid "Invalid 2FA confirmation code."
msgstr "Codice di conferma 2FA non valido."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "Nome utente non valido. Provarne un altro."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "Protocollo del post non valido o non supportato"
@@ -3789,11 +4158,11 @@ msgstr "Codice di verifica non valido"
msgid "Invite a Friend"
msgstr "Invita un amico"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "Codice d'invito"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
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."
@@ -3805,7 +4174,7 @@ msgstr "Codici di invito: {0} disponibili"
msgid "Invite codes: 1 available"
msgstr "Codici di invito: 1 disponibile"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "Invita persone nel tuo starter pack!"
@@ -3817,7 +4186,7 @@ msgstr "Invita i tuoi amici per seguire persone e feed preferiti"
msgid "Invites, but personal"
msgstr "Inviti, ma personali"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "È corretto"
@@ -3825,19 +4194,19 @@ msgstr "È corretto"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Sei solo tu al momento! Aggiungi altre persone al tuo starter pack cercandole qui in alto."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "ID processo: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "Opportunità di lavoro"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Entra in Bluesky"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "Etichettato dall'autore."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "Etichette"
@@ -3868,7 +4237,7 @@ msgstr "Etichette"
msgid "Labels added"
msgstr "Etichette aggiunte"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "Le etichette sono annotazioni su utenti e contenuti. Possono essere usate per nascondere, apporre avvisi e classificare il network."
@@ -3884,13 +4253,13 @@ msgstr "Etichette sul tuo contenuto"
msgid "Language selection"
msgstr "Seleziona la lingua"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "Impostazione delle lingue"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "Lingue"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "Più grande"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "Recenti"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "ulteriori informazioni"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr "Ulteriori informazioni"
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "Ulteriori Informazioni"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Scopri di più su Bluesky"
@@ -3933,6 +4311,11 @@ msgstr "Scopri di più sulla moderazione applicata a questo contenuto."
msgid "Learn more about this warning"
msgstr "Ulteriori informazioni su questo avviso"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr "Scopri di più sulla verifica in Bluesky"
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "Stai lasciando Bluesky"
msgid "left to go."
msgstr "mancanti."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "Lascia scegliere a me"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Chiaro"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "Mi piace"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Mi piace ({0, plural, one {# mi piace} other {# mi piace}})"
@@ -4013,17 +4397,16 @@ msgstr "Metti mi piace a 10 post"
msgid "Like 10 posts to train the Discover feed"
msgstr "Metti mi piace a 10 post per allenare il feed Discover"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "Metti mi piace a questo feed"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr "Mi piace"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "Piace a"
@@ -4033,40 +4416,40 @@ msgstr "Piace a"
msgid "Liked By"
msgstr "Piace a"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Piace a {0, plural, one {# utente} other {# utenti}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Piace a {likeCount, plural, one {# utente} other {# utenti}}"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "Mi piace"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "Mi piace in questo post"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "Classico"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "Lista"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "Immagine della lista"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
msgstr "Lista bloccata"
@@ -4084,7 +4467,7 @@ msgstr "Lista di <0/>"
msgid "List by you"
msgstr "Lista tua"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
msgstr "Lista eliminata"
@@ -4093,35 +4476,35 @@ msgstr "Lista eliminata"
msgid "List has been hidden"
msgstr "La lista è stata nascosta"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "Lista nascosta"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
msgstr "Lista silenziata"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "Nome della lista"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
msgstr "Lista sbloccata"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
msgstr "Lista riattivata"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "Liste"
@@ -4129,34 +4512,47 @@ msgstr "Liste"
msgid "Lists blocking this user:"
msgstr "Liste che bloccano questo utente:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr "LIVE"
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr "La funzionalià in diretta è in fase di beta testing"
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr "Collegamento alla diretta"
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "Carica di più"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "Carica più feed consigliati"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "Carica più utenti suggeriti"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Carica più notifiche"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "Carica nuovi post"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "Caricamento..."
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "Log"
@@ -4164,12 +4560,12 @@ msgstr "Log"
msgid "Logged-out visibility"
msgstr "Visibilità degli utenti disconnessi"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo di @sawaratsuki.bsky.social"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo di <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "Sembra che tu non abbia più feed fissati. Ma non ti preoccupare, puoi a
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Sembra che ti manchi un feed di chi segui. <0>Clicca qui per aggiungere uno.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr "Modifica le impostazioni dell'email del tuo account"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "Creane uno per me"
@@ -4201,18 +4601,22 @@ msgstr "Creane uno per me"
msgid "Make sure this is where you intend to go!"
msgstr "Assicurati che questo sia dove intendi andare!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "Gestisci i feed salvati"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr "Gestisci impostazioni di verifica"
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Gestisci parole e tag silenziati"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr "Segna tutto come letto"
@@ -4221,16 +4625,23 @@ msgstr "Segna tutto come letto"
msgid "Mark as read"
msgstr "Segna come letto"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr "Segnato tutto come letto"
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr "Forse più tardi"
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "Media"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Contenuti che potrebbero disturbare o risultare inappropriati per alcuni tipi di pubblico."
@@ -4246,23 +4657,27 @@ msgstr "Utenti menzionati"
msgid "Mentions"
msgstr "Menzioni"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "Menu"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "Messaggio {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "Messaggio eliminato"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "Messaggio eliminato"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr "Messaggio da @{0}: {1}"
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Messaggio dal server: {0}"
@@ -4276,7 +4691,11 @@ msgstr "Input del messaggio"
msgid "Message is too long"
msgstr "Il messaggio è troppo lungo"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr "Opzioni messaggio"
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "Messaggi"
@@ -4295,10 +4714,10 @@ msgstr "Account ingannevole"
msgid "Misleading Post"
msgstr "Post ingannevole"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "Moderazione"
@@ -4320,22 +4739,22 @@ msgstr "Lista di moderazione di <0/>"
msgid "Moderation list by you"
msgstr "La tua lista di moderazione"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
msgstr "Lista di moderazione creata"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
msgstr "Lista di moderazione aggiornata"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "Liste di moderazione"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "Liste di moderazione"
@@ -4343,11 +4762,11 @@ msgstr "Liste di moderazione"
msgid "moderation settings"
msgstr "impostazioni di moderazione"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "Stato di moderazione"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "Strumenti di moderazione"
@@ -4356,7 +4775,7 @@ msgstr "Strumenti di moderazione"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Il moderatore ha messo un avviso generale sul contenuto."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "Di più"
@@ -4365,9 +4784,9 @@ msgstr "Di più"
msgid "More feeds"
msgstr "Altri feed"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "Altre opzioni"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "Prima con più mi piace"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "Prima le risposte con più mi piace"
@@ -4400,14 +4819,14 @@ msgstr "Silenzia"
msgid "Mute {tag}"
msgstr "Silenzia {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "Silenzia account"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "Silenzia account"
@@ -4420,11 +4839,11 @@ msgstr "Silenzia conversazione"
msgid "Mute in:"
msgstr "Silenzia in:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "Silenzia lista"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "Silenziare questi account?"
@@ -4452,26 +4871,26 @@ msgstr "Silenzia questa parola solo nei tag"
msgid "Mute this word until you unmute it"
msgstr "Silenzia questa parola finchè non la riattivi"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "Silenzia questa discussione"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "Silenzia parole e tag"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "Account silenziati"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "Account silenziati"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
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."
@@ -4479,11 +4898,11 @@ msgstr "I post degli account silenziati verranno rimossi dal tuo feed e dalle tu
msgid "Muted by \"{0}\""
msgstr "Silenziato da \"{0}\""
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "Parole e tag silenziati"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Silenziare un account è privato. Gli account silenziati possono interagire con te, ma non vedrai i loro post né riceverai notifiche da loro."
@@ -4492,15 +4911,15 @@ msgstr "Silenziare un account è privato. Gli account silenziati possono interag
msgid "My Birthday"
msgstr "Il mio compleanno"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "I miei feed"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "Nome"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "Il nome è obbligatorio"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "Natura"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "Vai a {0}"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr "Vai allo starter pack"
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "Vai alla schermata successiva"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "Vai al tuo profilo"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "Hai bisogno di modificarla?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "Hai bisogno di segnalare una violazione del copyright?"
@@ -4547,30 +4971,43 @@ msgstr "Hai bisogno di segnalare una violazione del copyright?"
msgid "Never lose access to your followers or data."
msgstr "Non perdere mai l'accesso ai tuoi follower o ai tuoi dati."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "Non importa, crea un nome utente per me"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "Nuova"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "Nuova"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "Nuova chat"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr "Nuovo indirizzo email"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr "Nuova funzionalità"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "Nuovo nome utente"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "Nuova lista"
@@ -4578,7 +5015,7 @@ msgstr "Nuova lista"
msgid "New messages"
msgstr "Nuovo messaggio"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "Nuova lista di moderazione"
@@ -4590,12 +5027,12 @@ msgstr "Nuova password"
msgid "New Password"
msgstr "Nuova password"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "Nuovo post"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "Nuovo post"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "Nuovo post"
@@ -4613,19 +5050,20 @@ msgstr "Nuovo post"
msgid "New user info dialog"
msgstr "Finestra informativa per nuovi utenti"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "Nuova lista"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "Prima le risposte più recenti"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "Notizie"
@@ -4655,11 +5093,15 @@ msgstr "Immagine successiva"
msgid "No app passwords yet"
msgstr "Ancora nessuna password per app"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "Nessun pannello DNS"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr "Scadenza non impostata"
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "Non si è trovata nessuna GIF in primo piano. Potrebbe esserci un problema con Tenor."
@@ -4668,21 +5110,25 @@ msgstr "Non si è trovata nessuna GIF in primo piano. Potrebbe esserci un proble
msgid "No feeds found. Try searching for something else."
msgstr "Nessun feed trovato. Prova a cercarne altri."
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr "Nessuna immagine"
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "Ancora nessun mi piace"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "Non segui più {0}"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr "Non più di {MAX_SERVICE_HANDLE_LENGTH} caratteri"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr "Non più di {MAX_SERVICE_HANDLE_LENGTH, plural, other {# caratteri}}"
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "Ancora nessun messaggio"
@@ -4711,31 +5157,38 @@ msgstr "Ancora nessuna citazione"
msgid "No reposts yet"
msgstr "Ancora nessun repost"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "Nessun risultato"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "Nessun risultato"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr "Nessun risultato per \"{0}\"."
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "Nessun risultato trovato"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "Nessun risultato trovato per \"{query}\""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "Nessun risultato trovato per {query}"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr "Nessun risultato."
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "Nessun risultato trovato per \"{search}\"."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "Nessuno"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "Nessuno ha ancora messo mi piace. Magari potresti essere il primo!"
@@ -4775,19 +5227,15 @@ msgstr "Nudità non sessuale"
msgid "Not followed by anyone you're following"
msgstr "Non seguito da nessuno degli account che segui"
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "Non trovato"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "Non adesso"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "Nota sulla condivisione"
@@ -4795,7 +5243,7 @@ msgstr "Nota sulla condivisione"
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Nota: Bluesky è una rete aperta e pubblica. Questa impostazione limita solo la visibilità dei tuoi contenuti sull'app e sul sito web di Bluesky e altre app potrebbero non rispettare questa impostazione. I tuoi contenuti potrebbero comunque essere mostrati agli utenti disconnessi da altre app e siti web."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "Nulla qui"
@@ -4803,7 +5251,7 @@ msgstr "Nulla qui"
msgid "Notification filters"
msgstr "Filtri notifiche"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Impostazioni notifiche"
@@ -4820,11 +5268,11 @@ msgstr "Suoni di notifica"
msgid "Notification Sounds"
msgstr "Suoni di notifica"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "Notifiche"
@@ -4832,12 +5280,12 @@ msgstr "Notifiche"
msgid "now"
msgstr "adesso"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "Adesso"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "Nudità"
@@ -4859,21 +5307,23 @@ msgstr "Oh no!"
msgid "Oh no! Something went wrong."
msgstr "Oh no! Qualcosa è andato male."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "Va bene"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "Prima le risposte meno recenti"
@@ -4881,19 +5331,19 @@ msgstr "Prima le risposte meno recenti"
msgid "on<0><1/><2><3/>2>0>"
msgstr "su<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "Reimposta account"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "Una o più GIF non hanno un testo alternativo."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "A una o più immagini manca il testo alternativo."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "In uno o più video manca il testo alternativo."
@@ -4905,11 +5355,11 @@ msgstr "Solo i file .jpg e .png sono supportati"
msgid "Only {0} can reply."
msgstr "Solo gli {0} possono rispondere."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "Contiene solo lettere, numeri e trattini"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "Sono supportati solo i file immagine"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "Ops, c'è stato qualche problema!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "Ops!"
@@ -4935,67 +5385,80 @@ msgstr "Ops!"
msgid "Open"
msgstr "Aperto"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "Apri il menu di scelta rapida del profilo {name}"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "Apri il creatore di avatar"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "Apri opzioni conversazione"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "Apri il menu a scomparsa"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "Apri il selettore emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "Apri schermata informazioni del feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "Apri il menu delle opzioni del feed"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr "Apri elenco completo di emoji"
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "Apri link verso {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "Apri opzioni messaggio"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "Apri pagina di debug della moderazione"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "Apri le impostazioni delle parole e dei tag silenziati"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr "Apri pack"
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "Apri il menu delle opzioni del post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr "Apri profilo"
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr "Apri menu condivisione"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "Apri menu degli starter pack"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "Apri la pagina della cronologia"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "Apri il registro di sistema"
@@ -5015,19 +5478,19 @@ msgstr "Apre un menu per scegliere chi può rispondere a questo thread"
msgid "Opens additional details for a debug entry"
msgstr "Apre dettagli aggiuntivi per una debug entry"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
-msgstr ""
+msgstr "Apre la finestra di dialogo del testo alternativo"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "Apre la fotocamera sul dispositivo"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
-msgstr ""
+msgstr "Apre la finestra di dialogo di sottotitoli e testo alternativo"
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr "Apre la schermata per modificare il nome utente"
@@ -5039,7 +5502,7 @@ msgstr "Apre il compositore"
msgid "Opens device photo gallery"
msgstr "Apre la galleria fotografica del dispositivo"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr "Apre il selettore emoji"
@@ -5057,7 +5520,7 @@ msgstr "Apre la procedura per accedere al tuo account esistente di Bluesky"
msgid "Opens GIF select dialog"
msgstr "Apre la finestra per selezionare i GIF"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr "Apre il centro assistenza nel browser"
@@ -5065,6 +5528,10 @@ msgstr "Apre il centro assistenza nel browser"
msgid "Opens list of invite codes"
msgstr "Apre la lista dei codici di invito"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr "Apre la finestra di dialogo dello stato in diretta"
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "Apre il modulo di reimpostazione della password"
@@ -5073,12 +5540,12 @@ msgstr "Apre il modulo di reimpostazione della password"
msgid "Opens the linked website"
msgstr "Apre il sito Web collegato"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "Apre questo profilo"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "Apre selettore video"
@@ -5121,11 +5588,11 @@ msgstr "Stato OTA: non disponibile"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "Altro"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "Altro account"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "Pagina non trovata"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "Pausa"
msgid "Pause video"
msgstr "Metti video in pausa"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "Utenti"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "Persone seguite da @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "Persone che seguono @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "È necessario il permesso per accedere alla cartella delle immagini."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "L'autorizzazione per accedere la cartella delle immagini è stata negata. Si prega di abilitarla nelle impostazioni del sistema."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr "L'accesso alla tua libreria foto è stato negato. Abilitalo nelle impostazioni di sistema."
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "Animali da compagnia"
msgid "Photography"
msgstr "Foto"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "Immagini consigliate ad un pubblico adulto."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr "Fissa"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "Fissa feed"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr "Aggiungi il feed dei video di tendenza alla schermata iniziale per accedervi rapidamente"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr "Fissa feed"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "Fissa su home"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Fissa su home"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "Fissa sul profilo"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "Fissato"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "{0} fissato su home"
@@ -5263,7 +5722,7 @@ msgstr "{0} fissato su home"
msgid "Pinned Feeds"
msgstr "Feed fissati"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "Fissato ai tuoi feed"
@@ -5302,24 +5761,28 @@ msgstr "Riproduci questa GIF"
msgid "Plays the video"
msgstr "Riproduce il video"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr "Aggiungi eventuali etichette di avviso applicabili ai contenuti che stai pubblicando."
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "Scegli il tuo nome utente."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "Scegli la tua password."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr "Fai clic sul collegamento presente nell'email che ti abbiamo appena inviato per verificare il tuo nuovo indirizzo email. Questo è un passaggio importante per continuare a usare tutte le funzionalità di Bluesky."
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "Si prega di completare il captcha di verifica."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "Conferma la tua email prima di cambiarla. Si tratta di un requisito temporaneo durante l'aggiunta degli strumenti di aggiornamento della posta elettronica e verrà presto rimosso."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr "Verifica di aver inserito correttamente il tuo indirizzo email."
@@ -5335,19 +5798,41 @@ msgstr "Inserisci una password. Deve essere lunga almeno 8 caratteri."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Inserisci un nome univoco per questa password per app o usa quello generato casualmente."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr "Inserisci un codice valido."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr "Inserisci un indirizzo email valido."
+
#: 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"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr "Inserisci qui sotto il codice che abbiamo inviato a <0>{0}0>."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr "Inserisci il codice di sicurezza che abbiamo inviato al tuo indirizzo email precedente."
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "Inserisci la tua email."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "Inserisci il tuo codice d'invito."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr "Inserisci il tuo nuovo indirizzo email."
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr "Inserisci la tua password"
@@ -5381,24 +5866,25 @@ msgstr "Seleziona il motivo della segnalazione"
msgid "Please sign in as @{0}"
msgstr "Accedi come @{0}"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr "Verifica la tua email"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "Verifica la tua email"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "Politica"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr "Video popolari nella tua rete."
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "Porno"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "Post"
@@ -5408,23 +5894,23 @@ msgctxt "description"
msgid "Post"
msgstr "Post"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Posta tutti"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "Pubblicato da {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "Pubblicato da @{0}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
msgstr "Post eliminato"
@@ -5433,7 +5919,7 @@ msgstr "Post eliminato"
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Non è stato possibile inviare il post. Verifica la tua connessione a internet e riprova."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr "Il post è stato eliminato"
@@ -5455,7 +5941,7 @@ msgstr "Post nascosto da te"
msgid "Post interaction settings"
msgstr "Gestisci interazioni post"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr "Impostazioni interazioni"
@@ -5483,8 +5969,9 @@ msgctxt "toast"
msgid "Post unpinned"
msgstr "Post non più fissato"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "Post"
@@ -5524,7 +6011,7 @@ msgstr "Clicca per vedere i follower di questo account che condividete"
msgid "Previous image"
msgstr "Immagine precedente"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "Lingua principale"
@@ -5537,31 +6024,31 @@ msgstr "Dai priorità a chi segui"
msgid "Priority notifications"
msgstr "Impostazioni di priorità"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "Privacy"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "Privacy e sicurezza"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Privacy e sicurezza"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "Informativa sulla privacy"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "Elaborazione video in corso..."
@@ -5570,20 +6057,20 @@ msgstr "Elaborazione video in corso..."
msgid "Processing..."
msgstr "Elaborazione in corso…"
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "profilo"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "Profilo"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
msgstr "Profilo aggiornato"
@@ -5600,6 +6087,26 @@ msgstr "Elenchi pubblici e condivisibili di utenti da silenziare o bloccare in m
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "Liste pubbliche e condivisibili che danno impulso ai feed."
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr "Pubblica post"
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr "Pubblica i post"
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr "Pubblica risposte"
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr "Pubblica risposta"
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "Codice QR copiato!"
@@ -5612,25 +6119,25 @@ msgstr "Codice QR scaricato!"
msgid "QR code saved to your camera roll!"
msgstr "Codice QR salvato nella galleria!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "Cita post"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "Citazione post riattaccata"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "Citazione scollegata con successo"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "Citazioni disattivate"
@@ -5642,39 +6149,48 @@ msgstr "Impostazioni delle citazioni"
msgid "Quotes"
msgstr "Citazioni"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "Citazioni post"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Casuale (\"Poster's Roulette\")"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "Limite di richieste superato: hai provato a cambiare il nome utente troppe volte in un breve lasso di tempo. Attendi un minuto prima di riprovare."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "Riattacca citazione"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr "Reagisci con {emoji}"
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "Riattiva account"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr "Leggi post del blog"
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr "Leggi di meno"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr "Leggi di più"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Leggi il blog di Bluesky"
@@ -5697,11 +6213,11 @@ msgstr "Motivo del ricorso"
msgid "Reason:"
msgstr "Motivo:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "Ricerche recenti"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "Consigliati"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "Riconnetti"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr "Rifiuta"
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr "Rifiuta richiesta"
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "Ricarica conversazioni"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "Rimuovi"
msgid "Remove {displayName} from starter pack"
msgstr "Rimuovi {displayName} dallo starter pack"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr "Rimuovi {historyItem}"
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "Rimuovi account"
@@ -5752,13 +6268,13 @@ msgstr "Rimuovi account"
msgid "Remove attachment"
msgstr "Rimuovi allegato"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "Rimuovi avatar"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "Rimuovi banner"
@@ -5776,24 +6292,25 @@ msgstr "Rimuovi feed"
msgid "Remove feed?"
msgstr "Rimuovere il feed?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Rimuovi dai miei feed"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "Rimuovere da accesso rapido?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "Rimuovi dai feed salvati"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr "Rimuovere dai tuoi feed?"
@@ -5802,11 +6319,16 @@ msgstr "Rimuovere dai tuoi feed?"
msgid "Remove image"
msgstr "Rimuovi immagine"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr "Rimuovi stato in diretta"
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Rimuovi parola silenziata dalla tua lista"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "Rimuovi profilo"
@@ -5814,12 +6336,12 @@ msgstr "Rimuovi profilo"
msgid "Remove quote"
msgstr "Rimuovi citazione"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "Rimuovi repost"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "Rimuovi file dei sottotitoli"
@@ -5827,6 +6349,21 @@ msgstr "Rimuovi file dei sottotitoli"
msgid "Remove this feed from your saved feeds"
msgstr "Rimuovi questo feed dai feed salvati"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr "Rimuovi utente dalla lista"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr "Rimuovi verifica"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr "Rimuovere la tua verifica per questo account?"
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "Rimosso dall'autore"
@@ -5835,7 +6372,7 @@ msgstr "Rimosso dall'autore"
msgid "Removed by you"
msgstr "Rimosso da te"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "Rimosso dalla lista"
@@ -5845,19 +6382,18 @@ msgid "Removed from my feeds"
msgstr "Rimosso dai miei feed"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "Rimosso dai feed salvati"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "Rimosso dai tuoi feed"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr "Rimuove il profilo dalla cronologia di ricerca"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr "Verifica rimossa"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
@@ -5868,7 +6404,7 @@ msgstr "Rimuovi post citato"
msgid "Replace with Discover"
msgstr "Sostituisci con Discover"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "Risposte"
@@ -5880,12 +6416,13 @@ msgstr "Risposte disattivate"
msgid "Replies to this post are disabled."
msgstr "Le risposte a questo post sono disattivate."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "Rispondi"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Rispondi ({0, plural, one {# risposta} other {# risposte}})"
@@ -5907,86 +6444,86 @@ msgstr "Impostazioni delle risposte"
msgid "Reply settings are chosen by the author of the thread"
msgstr "Le impostazioni delle risposte sono scelte dall'autore del thread"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "Ordine delle risposte"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "In risposta a <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Risposta ad un post bloccato"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "In risposta ad un post"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "Risposta a te"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
msgstr "Visibilità risposta aggiornata"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "Risposta nascosta con successo"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "Segnala"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "Segnala account"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "Segnala conversazione"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "Segnala dialogo"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "Segnala feed"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
msgstr "Segnala lista"
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "Segnala messaggio"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "Segnala post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "Segnala starter pack"
@@ -6030,25 +6567,26 @@ msgstr "Segnala questo starter pack"
msgid "Report this user"
msgstr "Segnala questo utente"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "Repost"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "Repost"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Ripubblica ({0, plural, one {# ripubblicazione} other {# ripubblicazioni}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "Repost o cita post"
@@ -6056,27 +6594,27 @@ msgstr "Repost o cita post"
msgid "Reposted By"
msgstr "Ripubblicato da"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "Ripubblicato da {0}"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "Ripubblicato da <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "Ripubblicato da te"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "Ripubblicazioni di questo post"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "Richiedi un cambio"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr "Richiedi modifica"
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6088,11 +6626,11 @@ msgstr "Richiedi il codice"
msgid "Require alt text before posting"
msgstr "Richiedi il testo alternativo prima di pubblicare"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr "Richiedi un codice inviato via email per accedere al tuo account."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "Obbligatorio per questo fornitore"
@@ -6100,13 +6638,19 @@ msgstr "Obbligatorio per questo fornitore"
msgid "Required in your region"
msgstr "Richiesto nel tuo paese"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr "Invia di nuovo"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "Rinvia email"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "Rinvia email"
@@ -6123,8 +6667,8 @@ msgstr "Codice di recupero"
msgid "Reset Code"
msgstr "Reimposta il codice"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "Ripristina lo stato di registrazione"
@@ -6141,16 +6685,16 @@ msgstr "Ritenta l'accesso"
msgid "Retries the last action, which errored out"
msgstr "Ritenta l'ultima azione che ha generato un errore"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "Ritenta l'ultima azione che ha generato un errore"
msgid "Retry"
msgstr "Riprova"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr "Ricarica opzioni"
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "Ritorna alla pagina precedente"
@@ -6175,11 +6719,11 @@ msgstr "Ritorna alla pagina precedente"
msgid "Returns to home page"
msgstr "Ritorna alla home"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "Ritorna alla pagina precedente"
@@ -6190,24 +6734,26 @@ msgstr "Ritorna al passo precedente"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Salva"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "Salva"
@@ -6221,12 +6767,12 @@ msgstr "Salva il compleanno"
msgid "Save changes"
msgstr "Salva modifiche"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "Salva modifiche"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "Salva immagine"
@@ -6234,16 +6780,16 @@ msgstr "Salva immagine"
msgid "Save image crop"
msgstr "Salva il ritaglio dell'immagine"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "Salva nuovo nome utente"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "Salva codice QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Salva nei miei feed"
@@ -6251,16 +6797,12 @@ msgstr "Salva nei miei feed"
msgid "Saved Feeds"
msgstr "Feed salvati"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "Salvata nella tua galleria"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "Salvato nei tuoi feed"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "Salva modifiche al tuo profilo"
@@ -6270,8 +6812,8 @@ msgstr "Salva le impostazioni di ritaglio dell'immagine"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "Di' ciao!"
@@ -6280,45 +6822,42 @@ msgstr "Di' ciao!"
msgid "Science"
msgstr "Scienza"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "Scorri verso l'alto"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "Cerca"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Cerca post di @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "Cerca per nome o interesse"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "Cerca feed"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "Cerca \"{interestsDisplayName}\"{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "Cerca \"{query}\""
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "Cerca \"{searchText}\""
@@ -6326,29 +6865,33 @@ msgstr "Cerca \"{searchText}\""
msgid "Search for feeds that you want to suggest to others."
msgstr "Cerca feed che potresti suggerire ad altri utenti."
-#: src/view/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr "Cerca altri account"
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr "Cerca altri feed"
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
msgstr "Cerca post, utenti o feed"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "Cerca utenti"
-
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "Cerca GIF"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr "Cerca nei miei post"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr "Cerca post"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "Cerca profili"
@@ -6356,16 +6899,20 @@ msgstr "Cerca profili"
msgid "Search Tenor"
msgstr "Cerca Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr "Cerca..."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr "Cerca profili"
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr "Passaggio di sicurezza richiesto"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "Passaggio di sicurezza obbligatorio"
@@ -6385,7 +6932,7 @@ msgstr "Vedi post su #{tag}"
msgid "See #{tag} posts by user"
msgstr "Vedi post dell'utente su #{tag}"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Vedi offerte di lavoro in Bluesky"
@@ -6405,6 +6952,10 @@ msgstr "Scegli un colore"
msgid "Select account"
msgstr "Seleziona account"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr "Seleziona una lingua per l'app"
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "Scegli un avatar"
@@ -6413,10 +6964,22 @@ msgstr "Scegli un avatar"
msgid "Select an emoji"
msgstr "Scegli un emoji"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr "Seleziona un'opzione"
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr "Seleziona lingua app"
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "Seleziona le lingue dei contenuti"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr "Imposta durata"
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "Seleziona da un account esistente"
@@ -6433,15 +6996,15 @@ msgstr "Seleziona GIF \"{0}\""
msgid "Select how long to mute this word for."
msgstr "Seleziona per quanto tempo silenziare questa parola."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "Seleziona lingua..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "Seleziona lingue"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr "Seleziona il servizio di moderazione"
@@ -6449,6 +7012,10 @@ msgstr "Seleziona il servizio di moderazione"
msgid "Select moderator"
msgstr "Seleziona moderatore"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr "Seleziona lingua principale"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "Scegli la {emojiName} emoji come tuo avatar"
msgid "Select the moderation service(s) to report to"
msgstr "Seleziona uno o più servizi di moderazione a cui segnalare"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "Seleziona video"
@@ -6470,23 +7037,24 @@ msgstr "Seleziona video"
msgid "Select what content this mute word should apply to."
msgstr "Seleziona dove applicare questa parola silenziata."
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr "Seleziona la lingua da usare per l'interfaccia utente dell'app."
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Seleziona le lingue che desideri includere nei feed a cui sei iscritto. Se non ne viene selezionata nessuna, verranno visualizzate tutte le lingue."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "Seleziona la tua data di nascita"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "Seleziona i tuoi interessi dalle seguenti opzioni"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "Seleziona la tua lingua preferita per le traduzioni nel tuo feed."
@@ -6498,19 +7066,17 @@ msgstr "Seleziona l'opzione {0} di {numItems}"
msgid "Send a neat website!"
msgstr "Consiglia un sito!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
msgstr "Invia conferma"
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "Invia email di conferma"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "Invia email di conferma"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Invia email"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "Invia email"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "Invia feedback"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "Invia messaggio"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr "Invia post a {name}"
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "Invia post a..."
@@ -6544,17 +7114,20 @@ msgstr "Invia la segnalazione"
msgid "Send report to {0}"
msgstr "Invia la segnalazione a {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr "Invia la segnalazione a {title}"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "Invia email di verifica"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "Invia tramite messaggi"
@@ -6570,7 +7143,7 @@ msgstr "Indirizzo del server"
msgid "Set app icon to {0}"
msgstr "Imposta icona app su {0}"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "Imposta la data di nascita"
@@ -6586,10 +7159,10 @@ msgstr "Configura il tuo account"
msgid "Sets email for password reset"
msgstr "Imposta l'email per la reimpostazione della password"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "Impostazioni"
@@ -6598,7 +7171,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Impostazioni aggiornate"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "Attività sessuale o nudità erotica."
@@ -6606,21 +7179,15 @@ msgstr "Attività sessuale o nudità erotica."
msgid "Sexually Suggestive"
msgstr "Sessualmente allusivo"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "Condividi"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "Condividi"
@@ -6633,15 +7200,19 @@ msgstr "Condividi una storia interessante!"
msgid "Share a fun fact!"
msgstr "Condividi un fatto divertente!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "Condividi comunque"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr "Condividi DID autore"
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "Condividi link"
@@ -6650,32 +7221,46 @@ msgstr "Condividi link"
msgid "Share Link"
msgstr "Condividi link"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "Finestra link di condivisione"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr "Condividi URL at:// del post"
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "Condividi codice QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "Condividi questo feed"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "Condividi starter pack"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
-msgstr "Condividi starter pack e invita persone a far parte della tua community su Bluesky."
+msgstr "Condividi questo starter pack e invita le persone a far parte della tua community su Bluesky."
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr "Condividi tramite..."
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "Condividi il tuo feed preferito!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "Test preferenze condivise"
@@ -6685,7 +7270,7 @@ msgstr "Condivide il sito web nel link"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "Mostra"
@@ -6696,8 +7281,8 @@ msgstr "Mostra testo alternativo"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "Mostra comunque"
@@ -6718,8 +7303,8 @@ msgstr "Mostra opzioni di personalizzazione"
msgid "Show hidden replies"
msgstr "Mostra risposte nascoste"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "Mostra meno come questo"
@@ -6727,14 +7312,14 @@ msgstr "Mostra meno come questo"
msgid "Show list anyway"
msgstr "Mostra comunque lista"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "Mostra di più"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "Mostra altri come questo"
@@ -6752,7 +7337,7 @@ msgstr "Mostra citazioni"
msgid "Show replies"
msgstr "Mostra risposte"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "Mostra risposte come"
@@ -6764,8 +7349,8 @@ msgstr "Mostra risposte come un thread"
msgid "Show replies by people you follow before all other replies"
msgstr "Mostra risposte delle persone che segui prima delle altre risposte"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "Mostra risposta per tutti"
@@ -6787,11 +7372,11 @@ msgstr "Mostra avviso"
msgid "Show warning and filter from feeds"
msgstr "Mostra avviso e filtra dai feed"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr "Mostra informazioni sulla data di creazione del post"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr "Mostra gli altri account a cui puoi passare"
@@ -6809,8 +7394,8 @@ msgstr "Mostra il contenuto"
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr "Mostra il contenuto"
msgid "Sign in"
msgstr "Accedi"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "Accedi come... {0}"
@@ -6826,16 +7411,16 @@ msgstr "Accedi come... {0}"
msgid "Sign in as..."
msgstr "Accedi come..."
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr "Accedi o crea un account"
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "Accedi o crea il tuo account per partecipare alla conversazione!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "Accedi o registrati"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "Accedi a un account non in elenco"
@@ -6843,15 +7428,15 @@ msgstr "Accedi a un account non in elenco"
msgid "Sign in to Bluesky or create a new account"
msgstr "Accedi a Bluesky o crea un nuovo account"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "Esci"
@@ -6859,8 +7444,8 @@ msgstr "Esci"
msgid "Sign Out"
msgstr "Esci"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "Vuoi uscire?"
@@ -6874,11 +7459,6 @@ msgstr "È richiesto l'accesso"
msgid "Signed in as @{0}"
msgstr "Accesso effettuato come @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "Iscriviti senza uno starter pack"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "Account simili"
@@ -6896,12 +7476,21 @@ msgstr "Salta"
msgid "Smaller"
msgstr "Più piccolo"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr "Posticipa il promemoria"
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Sviluppo software"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr "Alcune delle tue verifiche non sono valide."
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "Altri feed che potrebbero piacerti"
@@ -6909,23 +7498,31 @@ msgstr "Altri feed che potrebbero piacerti"
msgid "Some people can reply"
msgstr "Risposte limitate"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr "Qualcuno ha reagito con {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr "Qualcuno ha reagito con {0} a {1}"
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "C'è stato qualche problema con i dati che stai provando a segnalare. Contatta l'assistenza."
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "Qualcosa è andato storto"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "Qualcosa è andato storto: riprova"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "Qualcosa è andato storto, prova di nuovo."
@@ -6934,16 +7531,16 @@ msgstr "Qualcosa è andato storto, prova di nuovo."
msgid "Something went wrong!"
msgstr "Qualcosa è andato storto!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr "C'è stato qualche problema. Riprovare."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "Qualcosa non va? Faccelo sapere."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "La sessione è scaduta. Accedi di nuovo."
@@ -6978,34 +7575,39 @@ msgstr "Spam, menzioni o risposte eccessive"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "Sport"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr "Inizia una conversazione: comparirà qui."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "Avvia una nuova conversazione"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "Inizia ad aggiungere persone"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "Inizia ad aggiungere persone!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "Avvia conversazione con {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Starter Pack"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "Starter pack di {0}"
@@ -7013,38 +7615,39 @@ msgstr "Starter pack di {0}"
msgid "Starter pack by <0/>"
msgstr "Starter pack di <0/>"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "Starter pack tuoi"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "Lo starter pack non è valido"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "Starter pack"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Gli starter pack ti permettono di condividere utenti e feed preferiti con i tuoi amici."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "Pagina di stato"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "Step {0} di {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "Spazio di archiviazione eliminato. Riavvia l'app."
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "Cronologia"
@@ -7063,46 +7666,51 @@ msgstr "Invia richiesta"
msgid "Submit Appeal"
msgstr "Invia richiesta"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr "Invia segnalazione"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "Iscriviti"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "Iscriviti a @{0} per usare queste etichette:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "Iscriviti all'etichettatore"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "Iscriviti a questo etichettatore"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "Iscriviti alla lista"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "Successo!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr "Verificato con successo"
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
msgstr "Account suggeriti"
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "Suggerito per te"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "Suggestivo"
@@ -7116,16 +7724,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Tramonto"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Supporto"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "Cambia account"
@@ -7134,11 +7742,11 @@ msgstr "Cambia account"
msgid "Switch Account"
msgstr "Cambia account"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "Cambia account"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr "Passa a {0}"
@@ -7149,9 +7757,9 @@ msgstr "Passa a {0}"
msgid "System"
msgstr "Sistema"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "Registro di sistema"
@@ -7159,6 +7767,12 @@ msgstr "Registro di sistema"
msgid "Tags only"
msgstr "Solo tag"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr "Tocca per chiudere il menu contestuale"
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Tocca per ignorare"
@@ -7184,7 +7798,7 @@ msgstr "Tecnologia"
msgid "Tell a joke!"
msgstr "Racconta una barzelletta!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "Raccontaci un po' di te"
@@ -7192,17 +7806,17 @@ msgstr "Raccontaci un po' di te"
msgid "Tell us a little more"
msgstr "Dicci un po' di più"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "Termini"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "Termini di servizio"
@@ -7230,7 +7844,11 @@ msgstr "Campo di testo"
msgid "Text input field"
msgstr "Campo di testo"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr "Il tuo feedback è stato inviato all'operatore del feed. Grazie!"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "Grazie! La tua email è stata verificata con successo."
@@ -7242,7 +7860,7 @@ msgstr "Grazie. La tua segnalazione è stata inviata."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Grazie, hai verificato con successo il tuo indirizzo email. Puoi chiudere questa finestra."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "Che contiene il seguente:"
@@ -7250,10 +7868,10 @@ msgstr "Che contiene il seguente:"
msgid "That handle is already taken."
msgstr "Questo nome utente è già stato assegnato."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "Impossibile trovare starter pack."
msgid "That's all, folks!"
msgstr "Questo è tutto, gente!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr "È tutto!"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "L'account sarà in grado di interagire con te dopo lo sblocco."
@@ -7282,7 +7900,7 @@ msgstr "L'app verrà riavviata"
msgid "The author of this thread has hidden this reply."
msgstr "L'autore del thread ha nascosto questa risposta."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "L'applicazione web di Bluesky"
@@ -7302,6 +7920,10 @@ msgstr "Il feed Discover"
msgid "The Discover feed now knows what you like"
msgstr "Ora il feed Discover sa cosa ti piace"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr "L'indirizzo email che hai inserito è lo stesso del tuo indirizzo email attuale."
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "L'esperienza è migliore tramite l'app. Scarica ora Bluesky e ritorneremo da dove eravamo rimasti."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "L'informativa sulla privacy è stata spostata a <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "Il video selezionato è più grande di 50MB."
+msgid "The selected video is larger than 100 MB."
+msgstr "Il video selezionato è più grande di 100 MB."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "Sembra che ci siano problemi sul server. Riprova tra qualche istante."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "Questo starter pack non è valido. Prova a eliminare questo starter pack invece."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr "L'oggetto del menu contestuale"
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "Il modulo di supporto è stato spostato. Se hai bisogno di aiuto, <0/> o visita {HELP_DESK_URL} per metterti in contatto con noi."
@@ -7367,15 +7994,15 @@ msgstr "Non c'è limite di tempo per la disattivazione dell'account, torna quand
msgid "There was an issue connecting to Tenor."
msgstr "Si è verificato un problema durante la connessione a Tenor."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "Si è verificato un problema durante il contatto con il server"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Si è verificato un problema contattando il server, verifica la tua connessione a internet e riprova."
@@ -7388,11 +8015,12 @@ msgstr "Si è verificato un problema durante il contatto con il tuo server"
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/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Si è verificato un problema nel recupero dei post. Tocca qui per riprovare."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
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."
@@ -7400,12 +8028,12 @@ msgstr "Si è verificato un problema durante il recupero dell'elenco. Tocca qui
msgid "There was an issue fetching your app passwords"
msgstr "Si è verificato un problema durante il recupero delle password per app"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Si è verificato un problema durante il recupero delle tue liste. Tocca qui per riprovare."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "Si è verificato un problema durante il recupero delle tue informazioni di servizio"
@@ -7418,26 +8046,26 @@ msgstr "Si è verificato un problema durante la rimozione di questo feed. Verifi
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Si è verificato un problema durante l'invio della segnalazione. Verifica la tua connessione a internet."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "Si è verificato un problema durante l'aggiornamento dei tuoi feed. Verifica la tua connessione a internet e riprova."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "Si è verificato un problema! {0}"
@@ -7445,10 +8073,10 @@ msgstr "Si è verificato un problema! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Si è verificato un problema. Verifica la tua connessione a internet e prova di nuovo."
@@ -7469,6 +8097,14 @@ msgstr "Queste impostazioni si applicano solo al feed Seguiti."
msgid "This {screenDescription} has been flagged:"
msgstr "Questa {screenDescription} è stata segnalata:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr "Questo account ha un segno di spunta perché è stato verificato da fonti attendibili."
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr "Questo account ha uno o più tentativi di verifica, ma non è ancora verificato."
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "Questo account ha richiesto agli utenti di accedere a Bluesky per visualizzare il profilo."
@@ -7477,6 +8113,10 @@ msgstr "Questo account ha richiesto agli utenti di accedere a Bluesky per visual
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 "Questo account risulta bloccato da una o più liste di moderazione. Per sbloccarlo, visita direttamente le liste e rimuovi l'utente."
+#: src/components/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr "È possibile annullare questa azione in qualsiasi momento."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Questo ricorso verrà inviato a <0>{sourceName}0>."
@@ -7510,14 +8150,22 @@ msgstr "Questo contenuto non è disponibile perché uno degli utenti coinvolti h
msgid "This content is not viewable without a Bluesky account."
msgstr "Questo contenuto non è visualizzabile senza un account Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "L'utente di questa conversazione ha disattivato o eliminato l'account. Premi per le opzioni"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr "Questa email è già associata al tuo account."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "Questa funzionalità è in versione beta. Puoi leggere ulteriori informazioni sulle esportazioni del repository in <0>questo post del blog0>."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr "Questa funzionalità non è disponibile mentre si usa una password per app. Accedi con la tua password principale."
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "Questa funzionalità non è disponibile mentre si usa una password per app. Accedi con la tua password principale."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Questo feed è vuoto! Prova a seguire più utenti o ottimizza le impostazioni della lingua."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "Questo feed è vuoto."
@@ -7540,7 +8188,7 @@ msgstr "Questo feed è vuoto."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Questo feed non è più online. Stiamo mostrando <0>Discover0> al suo posto."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "Questo nome utente è riservato. Prova con un altro nome utente."
@@ -7548,9 +8196,10 @@ msgstr "Questo nome utente è riservato. Prova con un altro nome utente."
msgid "This information is not shared with other users."
msgstr "Queste informazioni non vengono condivise con altri utenti."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "Questo è importante nel caso in cui avessi bisogno di modificare la tua email o reimpostare la password."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr "Non è un collegamento valido"
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "Questa etichetta è stata applicata dall'autore."
msgid "This label was applied by you."
msgstr "Questa etichetta è stata applicata da te."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "Questo etichettatore non ha dichiarato quali etichette pubblica e potrebbe non essere attivo."
@@ -7576,7 +8225,7 @@ msgstr "Questa lista, creata da <0>{0}0>, contiene possibili violazioni delle
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr "Questa lista, creata da te, contiene possibili violazioni delle linee guida della comunità di Bluesky nel suo nome o nella sua descrizione."
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "Questa lista è vuota."
@@ -7584,7 +8233,7 @@ msgstr "Questa lista è vuota."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Questo servizio di moderazione non è disponibile. Vedi giù per ulteriori dettagli. Se il problema persiste, contattaci."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Questo post dichiara di essere stato creato il <0>{0}0>, ma è stato visto per la prima volta da Bluesky il <1>{1}1>."
@@ -7592,28 +8241,29 @@ msgstr "Questo post dichiara di essere stato creato il <0>{0}0>, ma è stato v
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr "Questo post ha un tipo sconosciuto di restrizione. La tua app potrebbe non essere aggiornata."
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "Questo post è stato eliminato."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed 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/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Questo post verrà nascosto dai feed e dai thread. L'azione è irreversibile."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "L'autore del post ha disattivato le citazioni."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "Questo profilo è visibile solo agli utenti registrati. Non sarà visibile alle persone che non hanno effettuato l'accesso."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr "Questa risposta verrà spostata in una sezione nascosta in fondo al thread e le notifiche delle risposte saranno disattivate - sia per te che per gli altri."
@@ -7621,10 +8271,14 @@ msgstr "Questa risposta verrà spostata in una sezione nascosta in fondo al thre
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."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "Questo dovrebbe creare un record di dominio in:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr "Questo utente non può essere verificato poiché non ha un nome visualizzato."
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "Questo utente non ha follower."
@@ -7662,21 +8316,21 @@ msgstr "Questo utente non sta seguendo nessuno."
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "Questo eliminerà \"{0}\" dalle tue parole silenziate. Puoi riaggiungerla quando vuoi qui."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "Questo rimuoverà @{0} dalla lista d'accesso rapido."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "Il tuo post verrà rimosso da questa citazione per tutti gli utenti, ed al suo posto verrà mostrato un avviso."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "Opzioni thread"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "Preferenze delle discussioni"
@@ -7684,8 +8338,8 @@ msgstr "Preferenze delle discussioni"
msgid "Thread Preferences"
msgstr "Preferenze delle discussioni"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "Thread"
@@ -7693,7 +8347,7 @@ msgstr "Thread"
msgid "Threaded mode"
msgstr "Modalità a thread"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "Preferenze per le discussioni"
@@ -7705,14 +8359,15 @@ msgstr "Tempo rimanente: {0, plural, one {# secondo} other {# secondi}}"
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "Per disabilitare il metodo 2FA via email, verifica il tuo accesso all'indirizzo email."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr "Per disabilitare il metodo 2FA via email, verifica il tuo accesso a <0>{0}0>"
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "Per segnalare una conversazione, segnala uno dei messaggi nella schermata della conversazione. Questo permetterà ai nostri moderatori di capire il contesto del problema."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Per caricare video su Bluesky, devi prima verificare la tua email."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "A chi desideri inviare questo report?"
@@ -7725,7 +8380,7 @@ msgstr "Oggi"
msgid "Toggle dropdown"
msgstr "Attiva/disattiva il menu a discesa"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "Seleziona per abilitare o disabilitare i contenuti per adulti"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr "Attiva/disattiva il suono"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "Popolari"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "Argomento"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "Traduci"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "Di tendenza"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "Video di tendenza"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr "La fiducia nasce dalle relazioni, dalle comunità e dal contesto condiviso, quindi stiamo anche introducendo i <0>certificatori attendibili0>: organizzazioni che possono rilasciare direttamente la verifica."
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "TV"
msgid "Two-factor authentication (2FA)"
msgstr "Autenticazione a due fattori (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "Inserisci il nome utente che desideri"
@@ -7783,18 +8440,11 @@ msgstr "Inserisci il nome utente che desideri"
msgid "Type your message here"
msgstr "Scrivi il tuo messaggio qui"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "Tipo:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "Sblocca lista"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "Riattiva lista"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "Impossibile connettersi. Verifica la tua connessione a internet e riprova."
@@ -7809,7 +8459,7 @@ msgstr "Impossibile connettersi. Verifica la tua connessione a internet e riprov
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Impossibile contattare il servizio. Verifica la tua connessione a internet."
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "Impossibile eliminare"
@@ -7817,36 +8467,41 @@ msgstr "Impossibile eliminare"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "Sblocca"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "Sblocca"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "Sblocca account"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "Sblocca account?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr "Sblocca lista"
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "Annulla ripubblicazione"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Annulla ripubblicazione ({0, plural, one {# ripubblicazione} other {# ripubblicazioni}})"
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "Smetti di seguire"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "Smetti di seguire {0}"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "Smetti di seguire"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr "Smetti di seguire"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Purtroppo, nessuna delle etichette a cui sei iscritto supporta questo tipo di segnalazione."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr "Certificatore sconosciuto"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "Non mi piace più"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Non mi piace più ({0, plural, one {# mi piace} other {# mi piace}})"
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr "Riattiva audio"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "Riattiva"
@@ -7895,10 +8555,10 @@ msgstr "Riattiva"
msgid "Unmute {tag}"
msgstr "Riattiva {tag}"
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "Riattiva account"
@@ -7906,8 +8566,12 @@ msgstr "Riattiva account"
msgid "Unmute conversation"
msgstr "Riattiva conversazione"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr "Riattiva lista"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "Riattiva questa discussione"
@@ -7915,38 +8579,47 @@ msgstr "Riattiva questa discussione"
msgid "Unmute video"
msgstr "Riattiva audio"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "Non fissare più"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "Non fissare più il feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr "Non fissare più il feed"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "Non fissare più su home"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "Non fissare più sul profilo"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "Non fissare più la lista di moderazione"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "{0} non più fissato su home"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "Non più fissato nei tuoi feed"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr "Riattiva l'email di promemoria"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "Annulla l'iscrizione"
@@ -7955,7 +8628,7 @@ msgstr "Annulla l'iscrizione"
msgid "Unsubscribe from list"
msgstr "Disiscriviti dalla lista"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "Disiscriviti da questo etichettatore"
@@ -7963,11 +8636,11 @@ msgstr "Disiscriviti da questo etichettatore"
msgid "Unsubscribed from list"
msgstr "Disiscritto dalla lista"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "Tipo di video non supportato"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "Tipo di video non supportato: {0}"
@@ -7987,49 +8660,60 @@ msgstr "Aggiorna"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Aggiorna <0>{displayName}0> nelle liste"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr "Aggiorna email"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "Aggiorna a {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
+msgstr "Aggiorna la tua email"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
msgctxt "toast"
msgid "Updating quote attachment failed"
-msgstr ""
+msgstr "Impossibile aggiornare allegato"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "Impossibile aggiornare visibilità risposte"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "Aggiornamento..."
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "In alternativa carica una foto"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "Carica un file di testo su:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "Carica dalla fotocamera"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "Carica dai file"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "Carica dalla galleria"
@@ -8042,7 +8726,7 @@ msgstr "Caricamento immagini..."
msgid "Uploading link thumbnail..."
msgstr "Caricamento miniatura del link..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "Caricamento del video..."
@@ -8050,22 +8734,22 @@ msgstr "Caricamento del video..."
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Puoi generare una password per app di terze parti per accedere ad altri client Bluesky senza fornire l'accesso completo al tuo account o alla tua password personale."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "Usa il fornitore predefinito"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "Usa il browser dell'app"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "Usa il browser dell'app per aprire i link"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "Usa il mio browser predefinito"
@@ -8119,12 +8803,12 @@ msgstr "Lista di {0}"
msgid "User list by you"
msgstr "La tua lista"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
msgstr "Lista creata"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
msgstr "Lista aggiornata"
@@ -8150,58 +8834,88 @@ msgstr "Utenti che seguo"
msgid "Users in \"{0}\""
msgstr "Utenti in \"{0}\""
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "Utenti a cui è piaciuto questo contenuto o profilo"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr "Utenti che segui"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "Valore:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "Email verificata richiesta"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr "Verifica non riuscita, riprovare."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr "Impostazioni di verifica"
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr "Impostazioni di verifica"
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr "Le verifiche su Bluesky funzionano in modo diverso rispetto ad altre piattaforme. <0>Scopri di più.0>"
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr "Verificato da:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr "Verifica account"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr "Verifica codice"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "Verifica record DNS"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr "Verifica email"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr "Verifica codice email"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "Finestra verifica email"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "Verifica la nuova email"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "Verifica ora"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "Verifica file di testo"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr "Verificare questo account?"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "Verifica il tuo indirizzo email"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "Verifica il tuo indirizzo email"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "Versione {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "Video"
msgid "Video failed to process"
msgstr "Elaborazione video fallita"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr "Feed dei video"
@@ -8224,14 +8938,15 @@ msgstr "Video da {0}: {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "Videogiochi"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr "Video in pausa"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr "Video in riproduzione"
@@ -8239,11 +8954,11 @@ msgstr "Video in riproduzione"
msgid "Video not found."
msgstr "Video non trovato."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "Impostazioni video"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "Video caricato"
@@ -8251,31 +8966,32 @@ msgstr "Video caricato"
msgid "Video: {0}"
msgstr "Video: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "Video"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
-msgstr ""
+msgstr "I video devono avere una durata inferiore a 3 minuti"
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "Vedi l'avatar di {0}"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "Vedi il profilo di {0}"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "Vedi il profilo di {displayName}"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "Vedi questo profilo bloccato"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "Vedi le informazioni del debug"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "Vedi dettagli"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "Visualizza i dettagli per segnalare una violazione del copyright"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "Vedi la discussione completa"
@@ -8308,18 +9024,17 @@ msgstr "Visualizza le informazioni su queste etichette"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "Mostra di più"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "Vedi il profilo"
@@ -8331,7 +9046,11 @@ msgstr "Vedi l'avatar"
msgid "View the labeling service provided by @{0}"
msgstr "Visualizza il servizio di etichettatura fornito da @{0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr "Vedi le verifiche di questo utente"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "Visualizza gli utenti a cui piace questo feed"
@@ -8339,11 +9058,11 @@ msgstr "Visualizza gli utenti a cui piace questo feed"
msgid "View video"
msgstr "Vedi video"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "Vedi i tuoi account bloccati"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr "Vedi impostazioni predefinite per le interazioni"
@@ -8352,14 +9071,18 @@ msgstr "Vedi impostazioni predefinite per le interazioni"
msgid "View your feeds and explore more"
msgstr "Vedi i tuoi feed e scoprine degli altri"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "Vedi le tue liste di moderazione"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "Vedi i tuoi account silenziati"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr "Vedi le tue verifiche"
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "Avvisa il contenuto"
msgid "Warn content and filter from feeds"
msgstr "Avvisa i contenuti e filtra dai feed"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr "Guarda ora"
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "Non siamo riusciti a trovare alcun risultato per quell'hashtag."
@@ -8400,7 +9128,7 @@ msgstr "Non siamo riusciti a trovare alcun risultato per quell'hashtag."
msgid "We couldn't find any results for that topic."
msgstr "Nessun risultato per questo argomento."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "Non riusciamo a caricare questa conversazione"
@@ -8420,6 +9148,14 @@ msgstr "Speriamo di regalarti dei bei momenti. Ricorda, Bluesky è:"
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Abbiamo esaurito i post di chi segui. Ecco le ultime novità da <0/>."
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr "Consigliamo di selezionare almeno due interessi."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Abbiamo inviato un'email a <0>{0}0> contenente un link. Fai clic su di esso per completare la procedura di verifica dell'email."
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Non è stato possibile verificare se puoi caricare video. Riprova."
@@ -8428,7 +9164,7 @@ msgstr "Non è stato possibile verificare se puoi caricare video. Riprova."
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "Non è stato possibile caricare le tue preferenze relative alla data di nascita. Riprova."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:428
msgid "We were unable to load your configured labelers at this time."
msgstr "Al momento non è stato possibile caricare gli etichettatori configurati."
@@ -8440,20 +9176,28 @@ msgstr "Non siamo riusciti a connetterci. Riprova per continuare a configurare i
msgid "We will let you know when your account is ready."
msgstr "Ti faremo sapere quando il tuo account sarà pronto."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "Manderemo un'email a <0>{0}0> contenente un link. Fai clic su di esso per completare la procedura di verifica dell'email."
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "Lo useremo per personalizzare la tua esperienza."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "Stiamo riscontrando problemi di rete, riprova"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr "Stiamo introducendo un nuovo livello di verifica su Bluesky -- una spunta riconoscibile."
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "Siamo felici che tu ti unisca a noi!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
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}."
@@ -8461,11 +9205,11 @@ msgstr "Siamo spiacenti, ma non siamo riusciti a risolvere questa lista. Se il p
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Non è stato possibile caricare le parole silenziate. Riprova."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
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:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Ci dispiace! Il post a cui cerchi di rispondere è stato eliminato."
@@ -8474,7 +9218,7 @@ msgstr "Ci dispiace! Il post a cui cerchi di rispondere è stato eliminato."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Ci dispiace! Non riusciamo a trovare la pagina che stavi cercando."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Ci dispiace! Puoi iscriverti solo a venti etichettatori e al momento hai raggiunto questo limite."
@@ -8494,16 +9238,16 @@ msgstr "Quali sono i tuoi interessi?"
msgid "What do you want to call your starter pack?"
msgstr "Come vuoi chiamare il tuo starter pack?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "Cosa stanno postando le persone."
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "Come va?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr "Quando tocchi un segno di spunta, vedrai quali organizzazioni hanno rilasciato la verifica."
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "In quali lingue è scritto questo post?"
@@ -8520,14 +9264,18 @@ msgstr "Chi può interagire con questo post?"
msgid "Who can reply"
msgstr "Chi può rispondere"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr "Chi può verificare?"
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "Ops!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr "Ops! Non è stato possibile caricare i video di tendenza."
@@ -8574,11 +9322,11 @@ msgstr "Perché questo utente dovrebbe essere esaminato?"
msgid "Write a message"
msgstr "Scrivi un messaggio"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "Scrivi un post"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Scrivi la tua risposta"
@@ -8588,11 +9336,16 @@ msgstr "Scrivi la tua risposta"
msgid "Writers"
msgstr "Scrittori"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "Il server ha restituito un DID errato. Ricevuto: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr "www.miadiretta.tv"
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "Si"
@@ -8601,15 +9354,15 @@ msgstr "Si"
msgid "Yes, deactivate"
msgstr "Sì, disattiva il mio account"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "Sì, elimina questo starter pack"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "Sì, scollega"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "Sì"
@@ -8625,14 +9378,31 @@ msgstr "Ieri"
msgid "You"
msgstr "Io"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr "Sei un certificatore attendibile"
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
-msgstr ""
+msgstr "Stai creando un account su"
#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
msgstr "Sei nella lista."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr "Sei in diretta"
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr "Non sei più in diretta"
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr "Non ti è consentito andare in diretta"
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "Non sei autorizzato a caricare video."
@@ -8641,6 +9411,27 @@ msgstr "Non sei autorizzato a caricare video."
msgid "You are not following anyone."
msgstr "Non stai seguendo nessuno."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr "Adesso sei in diretta!"
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr "Sei verificato"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr "Sei verificato. Se cambi il tuo nome visualizzato, perderai lo stato di verifica. <0>Scopri di più.0>"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr "Sei verificato. Se cambi il tuo nome utente, perderai lo stato di verifica. <0>Scopri di più.0>"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr "Puoi modificare i tuoi interessi in qualsiasi momento nelle impostazioni \"Contenuti e media\"."
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr "Puoi configurare le impostazioni di interazione predefinite in <0>Impost
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "Puoi modificare questa preferenza dalle impostazioni."
@@ -8682,7 +9472,7 @@ msgstr "Non hai follower."
msgid "You don't follow any users who follow @{name}."
msgstr "Non segui nessuno che segue @{name}."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr "Non hai richieste di messaggi al momento."
@@ -8736,24 +9526,24 @@ msgstr "Hai silenziato questo account."
msgid "You have muted this user"
msgstr "Hai silenziato questo utente"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "Non hai ancora nessuna conversazione. Avviane una!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "Non hai feed."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "Non hai liste."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Non hai ancora bloccato nessun account. Per bloccare un account, vai sul profilo e seleziona \"Blocca account\" dal menu dell'account."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Non hai ancora silenziato nessun account. Per silenziare un account, vai sul suo profilo e seleziona \"Silenzia account\" dal menu dell'account."
@@ -8761,11 +9551,15 @@ msgstr "Non hai ancora silenziato nessun account. Per silenziare un account, vai
msgid "You have reached the end"
msgstr "Hai raggiunto la fine"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr "Hai verificato correttamente il tuo indirizzo email. Puoi chiudere questa finestra di dialogo."
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Hai raggiunto il limite temporaneo dei video caricati. Riprova più tardi."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "Non hai ancora creato uno starter pack!"
@@ -8787,22 +9581,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Puoi presentare ricorso, se ritieni che queste etichette siano state applicate per errore."
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "Puoi aggiungere un massimo di {STARTER_PACK_MAX_SIZE} utenti"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr "Puoi aggiungere fino a {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profili}}"
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "Puoi aggiungere un massimo di 3 feed"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "È possibile selezionare fino a 4 immagini"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
+msgid "You must be 13 years of age or older to create an account."
msgstr "Per iscriverti devi avere almeno 13 anni."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Devi seguire almeno altri 7 utenti per creare uno starter pack."
@@ -8810,28 +9604,40 @@ msgstr "Devi seguire almeno altri 7 utenti per creare uno starter pack."
msgid "You must grant access to your photo library to save a QR code"
msgstr "Devi concedere il permesso alla galleria per salvare il codice QR"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "Devi concedere il permesso alla galleria per salvare l'immagine."
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "È necessario selezionare almeno un'etichettatore per un report"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr "Per abilitare l'autenticazione a due fattori via email è necessario verificare il tuo indirizzo email."
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "Hai precedentemente disattivato @{0}."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr "Probabilmente è il momento di riavviare l'app."
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr "Hai reagito con {0}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr "Hai reagito con {0} a {1}"
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "Verrai disconnesso da tutti i tuoi account."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "Non riceverai più notifiche relative a questo thread"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "Riceverai le notifiche per questo thread"
@@ -8839,23 +9645,23 @@ msgstr "Riceverai le notifiche per questo thread"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Riceverai un'email con un codice di recupero. Inserisci il codice qui, poi inserisci la tua nuova password."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "Tu: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Tu: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "Tu: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "Seguirai gli utenti e i feed consigliati alla fine della creazione del tuo account!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "Seguirai gli utenti consigliati alla fine della creazione del tuo account!"
@@ -8867,7 +9673,7 @@ msgstr "Seguirai queste persone e {0} altre"
msgid "You'll follow these people right away"
msgstr "Seguirai immediatamente queste persone"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "Riceverai un'email all'indirizzo <0>{0}0> per verificare la tua identità."
@@ -8901,6 +9707,10 @@ msgstr "Hai trovato alcune persone da seguire"
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/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr "Hai raggiunto il numero massimo di richieste consentite. Riprova più tardi."
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi byte)"
@@ -8909,11 +9719,11 @@ msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi byte)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi video)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Non ci sono altri video da guardare. Forse è il momento giusto per fare una pausa?"
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "Il tuo account"
@@ -8941,7 +9751,7 @@ msgstr "Abbiamo riscontrato che il tuo account viola i <0>termini di servizio di
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr "La richiesta di revisione è stata inviata. Se il ricorso ha esito positivo, riceverai un'email."
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "Data di nascita"
@@ -8953,26 +9763,30 @@ msgstr "Il tuo browser non supporta questo formato video. Prova con un altro bro
msgid "Your chats have been disabled"
msgstr "Le tue conversazioni sono state disabilitate"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "La tua scelta verrà salvata, ma potrà essere modificata successivamente nelle impostazioni."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr "La tua scelta sarà ricordata per i collegamenti futuri. Puoi cambiarla in qualsiasi momento nelle impostazioni."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "Il tuo attuale nome utente <0>{0}0> rimarrà automaticamente riservato per te. Puoi tornare a usarlo in qualsiasi momento da questo account."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr "Il tuo indirizzo email è stato aggiornato ma non è ancora verificato. Come passo successivo, verifica la tua nuova email."
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Sembra che il tuo indirizzo email non sia corretto."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "La tua email è stata aggiornata, ma non verificata. Come passo successivo, verifica la tua nuova email."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr "La tua email non è stata ancora verificata. Verifica la tua email per poter usare tutte le funzionalità di Bluesky."
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
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."
@@ -8988,14 +9802,31 @@ msgstr "I tuoi follower"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Il tuo feed Seguiti è vuoto! Segui più utenti per vedere cosa sta succedendo."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "Il tuo nome utente completo sarà <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr "Il tuo nome utente completo sarà <0>@{0}0>"
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr "I tuoi interessi"
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr "I tuoi interessi sono stati salvati!"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr "I tuoi interessi ci aiutano a trovare quello che più ti piace!"
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Le tue parole silenziate"
@@ -9004,15 +9835,15 @@ msgstr "Le tue parole silenziate"
msgid "Your password has been changed successfully!"
msgstr "La tua password è stata modificata correttamente!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr "La tua password deve essere lunga almeno 8 caratteri."
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "Il tuo post è stato pubblicato"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "I tuoi post sono stati pubblicati"
@@ -9024,14 +9855,22 @@ msgstr "I tuoi post, i tuoi mi piace e gli account bloccati sono pubblici. Gli a
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Il tuo profilo, post, feed, e liste non saranno più visibili agli altri utenti. Puoi riattivare il tuo account in qualsiasi momento effettuando l'accesso."
-#: src/view/com/composer/Composer.tsx:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "La tua risposta è stata pubblicata"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr "La segnalazione sarà inviata a <0>{0}0>."
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "La tua segnalazione verrà inviata al servizio moderazione di Bluesky"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr "Gli interessi che selezioni ci permettono di mostrare i contenuti più pertinenti."
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr "Le tue verifiche"
diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po
index 6c47cbd19e..a8d31fa1e7 100644
--- a/src/locale/locales/ja/messages.po
+++ b/src/locale/locales/ja/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ja\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 03:35\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(アクティブ)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(埋め込みコンテンツあり)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(メールがありません)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, other {# リポスト}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, other {#秒}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, other {#件の未読}}"
@@ -90,17 +90,17 @@ msgstr "{0, plural, other {#件の未読}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, other {#ヶ月}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, other {フォロワー}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, other {フォロー中}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, other {いいね}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, other {いいね}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, other {投稿}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, other {引用}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, other {リポスト}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, other {{1}件の投稿}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "{0, plural, other {#人が}}このスターターパックを使用しました!"
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "<0><1>タグ1>中の0>{0}"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "<0><1>テキストとタグ1>中の0>{0}"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr "{0}はライブ中"
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr "{0} は有効な URL ではありません"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "今週、{0}人が参加しました"
@@ -137,13 +154,18 @@ msgstr "{0} / {1}"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
-msgstr ""
+msgstr "{0} / 50"
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0}人がこのスターターパックを使用しました!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "{0}が{1}とリアクションしました"
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "{0}が{2}に{1}とリアクションしました"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "{0}のアバター"
@@ -175,7 +197,7 @@ msgstr "{0}分"
msgid "{0}s"
msgstr "{0}秒"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, other {#件の未読}}"
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, other {時間}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, other {分}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}0>があなたをフォローしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}0>があなたのカスタムフィードをいいねしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}0>があなたの投稿をいいねしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}0>があなたのリポストをいいねしました"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr "{firstAuthorLink} と <0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}0> があなたのアカウントから認証を削除しました"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}0>があなたの投稿をリポストしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}0>があなたのリポストをリポストしました"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}0>があなたのスターターパックでサインアップしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr "{firstAuthorLink} と <0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}0> があなたを認証しました"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink}があなたをフォローしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink}があなたをフォローバックしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "{firstAuthorLink}があなたのカスタムフィードをいいねしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "{firstAuthorLink}があなたの投稿をいいねしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr "{firstAuthorLink}があなたのリポストをいいねしました"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr "{firstAuthorLink} があなたのアカウントから認証を削除しました"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink}があなたの投稿をリポストしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr "{firstAuthorLink}があなたのリポストをリポストしました"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink}があなたのスターターパックでサインアップしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr "{firstAuthorLink} があなたを認証しました"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたをフォローしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのカスタムフィードをいいねしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたの投稿をいいねしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのリポストをいいねしました"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr "{firstAuthorName} と {additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}} があなたのアカウントから認証を削除しました"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたの投稿をリポストしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人が}}あなたのリポストをリポストしました"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのスターターパックでサインアップしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr "{firstAuthorName} と {additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}} があなたを認証しました"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName}があなたをフォローしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName}があなたをフォローバックしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "{firstAuthorName}があなたのカスタムフィードをいいねしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "{firstAuthorName}があなたの投稿をいいねしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr "{firstAuthorName}があなたのリポストをいいねしました"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr "{firstAuthorName} があなたのアカウントから認証を削除しました"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName}があなたの投稿をリポストしました"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr "{firstAuthorName}があなたのリポストをリポストしました"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName}があなたのスターターパックでサインアップしました"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr "{firstAuthorName} があなたを認証しました"
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} フォロー"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "{handle}にメッセージを送れません"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr "{hours, plural, other {#時間{minutesString}}}"
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr "{hours, plural, other {#時間}}"
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "{joinedAllTimeCount, plural, other {#人のユーザーが}}参加しました!"
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr "{minutes, plural, other {#分}}"
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, other {#件の未読}}"
@@ -301,6 +404,34 @@ msgstr "{profileName}はBlueskyに{0}前に参加しました"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName}はスターターパックを使って{0}前に参加しました"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "{type}時間前"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr "{userName} は信頼された認証者です"
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr "{userName} は認証されています"
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr "{userName}の認証情報"
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "+{computedTotal}"
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, other {フォロワー}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, other {フォロー}}"
@@ -343,7 +474,7 @@ msgstr "<0>実験的機能:0> この設定を有効にすると、フォロ
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>あなた0>と<1>1><2>{0}2>はあなたのスターターパックに含まれています"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠無効なハンドル"
@@ -363,19 +494,28 @@ msgstr "30日"
msgid "7 days"
msgstr "7日"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "メッセージ"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr "認証の新しい形"
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "このアプリについて"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr "承認"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr "チャットのリクエストを承認する"
@@ -385,40 +525,40 @@ msgid "Accept Request"
msgstr "リクエストを承認"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "アクセシビリティ"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "アクセシビリティの設定"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "アカウント"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "アカウントをブロックしました"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "アカウントをフォローしました"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "アカウントをミュートしました"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
@@ -429,33 +569,37 @@ msgstr "ミュート中のアカウント"
msgid "Account Muted by List"
msgstr "リストによってミュート中のアカウント"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "アカウントオプション"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "クイックアクセスからアカウントを解除"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "アカウントのブロックを解除しました"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "アカウントのフォローを解除しました"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
-msgstr ""
+msgstr "アカウントのミュートを解除しました"
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+msgstr "スカラップ状(帆立貝の形状)の青色のチェックマーク <0><1/>0> のあるアカウントは他のユーザを認証できます。これらの信頼できる認証者はBlueskyによって選択されています。"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "追加"
@@ -473,8 +617,12 @@ msgstr "{displayName}をスターターパックに加える"
msgid "Add a content warning"
msgstr "コンテンツの警告を追加"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr "プロフィールに一時的なライブステータスを追加します。アバターをクリックすると、ライブイベントに関する情報が表示されます。"
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "リストにユーザーを追加"
@@ -485,7 +633,7 @@ msgstr "アカウントを追加"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "アカウントを追加"
msgid "Add alt text"
msgstr "ALTテキストを追加"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "ALTテキストを追加(オプション)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "他のアカウントを追加"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "他の投稿を追加"
@@ -518,8 +666,12 @@ msgstr "アプリパスワードを追加"
msgid "Add App Password"
msgstr "アプリパスワードを追加"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr "絵文字リアクションを追加"
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr "詳細を追加(オプション)"
@@ -531,15 +683,23 @@ msgstr "選択した設定でミュートワードを追加"
msgid "Add muted words and tags"
msgstr "ミュートするワードとタグを追加"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "新しい投稿を追加"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "ユーザーを追加"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr "リストにユーザーを追加する"
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr "リアクションを追加"
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "おすすめのフィードを追加"
@@ -552,27 +712,28 @@ msgstr "あなたのスターターパックにフィードをいくつか追加
msgid "Add the default feed of only people you follow"
msgstr "フォローしているユーザーのみのデフォルトのフィードを追加"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "次のDNSレコードをドメインに追加してください:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "このフィードをあなたのフィードに追加する"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "リストに追加"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "リストに追加"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "マイフィードに追加"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr "リストにユーザーを追加"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "リストに追加"
@@ -581,22 +742,22 @@ msgstr "リストに追加"
msgid "Added to my feeds"
msgstr "マイフィードに追加"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr "追加の詳細(300文字まで)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "成人向け(ポルノ等)"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "成人向けコンテンツ"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "成人向けコンテンツは<0>bsky.app0>のウェブ版からしか有効にできません。"
@@ -604,30 +765,35 @@ msgstr "成人向けコンテンツは<0>bsky.app0>のウェブ版からしか
msgid "Adult content is disabled."
msgstr "成人向けコンテンツは無効になっています。"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "成人向けコンテンツのラベル"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "高度な設定"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr "alice@example.com"
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "すべて"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "すべてのアカウントをフォローしました!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "すべての言語"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "保存されたすべてのフィードを1箇所にまとめます。"
@@ -671,10 +837,10 @@ msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "ALTテキスト"
@@ -688,19 +854,18 @@ msgstr "ALTテキストは、すべての人が文脈を理解できるように
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "ALTテキストは切り詰められます。上限:{0}文字。"
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr "ALTテキストは切り詰められます。{MAX_ALT_TEXT, plural, other {制限:{0}文字。}}"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "メールが{0}に送信されました。以下に入力できる確認コードがそのメールに記載されています。"
-#: src/view/com/modals/ChangeEmail.tsx:114
-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/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr "メールを前のメールアドレス {currentEmail} に送りました。以下に入力できる確認コードがそのメールに記載されています。"
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "メールが送信されました!メールに書かれている確認コードを以下に入力してください。"
@@ -716,7 +881,11 @@ msgstr "エラーが発生しました"
msgid "An error occurred while compressing the video."
msgstr "ビデオの圧縮中にエラーが発生しました。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr "フィードの取得中にエラーが発生しました。"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "スターターパックの生成中にエラーが発生しました。もう一度試しますか?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "ビデオの読み込み時にエラーが発生しました。もう一度お試しください。"
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "QRコードの保存中にエラーが発生しました!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "ビデオの選択中にエラーが発生しました"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "すべてフォローしようとしたらエラーが発生しました"
@@ -746,12 +914,17 @@ msgstr "すべてフォローしようとしたらエラーが発生しました
msgid "An error occurred while uploading the video."
msgstr "ビデオのアップロード中にエラーが発生しました。"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr "Blueskyが信頼された認証者を選択し、信頼された認証者が個々のユーザアカウントを認証することを示す図。"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "ほかの選択肢にはあてはまらない問題"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "チャットの開始時に問題が発生しました"
@@ -761,13 +934,17 @@ msgstr "チャットを開始しようとした時に問題が発生しました
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "問題が発生しました。もう一度お試しください。"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr "Blueskyアプリが表示されているiPhoneのモックアップで、認証されたユーザーのプロフィールを開くと、表示名の横に青色のチェックマークが表示されています。"
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "何らかのエラーが発生しました"
@@ -790,6 +967,10 @@ msgstr "動物"
msgid "Animated GIF"
msgstr "アニメーションGIF"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr "Blueskyでの認証のお知らせ"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "反社会的な行動"
msgid "Anybody can interact"
msgstr "誰でも反応可能"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "アプリアイコン"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "アプリの言語"
@@ -817,7 +998,7 @@ msgstr "アプリパスワード"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "アプリパスワードを削除しました"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
@@ -836,7 +1017,7 @@ msgstr "アプリパスワードの名前は長さが4文字以上である必
msgid "App passwords"
msgstr "アプリパスワード"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "アプリパスワード"
@@ -854,7 +1035,7 @@ msgstr "「{0}」のラベルに異議を申し立てる"
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "異議申し立てを送信しました"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -872,10 +1053,10 @@ msgstr "アカウント停止に異議申し立て"
msgid "Appeal this decision"
msgstr "この決定に異議を申し立てる"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "外観"
@@ -884,12 +1065,12 @@ msgstr "外観"
msgid "Apply default recommended feeds"
msgstr "デフォルトのおすすめフィードを追加"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "{0}のアーカイブ"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "アーカイブ投稿"
@@ -897,15 +1078,15 @@ msgstr "アーカイブ投稿"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "アプリパスワード「{0}」を本当に削除しますか?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
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:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "本当にこのスターターパックを削除したいですか?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "本当に変更を破棄したいですか?"
@@ -921,15 +1102,15 @@ msgstr "この会話から退出しますか?あなたのメッセージはあ
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "あなたのフィードから{0}を削除してもよろしいですか?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "本当にこのフィードをあなたのフィードから削除したいですか?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "本当にこの下書きを削除しますか?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "本当にこの投稿を削除しますか?"
@@ -937,7 +1118,7 @@ msgstr "本当にこの投稿を削除しますか?"
msgid "Are you sure?"
msgstr "本当によろしいですか?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "<0>{suggestedLanguageName}0>で書かれた投稿ですか?"
@@ -946,29 +1127,34 @@ msgstr "<0>{suggestedLanguageName}0>で書かれた投稿ですか?"
msgid "Art"
msgstr "アート"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "芸術的または性的ではないヌード。"
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr "アルゴリズム用にトピックを割り当て"
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "少なくとも3文字"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:40
msgctxt "Name of app icon variant"
msgid "Aurora"
-msgstr ""
+msgstr "オーロラ"
#: src/screens/Settings/AccessibilitySettings.tsx:105
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "自動再生オプションは<0>コンテンツとメディアの設定0>へ移動しました。"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "ビデオとGIFの自動再生"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "ビデオとGIFの自動再生"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "戻る"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr "チャットへ戻る"
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "リストを作る前に、まずメールアドレスを確認しなければなりません。"
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "投稿する前に、まずメールアドレスを確認しなければなりません。"
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr "投稿や返信には、まずメールアドレスの確認が必要です。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "スターターパックを作る前に、まずメールアドレスを確認しなければなりません。"
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "他のユーザーにメッセージを送る前に、まずメールアドレスを確認しなければなりません。"
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr "このチャットのリクエストを受け付けるには、まずメールアドレスの確認が必要です。"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "ベータ"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
+msgstr "他のユーザーにメッセージを送るには、まずメールアドレスの確認が必要です。"
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "生年月日"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "ブロック"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "アカウントをブロック"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "アカウントをブロックしますか?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "アカウントをブロック"
@@ -1054,7 +1241,7 @@ msgstr "ブロックと削除"
msgid "Block and/or delete this conversation"
msgstr "この会話をブロックして削除(あるいはどちらか)"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "リストをブロック"
@@ -1062,7 +1249,7 @@ msgstr "リストをブロック"
msgid "Block or report"
msgstr "ブロックまたは報告"
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "これらのアカウントをブロックしますか?"
@@ -1079,21 +1266,21 @@ msgstr "ユーザーをブロック"
msgid "Blocked"
msgstr "ブロックされています"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "ブロック中のアカウント"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "ブロック中のアカウント"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "ブロック中のアカウントは、あなたのスレッドでの返信、あなたへのメンション、その他の方法であなたとやり取りすることはできません。"
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 "ブロック中のアカウントは、あなたのスレッドでの返信、あなたへのメンション、その他の方法であなたとやり取りすることはできません。あなたは相手のコンテンツを見ることができず、相手はあなたのコンテンツを見ることができなくなります。"
@@ -1101,19 +1288,19 @@ msgstr "ブロック中のアカウントは、あなたのスレッドでの返
msgid "Blocked post."
msgstr "投稿をブロックしました。"
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "ブロックしてもこのラベラーがあなたのアカウントにラベルを適用することができます。"
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "ブロックしたことは公開されます。ブロック中のアカウントは、あなたのスレッドでの返信、あなたへのメンション、その他の方法であなたとやり取りすることはできません。"
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
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:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "ブログ"
@@ -1122,14 +1309,14 @@ msgstr "ブログ"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Blueskyでは、この投稿日時の信憑性を確認できません。"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:129
msgctxt "Name of app icon variant"
msgid "Bluesky Classic™"
-msgstr ""
+msgstr "Bluesky Classic™"
#: src/view/com/auth/server-input/index.tsx:212
msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server."
@@ -1148,7 +1335,7 @@ msgstr "Blueskyは友達と一緒のほうが楽しい!"
msgid "Bluesky Social Terms of Service"
msgstr "Bluesky Social利用規約"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Blueskyはあなたのつながっているユーザーからおすすめのアカウントを選びます。"
@@ -1156,6 +1343,10 @@ msgstr "Blueskyはあなたのつながっているユーザーからおすす
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Blueskyはログアウトしたユーザーにあなたのプロフィールや投稿を表示しません。他のアプリはこのリクエストに応じない場合があります。この設定はあなたのアカウントを非公開にするものではありません。"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr "Blueskyは著名な本物のアカウントを積極的に認証します。"
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1177,23 +1368,23 @@ msgstr "画像のぼかしとフィードからのフィルタリング"
msgid "Books"
msgstr "書籍"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "検索ページでさらにアカウントを見る"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "検索ページでさらにフィードを見る"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "さらにおすすめを見る"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "検索ページでさらにおすすめを見る"
@@ -1214,20 +1405,26 @@ msgstr "{displayName}のタグの付いた投稿を見る"
msgid "Browse starter pack {displayName}"
msgstr "{displayName}というスターターパックを見る"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr "トピック「{0}」を見る"
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "{displayName}というトピックを見る"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "ビジネス"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "作成者:{0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "作成者:<0>{0}0>"
@@ -1243,44 +1440,51 @@ msgstr "アカウントを作成することで、<0>利用規約0>と<1>プ
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "アカウントを作成することで、<0>利用規約0>に同意したものとみなされます。"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr "作成者:あなた"
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "カメラ"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "キャンセル"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "アカウントの削除をキャンセル"
msgid "Cancel image crop"
msgstr "画像の切り抜きをキャンセル"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "プロフィールの編集をキャンセル"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "引用をキャンセル"
@@ -1308,8 +1512,7 @@ msgstr "引用をキャンセル"
msgid "Cancel reactivation and sign out"
msgstr "再有効化をキャンセルしてサインアウト"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "検索をキャンセル"
@@ -1317,24 +1520,23 @@ msgstr "検索をキャンセル"
msgid "Cancels opening the linked website"
msgstr "リンク先のウェブサイトを開くことをキャンセル"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "ブロックしたユーザーとはやりとりできません"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "キャプション(.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "キャプション&ALTテキスト"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "変更"
@@ -1347,46 +1549,41 @@ msgstr "アプリアイコンを変更"
msgid "Change app icon to \"{0}\""
msgstr "アプリアイコンを「{0}」へ変更"
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "メールアドレスを変更"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr "アプリの言語を変更"
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "メールアドレスを変更"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "ハンドルを変更"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr "モデレーションサービスを変更"
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "メールアドレスを変更"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "パスワードを変更"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "投稿の言語を{suggestedLanguageName}に変更します"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr "報告の理由を変更"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "メールアドレスを変更"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "メールアドレスを変更"
@@ -1394,43 +1591,42 @@ msgstr "メールアドレスを変更"
msgid "Changes app icon"
msgstr "アプリアイコンを変更"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr "ホスティングプロバイダーを変更"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "チャット"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
-msgstr ""
+msgstr "チャットを削除しました"
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "チャットをミュートしました"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr "チャット要求の受信トレイ"
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr "チャットの要求"
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "チャットの設定"
@@ -1441,10 +1637,10 @@ msgstr "チャットの設定"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "チャットのミュートを解除しました"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr "チャット"
@@ -1461,7 +1657,7 @@ msgstr "確認コードが記載されたメールを確認し、ここに入力
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "入力したメールアドレスの受信トレイを確認して、以下に入力するための確認コードが記載されたメールが届いていないか確認してください:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "ドメイン名の確認方法を選択"
@@ -1469,7 +1665,7 @@ msgstr "ドメイン名の確認方法を選択"
msgid "Choose Feeds"
msgstr "フィードの選択"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "私向けに選んで"
@@ -1477,10 +1673,6 @@ msgstr "私向けに選んで"
msgid "Choose People"
msgstr "ユーザーの選択"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "投稿しようとしているメディアに適した自己ラベルを選んでください。何も選択しない場合は、この投稿はすべての閲覧者へ適したものとします。"
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "カスタムフィードのアルゴリズムを選択できます。"
@@ -1493,27 +1685,31 @@ msgstr "この色をアバターとして選択"
msgid "Choose your account provider"
msgstr "アカウントプロバイダーを選んでください"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "自分自身のタイムラインを選びましょう!コミュニティによって作成されたフィードは、あなたが好きなコンテンツを見つけるのに役立ちます。"
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "パスワードを入力"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "ユーザー名を選んでください"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "すべてのストレージデータをクリア"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "すべてのストレージデータをクリア(このあと再起動します)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr "画像のキャッシュをクリア"
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "検索クエリをクリア"
@@ -1522,6 +1718,14 @@ msgstr "検索クエリをクリア"
msgid "click here"
msgstr "こちらをクリック"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr "確認プロセスを再開するには、ここをクリックしてください。"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr "メールアドレスの更新は、ここをクリック"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "クリックしてこの投稿の引用投稿を無効に。"
@@ -1534,7 +1738,7 @@ msgstr "クリックしてこの投稿の引用投稿を有効に。"
msgid "Click to open tag menu for {tag}"
msgstr "クリックして {tag} のタグメニューを表示"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "送信失敗したメッセージを再送信"
@@ -1546,24 +1750,34 @@ msgstr "気象"
msgid "Clip 🐴 clop 🐴"
msgstr "パカラッ 🐴 パカラッ 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "閉じる"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "アクティブなダイアログを閉じる"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "一番下の引き出しを閉じる"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "ダイアログを閉じる"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr "引き出しメニューを閉じる"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "絵文字選択を閉じる"
@@ -1600,7 +1816,13 @@ msgstr "画像を閉じる"
msgid "Close image viewer"
msgstr "画像ビューアを閉じる"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr "メニューを閉じる"
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "このダイアログを閉じる"
@@ -1608,8 +1830,12 @@ msgstr "このダイアログを閉じる"
msgid "Closes password update alert"
msgstr "パスワード更新アラートを閉じる"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr "投稿の編集画面を閉じて下書きを破棄"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr "絵文字選択を閉じる"
@@ -1617,11 +1843,11 @@ msgstr "絵文字選択を閉じる"
msgid "Closes viewer for header image"
msgstr "ヘッダー画像のビューワーを閉じる"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "ユーザーリストを折りたたむ"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "指定した通知のユーザーリストを折りたたむ"
@@ -1644,7 +1870,7 @@ msgstr "コメディー"
msgid "Comics"
msgstr "漫画"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "コミュニティガイドライン"
@@ -1653,23 +1879,23 @@ msgstr "コミュニティガイドライン"
msgid "Complete onboarding and start using your account"
msgstr "初期設定を完了してアカウントを使い始める"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "テストをクリアしてください"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "新しい投稿を作成"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "{MAX_GRAPHEME_LENGTH}文字までの投稿を作成"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr "最大{0, plural, other {#文字}}まで投稿を編集"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "返信を作成"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "ビデオを圧縮中…"
@@ -1681,23 +1907,17 @@ msgstr "このカテゴリのコンテンツフィルタリングを設定:{na
msgid "Configured in <0>moderation settings0>."
msgstr "<0>モデレーションの設定0>で設定されています。"
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "確認"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "変更を確認"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "コンテンツの言語設定を確認"
@@ -1706,26 +1926,27 @@ msgstr "コンテンツの言語設定を確認"
msgid "Confirm delete account"
msgstr "アカウントの削除を確認"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "年齢の確認:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "生年月日の確認"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "確認コード"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "確認コード"
@@ -1733,22 +1954,22 @@ msgstr "確認コード"
msgid "Connecting..."
msgstr "接続中…"
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "サポートに連絡"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "コンテンツ&メディア"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "コンテンツとメディア"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "コンテンツとメディア"
@@ -1756,15 +1977,15 @@ msgstr "コンテンツとメディア"
msgid "Content Blocked"
msgstr "ブロックされたコンテンツ"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "コンテンツのフィルター"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr "お好みかもしれないネットワークからのコンテンツ。"
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "コンテンツの言語"
@@ -1785,16 +2006,16 @@ msgstr "コンテンツの警告"
msgid "Content warnings"
msgstr "コンテンツの警告"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "コンテキストメニューの背景をクリックし、メニューを閉じる。"
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "続行"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "{0}として続行(現在サインイン中)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "スレッドの続き…"
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "次のステップへ進む"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "会話が削除されました"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "会話が削除されました"
@@ -1826,16 +2047,17 @@ msgstr "料理"
msgid "Copied"
msgstr "コピーしました"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "ビルドバージョンをクリップボードにコピーしました"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "クリップボードにコピーしました"
@@ -1844,25 +2066,29 @@ msgstr "クリップボードにコピーしました"
msgid "Copied!"
msgstr "コピーしました!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr "ビルドバージョンをクリップボードへコピー"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "コピー"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr "とにかくコピーする"
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "アプリパスワードをコピー"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr "at:// URIをコピー"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr "投稿者のDIDをコピー"
@@ -1871,57 +2097,69 @@ msgstr "投稿者のDIDをコピー"
msgid "Copy code"
msgstr "コードをコピー"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "DIDをコピー"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "ホストをコピー"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "リンクをコピー"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "リンクをコピー"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "リストへのリンクをコピー"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "投稿へのリンクをコピー"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr "プロフィールへのリンクをコピー"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr "スターターパックへのリンクをコピー"
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "メッセージのテキストをコピー"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr "投稿のat:// URIをコピー"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "投稿のテキストをコピー"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "QRコードをコピー"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "TXTレコードの値をコピー"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "著作権ポリシー"
@@ -1931,11 +2169,11 @@ msgstr "著作権ポリシー"
msgid "Could not leave chat"
msgstr "チャットからの退出に失敗しました"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "フィードの読み込みに失敗しました"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "リストの読み込みに失敗しました"
@@ -1947,28 +2185,28 @@ msgstr "チャットのミュートに失敗しました"
msgid "Could not process your video"
msgstr "ビデオを処理できませんでした"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "作成"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "スターターパックのQRコードを作成"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "スターターパックを作成"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "私向けのスターターパックを作成"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "私向けのスターターパックを作成"
msgid "Create account"
msgstr "アカウントを作成"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "アカウントを作成"
@@ -1985,11 +2223,16 @@ msgstr "アカウントを作成"
msgid "Create an account"
msgstr "アカウントを作成"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr "このスターターパックを使用せずにアカウントを作成する"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "代わりにアバターを作成"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "別のものを作成"
@@ -1998,7 +2241,7 @@ msgstr "別のものを作成"
msgid "Create new account"
msgstr "新しいアカウントを作成"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "{0}の報告を作成"
@@ -2053,17 +2296,17 @@ msgstr "ダークモード"
msgid "Dark theme"
msgstr "ダークテーマ"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "生年月日"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "アカウントを無効化"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "モデレーションをデバッグ"
@@ -2079,19 +2322,19 @@ msgstr "デフォルト"
msgid "Default icons"
msgstr "デフォルトアイコン"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "削除"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "アカウントを削除"
@@ -2107,19 +2350,19 @@ msgstr "アプリパスワードを削除"
msgid "Delete app password?"
msgstr "アプリパスワードを削除しますか?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr "チャットを削除"
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "チャットの宣言レコードを削除"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "会話を削除"
@@ -2127,19 +2370,19 @@ msgstr "会話を削除"
msgid "Delete Conversation"
msgstr "会話を削除"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "自分宛を削除"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
msgstr "リストを削除"
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "メッセージを削除"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "メッセージの宛先から自分を削除"
@@ -2147,26 +2390,26 @@ msgstr "メッセージの宛先から自分を削除"
msgid "Delete my account"
msgstr "アカウントを削除"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "投稿を削除"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "スターターパックを削除"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "スターターパックを削除しますか?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "このリストを削除しますか?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "この投稿を削除しますか?"
@@ -2174,8 +2417,8 @@ msgstr "この投稿を削除しますか?"
msgid "Deleted"
msgstr "削除されています"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "削除されたアカウント"
@@ -2183,48 +2426,48 @@ msgstr "削除されたアカウント"
msgid "Deleted post."
msgstr "投稿を削除しました。"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "説明"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "説明が長すぎます"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "説明が長すぎます。最大{DESCRIPTION_MAX_GRAPHEMES}文字までです。"
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "説明が長すぎます。{DESCRIPTION_MAX_GRAPHEMES, plural, other {最大で#文字です。}}"
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "説明的なALTテキスト"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "引用を切り離す"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "引用投稿を切り離しますか?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
-msgstr ""
+msgstr "開発者モードを無効にしました"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
-msgstr ""
+msgstr "開発者モードを有効にしました"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "開発者用オプション"
@@ -2236,6 +2479,15 @@ msgstr "ダイアログ:この投稿に誰が反応できるか調整"
msgid "Dim"
msgstr "グレー"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr "2要素認証を無効に"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr "メールでの2要素認証を無効にする"
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "メールでの2要素認証を無効にする"
@@ -2254,25 +2506,25 @@ msgstr "サブタイトル(字幕)を無効にする"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "無効"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "破棄"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "変更を破棄しますか?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "下書きを削除しますか?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "投稿を削除しますか?"
@@ -2281,24 +2533,24 @@ msgstr "投稿を削除しますか?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "アプリがログアウトしたユーザーに自分のアカウントを表示しないようにする"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr "フィードを探す"
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "新しいカスタムフィードを見つける"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "新しいフィードを探す"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "新しいフィードを探す"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "消す"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "エラーを消す"
@@ -2306,6 +2558,10 @@ msgstr "エラーを消す"
msgid "Dismiss getting started guide"
msgstr "入門ガイドを消す"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr "「気になること」を消す"
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr "このセクションを消す"
@@ -2315,27 +2571,27 @@ msgstr "このセクションを消す"
msgid "Display larger alt text badges"
msgstr "大きなALTテキストのバッジを表示"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "表示名"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "表示名"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "表示名が長すぎます"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "表示名が長すぎます。最大{DISPLAY_NAME_MAX_GRAPHEMES}文字までです。"
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "表示名が長すぎます。{DISPLAY_NAME_MAX_GRAPHEMES, plural, other {最大で#文字です。}}"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "DNSパネルがある場合"
@@ -2347,37 +2603,45 @@ msgstr "このミュートワードはフォローしているユーザーには
msgid "Does not include nudity."
msgstr "ヌードは含まれません。"
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "ハイフンで始まったり終ったりしない"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "ドメインを確認しました!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr "コードを持っていないか、新しいコードが必要ですか?<0>ここをクリックしてください。0>"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr "メールが届いていませんか?<0>ここをクリックすれば再送信します。0>"
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "完了"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "完了"
msgid "Done{extraText}"
msgstr "完了{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr "メッセージをダブルタップか長押しでリアクションを追加"
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "ダブルタップでダイアログを閉じる"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr "ダブルタップでいいね"
@@ -2413,23 +2681,23 @@ msgstr "ドロップして画像を追加する"
msgid "Duration:"
msgstr "期間:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "例:太郎"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "例:山田 太郎"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "例:山田 太郎"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
-msgstr "例:taro.com"
+msgstr "例:example.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "例:アーティスト、犬好き、熱烈な読書家。"
@@ -2437,19 +2705,19 @@ msgstr "例:アーティスト、犬好き、熱烈な読書家。"
msgid "E.g. artistic nudes."
msgstr "例:芸術的なヌード。"
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "例:重要な投稿をするユーザー"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "例:スパム"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "例:絶対に投稿を見逃してはならないユーザー。"
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "例:返信として広告を繰り返し送ってくるユーザー。"
@@ -2457,20 +2725,21 @@ msgstr "例:返信として広告を繰り返し送ってくるユーザー。
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "それぞれのコードは一回限り有効です。定期的に追加の招待コードをお送りします。"
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "編集"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "編集"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "アバターを編集"
@@ -2478,31 +2747,41 @@ msgstr "アバターを編集"
msgid "Edit Feeds"
msgstr "フィードを編集"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "画像を編集"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "反応関連の設定を編集"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr "「気になること」を編集"
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "リストの詳細を編集"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr "ライブステータスを編集"
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "モデレーションリストを編集"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "マイフィードを編集"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "プロフィールを編集"
@@ -2515,23 +2794,23 @@ msgstr "ユーザーを編集"
msgid "Edit post interaction settings"
msgstr "投稿への反応の設定を編集"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "プロフィールを編集"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "プロフィールを編集"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "スターターパックを編集"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "ユーザーリストを編集"
@@ -2539,15 +2818,15 @@ msgstr "ユーザーリストを編集"
msgid "Edit who can reply"
msgstr "誰が返信できるのかを編集"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "表示名を編集"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "プロフィールの説明を編集"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "スターターパックを編集"
@@ -2560,16 +2839,15 @@ msgstr "教育"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "リストの作者にブロックされているか、作者をブロックしています。"
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "メールアドレス"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "メールでの2要素認証を無効にしました"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
@@ -2583,20 +2861,17 @@ msgstr "メールアドレス"
msgid "Email Resent"
msgstr "メール再送済"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
-msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
+msgstr "メールを送りました!"
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "メールアドレスは更新されました"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr "メールアドレスを更新しました!"
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
-msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
+msgstr "メールアドレスの確認が完了しました!"
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
msgid "Email Verified"
@@ -2608,8 +2883,8 @@ msgstr "HTMLコードを埋め込む"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "投稿を埋め込む"
@@ -2617,12 +2892,13 @@ msgstr "投稿を埋め込む"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "この投稿をあなたのウェブサイトに埋め込みます。以下のスニペットをコピーして、あなたのウェブサイトのHTMLコードに貼り付けるだけです。"
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "埋め込みビデオプレーヤー"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "有効にする"
@@ -2630,12 +2906,12 @@ msgstr "有効にする"
msgid "Enable {0} only"
msgstr "{0}のみ有効にする"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "成人向けコンテンツを有効にする"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
msgstr "メールでの2要素認証を有効にする"
#: src/components/dialogs/EmbedConsent.tsx:81
@@ -2660,30 +2936,30 @@ msgstr "サブタイトル(字幕)を有効にする"
msgid "Enable this source only"
msgstr "このソースのみ有効にする"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "トレンド・トピックを有効にする"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr "Discoverフィードでトレンド・ビデオを有効にする"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr "Discoverフィードでトレンド・ビデオを有効にする。"
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "有効"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "フィードの終わり"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "各字幕ファイルに言語が選択されてることを確認してください。"
@@ -2696,13 +2972,14 @@ msgstr "パスワードを入力"
msgid "Enter a word or tag"
msgstr "ワードまたはタグを入力"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
-msgid "Enter Code"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
msgstr "コードを入力"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "確認コードを入力してください"
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
+msgid "Enter Code"
+msgstr "コードを入力"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
@@ -2710,9 +2987,9 @@ msgstr "全画面表示にする"
#: src/view/com/modals/ChangePassword.tsx:165
msgid "Enter the code you received to change your password."
-msgstr "パスワードを変更するために受け取ったコードを入力してください。"
+msgstr "パスワードをリセットするために受け取ったコードを入力してください。"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "使用するドメインを入力してください"
@@ -2720,20 +2997,20 @@ msgstr "使用するドメインを入力してください"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "アカウントの作成に使用したメールアドレスを入力します。新しいパスワードを設定できるように、「リセットコード」をお送りします。"
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr "アカウント作成時に使用したユーザー名またはメールアドレスを入力してください"
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "生年月日を入力してください"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "メールアドレスを入力してください"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "上記に新しいメールアドレスを入力してください"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "以下に新しいメールアドレスを入力してください。"
@@ -2749,7 +3026,11 @@ msgstr "ユーザー名とパスワードを入力してください"
msgid "Enters full screen"
msgstr "フルスクリーンで表示"
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr "エンターテインメント"
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "エラー"
@@ -2758,15 +3039,18 @@ msgstr "エラー"
msgid "Error occurred while saving file"
msgstr "ファイルの保存中にエラーが発生しました"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "CAPTCHAレスポンスの受信中にエラーが発生しました。"
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "エラー:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr "エラー:{error}"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "全員"
@@ -2818,30 +3102,22 @@ msgstr "画像の切り抜き処理を終了"
msgid "Exits image view"
msgstr "画像表示を終了"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "検索クエリの入力を終了"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "ALTテキストを展開"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "ユーザーリストを展開"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "返信する投稿全体を展開または折りたたむ"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr "テキストを展開または折りたたむ"
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr "返信する投稿全体を展開または折りたたむ"
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "レコードを指すURIではありません"
@@ -2864,6 +3140,10 @@ msgstr "期限:{0}"
msgid "Expires in {0}"
msgstr "{0}で期限切れ"
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr "{0}で終了({1}まで)"
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "露骨な、または不愉快になる可能性のあるメディア。
msgid "Explicit sexual images."
msgstr "露骨な性的画像。"
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr "検索"
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "私のデータをエクスポートする"
@@ -2882,8 +3169,8 @@ msgstr "私のデータをエクスポートする"
msgid "Export My Data"
msgstr "私のデータをエクスポートする"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "外部メディア"
@@ -2897,17 +3184,22 @@ msgstr "外部メディア"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "外部メディアを有効にすると、それらのメディアのウェブサイトがあなたやお使いのデバイスに関する情報を収集する場合があります。その場合でも、あなたが「再生」ボタンを押すまで情報は送信されず、要求もされません。"
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "外部メディアの設定"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
-msgstr ""
+msgstr "チャットの受け入れに失敗しました"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr "絵文字リアクションを追加できませんでした"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "ハンドルの変更に失敗しました。もう一度試してください。"
@@ -2915,7 +3207,7 @@ msgstr "ハンドルの変更に失敗しました。もう一度試してくだ
msgid "Failed to create app password. Please try again."
msgstr "アプリパスワードの作成に失敗しました。もう一度試してください。"
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr "会話の作成に失敗しました"
@@ -2924,35 +3216,37 @@ msgstr "会話の作成に失敗しました"
msgid "Failed to create starter pack"
msgstr "スターターパックの作成に失敗しました"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "リストの作成に失敗しました。インターネットへの接続を確認の上、もう一度試してください。"
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
-msgstr ""
+msgstr "チャットの承認に失敗しました"
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "メッセージの削除に失敗しました"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "投稿の削除に失敗しました。もう一度お試しください。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "スターターパックの削除に失敗しました"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr "会話の読み込みに失敗しました"
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "フィードの設定の読み込みに失敗しました"
@@ -2964,17 +3258,19 @@ msgstr "GIFの読み込みに失敗しました"
msgid "Failed to load past messages"
msgstr "過去のメッセージの読み込みに失敗しました"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "おすすめのフィードの読み込みに失敗しました"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "おすすめのフォローの読み込みに失敗しました"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr "すべての要求を既読としてマークできませんでした"
@@ -2982,7 +3278,16 @@ msgstr "すべての要求を既読としてマークできませんでした"
msgid "Failed to pin post"
msgstr "投稿の固定に失敗しました"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr "絵文字リアクションの削除に失敗しました"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr "認証の削除に失敗しました"
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "画像の保存に失敗しました:{0}"
@@ -2994,20 +3299,39 @@ msgstr "通知の設定の保存に失敗しました。もう一度お試しく
msgid "Failed to save settings. Please try again."
msgstr "設定の保存に失敗しました。もう一度試してください。"
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr "「気になること」の保存に失敗しました。"
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "送信に失敗"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr "メールの送信に失敗しました。後でもう一度お試しください。"
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "異議申し立ての送信に失敗しました。もう一度お試しください。"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "スレッドのミュートの切り替えに失敗しました。もう一度お試しください"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr "メールでの2要素認証の設定の更新に失敗しました"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr "メールの更新に失敗しました。後でもう一度お試しください。"
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "フィードの更新に失敗しました"
@@ -3022,20 +3346,24 @@ msgstr "設定の更新に失敗しました"
msgid "Failed to upload video"
msgstr "ビデオのアップロードに失敗しました"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr "メールの確認に失敗しました。後でもう一度お試しください。"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "ハンドルの変更に失敗しました。もう一度試してください。"
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "フィード"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "{0}によるフィード"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "フィードメニュー"
@@ -3043,26 +3371,26 @@ msgstr "フィードメニュー"
msgid "Feed toggle"
msgstr "フィードの切り替え"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "フィードバック"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "フィードバックを送信しました!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "フィード"
@@ -3070,13 +3398,13 @@ msgstr "フィード"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "フィードはユーザーがプログラミングの専門知識を持って構築するカスタムアルゴリズムです。詳細については、<0/>を参照してください。"
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "フィードを更新しました!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "お気に入りになるかもしれないフィード。"
@@ -3092,11 +3420,11 @@ msgstr "ファイルの保存に成功しました!"
msgid "Filter from feeds"
msgstr "フィードからのフィルター"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr "言語で検索をフィルター"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr "言語で検索をフィルター(現在の設定:{currentLanguageLabel})"
@@ -3110,13 +3438,13 @@ msgstr "最後に"
msgid "Find accounts to follow"
msgstr "フォローするアカウントを探す"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "フォローするユーザーを探す"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Blueskyの投稿、ユーザー、フィードを検索"
@@ -3131,28 +3459,28 @@ msgstr "フィットネス"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117
msgctxt "Name of app icon variant"
msgid "Flat Black"
-msgstr ""
+msgstr "フラット ブラック"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:93
msgctxt "Name of app icon variant"
msgid "Flat Blue"
-msgstr ""
+msgstr "フラット ブルー"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:105
msgctxt "Name of app icon variant"
msgid "Flat White"
-msgstr ""
+msgstr "フラット ホワイト"
#: src/screens/Onboarding/StepFinished.tsx:294
msgid "Flexible"
msgstr "柔軟です"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "フォロー"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "フォロー"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "{0}をフォロー"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr "{handle}をフォロー"
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "{name}をフォロー"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "10アカウントをフォロー"
msgid "Follow 7 accounts"
msgstr "7アカウントをフォロー"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "アカウントをフォロー"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "すべてフォロー"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "フォローバック"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "フォローバック"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "もっとたくさんのアカウントをフォローして、興味あることにつながり、ネットワークを広げましょう。"
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "<0>{0}0>がフォロー中"
@@ -3224,7 +3544,7 @@ 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/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "あなたが知っている@{0}のフォロワー"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "あなたが知っているフォロワー"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "フォロー中"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "{0}をフォローしています"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr "{handle}をフォローしています"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "{name}をフォローしています"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "Followingフィードの設定"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Followingフィードの設定"
@@ -3301,6 +3617,10 @@ msgstr "セキュリティ上の理由から、これを再度表示すること
msgid "For the best experience, we recommend using the theme font."
msgstr "ベストな体験のために、テーマフォントの使用をお勧めします。"
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr "あなたへ"
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "永久"
@@ -3327,7 +3647,7 @@ msgstr "望ましくないコンテンツを頻繁に投稿"
msgid "From @{sanitizedAuthor}"
msgstr "@{sanitizedAuthor}による"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "<0/>から"
@@ -3336,28 +3656,30 @@ msgstr "<0/>から"
msgid "Gallery"
msgstr "ギャラリー"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "スターターパックを生成"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "ヘルプを表示"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
msgstr "開始"
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "入門"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "プロフィールに顔をつける"
@@ -3366,17 +3688,17 @@ msgstr "プロフィールに顔をつける"
msgid "Glaring violations of law or terms of service"
msgstr "法律または利用規約への明らかな違反"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "戻る"
@@ -3384,10 +3706,10 @@ msgstr "戻る"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "戻る"
@@ -3408,7 +3730,27 @@ msgstr "ホームへ"
msgid "Go Home"
msgstr "ホームへ"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr "ライブ開始"
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr "ライブ開始"
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr "ライブ予定時間"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr "{firstAuthorName}のプロフィールに移動"
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "{0}との会話へ"
@@ -3427,8 +3769,8 @@ msgstr "ユーザーのプロフィールへ移動"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "生々しいメディア(グロ・事故・戦争・災害等)"
@@ -3437,21 +3779,21 @@ msgstr "生々しいメディア(グロ・事故・戦争・災害等)"
msgid "Half way there!"
msgstr "半分まで来ました!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "ハンドル"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "ハンドルはすでに取得されています。他のものをお試しください。"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "ハンドルを変更しました!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "ハンドルが長すぎます。短いものをお試しください。"
@@ -3464,7 +3806,7 @@ msgstr "触覚フィードバック"
msgid "Harassment, trolling, or intolerance"
msgstr "嫌がらせ、荒らし、不寛容"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "ハッシュタグ"
@@ -3472,19 +3814,24 @@ msgstr "ハッシュタグ"
msgid "Hashtag {tag}"
msgstr "ハッシュタグ {tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr "コードがありませんか?<0>ここをクリックしてください。0>"
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "なにか問題が発生しましたか?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "ヘルプ"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "画像をアップロードするかアバターを作ってあなたがbotではないことをみんなに知らせましょう。"
@@ -3497,7 +3844,7 @@ msgstr "アプリパスワードをお知らせします!"
msgid "Hidden"
msgstr "非表示"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr "あなたのモデレーションの設定で非表示になっています。"
@@ -3509,18 +3856,17 @@ msgstr "非表示のリスト"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "非表示"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "非表示"
@@ -3529,38 +3875,40 @@ msgstr "非表示"
msgid "Hide customization options"
msgstr "カスタマイズオプションを非表示"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "投稿を自分には非表示"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "返信を全員に非表示"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "返信を自分には非表示"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr "このカードを非表示"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "この投稿を非表示にしますか?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "この返信を非表示にしますか?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "トレンド・トピックを非表示にする"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "トレンド・トピックを非表示にしますか?"
@@ -3569,10 +3917,15 @@ msgstr "トレンド・トピックを非表示にしますか?"
msgid "Hide trending videos?"
msgstr "トレンド・ビデオを非表示にしますか?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "ユーザーリストを非表示"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr "認証バッジを非表示"
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "フィードサーバーの反応が悪いようです。この問題を
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "このフィードが見つからないようです。もしかしたら削除されたのかもしれません。"
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "このデータの読み込みに問題があるようです。詳細は以下をご覧ください。この問題が解決しない場合は、サポートにご連絡ください。"
@@ -3610,15 +3963,15 @@ msgstr "そのモデレーションサービスを読み込めませんでした
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "待って!徐々にビデオへのアクセスを許可していますが、あなたの順番はまだです。しばらくしてもう一度確認を!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "ホーム"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "ホスト:"
@@ -3627,34 +3980,33 @@ msgstr "ホスト:"
msgid "Hosting provider"
msgstr "ホスティングプロバイダー"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr "ホット"
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "ホットな返信を先頭に"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "このリンクをどのように開きますか?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "コードを持っています"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "コードを持っています"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "確認コードを持っています"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "自分のドメインを持っています"
@@ -3667,22 +4019,30 @@ msgstr "理解した"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "ALTテキストが長い場合、ALTテキストの展開状態を切り替える"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "このリストを削除すると、復元できなくなります。"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "自分のドメインを持っていれば、ハンドルとして利用できます。これによりあなたのアイデンティティを自己証明できます。<0>詳しくはこちら。0>"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr "メールを更新する必要がある場合は、<0>ここ0>をクリックしてください。"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "この投稿を削除すると、復元できなくなります。"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr "メールアドレスを更新すると、メールでの2要素認証は無効になります。"
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "パスワードを変更する場合は、あなたのアカウントであることを確認するためのコードをお送りします。"
@@ -3704,9 +4064,22 @@ msgstr "違法かつ緊急"
msgid "Image"
msgstr "画像"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "画像をカメラロールに保存しました!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr "画像のキャッシュをクリアしました"
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr "画像のキャッシュをクリアし、 {0} が解放されました"
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr "画像を保存しました"
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr "写真ライブラリへのアクセスが許可されない限り、画像を保存できません。"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "不適切なメッセージ、または露骨なコンテンツへのリンク"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr "受信トレイが空です!"
@@ -3752,15 +4125,11 @@ msgstr "アカウント削除のためにパスワードを入力"
msgid "Input the code which has been emailed to you"
msgstr "メールで送られたコードを入力"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "サインアップ時に使用したユーザー名またはメールアドレスを入力"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "反応が制限されています"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr "反応関連の設定"
@@ -3769,11 +4138,11 @@ msgstr "反応関連の設定"
msgid "Invalid 2FA confirmation code."
msgstr "無効な2要素認証の確認コードです。"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "無効なハンドルです。他のものを試してください。"
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "無効またはサポートされていない投稿のレコード"
@@ -3789,11 +4158,11 @@ msgstr "無効な確認コード"
msgid "Invite a Friend"
msgstr "友達を招待"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "招待コード"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "招待コードが確認できません。正しく入力されていることを確認し、もう一度試してください。"
@@ -3805,7 +4174,7 @@ msgstr "招待コード:{0}個使用可能"
msgid "Invite codes: 1 available"
msgstr "招待コード:1個使用可能"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "このスターターパックにユーザーを招待!"
@@ -3817,7 +4186,7 @@ msgstr "お気に入りのフィードやユーザーをフォローするよう
msgid "Invites, but personal"
msgstr "招待、ただし個人的なもの"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "合ってます"
@@ -3825,19 +4194,19 @@ msgstr "合ってます"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "今はあなただけ!上で検索してスターターパックにより多くのユーザーを追加してください。"
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "ジョブID:{0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "仕事"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Blueskyに参加"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "投稿者によるラベル。"
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "ラベル"
@@ -3868,7 +4237,7 @@ msgstr "ラベル"
msgid "Labels added"
msgstr "ラベルが追加されました"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "ラベルは、ユーザーやコンテンツに対する注釈です。ラベルはネットワークを非表示にしたり、警告したり、分類したりするのに使われます。"
@@ -3884,13 +4253,13 @@ msgstr "あなたのコンテンツのラベル"
msgid "Language selection"
msgstr "言語の選択"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "言語の設定"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "言語"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "大きい"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "最新"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "詳細"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr "詳細"
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "詳細"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Blueskyについての詳細"
@@ -3933,6 +4311,11 @@ msgstr "このコンテンツに適用されるモデレーションはこちら
msgid "Learn more about this warning"
msgstr "この警告の詳細"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr "Blueskyの認証についてもっと詳しく"
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "Blueskyから離れる"
msgid "left to go."
msgstr "あと少しです。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "選ばせて"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "ライト"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "いいねする"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "いいねする({0, plural, other {#件のいいね}})"
@@ -4013,17 +4397,16 @@ msgstr "10投稿をいいね"
msgid "Like 10 posts to train the Discover feed"
msgstr "Discoverフィードを訓練するために10投稿をいいねする"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "このフィードをいいね"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr "このラベラーをいいね"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "いいねしたユーザー"
@@ -4033,43 +4416,43 @@ msgstr "いいねしたユーザー"
msgid "Liked By"
msgstr "いいねしたユーザー"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "{0, plural, other {#人のユーザー}}がいいね"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "{likeCount, plural, other {#人のユーザー}}がいいね"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "いいね"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "この投稿をいいねする"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "リニア"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "リスト"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "リストのアバター"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "リストをブロックしました"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4084,44 +4467,44 @@ msgstr "<0/>によるリスト"
msgid "List by you"
msgstr "あなたのリスト"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "リストを削除しました"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
msgstr "リストは非表示です"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "非表示のリスト"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "リストをミュートしました"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "リストの名前"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "リストのブロックを解除しました"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "リストのミュートを解除しました"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "リスト"
@@ -4129,34 +4512,47 @@ msgstr "リスト"
msgid "Lists blocking this user:"
msgstr "このユーザーをブロックしているリスト:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr "ライブ"
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr "ライブ機能はベータテスト中"
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr "ライブのリンク"
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "さらに読み込む"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "おすすめのフィードをさらに読み込む"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "おすすめのフォローをさらに読み込む"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "最新の通知を読み込む"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "最新の投稿を読み込む"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "読み込み中…"
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "ログ"
@@ -4164,12 +4560,12 @@ msgstr "ログ"
msgid "Logged-out visibility"
msgstr "ログアウトしたユーザーからの可視性"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "@sawaratsuki.bsky.socialによるロゴ"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "<0>@sawaratsuki.bsky.social0>によるロゴ"
@@ -4193,7 +4589,11 @@ msgstr "すべてのフィードのピン留めを外したようですね。心
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Followingフィードを消したようです。<0>ここをクリックして追加。0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr "アカウントのメール設定を調整する"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "私のために作って"
@@ -4201,18 +4601,22 @@ msgstr "私のために作って"
msgid "Make sure this is where you intend to go!"
msgstr "意図した場所であることを確認してください!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "保存されたフィードを管理"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr "認証設定の管理"
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "ミュートしたワードとタグの管理"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr "すべて既読にする"
@@ -4221,16 +4625,23 @@ msgstr "すべて既読にする"
msgid "Mark as read"
msgstr "既読にする"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr "すべて既読にしました"
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr "後で"
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "メディア"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "一部の閲覧者にとっては困惑する、あるいは不適切なメディアです。"
@@ -4246,23 +4657,27 @@ msgstr "メンションされたユーザー"
msgid "Mentions"
msgstr "メンション"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "メニュー"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "{0}へメッセージを送る"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "メッセージは削除されました"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "メッセージは削除されました"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr "@{0}からのメッセージ: {1}"
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "サーバーからのメッセージ:{0}"
@@ -4276,14 +4691,18 @@ msgstr "メッセージを入力するフィールド"
msgid "Message is too long"
msgstr "メッセージが長すぎます"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr "メッセージのオプション"
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "メッセージ"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:81
msgctxt "Name of app icon variant"
msgid "Midnight"
-msgstr ""
+msgstr "ミッドナイト"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47
#: src/lib/moderation/useReportOptions.ts:47
@@ -4295,10 +4714,10 @@ msgstr "誤解を招くアカウント"
msgid "Misleading Post"
msgstr "誤解を招く投稿"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "モデレーション"
@@ -4320,22 +4739,22 @@ msgstr "<0/>の作成したモデレーションリスト"
msgid "Moderation list by you"
msgstr "あなたの作成したモデレーションリスト"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "モデレーションリストを作成しました"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "モデレーションリストを更新しました"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "モデレーションリスト"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "モデレーションリスト"
@@ -4343,11 +4762,11 @@ msgstr "モデレーションリスト"
msgid "moderation settings"
msgstr "モデレーションの設定"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "モデレーションのステータス"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "モデレーションのツール"
@@ -4356,7 +4775,7 @@ msgstr "モデレーションのツール"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "モデレーターによりコンテンツに一般的な警告が設定されました。"
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "さらに"
@@ -4365,9 +4784,9 @@ msgstr "さらに"
msgid "More feeds"
msgstr "その他のフィード"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "その他のオプション"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "いいねの数が多い順"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "いいねの数が多い順に返信を表示"
@@ -4400,14 +4819,14 @@ msgstr "ミュート"
msgid "Mute {tag}"
msgstr "{tag} をミュート"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "アカウントをミュート"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "アカウントをミュート"
@@ -4420,11 +4839,11 @@ msgstr "会話をミュート"
msgid "Mute in:"
msgstr "ミュート対象:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "リストをミュート"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "これらのアカウントをミュートしますか?"
@@ -4452,26 +4871,26 @@ msgstr "タグのみでこのワードをミュート"
msgid "Mute this word until you unmute it"
msgstr "このワードをミュート解除するまでミュート"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "スレッドをミュート"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "ワードとタグをミュート"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "ミュート中のアカウント"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "ミュート中のアカウント"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "ミュート中のアカウントの投稿は、フィードや通知から取り除かれます。ミュートの設定は完全に非公開です。"
@@ -4479,11 +4898,11 @@ msgstr "ミュート中のアカウントの投稿は、フィードや通知か
msgid "Muted by \"{0}\""
msgstr "「{0}」によってミュート中"
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "ミュートしたワードとタグ"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "ミュートの設定は非公開です。ミュート中のアカウントはあなたと引き続き関わることができますが、そのアカウントの投稿や通知を受信することはできません。"
@@ -4492,15 +4911,15 @@ msgstr "ミュートの設定は非公開です。ミュート中のアカウン
msgid "My Birthday"
msgstr "生年月日"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "マイフィード"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "名前"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "名前は必須です"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "自然"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "{0}へ移動します"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr "スターターパックに移動"
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "次の画面に移動します"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "あなたのプロフィールに移動します"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "変更が必要?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "著作権侵害を報告する必要がありますか?"
@@ -4547,30 +4971,43 @@ msgstr "著作権侵害を報告する必要がありますか?"
msgid "Never lose access to your followers or data."
msgstr "フォロワーやデータへのアクセスを失うことはありません。"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "気にせずにハンドルを作成"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "新規"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "新規"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "新しいチャット"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr "新しいメールアドレス"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr "新機能"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "新しいハンドル"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "新しいリスト"
@@ -4578,7 +5015,7 @@ msgstr "新しいリスト"
msgid "New messages"
msgstr "新しいメッセージ"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "新しいモデレーションリスト"
@@ -4590,12 +5027,12 @@ msgstr "新しいパスワード"
msgid "New Password"
msgstr "新しいパスワード"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "新しい投稿"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "新しい投稿"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "新しい投稿"
@@ -4613,19 +5050,20 @@ msgstr "新しい投稿"
msgid "New user info dialog"
msgstr "新しいユーザー情報ダイアログ"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "新しいユーザーリスト"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "新しい順に返信を表示"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "ニュース"
@@ -4655,11 +5093,15 @@ msgstr "次の画像"
msgid "No app passwords yet"
msgstr "アプリパスワードはまだありません"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "DNSパネルがない場合"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr "終了時間未定"
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "おすすめのGIFが見つかりません。Tenorに問題があるかもしれません。"
@@ -4668,21 +5110,25 @@ msgstr "おすすめのGIFが見つかりません。Tenorに問題があるか
msgid "No feeds found. Try searching for something else."
msgstr "フィードが見つかりませんでした。他を探してみて。"
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr "画像なし"
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "いいねはありません"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "{0}のフォローを解除しました"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr "{MAX_SERVICE_HANDLE_LENGTH}文字まで"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr "{MAX_SERVICE_HANDLE_LENGTH, plural, other {#文字}}まで"
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "メッセージはありません"
@@ -4711,31 +5157,38 @@ msgstr "まだ引用がありません"
msgid "No reposts yet"
msgstr "まだリポストがありません"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "結果はありません"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "結果はありません"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr "「{0}」に該当するものは見つかりませんでした。"
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "結果は見つかりません"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "「{query}」の検索結果はありません"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "「{query}」の検索結果はありません"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr "見つかりませんでした。"
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "「{search}」の検索結果はありません。"
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "返信不可"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "まだ誰もこれをいいねしていません。あなたが最初になるべきかもしれません!"
@@ -4775,19 +5227,15 @@ msgstr "性的ではないヌード"
msgid "Not followed by anyone you're following"
msgstr "フォローしている人は誰にもフォローしていません"
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "見つかりません"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "今はしない"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "共有についての注意事項"
@@ -4795,7 +5243,7 @@ msgstr "共有についての注意事項"
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "注記:Blueskyはオープンでパブリックなネットワークです。この設定はBlueskyのアプリおよびウェブサイト上のみでのあなたのコンテンツの可視性を制限するものであり、他のアプリではこの設定を尊重しない場合があります。他のアプリやウェブサイトでは、ログアウトしたユーザーにあなたのコンテンツが表示される場合があります。"
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "何もありません"
@@ -4803,7 +5251,7 @@ msgstr "何もありません"
msgid "Notification filters"
msgstr "通知フィルター"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "通知設定"
@@ -4820,11 +5268,11 @@ msgstr "通知音"
msgid "Notification Sounds"
msgstr "通知音"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "通知"
@@ -4832,12 +5280,12 @@ msgstr "通知"
msgid "now"
msgstr "今"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "今"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "ヌード"
@@ -4859,21 +5307,23 @@ msgstr "ちょっと!"
msgid "Oh no! Something went wrong."
msgstr "ちょっと!何らかの問題が発生したようです。"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "OK"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "古い順に返信を表示"
@@ -4881,19 +5331,19 @@ msgstr "古い順に返信を表示"
msgid "on<0><1/><2><3/>2>0>"
msgstr "<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "オンボーディングのリセット"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "1つもしくは複数のGIFにALTテキストがありません。"
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "1つもしくは複数の画像にALTテキストがありません。"
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "1つもしくは複数のビデオにALTテキストがありません。"
@@ -4905,11 +5355,11 @@ msgstr ".jpgと.pngファイルのみに対応しています"
msgid "Only {0} can reply."
msgstr "{0}のみ返信可能。"
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "英数字とハイフンのみ"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "画像ファイルのみに対応しています"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "おっと、何らかの問題が発生したようです!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "おっと!"
@@ -4935,67 +5385,80 @@ msgstr "おっと!"
msgid "Open"
msgstr "開かれています"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "{name}のプロフィールのショートカットメニューを開く"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "アバター・クリエイターを開く"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "会話のオプションを開く"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "引き出しメニューを開く"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "絵文字を入力"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "フィードを画面で開く"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "フィードの設定メニューを開く"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr "全絵文字リストを開く"
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "{niceUrl}へのリンクを開く"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "メッセージのオプションを開く"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "モデレーションデバッグページを開く"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "ミュートしたワードとタグの設定を開く"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr "パックを開く"
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "投稿のオプションを開く"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr "プロフィールを開く"
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr "共有メニューを開く"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "スターターパックのメニューを開く"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "絵本のページを開く"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "システムのログを開く"
@@ -5015,19 +5478,19 @@ msgstr "このスレッドに誰が返信できるかを選択するダイアロ
msgid "Opens additional details for a debug entry"
msgstr "デバッグエントリーの追加詳細を開く"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
-msgstr ""
+msgstr "ALTテキストのダイアログを開く"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "デバイスのカメラを開く"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
-msgstr ""
+msgstr "キャプションとALTテキストのダイアログを開く"
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr "ハンドル変更ダイアログを開く"
@@ -5039,7 +5502,7 @@ msgstr "編集画面を開く"
msgid "Opens device photo gallery"
msgstr "デバイスのフォトギャラリーを開く"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr "絵文字選択を開く"
@@ -5057,7 +5520,7 @@ msgstr "既存のBlueskyアカウントにサインインする画面を開き
msgid "Opens GIF select dialog"
msgstr "GIFの選択のダイアログを開く"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr "ブラウザでヘルプデスクを開く"
@@ -5065,6 +5528,10 @@ msgstr "ブラウザでヘルプデスクを開く"
msgid "Opens list of invite codes"
msgstr "招待コードのリストを開く"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr "ライブステータスのダイアログを開く"
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "パスワードリセットのフォームを開く"
@@ -5073,12 +5540,12 @@ msgstr "パスワードリセットのフォームを開く"
msgid "Opens the linked website"
msgstr "リンク先のウェブサイトを開く"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "プロフィールを開く"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "ビデオの選択画面を開く"
@@ -5121,11 +5588,11 @@ msgstr "OTA ステータス: 利用可能なものはありません"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "その他"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "その他のアカウント"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "ページが見つかりません"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "一時停止"
msgid "Pause video"
msgstr "ビデオを一時停止"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "ユーザー"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "@{0}がフォロー中のユーザー"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "@{0}をフォロー中のユーザー"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "カメラへのアクセス権限が必要です。"
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "カメラへのアクセスが拒否されました。システムの設定で有効にしてください。"
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr "写真ライブラリへのアクセスが拒否されました。システム設定で有効にしてください。"
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "ペット"
msgid "Photography"
msgstr "写真"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "成人向けの画像です。"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr "ピン"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "フィードをピン留め"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr "簡単にアクセスできるようにトレンド・ビデオのフィードをホーム画面にピン留め"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr "フィードをピン留め"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "ホームにピン留め"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "ホームにピン留め"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "プロフィールに固定"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "固定"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "{0}をホームにピン留めしました"
@@ -5263,7 +5722,7 @@ msgstr "{0}をホームにピン留めしました"
msgid "Pinned Feeds"
msgstr "ピン留めされたフィード"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "フィードにピン留めしました"
@@ -5302,24 +5761,28 @@ msgstr "GIFを再生"
msgid "Plays the video"
msgstr "ビデオを再生"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr "投稿するメディアに該当するコンテンツ警告ラベルを追加してください。"
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "ハンドルをお選びください。"
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "パスワードを選択してください。"
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr "新しいメールアドレスを確認するために送信したメールのリンクをクリックしてください。 これは、Blueskyのすべての機能を楽しみ続けるための重要なステップです。"
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "CAPTCHA認証を完了してください。"
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "変更する前にメールを確認してください。これは、メールアップデートツールが追加されている間の一時的な要件であり、まもなく削除されます。"
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr "メールアドレスが正しく入力されていることを再確認してください。"
@@ -5335,19 +5798,41 @@ msgstr "パスワードを入力してください。8 文字以上である必
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "このアプリパスワードに固有の名前を入力するか、ランダムに生成された名前を使用してください。"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr "有効なコードを入力してください。"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr "有効な形式のメールアドレスを入力してください。"
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "ミュートにする有効な単語、タグ、フレーズを入力してください"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr "以下の<0>{0}0>に送信したコードを入力してください。"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr "前のメールアドレスに送ったセキュリティコードを入力してください。"
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "メールアドレスを入力してください。"
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "招待コードを入力してください。"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr "新しいメールアドレスを入力してください。"
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr "パスワードを入力してください"
@@ -5381,24 +5866,25 @@ msgstr "この報告の理由を選択してください"
msgid "Please sign in as @{0}"
msgstr "@{0}としてサインインしてください"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr "メールアドレスを確認してください"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "メールアドレスを確認してください"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "政治"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr "あなたのネットワークで流行っているビデオ。"
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "ポルノ"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "投稿"
@@ -5408,32 +5894,32 @@ msgctxt "description"
msgid "Post"
msgstr "投稿"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "すべてポスト"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "{0}による投稿"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "@{0}による投稿"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "投稿を削除しました"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "投稿のアップロードに失敗しました。インターネット接続を確認し、再度試してください。"
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr "投稿は削除されました"
@@ -5455,7 +5941,7 @@ msgstr "あなたが非表示にした投稿"
msgid "Post interaction settings"
msgstr "投稿への反応の設定"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr "投稿への反応の設定"
@@ -5476,15 +5962,16 @@ msgstr "投稿が見つかりません"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "投稿を固定しました"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "投稿の固定を解除しました"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "投稿"
@@ -5503,7 +5990,7 @@ msgstr "誤解を招く可能性のあるリンク"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "設定を保存しました"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -5524,7 +6011,7 @@ msgstr "あなたもフォローしているこのアカウントのフォロワ
msgid "Previous image"
msgstr "前の画像"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "第一言語"
@@ -5537,31 +6024,31 @@ msgstr "あなたのフォローを優先"
msgid "Priority notifications"
msgstr "優先通知"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "プライバシー"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "プライバシーとセキュリティ"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "プライバシーとセキュリティ"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "プライバシーポリシー"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "ビデオを処理中…"
@@ -5570,23 +6057,23 @@ msgstr "ビデオを処理中…"
msgid "Processing..."
msgstr "処理中…"
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "プロフィール"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "プロフィール"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "プロフィールを更新しました"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
@@ -5600,6 +6087,26 @@ msgstr "ユーザーを一括でミュートまたはブロックする、公開
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "フィードとして見ることに使える、公開された共有可能なリスト"
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr "投稿を公開"
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr "投稿を公開"
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr "返信を公開"
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr "返信を公開"
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "QRコードをクリップボードにコピーしました"
@@ -5612,25 +6119,25 @@ msgstr "QRコードをダウンロードしました!"
msgid "QR code saved to your camera roll!"
msgstr "QRコードをカメラロールに保存しました!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "引用"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "引用投稿が再び関連付けられました"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "引用投稿を切り離すことができました"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "引用投稿は無効です"
@@ -5642,39 +6149,48 @@ msgstr "引用の設定"
msgid "Quotes"
msgstr "引用"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "この投稿を引用する"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "ランダムな順番で表示(別名「投稿者のルーレット」)"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "レート制限を超えました - 短い時間でハンドルを何度も変更しようとしました。再度試す前にしばらく時間をおいてください。"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "引用を再度関連付ける"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr "{emoji}でリアクションする"
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "あなたのアカウントを再有効化"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr "ブログ記事を読む"
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr "文字を減らす"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr "もっと読む"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Blueskyのブログを読む"
@@ -5697,11 +6213,11 @@ msgstr "異議申し立ての理由"
msgid "Reason:"
msgstr "理由:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "検索履歴"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "おすすめ"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "再接続"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr "拒否"
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr "チャットのリクエストを拒否する"
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "会話を再読み込み"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "削除"
msgid "Remove {displayName} from starter pack"
msgstr "{displayName}をスターターパックから削除"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr "{historyItem}を削除"
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "アカウント切替リストから取り除く"
@@ -5752,13 +6268,13 @@ msgstr "アカウント切替リストから取り除く"
msgid "Remove attachment"
msgstr "添付を削除"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "アバターを削除"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "バナーを削除"
@@ -5776,24 +6292,25 @@ msgstr "フィードを削除"
msgid "Remove feed?"
msgstr "フィードを削除しますか?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "マイフィードから削除"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "クイックアクセスから削除しますか?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "保存されたフィードから削除"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr "フィードから削除しますか?"
@@ -5802,11 +6319,16 @@ msgstr "フィードから削除しますか?"
msgid "Remove image"
msgstr "イメージを削除"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr "ライブステータスを削除"
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "リストからミュートワードを削除"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "プロフィールを削除"
@@ -5814,12 +6336,12 @@ msgstr "プロフィールを削除"
msgid "Remove quote"
msgstr "引用を削除"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "リポストを削除"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "字幕ファイルを削除"
@@ -5827,6 +6349,21 @@ msgstr "字幕ファイルを削除"
msgid "Remove this feed from your saved feeds"
msgstr "保存されたフィードからこのフィードを削除"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr "リストからユーザーを削除"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr "認証を削除"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr "このアカウントの認証を削除しますか?"
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "投稿者が削除しました"
@@ -5835,7 +6372,7 @@ msgstr "投稿者が削除しました"
msgid "Removed by you"
msgstr "あなたが削除しました"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "リストから削除されました"
@@ -5845,19 +6382,18 @@ msgid "Removed from my feeds"
msgstr "マイフィードから削除しました"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "保存されたフィードから削除しました"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "あなたのフィードから削除しました"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr "検索履歴からプロフィールを削除する"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr "認証を削除しました"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
@@ -5868,7 +6404,7 @@ msgstr "引用を削除する"
msgid "Replace with Discover"
msgstr "Discoverで置き換える"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "返信"
@@ -5880,12 +6416,13 @@ msgstr "返信できません"
msgid "Replies to this post are disabled."
msgstr "この投稿への返信は無効化されています。"
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "返信"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "返信する({0, plural, other {#件の返信}})"
@@ -5907,88 +6444,88 @@ msgstr "返信の設定"
msgid "Reply settings are chosen by the author of the thread"
msgstr "返信の設定はスレッドの投稿者によって選択されています"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "返信を並び替え"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "<0><1/>0>に返信"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "ブロックした投稿への返信"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "投稿への返信"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "あなたへの返信"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "返信の表示設定を更新しました"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "返信を非表示にすることができました"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "報告"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "アカウントを報告"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "会話を報告"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "報告ダイアログ"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "フィードを報告"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
msgstr "リストを報告"
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "メッセージを報告"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "投稿を報告"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
-msgstr "スタータパックを報告"
+msgstr "スターターパックを報告"
#: src/components/dms/ReportDialog.tsx:345
msgid "Report submitted"
@@ -6030,25 +6567,26 @@ msgstr "このスターターパックを報告"
msgid "Report this user"
msgstr "このユーザーを報告"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "リポスト"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "リポスト"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "リポストする({0, plural, other {#件のリポスト}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "リポストまたは引用"
@@ -6056,26 +6594,26 @@ msgstr "リポストまたは引用"
msgid "Reposted By"
msgstr "リポストしたユーザー"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "{0}にリポストされた"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "<0><1/>0>がリポスト"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "あなたのリポスト"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "この投稿をリポストする"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
msgstr "変更を要求"
#: src/view/com/modals/ChangePassword.tsx:253
@@ -6088,11 +6626,11 @@ msgstr "コードをリクエスト"
msgid "Require alt text before posting"
msgstr "画像投稿時にALTテキストを必須とする"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr "アカウントにサインインするにはメールの確認コードが必要です。"
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "このプロバイダーに必要"
@@ -6100,13 +6638,19 @@ msgstr "このプロバイダーに必要"
msgid "Required in your region"
msgstr "あなたの地域では必要"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr "再送する"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "メールを再送"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "メール再送済"
@@ -6123,8 +6667,8 @@ msgstr "リセットコード"
msgid "Reset Code"
msgstr "リセットコード"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "オンボーディングの状態をリセット"
@@ -6141,16 +6685,16 @@ msgstr "サインインを再試行"
msgid "Retries the last action, which errored out"
msgstr "エラーになった最後のアクションをやり直す"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "エラーになった最後のアクションをやり直す"
msgid "Retry"
msgstr "再試行"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr "報告オプションの読み込みを再試行する"
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "前のページに戻る"
@@ -6175,11 +6719,11 @@ msgstr "前のページに戻る"
msgid "Returns to home page"
msgstr "ホームページに戻る"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "前のページに戻る"
@@ -6190,24 +6734,26 @@ msgstr "前のステップに戻る"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "保存"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "保存"
@@ -6221,12 +6767,12 @@ msgstr "生年月日を保存"
msgid "Save changes"
msgstr "変更を保存"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "変更を保存"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "画像を保存"
@@ -6234,16 +6780,16 @@ msgstr "画像を保存"
msgid "Save image crop"
msgstr "画像の切り抜きを保存"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "新しいハンドルを保存"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "QRコードを保存"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "マイフィードに保存"
@@ -6251,16 +6797,12 @@ msgstr "マイフィードに保存"
msgid "Saved Feeds"
msgstr "保存されたフィード"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "カメラロールに保存しました"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "フィードを保存しました"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "プロフィールの変更を保存"
@@ -6270,8 +6812,8 @@ msgstr "画像の切り抜き設定を保存"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "よろしく!"
@@ -6280,45 +6822,42 @@ msgstr "よろしく!"
msgid "Science"
msgstr "科学"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "一番上までスクロール"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "検索"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "@{0}の投稿を検索"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "名前や興味で検索"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "フィードを検索"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "「{interestsDisplayName}」{activeText}を検索"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "「{query}」を検索"
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "「{searchText}」を検索"
@@ -6326,29 +6865,33 @@ msgstr "「{searchText}」を検索"
msgid "Search for feeds that you want to suggest to others."
msgstr "他の人におすすめしたいフィードを検索。"
-#: src/view/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr "もっとアカウントを検索"
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr "もっとフィードを検索"
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
msgstr "投稿、ユーザー、フィードを検索"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "ユーザーを検索"
-
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "GIFを検索"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr "自分の投稿を検索"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr "投稿を検索"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "プロフィールを検索"
@@ -6356,16 +6899,20 @@ msgstr "プロフィールを検索"
msgid "Search Tenor"
msgstr "Tenorを検索"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr "検索…"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr "プロフィールを検索"
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr "セキュリティのステップが必要"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "必要なセキュリティの手順"
@@ -6385,7 +6932,7 @@ msgstr "#{tag} の投稿を表示(すべてのユーザー)"
msgid "See #{tag} posts by user"
msgstr "#{tag} の投稿を表示(このユーザーのみ)"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Blueskyの求人を見る"
@@ -6405,6 +6952,10 @@ msgstr "色を選択"
msgid "Select account"
msgstr "アカウントを選択"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr "アプリの言語を選択"
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "アバターを選択"
@@ -6413,10 +6964,22 @@ msgstr "アバターを選択"
msgid "Select an emoji"
msgstr "絵文字を選択"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr "オプションを選択"
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr "アプリの言語を選択"
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "コンテンツの言語を選択"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr "配信の長さを選択"
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "既存のアカウントから選択"
@@ -6433,15 +6996,15 @@ msgstr "GIF「{0}」を選ぶ"
msgid "Select how long to mute this word for."
msgstr "このワードをどのくらいの間ミュートするのかを選択。"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "言語を選択…"
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "言語を選択"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr "モデレーションサービスを選択"
@@ -6449,6 +7012,10 @@ msgstr "モデレーションサービスを選択"
msgid "Select moderator"
msgstr "モデレーターを選択"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr "第一言語を選択"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "絵文字{emojiName}をアバターとして選択"
msgid "Select the moderation service(s) to report to"
msgstr "報告先のモデレーションサービスを選んでください"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "ビデオを選択"
@@ -6470,23 +7037,24 @@ msgstr "ビデオを選択"
msgid "Select what content this mute word should apply to."
msgstr "このミュートワードをどのコンテンツに適用するのかを選択。"
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr "アプリのユーザーインターフェースに使用する言語を選択します。"
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "登録されたフィードに含める言語を選択します。選択されていない場合は、すべての言語が表示されます。"
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "生年月日を選択"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "次のオプションから興味のあるものを選択してください"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "フィード内の翻訳に使用する言語を選択します。"
@@ -6498,19 +7066,17 @@ msgstr "{numItems}個中{0}個目のオプションを選択"
msgid "Send a neat website!"
msgstr "素敵なウェブサイトを送って!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr "確認を送信"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
+msgstr "確認メールを送信"
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "確認のメールを送信"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "確認のメールを送信"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "メールを送信"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "メールを送信"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "フィードバックを送信"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "メッセージを送信"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr "投稿を {name} に送る"
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "投稿を送る…"
@@ -6544,17 +7114,20 @@ msgstr "報告を送信"
msgid "Send report to {0}"
msgstr "{0}に報告を送信"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr "{title}に報告を送信"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "確認メールを送信"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "ダイレクトメッセージで送信"
@@ -6570,7 +7143,7 @@ msgstr "サーバーアドレス"
msgid "Set app icon to {0}"
msgstr "アプリアイコンを{0}に設定"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "生年月日を設定"
@@ -6586,19 +7159,19 @@ msgstr "アカウントを設定する"
msgid "Sets email for password reset"
msgstr "パスワードをリセットするためのメールアドレスを入力"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "設定"
#: src/screens/ModerationInteractionSettings/index.tsx:102
msgctxt "toast"
msgid "Settings saved"
-msgstr ""
+msgstr "設定を保存しました"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "性的行為または性的なヌード。"
@@ -6606,21 +7179,15 @@ msgstr "性的行為または性的なヌード。"
msgid "Sexually Suggestive"
msgstr "性的にきわどい"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "共有"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "共有"
@@ -6633,15 +7200,19 @@ msgstr "クールなストーリーをシェアして!"
msgid "Share a fun fact!"
msgstr "面白いことをシェアして!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "とにかく共有"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr "著者DIDを共有"
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "リンクを共有"
@@ -6650,32 +7221,46 @@ msgstr "リンクを共有"
msgid "Share Link"
msgstr "リンクを共有"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "リンク共有のダイアログ"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr "投稿のat:// URIをコピー"
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "QRコードを共有"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "このフィードを共有"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "このスターターパックを共有"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "このスターターパックを共有して、他のユーザーがBlueskyでのコミュニティに参加するよう手伝います"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr "共有…"
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "お気に入りのフィードをシェアして!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "Shared Preferencesのテスター"
@@ -6685,7 +7270,7 @@ msgstr "リンクしたウェブサイトを共有"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "表示"
@@ -6696,8 +7281,8 @@ msgstr "ALTテキストを表示"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "とにかく表示"
@@ -6718,8 +7303,8 @@ msgstr "カスタマイズオプションを表示"
msgid "Show hidden replies"
msgstr "非表示の返信を表示"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "このような投稿の表示を減らす"
@@ -6727,14 +7312,14 @@ msgstr "このような投稿の表示を減らす"
msgid "Show list anyway"
msgstr "とにかくリストを表示"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "さらに表示"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "このような投稿の表示を増やす"
@@ -6752,7 +7337,7 @@ msgstr "引用を表示"
msgid "Show replies"
msgstr "返信を表示"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "返信の表示方法"
@@ -6764,8 +7349,8 @@ msgstr "返信をスレッドで表示"
msgid "Show replies by people you follow before all other replies"
msgstr "フォローしてる人の返信を他の人の返信より優先して表示"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "返信を全員に見せる"
@@ -6787,11 +7372,11 @@ msgstr "警告を表示"
msgid "Show warning and filter from feeds"
msgstr "警告の表示とフィードからのフィルタリング"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr "この投稿がいつ作成されたかについての情報を表示する"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr "切替可能な他のアカウントを表示"
@@ -6809,8 +7394,8 @@ msgstr "コンテンツを表示"
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr "コンテンツを表示"
msgid "Sign in"
msgstr "サインイン"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "{0}としてサインイン"
@@ -6826,16 +7411,16 @@ msgstr "{0}としてサインイン"
msgid "Sign in as..."
msgstr "アカウントの選択"
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr "サインインまたはアカウントを作成"
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "会話に参加するにはサインインするか新しくアカウントを登録してください!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "サインインまたはサインアップ"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "リストにないアカウントにサインイン"
@@ -6843,15 +7428,15 @@ msgstr "リストにないアカウントにサインイン"
msgid "Sign in to Bluesky or create a new account"
msgstr "Blueskyにサインイン または 新規アカウントの登録"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "サインアウト"
@@ -6859,8 +7444,8 @@ msgstr "サインアウト"
msgid "Sign Out"
msgstr "サインアウト"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "サインアウトしますか?"
@@ -6874,11 +7459,6 @@ msgstr "サインインが必要"
msgid "Signed in as @{0}"
msgstr "@{0}でサインイン"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "スターターパックを使わずにサインアップ"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "似ているアカウント"
@@ -6896,12 +7476,21 @@ msgstr "この手順をスキップする"
msgid "Smaller"
msgstr "小さい"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr "リマインダーをスヌーズ"
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "ソフトウェア開発"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr "認証の一部が無効です。"
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "お好みかもしれない他のフィード"
@@ -6909,23 +7498,31 @@ msgstr "お好みかもしれない他のフィード"
msgid "Some people can reply"
msgstr "一部の人が返信可能"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr "誰かが{0}とリアクションしました"
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr "誰かが{1}に{0}とリアクションしました"
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "報告しようとしているデータに問題がありました。サポートに連絡してください。"
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "何らかの問題が発生したようです"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "何らかの問題が発生したようなので、もう一度お試しください"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "何らかの問題が発生したようなので、もう一度お試しください。"
@@ -6934,16 +7531,16 @@ msgstr "何らかの問題が発生したようなので、もう一度お試し
msgid "Something went wrong!"
msgstr "何らかの問題が発生したようです!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr "問題が発生しました。もう一度お試しください。"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "何か問題がありますか?お知らせください。"
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "申し訳ありません!セッションの有効期限が切れました。もう一度サインインしてください。"
@@ -6978,34 +7575,39 @@ msgstr "スパム、過剰なメンションや返信"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "スポーツ"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr "会話を開始すると、ここに表示されます。"
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "新しいチャットを開始"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "ユーザーを追加する"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "ユーザーを追加して!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "{displayName}とのチャットを開始"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "スターターパック"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "{0}によるスターターパック"
@@ -7013,38 +7615,39 @@ msgstr "{0}によるスターターパック"
msgid "Starter pack by <0/>"
msgstr "<0/>によるスターターパック"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "自分のスターターパック"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "スターターパックが無効です"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "スターターパック"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "スターターパックを使ってお気に入りのフィードやユーザーを友人へ簡単に共有できます。"
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "ステータスページ"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "ステップ {0} / {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "ストレージがクリアされたため、今すぐアプリを再起動する必要があります。"
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "ストーリーブック"
@@ -7063,69 +7666,74 @@ msgstr "異議申し立てを送信"
msgid "Submit Appeal"
msgstr "異議申し立てを送信"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr "報告を送信"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "登録"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "これらのラベルを使用するには@{0}を登録してください:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "ラベラーを登録する"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "このラベラーを登録"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "このリストに登録"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "成功!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
-msgstr "おすすめのアカウント"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr "正常に認証されました"
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
+msgstr "おすすめアカウント"
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "あなたへのおすすめ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "きわどい"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:60
msgctxt "Name of app icon variant"
msgid "Sunrise"
-msgstr ""
+msgstr "サンライズ"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:70
msgctxt "Name of app icon variant"
msgid "Sunset"
-msgstr ""
+msgstr "サンセット"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "サポート"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "アカウントを切り替える"
@@ -7134,11 +7742,11 @@ msgstr "アカウントを切り替える"
msgid "Switch Account"
msgstr "アカウントを切り替える"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "アカウントを切り替える"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr "{0}へ切り替える"
@@ -7149,9 +7757,9 @@ msgstr "{0}へ切り替える"
msgid "System"
msgstr "システム"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "システムログ"
@@ -7159,6 +7767,12 @@ msgstr "システムログ"
msgid "Tags only"
msgstr "タグのみ"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr "タップしてコンテキストメニューを閉じる"
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "タップして消す"
@@ -7184,7 +7798,7 @@ msgstr "テクノロジー"
msgid "Tell a joke!"
msgstr "ジョークを言って!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "あなた自身について少し教えて"
@@ -7192,17 +7806,17 @@ msgstr "あなた自身について少し教えて"
msgid "Tell us a little more"
msgstr "もう少し教えて"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "規約"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "利用規約"
@@ -7230,7 +7844,11 @@ msgstr "テキストフィールド"
msgid "Text input field"
msgstr "テキストの入力フィールド"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr "フィードバックありがとうございます!フィードのオペレーターに送られました。"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "ありがとう!メールの確認に成功しました。"
@@ -7242,7 +7860,7 @@ msgstr "ありがとうございます。あなたの報告は送信されまし
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "ありがとう、メールアドレスの確認に成功しました。このダイアログを閉じても大丈夫です。"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "その内容は以下の通りです:"
@@ -7250,10 +7868,10 @@ msgstr "その内容は以下の通りです:"
msgid "That handle is already taken."
msgstr "そのハンドルはすでに使用されています。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "そのスターターパックが見つかりませんでした。"
msgid "That's all, folks!"
msgstr "以上です、皆さん!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr "これで全部です!"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "このアカウントは、ブロック解除後にあなたとやり取りすることができます。"
@@ -7282,7 +7900,7 @@ msgstr "アプリを再起動します"
msgid "The author of this thread has hidden this reply."
msgstr "このスレッドの投稿者がこの返信を非表示にしました"
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "Blueskyウェブアプリ"
@@ -7302,6 +7920,10 @@ msgstr "Discoverフィード"
msgid "The Discover feed now knows what you like"
msgstr "Discoverフィードはあなたの好みを学習しました"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr "入力したメールアドレスは現在のメールアドレスと同じです。"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "アプリのほうがより良い体験をすることができます。今すぐBlueskyをダウンロードして、中断したところから再開しましょう。"
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "プライバシーポリシーは<0/>に移動しました"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "選択したビデオのサイズが50MBを超えています。"
+msgid "The selected video is larger than 100 MB."
+msgstr "選択したビデオのサイズが 100 MB を超えています。"
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "サーバーで問題が発生しているようです。少し間をおいて再度試してください。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "見ようとしたスターターパックが無効です。代わりにスターターパックを削除してください。"
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr "コンテキストメニューの件名"
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "サポートフォームは移動しました。サポートが必要な場合は、<0/>または{HELP_DESK_URL}にアクセスしてご連絡ください。"
@@ -7367,15 +7994,15 @@ msgstr "アカウントの無効化に期限はありません。いつでも戻
msgid "There was an issue connecting to Tenor."
msgstr "Tenorへの接続中に問題が発生しました。"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "サーバーへの問い合わせ中に問題が発生しました"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "サーバーへの問い合わせ中に問題が発生したので、インターネットへの接続を確認の上、もう一度試してください。"
@@ -7388,11 +8015,12 @@ msgstr "サーバーへの問い合わせ中に問題が発生しました"
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "通知の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。"
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "投稿の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。"
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "リストの取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。"
@@ -7400,12 +8028,12 @@ msgstr "リストの取得中に問題が発生しました。もう一度試す
msgid "There was an issue fetching your app passwords"
msgstr "アプリパスワードの取得中に問題が発生しました"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "リストの取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "サービス情報の取得中に問題が発生しました"
@@ -7418,26 +8046,26 @@ msgstr "フィードの削除中に問題が発生しました。インターネ
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "報告の送信に問題が発生しました。インターネットの接続を確認してください。"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "フィードの更新中に問題が発生したので、インターネットへの接続を確認の上、もう一度試してください。"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "問題が発生しました! {0}"
@@ -7445,10 +8073,10 @@ msgstr "問題が発生しました! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "問題が発生しました。インターネットへの接続を確認の上、もう一度お試しください。"
@@ -7469,6 +8097,14 @@ msgstr "これらの設定はFollowingフィードにのみ適用されます。
msgid "This {screenDescription} has been flagged:"
msgstr "この{screenDescription}にはフラグが設定されています:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr "信頼できるソースによって認証されたため、このアカウントにはチェックマークが付いています。"
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr "このアカウントは認証は何度か認証が試みられましたが、現在は認証されていません。"
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "このアカウントを閲覧するためにはサインインが必要です。"
@@ -7477,6 +8113,10 @@ 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/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr "この操作はいつでも元に戻すことができます。"
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "この申し立ては<0>{sourceName}0>に送られます。"
@@ -7510,14 +8150,22 @@ msgstr "このコンテンツは関係するユーザーの一方が他方をブ
msgid "This content is not viewable without a Bluesky account."
msgstr "このコンテンツはBlueskyのアカウントがないと閲覧できません。"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "削除あるいは無効化されたアカウントとの会話です。押すと選択肢が表示されます"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr "このメールアドレスはすでにあなたのアカウントと関連付けられています。"
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "この機能はベータ版です。リポジトリのエクスポートの詳細については、<0>このブログ投稿0>を参照してください。"
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr "この機能はアプリパスワードでは利用できません。メインパスワードでサインインしてください。"
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "この機能はアプリパスワードでは利用できません。メインパスワードでサインインしてください。"
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "このフィードは空です!もっと多くのユーザーをフォローするか、言語の設定を調整する必要があるかもしれません。"
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "このフィードは空です。"
@@ -7540,7 +8188,7 @@ msgstr "このフィードは空です。"
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "このフィードはもはやオンラインではありません。代わりに<0>Discover0>を表示しています。"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "このハンドルは予約されています。他のものをお試しください。"
@@ -7548,9 +8196,10 @@ msgstr "このハンドルは予約されています。他のものをお試し
msgid "This information is not shared with other users."
msgstr "この情報は他のユーザーと共有されません。"
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "これは、メールアドレスの変更やパスワードのリセットが必要な場合に重要です。"
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr "有効なリンクではありません"
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "投稿者によって適用されたラベルです。"
msgid "This label was applied by you."
msgstr "あなたによって適用されたラベルです。"
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "このラベラーはどのようなラベルを発行しているか宣言しておらず、活動していない可能性もあります。"
@@ -7576,7 +8225,7 @@ msgstr "<0>{0}0>が作成したこのリストは名前または説明がBlues
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr "あなたが作成したこのリストは名前または説明がBlueskyのコミュニティガイドラインに違反している可能性があります。"
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "このリストは空です。"
@@ -7584,7 +8233,7 @@ msgstr "このリストは空です。"
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "このモデレーションのサービスはご利用できません。詳細は以下をご覧ください。この問題が解決しない場合は、サポートへお問い合わせください。"
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "<0>{0}0>に投稿されたと表示されていますが、Blueskyに初めて登場したのは<1>{1}1>です。"
@@ -7592,28 +8241,29 @@ msgstr "<0>{0}0>に投稿されたと表示されていますが、Blueskyに
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr "投稿に対する返信制限のタイプが不明です。アプリが古いかもしれません。"
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "この投稿は削除されました。"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "この投稿はサインインしているユーザーにのみ表示されます。サインインしていないユーザーには表示されません。"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "この投稿はフィードとスレッドから非表示になります。元に戻すことはできません。"
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "この投稿の投稿者は引用投稿を無効にしています。"
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "この投稿はサインインしているユーザーにのみ表示されます。サインインしていないユーザーには表示されません。"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
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 "この返信はスレッドの一番下にある非表示のセクションに移動され、その後のあなたや他のユーザー宛の返信の通知をミュートします。"
@@ -7621,10 +8271,14 @@ msgstr "この返信はスレッドの一番下にある非表示のセクショ
msgid "This service has not provided terms of service or a privacy policy."
msgstr "このサービスには、利用規約もプライバシーポリシーもありません。"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "これにより以下にドメインレコードが作成されるはずです:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr "このユーザーには表示名がないため認証できません。"
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "このユーザーにはフォロワーがいません。"
@@ -7662,21 +8316,21 @@ msgstr "このユーザーは誰もフォローしていません。"
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "ミュートしたワードから「{0}」が削除されます。あとでいつでも戻すことができます。"
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "クイックアクセスのリストから@{0}を削除します。"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "これによってあなたの投稿が全員に見える引用投稿からは削除され、プレースホルダーに置き換えられます。"
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "スレッドのオプション"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "スレッドの設定"
@@ -7684,8 +8338,8 @@ msgstr "スレッドの設定"
msgid "Thread Preferences"
msgstr "スレッドの設定"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "スレッド"
@@ -7693,7 +8347,7 @@ msgstr "スレッド"
msgid "Threaded mode"
msgstr "スレッドモード"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "スレッドの設定"
@@ -7705,14 +8359,15 @@ msgstr "残り時間:{0, plural, other {#秒}}"
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "メールでの2要素認証を無効にするには、メールアドレスにアクセスできるか確認してください。"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr "メールでの2要素認証を無効にするには、<0>{0}0>にアクセスできるか確認してください"
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "会話を報告するには、会話の画面からメッセージのうちの一つを報告してください。それによって問題の文脈をモデレーターが理解できるようになります。"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Blueskyにビデオをアップロードするには、まずメールアドレスを確認しなくてはなりません。"
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "この報告を誰に送りたいですか?"
@@ -7725,7 +8380,7 @@ msgstr "今日"
msgid "Toggle dropdown"
msgstr "ドロップダウンを切り替え"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "成人向けコンテンツの有効もしくは無効の切り替え"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr "音の切り替え"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "トップ"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "トピック"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "翻訳"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "トレンド"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "話題のビデオ"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr "信頼は人間関係、コミュニティ、共有されている文脈から得られるため、<0>信頼できる認証者0>(認証を直接発行できる組織)を有効にしています。"
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "テレビ"
msgid "Two-factor authentication (2FA)"
msgstr "2要素認証(2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "希望するユーザー名をタイプしてください"
@@ -7783,18 +8440,11 @@ msgstr "希望するユーザー名をタイプしてください"
msgid "Type your message here"
msgstr "ここにメッセージを入力する"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "タイプ:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "リストでのブロックを解除"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "リストでのミュートを解除"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "接続できません。インターネットへの接続を確認して再度試してください。"
@@ -7809,7 +8459,7 @@ msgstr "接続できません。インターネットへの接続を確認して
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "あなたのサービスに接続できません。インターネットの接続を確認してください。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "削除できません"
@@ -7817,36 +8467,41 @@ msgstr "削除できません"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "ブロックを解除"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "ブロックを解除"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "アカウントのブロックを解除"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "アカウントのブロックを解除しますか?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr "リストのブロックを解除"
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "リポストを元に戻す"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "リポストを元に戻す({0, plural, other {#件のリポスト}})"
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "フォローを解除"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "{0}のフォローを解除"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "アカウントのフォローを解除"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr "ユーザーのフォローを解除"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "残念ながら、登録しているラベラーはどれもこのタイプの報告をサポートしていません。"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr "不明な認証"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "いいねを外す"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "いいねを外す({0, plural, other {#件のいいね}})"
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr "ミュートを解除"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "ミュートを解除"
@@ -7895,10 +8555,10 @@ msgstr "ミュートを解除"
msgid "Unmute {tag}"
msgstr "{tag} のミュートを解除"
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "アカウントのミュートを解除"
@@ -7906,8 +8566,12 @@ msgstr "アカウントのミュートを解除"
msgid "Unmute conversation"
msgstr "会話のミュートを解除"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr "リストのミュートを解除"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "スレッドのミュートを解除"
@@ -7915,38 +8579,47 @@ msgstr "スレッドのミュートを解除"
msgid "Unmute video"
msgstr "ビデオのミュートを解除"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "ピン留めを解除"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "フィードのピン留めを外す"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr "フィードのピン留めを外す"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "ホームからピン留めを解除"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "プロフィールから固定を解除"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "モデレーションリストのピン留めを解除"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "{0}のピン留めを解除しました"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "フィードからピン留めを解除"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr "メールのリマインダーのスヌーズを解除"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "登録を解除"
@@ -7955,7 +8628,7 @@ msgstr "登録を解除"
msgid "Unsubscribe from list"
msgstr "リストの登録を解除"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "このラベラーの登録を解除"
@@ -7963,11 +8636,11 @@ msgstr "このラベラーの登録を解除"
msgid "Unsubscribed from list"
msgstr "リストの登録を解除しました"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "サポートしていないビデオ形式"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "サポートしていないビデオ形式:{0}"
@@ -7987,49 +8660,60 @@ msgstr "更新する"
msgid "Update <0>{displayName}0> in Lists"
msgstr "リストの<0>{displayName}0>を更新"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr "メールアドレスの更新"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "{domain}に更新"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
+msgstr "メールアドレスの更新"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
msgctxt "toast"
msgid "Updating quote attachment failed"
-msgstr ""
+msgstr "引用の添付の更新に失敗しました"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "返信の表示設定の更新に失敗しました"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "更新中…"
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "代わりに写真をアップロード"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "テキストファイルのアップロード先:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "カメラからアップロード"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "ファイルからアップロード"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "ライブラリーからアップロード"
@@ -8042,7 +8726,7 @@ msgstr "画像をアップロード中…"
msgid "Uploading link thumbnail..."
msgstr "リンクのサムネイルをアップロード中…"
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "ビデオをアップロード中…"
@@ -8050,22 +8734,22 @@ msgstr "ビデオをアップロード中…"
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "アプリパスワードを使うことで、アカウントやパスワードに完全にアクセスする権限を与えることなく、他のBlueskyクライアントにサインインします。"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "デフォルトプロバイダーを使用"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "アプリ内ブラウザを使用"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "リンクを開く時にアプリ内ブラウザを使用"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "デフォルトのブラウザを使用"
@@ -8084,7 +8768,7 @@ msgstr "使用者:"
#: src/components/dms/ReportDialog.tsx:324
msgctxt "toast"
msgid "User blocked"
-msgstr ""
+msgstr "ユーザーをブロックしました"
#: src/components/moderation/ModerationDetailsDialog.tsx:71
#: src/lib/moderation/useModerationCauseDescription.ts:63
@@ -8119,15 +8803,15 @@ msgstr "<0/>の作成したユーザーリスト"
msgid "User list by you"
msgstr "あなたの作成したユーザーリスト"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "ユーザーリストを作成しました"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "ユーザーリストを更新しました"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8150,58 +8834,88 @@ msgstr "フォローしているユーザー"
msgid "Users in \"{0}\""
msgstr "{0}のユーザー"
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "このコンテンツやプロフィールにいいねをしているユーザー"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr "フォローしているユーザー"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "値:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "メールアドレスの確認が必要"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr "認証に失敗しました。再度試してください。"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr "認証設定"
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr "認証設定"
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr "Blueskyでの認証は他のプラットフォームとは異なります。<0>詳細はこちら0>"
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr "認証者:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr "アカウントを認証"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr "コードを確認"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "DNSレコードを確認"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr "メールアドレスを確認"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr "メールのコードを確認"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "メールアドレス確認ダイアログ"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "新しいメールアドレスを確認"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "確認する"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "テキストファイルを確認"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr "このアカウントを認証しますか?"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "メールアドレスを確認"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "メールアドレスを確認"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "バージョン {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "ビデオ"
msgid "Video failed to process"
msgstr "ビデオの処理に失敗"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr "ビデオフィード"
@@ -8224,14 +8938,15 @@ msgstr "{0}からのビデオ:{text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "ビデオゲーム"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr "ビデオは一時停止中です"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr "ビデオを再生中です"
@@ -8239,11 +8954,11 @@ msgstr "ビデオを再生中です"
msgid "Video not found."
msgstr "ビデオが見つかりません。"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "ビデオの設定"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "ビデオをアップロードしました"
@@ -8251,31 +8966,32 @@ msgstr "ビデオをアップロードしました"
msgid "Video: {0}"
msgstr "ビデオ:{0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "ビデオ"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
-msgstr ""
+msgstr "ビデオは3分未満でなければなりません"
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "{0}のアバターを表示"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "{0}のプロフィールを表示"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "{displayName}のプロフィールを表示"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "ブロック中のユーザーのプロフィールを表示"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "デバッグエントリーを表示"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "詳細を表示"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "著作権侵害の報告の詳細を見る"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "スレッドをすべて表示"
@@ -8308,18 +9024,17 @@ msgstr "これらのラベルに関する情報を見る"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "もっと表示"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "プロフィールを表示"
@@ -8331,7 +9046,11 @@ msgstr "アバターを表示"
msgid "View the labeling service provided by @{0}"
msgstr "@{0}によって提供されるラベリングサービスを見る"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr "このユーザーの認証情報を表示"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "このフィードにいいねしたユーザーを見る"
@@ -8339,11 +9058,11 @@ msgstr "このフィードにいいねしたユーザーを見る"
msgid "View video"
msgstr "ビデオを表示"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "ブロックしたアカウントを見る"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr "投稿への反応のデフォルト設定を表示"
@@ -8352,14 +9071,18 @@ msgstr "投稿への反応のデフォルト設定を表示"
msgid "View your feeds and explore more"
msgstr "フィードを表示し、さらにフィードを探す"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "モデレーションリストを見る"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "ミュートしたアカウントを見る"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr "あなたの認証情報を表示"
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "コンテンツの警告"
msgid "Warn content and filter from feeds"
msgstr "コンテンツの警告とフィードからのフィルタリング"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr "今すぐ見る"
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "そのハッシュタグの検索結果は見つかりませんでした。"
@@ -8400,7 +9128,7 @@ msgstr "そのハッシュタグの検索結果は見つかりませんでした
msgid "We couldn't find any results for that topic."
msgstr "そのトピックについての検索結果は見つかりませんでした。"
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "この会話を読み込めませんでした"
@@ -8420,6 +9148,14 @@ msgstr "素敵なひとときをお過ごしください。覚えておいてく
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "あなたのフォロー中のユーザーの投稿を読み終わりました。フィード<0/>内の最新の投稿を表示します。"
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr "すくなくとも2つの「気になること」を選択するのをお勧めします。"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "<0>{0}0>にリンクが含まれているメールを送信しました。メールアドレスの確認プロセスを完了するために、そのリンクをクリックしてください。"
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "あなたがビデオのアップロードを許可されているかどうか判断できません。もう一度お試しください。"
@@ -8428,7 +9164,7 @@ 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:428
msgid "We were unable to load your configured labelers at this time."
msgstr "現在設定されたラベラーを読み込めません。"
@@ -8440,20 +9176,28 @@ msgstr "接続できませんでした。アカウントの設定を続けるた
msgid "We will let you know when your account is ready."
msgstr "アカウントの準備ができたらお知らせします。"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "<0>{0}0>にリンクが含まれているメールを送信します。メールアドレスの確認プロセスを完了するために、そのリンクをクリックしてください。"
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "これはあなたの体験をカスタマイズするために使用されます。"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "ネットワークで問題が発生しています。もう一度試してください"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr "Blueskyに新しい認証方式を導入しました。見やすいチェックマークです。"
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "私たちはあなたが参加してくれることをとても楽しみにしています!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "大変申し訳ありませんが、このリストを解決できませんでした。それでもこの問題が解決しない場合は、作成者の@{handleOrDid}までお問い合わせください。"
@@ -8461,11 +9205,11 @@ msgstr "大変申し訳ありませんが、このリストを解決できませ
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "大変申し訳ありませんが、現在ミュートされたワードを読み込むことができませんでした。もう一度お試しください。"
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
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:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "大変申し訳ありません!返信しようとしている投稿は削除されました。"
@@ -8474,7 +9218,7 @@ msgstr "大変申し訳ありません!返信しようとしている投稿は
msgid "We're sorry! We can't find the page you were looking for."
msgstr "大変申し訳ありません!お探しのページは見つかりません。"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "大変申し訳ありません!ラベラーは20までしか登録できず、すでに上限に達しています。"
@@ -8494,16 +9238,16 @@ msgstr "なにに興味がありますか?"
msgid "What do you want to call your starter pack?"
msgstr "あなたのスターターパックを何と呼びたいですか?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "みんなは何について投稿しているのか。"
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "最近どう?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr "チェックをタップすると、どの組織が認証を与えているかが表示されます。"
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "この投稿ではどの言語が使われていますか?"
@@ -8520,14 +9264,18 @@ msgstr "誰がこの投稿に反応できますか?"
msgid "Who can reply"
msgstr "返信できるユーザー"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr "誰が認証できますか?"
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "おっと!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr "おっと!トレンドビデオの読み込みに失敗しました。"
@@ -8574,11 +9322,11 @@ msgstr "なぜこのユーザーをレビューする必要がありますか?
msgid "Write a message"
msgstr "メッセージを書く"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "投稿を書く"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "返信を書く"
@@ -8588,11 +9336,16 @@ msgstr "返信を書く"
msgid "Writers"
msgstr "ライター"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "サーバーから間違ったDIDが送られてきました。受信したもの:{0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr "live.example.jp"
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "はい"
@@ -8601,15 +9354,15 @@ msgstr "はい"
msgid "Yes, deactivate"
msgstr "はい、無効化します"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "はい、このスターターパックを削除します"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "はい、切り離します"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "はい、非表示にします"
@@ -8625,14 +9378,31 @@ msgstr "昨日"
msgid "You"
msgstr "あなた"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr "あなたは信頼された認証者です"
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
-msgstr ""
+msgstr "アカウントを作成するホスティングプロバイダー:"
#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
msgstr "あなたは並んでいます。"
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr "ライブ中"
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr "もうライブ中ではありません"
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr "ライブの設定は許可されていません"
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "あなたはビデオのアップロードを許可されていません。"
@@ -8641,6 +9411,27 @@ msgstr "あなたはビデオのアップロードを許可されていません
msgid "You are not following anyone."
msgstr "あなたはまだだれもフォローしていません。"
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr "現在ライブ中です!"
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr "あなたは認証されています"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr "あなたは認証されています。表示名を変更すると、認証ステータスが失われます。<0>詳細はこちら。0>"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr "あなたは認証されています。ハンドルを変更すると、認証ステータスが失われます。<0>詳細はこちら。0>"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr "「気になること」は「コンテンツとメディアの設定」でいつでも変更できます。"
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr "デフォルトの反応の設定は、<0>設定 → モデレーショ
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "これは設定画面から後で変更できます。"
@@ -8682,7 +9472,7 @@ msgstr "あなたはまだだれもフォロワーがいません。"
msgid "You don't follow any users who follow @{name}."
msgstr "@{name}をフォローしているユーザーを誰もフォローしていません。"
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr "現在、チャットの要求はありません。"
@@ -8736,24 +9526,24 @@ msgstr "このアカウントをミュートしました。"
msgid "You have muted this user"
msgstr "このユーザーをミュートしました"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "まだ会話していません。始めましょう!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "フィードがありません。"
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "リストがありません。"
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "ブロック中のアカウントはまだありません。アカウントをブロックするには、ユーザーのプロフィールに移動し、アカウントメニューから「アカウントをブロック」を選択します。"
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "ミュートしているアカウントはまだありません。アカウントをミュートするには、プロフィールに移動し、アカウントメニューから「アカウントをミュート」を選択します。"
@@ -8761,11 +9551,15 @@ msgstr "ミュートしているアカウントはまだありません。アカ
msgid "You have reached the end"
msgstr "最後まで到達しました"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr "メールアドレスの確認に成功しました。このダイアログを閉じても大丈夫です。"
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "ビデオのアップロードの制限に一時的に到達しました。時間をおいてもう一度お試しください。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "スターターパックをまだ作成していません!"
@@ -8787,22 +9581,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "これらのラベルが誤って適用されたと思った場合は、異議申し立てを行うことができます。"
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "{STARTER_PACK_MAX_SIZE}ユーザーまで追加できます"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr "追加できるのは{STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE}人}}まで"
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "3つまでフィードを追加できます"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "画像は4枚まで選択できます"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "サインアップするには、13歳以上である必要があります。"
+msgid "You must be 13 years of age or older to create an account."
+msgstr "アカウントを作成するには、13歳以上である必要があります。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "スターターパックを作成するには、少なくとも7人をフォローしなければなりません。"
@@ -8810,28 +9604,40 @@ msgstr "スターターパックを作成するには、少なくとも7人を
msgid "You must grant access to your photo library to save a QR code"
msgstr "QRコードを保存するには写真ライブラリへのアクセスを許可する必要があります"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "画像を保存するには写真ライブラリへのアクセスを許可する必要があります。"
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "報告をするには少なくとも1つのラベラーを選択する必要があります"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr "2要素認証メールを有効にする前に、メールアドレスを確認する必要があります。"
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "以前、あなたは@{0}を無効化しました。"
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr "今すぐアプリを再起動したほうが良いでしょう。"
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr "あなたは{0}とリアクションしました"
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr "あなたは{1}に{0}とリアクションしました"
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "すべてのアカウントからサインアウトします。"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "これ以降、このスレッドに関する通知を受け取ることはできなくなります"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "これ以降、このスレッドに関する通知を受け取ることができます"
@@ -8839,23 +9645,23 @@ msgstr "これ以降、このスレッドに関する通知を受け取ること
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "「リセットコード」が記載されたメールが届きます。ここにコードを入力し、新しいパスワードを入力します。"
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "あなた: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "あなた: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "あなた: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "アカウントの作成を完了するとおすすめのユーザーやフィードをフォローします!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "アカウントの作成を完了するとおすすめのユーザーをフォローします!"
@@ -8867,7 +9673,7 @@ msgstr "これらのユーザーや他{0}をフォローします"
msgid "You'll follow these people right away"
msgstr "これらのユーザーをすぐにフォローします"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "本人確認のために<0>{0}0>へメールが届きます。"
@@ -8901,6 +9707,10 @@ msgstr "フォローするユーザーを探せました"
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "フィードはここまでです!もっとフォローするアカウントを見つけましょう。"
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr "リクエスト数の上限に達しました。後でもう一度お試しください。"
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "ビデオのアップロードの一日の上限に到達しました(容量が大きすぎます)"
@@ -8909,11 +9719,11 @@ msgstr "ビデオのアップロードの一日の上限に到達しました(
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "ビデオのアップロードの一日の上限に到達しました(ビデオの数が多すぎます)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "見るべきビデオがなくなりました。休憩を取ってもいい時間かも?"
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "あなたのアカウント"
@@ -8927,7 +9737,7 @@ msgstr "あなたのアカウントは停止されています"
#: src/view/com/composer/state/video.ts:429
msgid "Your account is not yet old enough to upload videos. Please try again later."
-msgstr "あなたのアカウントはまだ新しいのでビデオをアップロードできません。もう一度お試しください。"
+msgstr "あなたのアカウントは作成して間もないため動画をアップロードできません。もう一度お試しください。"
#: src/screens/Settings/components/ExportCarDialog.tsx:67
msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately."
@@ -8941,38 +9751,42 @@ msgstr "あなたのアカウントは<0>Bluesky Social利用規約0>に違反
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr "あなたの異議申し立てが送信されました。異議申し立てに成功していれば、あなたにメールが届きます。"
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "生年月日"
#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195
msgid "Your browser does not support the video format. Please try a different browser."
-msgstr "利用中のブラウザがこのビデオ形式をサポートしていません。他のブラウザをお試しください。"
+msgstr "使用中のブラウザが、このビデオ形式に対応していません。他のブラウザをお試しください。"
#: src/screens/Messages/components/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr "あなたのチャットは無効化されています"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "ここで選択した内容は保存されますが、あとから設定で変更できます。"
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr "あなたの選択は将来のリンクのために記憶されます。設定からいつでも変更できます。"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "あなたの現在のハンドル<0>{0}0>は自動的に予約されたままになります。いつでもこのアカウントに戻すことができます。"
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr "メールアドレスは更新されましたが、確認されていません。次のステップとして、新しいメールアドレスを確認してください。"
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "メールアドレスが無効なようです。"
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "メールアドレスは更新されましたが、確認されていません。次のステップとして、新しいメールアドレスを確認してください。"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr "あなたのメールアドレスはまだ確認されていません。Blueskyのすべての機能を楽しむためにあなたのメールアドレスを確認してください。"
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "メールアドレスはまだ確認されていません。これは、当社が推奨する重要なセキュリティステップです。"
@@ -8988,14 +9802,31 @@ msgstr "フォロワー"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Followingフィードは空です!もっと多くのユーザーをフォローして、近況を確認しましょう。"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "フルハンドルは<0>@{0}0>になります"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr "あなたのフルユーザー名は <0>@{0}0>になります"
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr "気になること"
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr "「気になること」を更新しました!"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr "「気になること」を設定すると、好きなものを見つけやすくなります!"
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "ミュートしたワード"
@@ -9004,15 +9835,15 @@ msgstr "ミュートしたワード"
msgid "Your password has been changed successfully!"
msgstr "パスワードの変更が完了しました!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr "パスワードは 8 文字以上である必要があります。"
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "投稿を公開しました"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "投稿が公開されました"
@@ -9024,14 +9855,22 @@ 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:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "返信を公開しました"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr "報告は <0>{0}0>に送信されます。"
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "あなたの報告はBluesky Moderation Serviceに送られます"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr "「気になること」は興味を引くコンテンツを提供するために役立てます。"
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr "あなたの認証情報"
diff --git a/src/locale/locales/km/messages.po b/src/locale/locales/km/messages.po
index 5cfbc6e90d..723c987bdb 100644
--- a/src/locale/locales/km/messages.po
+++ b/src/locale/locales/km/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: km\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 03:35\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Khmer\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(គ្មានអ៊ីមែល)"
@@ -79,9 +79,9 @@ msgstr ""
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -90,17 +90,17 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {អ្នកតាម} other {អ្នកតាម}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {អ្នកកំពុងតាម} other {អ្នកកំពុងតាម}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
@@ -108,14 +108,23 @@ msgstr ""
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr ""
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr ""
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr ""
msgid "{0} <0>in <1>text & tags1>0>"
msgstr ""
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr ""
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} បានចូលរួមសប្តាហ៍នេះ"
@@ -139,11 +156,16 @@ msgstr ""
msgid "{0} out of 50"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "មនុស្ស {0} នាក់បានប្រើកញ្ចប់ចាប់ផ្តើមនេះ"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr ""
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr ""
@@ -175,7 +197,7 @@ msgstr ""
msgid "{0}s"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -192,103 +214,184 @@ msgstr ""
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} បានតាមអ្នក"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} តាមអ្នកមកវិញ"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "{firstAuthorLink} ចូលចិត្តព័ត៌មានផ្ទាល់ខ្លួនរបស់អ្នក"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "{firstAuthorLink} បានចូលចិត្តការបង្ហោះរបស់អ្នក"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} បានបង្ហោះសាររបស់អ្នកឡើងវិញ"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} បានចុះឈ្មោះជាមួយកញ្ចប់ចាប់ផ្តើមរបស់អ្នក"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} បានតាមអ្នក"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} តាមអ្នកមកវិញ"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "{firstAuthorName} ចូលចិត្តព័ត៌មានផ្ទាល់ខ្លួនរបស់អ្នក"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "{firstAuthorName} បានចូលចិត្តការបង្ហោះរបស់អ្នក"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} បានបង្ហោះសាររបស់អ្នកឡើងវិញ"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} បានចុះឈ្មោះជាមួយកញ្ចប់ចាប់ផ្តើមរបស់អ្នក"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} កំពុងតាម"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "{handle} មិនអាចផ្ញើសារបានទេ"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr ""
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr ""
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -301,6 +404,34 @@ msgstr "{profileName} បានចូលរួមជាមួយ Bluesky {0} ម
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} បានចូលរួមជាមួយ Bluesky ដោយប្រើកញ្ចប់ចាប់ផ្តើម {0} មុន"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr ""
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr ""
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr ""
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr ""
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr ""
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {អ្នកតាម} other {អ្នកតាម}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {អ្នកកំពុងតាម} other {អ្នកកំពុងតាម}}"
@@ -343,7 +474,7 @@ msgstr "<0>ការពិសោធន៍៖0> នៅពេលដែលចំ
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>អ្នក0> និង<1> 1><2>{0}2> ត្រូវបានរួមបញ្ចូលនៅក្នុងកញ្ចប់ចាប់ផ្តើមរបស់អ្នក"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr ""
@@ -363,19 +494,28 @@ msgstr "៣០ ថ្ងៃ"
msgid "7 days"
msgstr "៧ ថ្ងៃ"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr ""
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "អំពី"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr ""
@@ -385,40 +525,40 @@ msgid "Accept Request"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "ភាពងាយស្រួល"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "ការកំណត់មានភាពងាយស្រួល"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "គណនី"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "គណនីត្រូវបានរារាំង"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "គណនីបានធ្វើតាម"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "គណនីត្រូវបានបិទសំឡេង"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
@@ -429,33 +569,37 @@ msgstr "គណនីត្រូវបានបិទសំឡេង"
msgid "Account Muted by List"
msgstr "គណនីត្រូវបានបិទសំឡេងដោយបញ្ជី"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "ជម្រើសគណនី"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "គណនីត្រូវបានដកចេញពីការចូលប្រើរហ័ស"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "គណនីត្រូវបានបិទ"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "គណនីមិនបានតាម"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
+msgstr "គណនីត្រូវបានបើក"
+
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "បន្ថែម"
@@ -473,8 +617,12 @@ msgstr "បន្ថែម {displayName} ទៅកញ្ចប់ចាប់ផ
msgid "Add a content warning"
msgstr "បន្ថែមការព្រមានអំពីខ្លឹមសារ"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "បន្ថែមអ្នកប្រើប្រាស់ទៅក្នុងបញ្ជីនេះ"
@@ -485,7 +633,7 @@ msgstr "បន្ថែមគណនី"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "បន្ថែមគណនី"
msgid "Add alt text"
msgstr "បន្ថែមអត្ថបទជំនួស"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "បន្ថែមអត្ថបទជំនួស (ជាជម្រើស)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "បន្ថែមគណនីផ្សេងទៀត"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "បន្ថែមប្រកាសមួយទៀត"
@@ -518,8 +666,12 @@ msgstr "បន្ថែមពាក្យសម្ងាត់កម្មវិ
msgid "Add App Password"
msgstr "បន្ថែមពាក្យសម្ងាត់កម្មវិធី"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr ""
@@ -531,15 +683,23 @@ msgstr ""
msgid "Add muted words and tags"
msgstr "បន្ថែមពាក្យ និងស្លាកដែលបានបិទ"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "បន្ថែមប្រកាសថ្មី"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr ""
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "បន្ថែមមតិព័ត៌មានដែលបានណែនាំ"
@@ -552,27 +712,28 @@ msgstr "បន្ថែមមតិព័ត៌មានមួយចំនួន
msgid "Add the default feed of only people you follow"
msgstr "បន្ថែមមតិព័ត៌មានលំនាំដើមសម្រាប់តែមនុស្សដែលអ្នកតាមដានប៉ុណ្ណោះ"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "បន្ថែមកំណត់ត្រា DNS ខាងក្រោមទៅកាន់ Domain របស់អ្នក"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "បញ្ចូលព័ត៌មាននេះទៅក្នុងមតិព័ត៌មានរបស់អ្នក"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "បន្ថែមទៅបញ្ជី"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "បន្ថែមទៅបញ្ជី"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "បន្ថែមទៅមតិព័ត៌មានរបស់ខ្ញុំ"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "បានបន្ថែមទៅក្នុងបញ្ជី"
@@ -581,22 +742,22 @@ msgstr "បានបន្ថែមទៅក្នុងបញ្ជី"
msgid "Added to my feeds"
msgstr "បន្ថែមទៅមតិព័ត៌មានរបស់ខ្ញុំ"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "មនុស្សពេញវ័យ"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "មាតិកាសម្រាប់មនុស្សពេញវ័យ"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "មាតិកាសម្រាប់មនុស្សពេញវ័យអាចត្រូវបានបើកតាមរយៈគេហទំព័រនៅ <0>bsky.app0> ប៉ុណ្ណោះ។"
@@ -604,30 +765,35 @@ msgstr "មាតិកាសម្រាប់មនុស្សពេញវ័
msgid "Adult content is disabled."
msgstr "មាតិកាសម្រាប់មនុស្សពេញវ័យត្រូវបានបិទ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "ស្លាកមាតិកាសម្រាប់មនុស្សពេញវ័យ"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "កម្រិតខ្ពស់"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr ""
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "គណនីទាំងអស់ត្រូវបានតាមដាន"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr ""
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "មតិព័ត៌មានទាំងអស់ដែលអ្នកបានរក្សាទុក នៅកន្លែងតែមួយ"
@@ -671,10 +837,10 @@ msgstr "ជំនួស"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "អត្ថបទជំនួស"
@@ -688,19 +854,18 @@ msgstr "អត្ថបទជំនួសពិពណ៌នារូបភាព
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "អត្ថបទជំនួសនឹងត្រូវបានកាត់ឱ្យខ្លី។ ដែនកំណត់៖ {0} តួអក្សរ"
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr ""
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "\"អ៊ីមែលត្រូវបានផ្ញើទៅ {0}។ វារួមបញ្ចូលទាំងកូដបញ្ជាក់ដែលអ្នកអាចបញ្ចូលខាងក្រោម"
-#: src/view/com/modals/ChangeEmail.tsx:114
-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/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "អ៊ីមែលត្រូវបានផ្ញើ! សូមបញ្ចូលលេខកូដបញ្ជាក់ដែលមានក្នុងអ៊ីមែលខាងក្រោម"
@@ -716,7 +881,11 @@ msgstr "កំហុសមួយបានកើតឡើង"
msgid "An error occurred while compressing the video."
msgstr "កំហុសមួយបានកើតឡើងខណៈពេលកំពុងបង្ហាប់វីដេអូ"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងបង្កើតកញ្ចប់ចាប់ផ្តើមរបស់អ្នក។ ចង់សាកល្បងម្តងទៀតទេ?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងផ្ទុកវីដេអូ។ សូមព្យាយាមម្តងទៀត"
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "កំហុសបានកើតឡើងខណៈពេលរក្សាទុកកូដ QR!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "កំហុសបានកើតឡើងនៅពេលជ្រើសរើសវីដេអូ"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "កំហុសបានកើតឡើងខណៈពេលព្យាយាមតាមដានទាំងអស់"
@@ -746,12 +914,17 @@ msgstr "កំហុសបានកើតឡើងខណៈពេលព្យា
msgid "An error occurred while uploading the video."
msgstr "កំហុសមួយបានកើតឡើងពេលផ្ទុកវីដេអូ"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "បញ្ហាដែលមិនត្រូវបានរួមបញ្ចូលនៅក្នុងជម្រើសទាំងនេះ"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "បញ្ហាមួយបានកើតឡើងចាប់ផ្តើមការជជែក"
@@ -761,13 +934,17 @@ msgstr "បញ្ហាមួយបានកើតឡើងខណៈពេលព
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "បញ្ហាបានកើតឡើង សូមព្យាយាមម្តងទៀត"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "កំហុសមិនស្គាល់បានកើតឡើង"
@@ -790,6 +967,10 @@ msgstr "សត្វ"
msgid "Animated GIF"
msgstr "GIF ដែលមានចលនា"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr ""
msgid "Anybody can interact"
msgstr "អ្នកណាក៏អាចធ្វើអន្តរកម្ម"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "រូបតំណាងកម្មវិធី"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "ភាសា កម្មវិធី"
@@ -817,7 +998,7 @@ msgstr "ពាក្យសម្ងាត់កម្មវិធី"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "ពាក្យសម្ងាត់កម្មវិធីត្រូវបានលុប"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
@@ -836,7 +1017,7 @@ msgstr "ឈ្មោះពាក្យសម្ងាត់កម្មវិធ
msgid "App passwords"
msgstr "ពាក្យសម្ងាត់កម្មវិធី"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "ពាក្យសម្ងាត់កម្មវិធី"
@@ -854,7 +1035,7 @@ msgstr ""
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "បានដាក់បណ្ដឹងឧទ្ធរណ៍"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -872,10 +1053,10 @@ msgstr ""
msgid "Appeal this decision"
msgstr "ប្តឹងឧទ្ធរណ៍លើការសម្រេចចិត្តនេះ។"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "រូបរាង"
@@ -884,12 +1065,12 @@ msgstr "រូបរាង"
msgid "Apply default recommended feeds"
msgstr "អនុវត្តមតិព័ត៌មានដែលបានណែនាំលំនាំដើម"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "បានរក្សាទុកពី {0}"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr ""
@@ -897,15 +1078,15 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "តើអ្នកប្រាកដថាចង់លុបពាក្យសម្ងាត់កម្មវិធី \"{0}\"?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
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:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "តើអ្នកប្រាកដទេថាអ្នកចង់លុបកញ្ចប់ចាប់ផ្តើមនេះ"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "តើអ្នកប្រាកដទេថាអ្នកចង់បោះបង់ការផ្លាស់ប្ដូររបស់អ្នក"
@@ -921,15 +1102,15 @@ msgstr "តើអ្នកប្រាកដថាចង់ចាកចេញព
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "តើអ្នកប្រាកដទេថាអ្នកចង់លុប {0} ចេញពីព័ត៌មានរបស់អ្នក"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "តើអ្នកប្រាកដថាចង់លុបវាចេញពីមតិព័ត៌មានរបស់អ្នកមែនទេ"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "តើអ្នកប្រាកដថាអ្នកចង់បោះបង់សេចក្តីព្រាងនេះ"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "តើអ្នកប្រាកដថាចង់បោះបង់ការបង្ហោះនេះទេ?"
@@ -937,7 +1118,7 @@ msgstr "តើអ្នកប្រាកដថាចង់បោះបង់ក
msgid "Are you sure?"
msgstr "តើអ្នកប្រាកដទេ?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -946,11 +1127,16 @@ msgstr ""
msgid "Art"
msgstr "សិល្បៈ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "អាក្រាតកាយបែបសិល្បៈ ឬមិនស្រើបស្រាល"
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "យ៉ាងហោចណាស់ 3 តួអក្សរ"
@@ -963,12 +1149,12 @@ msgstr ""
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "ជម្រើសលេងដោយស្វ័យប្រវត្តិបានផ្លាស់ទីទៅ <0>ការកំណត់មាតិកា និងមេឌៀ0>"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "ចាក់វីដេអូ និង GIFs ដោយស្វ័យប្រវត្តិ"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "ចាក់វីដេអូ និង GIFs ដោយស្វ័យ
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "ត្រឡប់"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr ""
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "មុននឹងបង្កើតបញ្ជី អ្នកត្រូវតែផ្ទៀងផ្ទាត់អ៊ីមែលរបស់អ្នកជាមុនសិន"
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "មុននឹងបង្កើតការបង្ហោះ អ្នកត្រូវតែផ្ទៀងផ្ទាត់អ៊ីមែលរបស់អ្នកជាមុនសិន"
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "មុននឹងបង្កើតកញ្ចប់ចាប់ផ្តើម អ្នកត្រូវតែផ្ទៀងផ្ទាត់អ៊ីមែលរបស់អ្នកជាមុនសិន"
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "មុនពេលអ្នកអាចផ្ញើសារទៅកាន់អ្នកប្រើប្រាស់ផ្សេងទៀត អ្នកត្រូវតែផ្ទៀងផ្ទាត់អ៊ីមែលរបស់អ្នកជាមុនសិន"
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "ថ្ងៃកំណើត"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "ទប់ស្កាត់"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "បិទគណនី"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "បិទគណនី?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "បិទគណនី"
@@ -1054,7 +1241,7 @@ msgstr ""
msgid "Block and/or delete this conversation"
msgstr ""
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "បញ្ជីទប់ស្កាត់"
@@ -1062,7 +1249,7 @@ msgstr "បញ្ជីទប់ស្កាត់"
msgid "Block or report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "ទប់ស្កាត់គណនីទាំងនេះ?"
@@ -1079,21 +1266,21 @@ msgstr ""
msgid "Blocked"
msgstr "រារាំង"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "គណនីដែលបានទប់ស្កាត់"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "គណនីដែលបានទប់ស្កាត់"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "គណនីដែលបានទប់ស្កាត់មិនអាចឆ្លើយតបក្នុងខ្សែស្រឡាយរបស់អ្នក លើកឡើងពីអ្នក ឬធ្វើអន្តរកម្មជាមួយអ្នក"
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 "គណនីដែលបានទប់ស្កាត់មិនអាចឆ្លើយតបក្នុងខ្សែស្រឡាយរបស់អ្នក លើកឡើងពីអ្នក ឬធ្វើអន្តរកម្មជាមួយអ្នក។ អ្នកនឹងមិនឃើញខ្លឹមសាររបស់ពួកគេទេ ហើយពួកគេនឹងត្រូវបានរារាំងមិនឱ្យឃើញរបស់អ្នក"
@@ -1101,19 +1288,19 @@ msgstr "គណនីដែលបានទប់ស្កាត់ម
msgid "Blocked post."
msgstr "ទប់ស្កាត់ post"
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "ការទប់ស្កាត់មិនរារាំងអ្នកដាក់ស្លាកនេះពីការដាក់ស្លាកនៅលើគណនីរបស់អ្នកនោះទេ"
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "ការទប់ស្កាត់ជាសាធារណៈ។ គណនីដែលបានទប់ស្កាត់មិនអាចឆ្លើយតបក្នុងខ្សែស្រឡាយរបស់អ្នក លើកឡើងពីអ្នក ឬធ្វើអន្តរកម្មជាមួយអ្នក"
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
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:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "ប្លុក"
@@ -1122,7 +1309,7 @@ msgstr "ប្លុក"
msgid "Bluesky"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky មិនអាចបញ្ជាក់ពីភាពត្រឹមត្រូវនៃកាលបរិច្ឆេទដែលបានទាមទារនោះទេ"
@@ -1148,7 +1335,7 @@ msgstr "Bluesky គឺល្អជាមួយមិត្តភក្តិ!"
msgid "Bluesky Social Terms of Service"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky នឹងជ្រើសរើសសំណុំនៃគណនីដែលបានណែនាំពីមនុស្សនៅក្នុងបណ្តាញរបស់អ្នក"
@@ -1156,6 +1343,10 @@ msgstr "Bluesky នឹងជ្រើសរើសសំណុំនៃគណន
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky នឹងមិនបង្ហាញប្រវត្តិរូប និងការបង្ហោះរបស់អ្នកទៅកាន់អ្នកប្រើប្រាស់ដែលបានចេញពីគណនីនោះទេ។ កម្មវិធីផ្សេងទៀតប្រហែលជាមិនគោរពសំណើនេះទេ។ នេះមិនធ្វើឱ្យគណនីរបស់អ្នកជាឯកជនទេ"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr ""
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr ""
@@ -1177,23 +1368,23 @@ msgstr "រូបភាពព្រិលៗ និងត្រងចេញព
msgid "Books"
msgstr "សៀវភៅ"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "រកមើលគណនីច្រើនទៀតនៅលើទំព័ររុករក"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "រកមើលព័ត៌មានបន្ថែមនៅលើទំព័ររុករក"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "រកមើលការណែនាំបន្ថែម"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "រកមើលការណែនាំបន្ថែមនៅលើទំព័ររុករក"
@@ -1214,20 +1405,26 @@ msgstr ""
msgid "Browse starter pack {displayName}"
msgstr ""
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr ""
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "អាជីវកម្ម"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "ដោយ {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
@@ -1243,44 +1440,51 @@ msgstr "តាមរយៈការបង្កើតគណនីមួយ អ
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "តាមរយៈការបង្កើតគណនីមួយ អ្នកយល់ព្រមនឹង <0>លក្ខខណ្ឌប្រើប្រាស់0>"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr ""
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "កាមេរ៉ា"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "បោះបង់"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "បោះបង់ការលុបគណនី"
msgid "Cancel image crop"
msgstr "បោះបង់ការច្រឹបរូបភាព"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "បោះបង់ការកែទម្រង់"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "បោះបង់ការប្រកាសសម្រង់"
@@ -1308,8 +1512,7 @@ msgstr "បោះបង់ការប្រកាសសម្រង់"
msgid "Cancel reactivation and sign out"
msgstr "បោះបង់ការបើកដំណើរការឡើងវិញ ហើយចេញ"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "បោះបង់ការស្វែងរក"
@@ -1317,24 +1520,23 @@ msgstr "បោះបង់ការស្វែងរក"
msgid "Cancels opening the linked website"
msgstr "បោះបង់ការបើកគេហទំព័រដែលបានភ្ជាប់"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "មិនអាចធ្វើអន្តរកម្មជាមួយអ្នកប្រើប្រាស់ដែលត្រូវបានទប់ស្កាត់បានទេ"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "ចំណងជើង (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "ចំណងជើង និងអត្ថបទជំនួស"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "ផ្លាស់ប្តូរ"
@@ -1347,46 +1549,41 @@ msgstr ""
msgid "Change app icon to \"{0}\""
msgstr "ផ្លាស់ប្តូររូបតំណាងកម្មវិធីទៅជា"
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "ផ្លាស់ប្តូរ email"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "ផ្លាស់ប្តូរអាសយដ្ឋានអ៊ីមែល"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "ផ្លាស់ប្តូរ Handle"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "ផ្លាស់ប្តូរអ៊ីមែលរបស់ខ្ញុំ"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "ផ្លាស់ប្តូរពាក្យសម្ងាត់"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "ផ្លាស់ប្តូរអ៊ីមែលរបស់អ្នក"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "ផ្លាស់ប្តូរអាសយដ្ឋានអ៊ីមែលរបស់អ្នក"
@@ -1394,20 +1591,20 @@ msgstr "ផ្លាស់ប្តូរអាសយដ្ឋានអ៊ីម
msgid "Changes app icon"
msgstr ""
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr ""
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "ជជែក"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
msgstr ""
@@ -1415,22 +1612,21 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "បានបិទការជជែក"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr ""
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "ការកំណត់ការជជែក"
@@ -1441,10 +1637,10 @@ msgstr "ការកំណត់ការជជែក"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "បានបើកការជជែក"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr ""
@@ -1461,7 +1657,7 @@ msgstr ""
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "ពិនិត្យប្រអប់សំបុត្ររបស់អ្នកសម្រាប់អ៊ីមែលដែលមានលេខកូដបញ្ជាក់ដើម្បីបញ្ចូលខាងក្រោម៖"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "ជ្រើសរើសវិធីសាស្ត្រផ្ទៀងផ្ទាត់ដែន"
@@ -1469,7 +1665,7 @@ msgstr "ជ្រើសរើសវិធីសាស្ត្រផ្ទៀង
msgid "Choose Feeds"
msgstr "ជ្រើសរើសមតិព័ត៌មាន"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "ជ្រើសរើសសម្រាប់ខ្ញុំ"
@@ -1477,10 +1673,6 @@ msgstr "ជ្រើសរើសសម្រាប់ខ្ញុំ"
msgid "Choose People"
msgstr "ជ្រើសរើសមនុស្ស"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "ជ្រើសរើសស្លាកដោយខ្លួនឯងដែលអាចអនុវត្តបានសម្រាប់ប្រព័ន្ធផ្សព្វផ្សាយដែលអ្នកកំពុងបង្ហោះ។ ប្រសិនបើមិនត្រូវបានជ្រើសរើសទេ ការបង្ហោះនេះគឺសមរម្យសម្រាប់ទស្សនិកជនទាំងអស់"
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "ជ្រើសរើសក្បួនដោះស្រាយដែលផ្តល់ថាមពលដល់មតិព័ត៌មានផ្ទាល់ខ្លួនរបស់អ្នក"
@@ -1493,27 +1685,31 @@ msgstr "ជ្រើសរើសពណ៌នេះជារូបតំណាង
msgid "Choose your account provider"
msgstr ""
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "ជ្រើសរើសពាក្យសម្ងាត់របស់អ្នក"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr ""
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "សម្អាតទិន្នន័យផ្ទុកទាំងអស់"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "សម្អាតទិន្នន័យផ្ទុកទាំងអស់ (ចាប់ផ្តើមឡើងវិញបន្ទាប់ពីនេះ)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr ""
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "ជម្រះសំណួរស្វែងរក"
@@ -1522,6 +1718,14 @@ msgstr "ជម្រះសំណួរស្វែងរក"
msgid "click here"
msgstr "ចុចទីនេះ"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "ចុចដើម្បីបិទការប្រកាសសម្រង់នៃការប្រកាសនេះ"
@@ -1534,7 +1738,7 @@ msgstr "ចុចដើម្បីបើកការប្រកា
msgid "Click to open tag menu for {tag}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "ចុចដើម្បីព្យាយាមសារដែលបរាជ័យម្តងទៀត"
@@ -1546,24 +1750,34 @@ msgstr "អាកាសធាតុ"
msgid "Clip 🐴 clop 🐴"
msgstr ""
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "បិទ"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "បិទប្រអប់សកម្ម"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr ""
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "បិទប្រអប់"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr ""
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr ""
@@ -1600,7 +1816,13 @@ msgstr "រូបភាពបិទ"
msgid "Close image viewer"
msgstr "បិទកម្មវិធីមើលរូបភាព"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr ""
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "បិទប្រអប់នេះ។"
@@ -1608,8 +1830,12 @@ msgstr "បិទប្រអប់នេះ។"
msgid "Closes password update alert"
msgstr "បិទការជូនដំណឹងអំពីការអាប់ដេតពាក្យសម្ងាត់"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr ""
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr ""
@@ -1617,11 +1843,11 @@ msgstr ""
msgid "Closes viewer for header image"
msgstr "បិទកម្មវិធីមើលសម្រាប់រូបភាពបឋមកថា"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "បង្រួមបញ្ជីអ្នកប្រើប្រាស់"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "បង្រួមបញ្ជីអ្នកប្រើប្រាស់សម្រាប់ការជូនដំណឹងដែលបានផ្តល់ឱ្យ"
@@ -1644,7 +1870,7 @@ msgstr "កំប្លែង"
msgid "Comics"
msgstr "រឿងកំប្លែង"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "គោលការណ៍ណែនាំសហគមន៍"
@@ -1653,23 +1879,23 @@ msgstr "គោលការណ៍ណែនាំសហគមន៍"
msgid "Complete onboarding and start using your account"
msgstr "បញ្ចប់ការបើកដំណើរការ ហើយចាប់ផ្តើមប្រើគណនីរបស់អ្នក"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "បញ្ចប់ការប្រឈម"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "សរសេរអត្ថបទថ្មី"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "សរសេរការបង្ហោះរហូតដល់ {MAX_GRAPHEME_LENGTH} តួអក្សរដែលមានប្រវែង"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr ""
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "សរសេរការឆ្លើយតប"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "កំពុងបង្ហាប់វីដេអូ..."
@@ -1681,23 +1907,17 @@ msgstr "កំណត់រចនាសម្ព័ន្ធការកំណត
msgid "Configured in <0>moderation settings0>."
msgstr "បានកំណត់រចនាសម្ព័ន្ធនៅក្នុង <0>ការកំណត់កម្រិតមធ្យម0>"
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "បញ្ជាក់"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "បញ្ជាក់ការផ្លាស់ប្តូរ"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "បញ្ជាក់ការកំណត់ភាសាមាតិកា"
@@ -1706,26 +1926,27 @@ msgstr "បញ្ជាក់ការកំណត់ភាសាមាតិក
msgid "Confirm delete account"
msgstr "បញ្ជាក់ការលុបគណនី"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "បញ្ជាក់អាយុរបស់អ្នក៖"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "បញ្ជាក់ថ្ងៃខែឆ្នាំកំណើតរបស់អ្នក។"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "លេខកូដបញ្ជាក់"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "លេខកូដបញ្ជាក់"
@@ -1733,22 +1954,22 @@ msgstr "លេខកូដបញ្ជាក់"
msgid "Connecting..."
msgstr "កំពុងភ្ជាប់..."
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "ទាក់ទងផ្នែកគាំទ្រ"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព្វផ្សាយ"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព្វផ្សាយ"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព្វផ្សាយ"
@@ -1756,15 +1977,15 @@ msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព
msgid "Content Blocked"
msgstr "មាតិកាត្រូវបានរារាំង"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "តម្រងមាតិកា"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "ភាសាមាតិកា"
@@ -1785,16 +2006,16 @@ msgstr "ការព្រមានអំពីខ្លឹមសារ"
msgid "Content warnings"
msgstr "ការព្រមានអំពីខ្លឹមសារ"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "ផ្ទាំងខាងក្រោយម៉ឺនុយបរិបទ ចុចដើម្បីបិទម៉ឺនុយ"
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "បន្ត"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "បន្តជា {0} (បច្ចុប្បន្នចូល)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "បន្តខ្សែ..."
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "បន្តទៅជំហានបន្ទាប់"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "ការសន្ទនាត្រូវបានលុប"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "ការសន្ទនាត្រូវបានលុប"
@@ -1826,16 +2047,17 @@ msgstr "ចម្អិនអាហារ"
msgid "Copied"
msgstr "ចម្លង"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "បានចម្លងកំណែស្ថាបនាទៅ clipboard"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "បានចម្លងទៅ clipboard"
@@ -1844,25 +2066,29 @@ msgstr "បានចម្លងទៅ clipboard"
msgid "Copied!"
msgstr "បានចម្លង"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "ចម្លង"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr ""
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "ចម្លងពាក្យសម្ងាត់កម្មវិធី"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr ""
@@ -1871,57 +2097,69 @@ msgstr ""
msgid "Copy code"
msgstr "ចម្លងកូដ"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "ចម្លង DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "ចម្លងម៉ាស៊ីន"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "ចម្លងតំណ"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "ចម្លងតំណ"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "ចម្លងតំណទៅបញ្ជី"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "ចម្លងតំណទៅប្រកាស"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "ចម្លងអត្ថបទសារ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "ចម្លងអត្ថបទអត្ថបទ"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "ចម្លងកូដ QR"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "ចម្លងតម្លៃកំណត់ត្រា TXT"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "គោលការណ៍រក្សាសិទ្ធិ"
@@ -1931,11 +2169,11 @@ msgstr "គោលការណ៍រក្សាសិទ្ធិ"
msgid "Could not leave chat"
msgstr "មិនអាចចាកចេញពីការជជែកបានទេ"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "មិនអាចផ្ទុកព័ត៌មានបានទេ"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "មិនអាចផ្ទុកបញ្ជីបានទេ"
@@ -1947,28 +2185,28 @@ msgstr "មិនអាចបិទការជជែកបានទេ"
msgid "Could not process your video"
msgstr "មិនអាចដំណើរការវីដេអូរបស់អ្នកបានទេ"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "បង្កើត"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "បង្កើតលេខកូដ QR សម្រាប់កញ្ចប់ចាប់ផ្តើម"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើម"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើមសម្រាប់ខ្ញុំ"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើមសម្
msgid "Create account"
msgstr "ចុះឈ្មោះ"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "បង្កើតគណនី"
@@ -1985,11 +2223,16 @@ msgstr "បង្កើតគណនី"
msgid "Create an account"
msgstr "បង្កើតគណនី"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "បង្កើតរូបតំណាងជំនួសវិញ"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "បង្កើតមួយផ្សេងទៀត"
@@ -1998,7 +2241,7 @@ msgstr "បង្កើតមួយផ្សេងទៀត"
msgid "Create new account"
msgstr "បង្កើតគណនីថ្មី"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "បង្កើតរបាយការណ៍សម្រាប់ {0}"
@@ -2053,17 +2296,17 @@ msgstr "ទម្រង់ងងឹត"
msgid "Dark theme"
msgstr "ស្បែកខ្មៅងងឹត"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "ថ្ងៃខែឆ្នាំកំណើត"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "បិទដំណើរការគណនី"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "ការសម្របសម្រួលបំបាត់កំហុស"
@@ -2079,19 +2322,19 @@ msgstr "លំនាំដើម"
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "លុប"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "លុបគណនី"
@@ -2107,19 +2350,19 @@ msgstr "លុបពាក្យសម្ងាត់កម្មវិធី"
msgid "Delete app password?"
msgstr "លុបពាក្យសម្ងាត់កម្មវិធី"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr ""
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "លុបកំណត់ត្រាប្រកាសការជជែក"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr ""
@@ -2127,19 +2370,19 @@ msgstr ""
msgid "Delete Conversation"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "លុបពីខ្ញុំ"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
-msgstr "លុបបញ្ជី"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "លុបសារ"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr ""
@@ -2147,26 +2390,26 @@ msgstr ""
msgid "Delete my account"
msgstr "លុបសារពីខ្ញុំ"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "លុប post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "លុបកញ្ចប់ចាប់ផ្តើម"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "លុបកញ្ចប់ចាប់ផ្តើម?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "លុបបញ្ជីនេះ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "លុប post នេះ?"
@@ -2174,8 +2417,8 @@ msgstr "លុប post នេះ?"
msgid "Deleted"
msgstr "បានលុប់"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "គណនីបានលុប"
@@ -2183,48 +2426,48 @@ msgstr "គណនីបានលុប"
msgid "Deleted post."
msgstr "លុប post"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "ការពិពណ៌នា"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "ការពិពណ៌នាគឺវែងពេក"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "ការពិពណ៌នាគឺវែងពេក។ ចំនួនតួអក្សរអតិបរមាគឺ {DESCRIPTION_MAX_GRAPHEMES}"
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "អត្ថបទ alt ពិពណ៌នា"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "ផ្ដាច់សម្រង់"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "ផ្ដាច់សម្រង់ post?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
msgstr ""
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr ""
@@ -2236,6 +2479,15 @@ msgstr "ប្រអប់៖ កែតម្រូវអ្នកដែលអ
msgid "Dim"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr ""
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "បិទអ៊ីមែល 2FA"
@@ -2254,25 +2506,25 @@ msgstr "បិទចំណងជើងរង"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "បានបិទ"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "បោះបង់"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "បោះបង់ "
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "បោះបង់ការផ្លាស់ប្តូរ?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "បោះបង់ការបង្ហោះ?"
@@ -2281,24 +2533,24 @@ msgstr "បោះបង់ការបង្ហោះ?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "រារាំងកម្មវិធីមិនឱ្យបង្ហាញគណនីរបស់ខ្ញុំទៅអ្នកប្រើប្រាស់ដែលបានចេញពីគណនី"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "ស្វែងរកព័ត៌មានផ្ទាល់ខ្លួនថ្មី"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "ស្វែងរកព័ត៌មានថ្មីៗ"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "ស្វែងរកមតិព័ត៌មានថ្មី"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "ច្រានចោល"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "ច្រានចោលកំហុស"
@@ -2306,6 +2558,10 @@ msgstr "ច្រានចោលកំហុស"
msgid "Dismiss getting started guide"
msgstr "បោះបង់ការណែនាំអំពីការចាប់ផ្តើម"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr ""
@@ -2315,27 +2571,27 @@ msgstr ""
msgid "Display larger alt text badges"
msgstr "បង្ហាញផ្លាកសញ្ញាអក្សរជំនួសធំជាង"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "បង្ហាញឈ្មោះ"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "បង្ហាញឈ្មោះ"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "ឈ្មោះបង្ហាញវែងពេក"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "ឈ្មោះបង្ហាញវែងពេក។ ចំនួនតួអក្សរអតិបរមាគឺ {DISPLAY_NAME_MAX_GRAPHEMES}"
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr ""
@@ -2347,37 +2603,45 @@ msgstr "កុំប្រើពាក្យស្ងាត់នេ
msgid "Does not include nudity."
msgstr "មិនរាប់បញ្ចូលភាពអាក្រាតកាយ"
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "មិនចាប់ផ្តើម ឬបញ្ចប់ដោយសហសញ្ញា"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "បានផ្ទៀងផ្ទាត់ Domain"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "រួចរាល់"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "រួចរាល់"
msgid "Done{extraText}"
msgstr "រួចរាល់{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr ""
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "ចុចពីរដងដើម្បីបិទប្រអប់"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr ""
@@ -2413,23 +2681,23 @@ msgstr "ទម្លាក់ដើម្បីបន្ថែមរូបភា
msgid "Duration:"
msgstr "រយៈពេល"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr ""
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr ""
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr ""
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr ""
@@ -2437,19 +2705,19 @@ msgstr ""
msgid "E.g. artistic nudes."
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr ""
@@ -2457,20 +2725,21 @@ msgstr ""
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "កែសម្រួល"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "កែសម្រួល"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "កែសម្រួលរូបតំណាង"
@@ -2478,31 +2747,41 @@ msgstr "កែសម្រួលរូបតំណាង"
msgid "Edit Feeds"
msgstr "កែសម្រួលមតិព័ត៌មាន"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "កែរូបភាព"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "កែសម្រួលការកំណត់អន្តរកម្ម"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "កែសម្រួលព័ត៌មានលម្អិតនៃបញ្ជី"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "កែសម្រួលបញ្ជីសម្របសម្រួល"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "កែសម្រួលមតិព័ត៌មានរបស់ខ្ញុំ"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "កែប្រវត្តិរូបរបស់ខ្ញុំ"
@@ -2515,23 +2794,23 @@ msgstr "កែសម្រួលមនុស្ស"
msgid "Edit post interaction settings"
msgstr "កែសម្រួលការកំណត់អន្តរកម្មនៃការបង្ហោះ"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "កែប្រវត្តិរូប"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "កែប្រវត្តិរូប"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "កែសម្រួលកញ្ចប់ចាប់ផ្តើម"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "កែសម្រួលបញ្ជីអ្នកប្រើប្រាស់"
@@ -2539,15 +2818,15 @@ msgstr "កែសម្រួលបញ្ជីអ្នកប្រើប្រ
msgid "Edit who can reply"
msgstr "កែសម្រួលអ្នកណាអាចឆ្លើយតបបាន"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "កែសម្រួលឈ្មោះបង្ហាញរបស់អ្នក"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "កែសម្រួលការពិពណ៌នាប្រវត្តិរូបរបស់អ្នក"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "កែសម្រួលកញ្ចប់ចាប់ផ្តើមរបស់អ្នក"
@@ -2560,9 +2839,8 @@ msgstr "ការអប់រំ"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr ""
@@ -2583,19 +2861,16 @@ msgstr "អាសយដ្ឋានអ៊ីមែល"
msgid "Email Resent"
msgstr "ផ្ញើអ៊ីមែលឡើងវិញ"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "បានធ្វើបច្ចុប្បន្នភាពអ៊ីមែល"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
msgstr ""
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
@@ -2608,8 +2883,8 @@ msgstr ""
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr ""
@@ -2617,12 +2892,13 @@ msgstr ""
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "បង្កប់ការបង្ហោះនេះនៅក្នុងគេហទំព័ររបស់អ្នក។ គ្រាន់តែចម្លងផ្នែកខាងក្រោម ហើយបិទភ្ជាប់វាទៅក្នុងកូដ HTML នៃគេហទំព័ររបស់អ្នក"
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "កម្មវិធីចាក់វីដេអូដែលបានបង្កប់"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "បើក"
@@ -2630,13 +2906,13 @@ msgstr "បើក"
msgid "Enable {0} only"
msgstr "បើកដំណើរការតែ {0} ប៉ុណ្ណោះ"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "បើកមាតិកាសម្រាប់មនុស្សពេញវ័យ"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr "បើកដំណើរការអ៊ីមែល 2FA"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2660,30 +2936,30 @@ msgstr "បើកចំណងជើងរង"
msgid "Enable this source only"
msgstr "បើកដំណើរការប្រភពនេះតែប៉ុណ្ណោះ"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr ""
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "បានបើក"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "ចុងបញ្ចប់នៃមតិព័ត៌មាន"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "ត្រូវប្រាកដថាអ្នកបានជ្រើសរើសភាសាសម្រាប់ឯកសារចំណងជើងរងនីមួយៗ"
@@ -2696,14 +2972,15 @@ msgstr "បញ្ចូលពាក្យសម្ងាត់"
msgid "Enter a word or tag"
msgstr "បញ្ចូលពាក្យ ឬស្លាក"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
msgid "Enter Code"
msgstr "បញ្ចូលលេខកូដ"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "បញ្ចូលលេខកូដបញ្ជាក់"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
msgstr "បញ្ចូលអេក្រង់ពេញ"
@@ -2712,7 +2989,7 @@ msgstr "បញ្ចូលអេក្រង់ពេញ"
msgid "Enter the code you received to change your password."
msgstr "បញ្ចូលលេខកូដដែលអ្នកបានទទួលដើម្បីប្តូរពាក្យសម្ងាត់របស់អ្នក"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "បញ្ចូល Domain ដែលអ្នកចង់ប្រើ"
@@ -2720,20 +2997,20 @@ msgstr "បញ្ចូល Domain ដែលអ្នកចង់ប្រើ"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "បញ្ចូលអ៊ីមែលដែលអ្នកធ្លាប់បង្កើតគណនីរបស់អ្នក។ យើងនឹងផ្ញើ \"កំណត់លេខកូដឡើងវិញ\" ដល់អ្នក ដូច្នេះអ្នកអាចកំណត់ពាក្យសម្ងាត់ថ្មី"
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "បញ្ចូលថ្ងៃខែឆ្នាំកំណើតរបស់អ្នក"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "បញ្ចូលអាសយដ្ឋានអ៊ីមែលរបស់អ្នក"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "បញ្ចូលអ៊ីមែលថ្មីរបស់អ្នកខាងលើ"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "បញ្ចូលអាសយដ្ឋានអ៊ីមែលថ្មីរបស់អ្នកខាងក្រោម"
@@ -2749,7 +3026,11 @@ msgstr "បញ្ចូលឈ្មោះអ្នកប្រើប្រាស
msgid "Enters full screen"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "កំហុស"
@@ -2758,15 +3039,18 @@ msgstr "កំហុស"
msgid "Error occurred while saving file"
msgstr "កំហុសបានកើតឡើងខណៈពេលរក្សាទុកឯកសារ"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "កំហុសក្នុងការទទួលការឆ្លើយតប captcha"
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "កំហុស"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "ទាំងអស់គ្នា"
@@ -2818,30 +3102,22 @@ msgstr "ចាកចេញពីដំណើរការកាត់រូបភ
msgid "Exits image view"
msgstr "ចាកចេញពីទិដ្ឋភាពរូបភាព"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "ចាកចេញពីការបញ្ចូលសំណួរស្វែងរក"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "ពង្រីកអត្ថបទជំនួស"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "ពង្រីកបញ្ជីអ្នកប្រើប្រាស់"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "ពង្រីក ឬបង្រួមការបង្ហោះពេញដែលអ្នកកំពុងឆ្លើយតប"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr ""
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "អ្នករំពឹងថានឹងដោះស្រាយកំណត់ត្រាមួយ។"
@@ -2864,6 +3140,10 @@ msgstr "ផុតកំណត់ {0}"
msgid "Expires in {0}"
msgstr ""
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "ប្រព័ន្ធផ្សព្វផ្សាយច្បាស
msgid "Explicit sexual images."
msgstr "រូបភាពផ្លូវភេទច្បាស់លាស់"
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "នាំចេញទិន្នន័យរបស់ខ្ញុំ"
@@ -2882,8 +3169,8 @@ msgstr "នាំចេញទិន្នន័យរបស់ខ្ញុំ"
msgid "Export My Data"
msgstr "នាំចេញទិន្នន័យរបស់ខ្ញុំ"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "ប្រព័ន្ធផ្សព្វផ្សាយខាងក្រៅ"
@@ -2897,17 +3184,22 @@ msgstr "ប្រព័ន្ធផ្សព្វផ្សាយខាងក្
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "ប្រព័ន្ធផ្សព្វផ្សាយខាងក្រៅអាចអនុញ្ញាតឱ្យគេហទំព័រប្រមូលព័ត៌មានអំពីអ្នក និងឧបករណ៍របស់អ្នក។ គ្មានព័ត៌មានត្រូវបានផ្ញើ ឬស្នើរហូតដល់អ្នកចុចប៊ូតុង \"play\""
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "ចំណូលចិត្តប្រព័ន្ធផ្សព្វផ្សាយខាងក្រៅ"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "បរាជ័យក្នុងការផ្លាស់ប្តូរចំណុចទាញ។ សូមព្យាយាមម្តងទៀត"
@@ -2915,7 +3207,7 @@ msgstr "បរាជ័យក្នុងការផ្លាស់ប្តូ
msgid "Failed to create app password. Please try again."
msgstr "បរាជ័យក្នុងការបង្កើតពាក្យសម្ងាត់កម្មវិធី។ សូមព្យាយាមម្តងទៀត"
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr ""
@@ -2924,35 +3216,37 @@ msgstr ""
msgid "Failed to create starter pack"
msgstr "បរាជ័យក្នុងការបង្កើតកញ្ចប់ចាប់ផ្តើម"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "បរាជ័យក្នុងការបង្កើតបញ្ជី។ ពិនិត្យការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត"
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "បរាជ័យក្នុងការលុបសារ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "បរាជ័យក្នុងការលុបការបង្ហោះ សូមព្យាយាមម្តងទៀត"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "បរាជ័យក្នុងការលុបកញ្ចប់ចាប់ផ្តើម"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "បានបរាជ័យក្នុងការផ្ទុកចំណូលចិត្តមតិព័ត៌មាន"
@@ -2964,17 +3258,19 @@ msgstr "បានបរាជ័យក្នុងការផ្ទុក GIFs"
msgid "Failed to load past messages"
msgstr "បានបរាជ័យក្នុងការផ្ទុកសារពីមុន"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "បានបរាជ័យក្នុងការផ្ទុកព័ត៌មានដែលបានណែនាំ"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "បានបរាជ័យក្នុងការផ្ទុកដែលបានណែនាំដូចខាងក្រោម"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr ""
@@ -2982,7 +3278,16 @@ msgstr ""
msgid "Failed to pin post"
msgstr "បរាជ័យក្នុងការខ្ទាស់ការបង្ហោះ"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr ""
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr ""
@@ -2994,20 +3299,39 @@ msgstr "បរាជ័យក្នុងការរក្សាទុកចំ
msgid "Failed to save settings. Please try again."
msgstr ""
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "បរាជ័យក្នុងកាផ្ញើ"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "បរាជ័យក្នុងការដាក់បណ្តឹងតវ៉ា សូមព្យាយាមម្តងទៀត"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "មិនអាចបិទបើកបិទសំឡេងបានទេ សូមព្យាយាមម្ដងទៀត"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr ""
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "បរាជ័យក្នុងការធ្វើបច្ចុប្បន្នភាពព័ត៌មាន"
@@ -3022,20 +3346,24 @@ msgstr "បរាជ័យក្នុងការធ្វើបច្ចុប
msgid "Failed to upload video"
msgstr "បរាជ័យក្នុងការបង្ហោះវីដេអូ"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "បរាជ័យក្នុងការផ្ទៀងផ្ទាត់ចំណុចទាញ។ សូមព្យាយាមម្តងទៀត"
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "ព័ត៌មាន"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "ព័ត៌មានដោយ {0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr ""
@@ -3043,26 +3371,26 @@ msgstr ""
msgid "Feed toggle"
msgstr ""
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "មតិកែលម្អ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "បានផ្ញើមតិកែលម្អ!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "ព័ត៌មាន"
@@ -3070,13 +3398,13 @@ msgstr "ព័ត៌មាន"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "មតិព័ត៌មានគឺជាក្បួនដោះស្រាយផ្ទាល់ខ្លួនដែលអ្នកប្រើប្រាស់បង្កើតដោយមានជំនាញសរសេរកូដតិចតួច។ <0/> សម្រាប់ព័ត៌មានបន្ថែម"
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "បានធ្វើបច្ចុប្បន្នភាពព័ត៌មាន!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr ""
@@ -3092,11 +3420,11 @@ msgstr "ឯកសារត្រូវបានរក្សាទុកដោយ
msgid "Filter from feeds"
msgstr "ត្រងពីមតិព័ត៌មាន"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr ""
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr ""
@@ -3110,13 +3438,13 @@ msgstr "បញ្ចប់"
msgid "Find accounts to follow"
msgstr "ស្វែងរកគណនីដើម្បីតាមដាន"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr ""
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
@@ -3148,11 +3476,11 @@ msgid "Flexible"
msgstr "អាចបត់បែនបាន"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "តាម"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "តាម"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "តាម {0}"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "តាម {name}"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr ""
msgid "Follow 7 accounts"
msgstr "តាមដាន 7 គណនី"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "តាមដានគណនី"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "តាមដានទាំងអស់គ្នា"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "តាមដានត្រឡប់វិញ"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "តាមដានត្រឡប់វិញ"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "តាមដានគណនីបន្ថែមទៀត ដើម្បីភ្ជាប់ជាមួយចំណាប់អារម្មណ៍របស់អ្នក និងបង្កើតបណ្តាញរបស់អ្នក។"
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "តាមដោយ <0>{0}0>"
@@ -3224,7 +3544,7 @@ msgstr "តាមដោយ <0>{0}0> និង <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "អ្នកតាមដាន @{0} ដែលអ្នកស្គាល់"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "អ្នកតាមដែលអ្នកស្គាល់"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "កំពុងតាម"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "កំពុងតាម {0}"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "កំពុងតាម {name}"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "ធ្វើតាមចំណូលចិត្តមតិព័ត៌មាន"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "ធ្វើតាមចំណូលចិត្តមតិព័ត៌មាន"
@@ -3301,6 +3617,10 @@ msgstr "សម្រាប់ហេតុផលសុវត្ថិភាព
msgid "For the best experience, we recommend using the theme font."
msgstr "សម្រាប់បទពិសោធន៍ដ៏ល្អបំផុត យើងសូមណែនាំឱ្យប្រើពុម្ពអក្សរស្បែក"
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "ជារៀងរហូត"
@@ -3327,7 +3647,7 @@ msgstr "បង្ហោះមាតិកាដែលមិនចង់បាន
msgid "From @{sanitizedAuthor}"
msgstr "ពី @{sanitizedAuthor}"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "ពី <0/>"
@@ -3336,28 +3656,30 @@ msgstr "ពី <0/>"
msgid "Gallery"
msgstr "វិចិត្រសាល"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើម"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "រកជំនួយ"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "ចាប់ផ្តើម"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr ""
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "ការចាប់ផ្តើម"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "ផ្តល់ទម្រង់មុខរបស់អ្នក"
@@ -3366,17 +3688,17 @@ msgstr "ផ្តល់ទម្រង់មុខរបស់អ្នក"
msgid "Glaring violations of law or terms of service"
msgstr "ការបំពានច្បាប់ ឬលក្ខខណ្ឌប្រើប្រាស់ជាក់ស្តែង"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "ត្រឡប់ទៅវិញ"
@@ -3384,10 +3706,10 @@ msgstr "ត្រឡប់ទៅវិញ"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "ត្រឡប់ទៅវិញ"
@@ -3408,7 +3730,27 @@ msgstr "ទៅទំពណ៌ដើម"
msgid "Go Home"
msgstr "ទៅទំពណ៌ដើម"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "ចូលទៅកាន់ការសន្ទនាជាមួយ {0}"
@@ -3427,8 +3769,8 @@ msgstr "ចូលទៅកាន់ប្រវត្តិរូបរបស់
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "ប្រព័ន្ធផ្សព្វផ្សាយក្រាហ្វិក"
@@ -3437,21 +3779,21 @@ msgstr "ប្រព័ន្ធផ្សព្វផ្សាយក្រាហ
msgid "Half way there!"
msgstr "ពាក់កណ្តាលផ្លូវ"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr ""
@@ -3464,7 +3806,7 @@ msgstr ""
msgid "Harassment, trolling, or intolerance"
msgstr "ការបៀតបៀន ការបោកប្រាស់ ឬការមិនអត់ឱន"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr ""
@@ -3472,19 +3814,24 @@ msgstr ""
msgid "Hashtag {tag}"
msgstr ""
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "មានបញ្ហា?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "ជំនួយ"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "ជួយមនុស្សឱ្យដឹងថាអ្នកមិនមែនជារូបយន្តដោយការបង្ហោះរូបភាព ឬបង្កើតរូបតំណាង"
@@ -3497,7 +3844,7 @@ msgstr "នេះគឺជាពាក្យសម្ងាត់កម្មវ
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr ""
@@ -3509,18 +3856,17 @@ msgstr "បញ្ជីដែលលាក់"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "លាក់"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "លាក់"
@@ -3529,38 +3875,40 @@ msgstr "លាក់"
msgid "Hide customization options"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "លាក់ post សម្រាប់ខ្ញុំ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "លាក់ការឆ្លើយតបសម្រាប់អ្នករាល់គ្នា"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "លាក់ការឆ្លើយតបសម្រាប់ខ្ញុំ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "លាក់ការបង្ហោះនេះ?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "លាក់ការឆ្លើយតបនេះ?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr ""
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr ""
@@ -3569,10 +3917,15 @@ msgstr ""
msgid "Hide trending videos?"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "លាក់បញ្ជីអ្នកប្រើប្រាស់"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "ហ៊ឺ ម៉ាស៊ីនមេចំណីបានផ្តល
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "ហ៊ឺ យើងមានបញ្ហាក្នុងការស្វែងរកព័ត៌មាននេះ។ វាប្រហែលជាត្រូវបានលុប"
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "ហឺម វាហាក់ដូចជាយើងមានបញ្ហាក្នុងការផ្ទុកទិន្នន័យនេះ។ សូមមើលខាងក្រោមសម្រាប់ព័ត៌មានលម្អិតបន្ថែម។ ប្រសិនបើបញ្ហានេះនៅតែបន្តកើតមាន សូមទាក់ទងមកយើងខ្ញុំ"
@@ -3610,15 +3963,15 @@ msgstr "ហ៊ឺ យើងមិនអាចផ្ទុកសេវាកម
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "ចាំ! យើងកំពុងផ្តល់សិទ្ធិចូលប្រើវីដេអូបន្តិចម្តងៗ ហើយអ្នកនៅតែរង់ចាំក្នុងជួរ។ សូមពិនិត្យមើលឡើងវិញឆាប់ៗនេះ"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "ទំព័រដើម"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr ""
@@ -3627,34 +3980,33 @@ msgstr ""
msgid "Hosting provider"
msgstr ""
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr ""
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "ការឆ្លើយតបភ្លាមៗជាមុន"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "តើយើងគួរបើកតំណនេះដោយរបៀបណា?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "ខ្ញុំមានលេខកូដ"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "ខ្ញុំមានលេខកូដ"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "ខ្ញុំមានលេខកូដបញ្ជាក់"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "ខ្ញុំមាន domain ផ្ទាល់ខ្លួន"
@@ -3667,22 +4019,30 @@ msgstr "ខ្ញុំយល់"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "ប្រសិនបើអត្ថបទ alt វែង បិទ/បើកស្ថានភាពពង្រីកអត្ថបទ"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "ប្រសិនបើអ្នកលុបបញ្ជីនេះ អ្នកនឹងមិនអាចយកវាមកវិញបានទេ"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "ប្រសិនបើអ្នកលុបការបង្ហោះនេះ អ្នកនឹងមិនអាចយកវាមកវិញបានទេ"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr ""
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "ប្រសិនបើអ្នកចង់ផ្លាស់ប្តូរពាក្យសម្ងាត់របស់អ្នក យើងនឹងផ្ញើលេខកូដទៅអ្នកដើម្បីផ្ទៀងផ្ទាត់ថានេះគឺជាគណនីរបស់អ្នក"
@@ -3704,9 +4064,22 @@ msgstr "ខុសច្បាប់ និងបន្ទាន់"
msgid "Image"
msgstr "រូបភាព"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "បានរក្សាទុករូបភាពទៅក្នុងកាមេរ៉ារបស់អ្នក"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr ""
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr ""
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr ""
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "សារមិនសមរម្យ ឬតំណច្បាស់លាស់"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr ""
@@ -3752,15 +4125,11 @@ msgstr "បញ្ចូលពាក្យសម្ងាត់សម្រាប
msgid "Input the code which has been emailed to you"
msgstr "បញ្ចូលលេខកូដដែលបានផ្ញើទៅអ្នក"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "បញ្ចូលឈ្មោះអ្នកប្រើប្រាស់ ឬអាសយដ្ឋានអ៊ីមែលដែលអ្នកបានប្រើនៅពេលចុះឈ្មោះ"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "អន្តរកម្មមានកំណត់"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr ""
@@ -3769,11 +4138,11 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "លេខកូដបញ្ជាក់ 2FA មិនត្រឹមត្រូវ"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "ចំណុចទាញមិនត្រឹមត្រូវ។ សូមសាកល្បងមួយផ្សេងទៀត"
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "កំណត់ត្រាប្រកាសមិនត្រឹមត្រូវ ឬមិនគាំទ្រ"
@@ -3789,11 +4158,11 @@ msgstr "លេខកូដផ្ទៀងផ្ទាត់មិនត្រឹ
msgid "Invite a Friend"
msgstr "អញ្ជើញមិត្តម្នាក់"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "លេខកូដអញ្ជើញ"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "លេខកូដអញ្ជើញមិនត្រូវបានទទួលយកទេ។ ពិនិត្យមើលថាអ្នកបញ្ចូលវាត្រឹមត្រូវ ហើយព្យាយាមម្តងទៀត"
@@ -3805,7 +4174,7 @@ msgstr "លេខកូដអញ្ជើញ៖ មាន {0}"
msgid "Invite codes: 1 available"
msgstr "លេខកូដអញ្ជើញ៖ មាន 1"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "អញ្ជើញមនុស្សឱ្យចូលរួមក្នុងកញ្ចប់ចាប់ផ្តើមនេះ"
@@ -3817,7 +4186,7 @@ msgstr "អញ្ជើញមិត្តភ័ក្តិរបស់អ្ន
msgid "Invites, but personal"
msgstr "ការអញ្ជើញ ប៉ុន្តែផ្ទាល់ខ្លួន"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "វាត្រឹមត្រូវ"
@@ -3825,19 +4194,19 @@ msgstr "វាត្រឹមត្រូវ"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "មានតែអ្នកទេឥឡូវនេះ! បន្ថែមមនុស្សបន្ថែមទៀតទៅក្នុងកញ្ចប់ចាប់ផ្តើមរបស់អ្នកដោយស្វែងរកខាងលើ"
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr ""
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "ការងារ"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "ចូលរួមជាមួយ Bluesky"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "ដាក់ស្លាកដោយអ្នកនិពន្ធ"
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "ស្លាក"
@@ -3868,7 +4237,7 @@ msgstr "ស្លាក"
msgid "Labels added"
msgstr "ស្លាកត្រូវបានបន្ថែម"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "ស្លាកគឺជាចំណារពន្យល់អំពីអ្នកប្រើប្រាស់ និងខ្លឹមសារ។ ពួកវាអាចត្រូវបានប្រើដើម្បីលាក់ ព្រមាន និងចាត់ថ្នាក់បណ្តាញ"
@@ -3884,13 +4253,13 @@ msgstr "ស្លាកនៅលើមាតិការបស់អ្នក"
msgid "Language selection"
msgstr "ការជ្រើសរើសភាសា"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "ការកំណត់ភាសា"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "ភាសា"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "ធំជាង"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "ចុងក្រោយ"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "ស្វែងយល់បន្ថែម"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "ស្វែងយល់បន្ថែម"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "មើលបន្ថែមទៀតអំពី Bluesky នៅលើ Facebook"
@@ -3933,6 +4311,11 @@ msgstr "ស្វែងយល់បន្ថែមអំពីការសម្
msgid "Learn more about this warning"
msgstr "ស្វែងយល់បន្ថែមអំពីការព្រមាននេះ"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr ""
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "ចាកចេញពី Bluesky"
msgid "left to go."
msgstr "ចាកចេញទៅ"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "អនុញ្ញាតឱ្យខ្ញុំជ្រើសរើស"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "ពន្លឺ"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -4013,17 +4397,16 @@ msgstr "ចូលចិត្ត 10 ប្រកាស"
msgid "Like 10 posts to train the Discover feed"
msgstr "ចូលចិត្តការបង្ហោះចំនួន 10 ដើម្បីបណ្តុះបណ្តាល Discover feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "ចូលចិត្តមតិព័ត៌មាននេះ"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr ""
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "ចូលចិត្ត"
@@ -4033,43 +4416,43 @@ msgstr "ចូលចិត្ត"
msgid "Liked By"
msgstr "ចូលចិត្ត"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "ចូលចិត្ត"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "ចូលចិត្តនៅលើប្រកាសនេះ"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr ""
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "បញ្ជី"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "បញ្ជី Avatar"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "បញ្ជីត្រូវបានរារាំង"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4084,44 +4467,44 @@ msgstr ""
msgid "List by you"
msgstr ""
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "បានលុបបញ្ជី"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
msgstr "បញ្ជីត្រូវបានលាក់"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "បញ្ជីដែលលាក់"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "បានបិទបញ្ជី"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "បញ្ជីឈ្មោះ"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "បញ្ជីត្រូវបានបិទ"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "បានបិទបញ្ជី"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "បញ្ជី"
@@ -4129,34 +4512,47 @@ msgstr "បញ្ជី"
msgid "Lists blocking this user:"
msgstr "បញ្ជីដែលរារាំងអ្នកប្រើប្រាស់នេះ៖"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr ""
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr ""
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "ផ្ទុកច្រើនទៀត"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "ផ្ទុកព័ត៌មានដែលបានណែនាំបន្ថែមទៀត"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "ផ្ទុកការស្នើរសុំបន្ថែមទៀតដូចខាងក្រោម"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "ផ្ទុកការជូនដំណឹងថ្មីៗ"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "ផ្ទុកប្រកាសថ្មីៗ"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "កំពុងផ្ទុក..."
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "កំណត់ហេតុ"
@@ -4164,12 +4560,12 @@ msgstr "កំណត់ហេតុ"
msgid "Logged-out visibility"
msgstr "ភាពមើលឃើញពីការចេញពីគណនី"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "និមិត្តសញ្ញាដោយ <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "មើលទៅដូចជាអ្នកបានដ
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "មើលទៅដូចជាអ្នកកំពុងបាត់ដំណឹងបន្ទាប់។ <0>ចុចទីនេះដើម្បីបន្ថែមមួយ។0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "ធ្វើមួយសម្រាប់ខ្ញុំ"
@@ -4201,18 +4601,22 @@ msgstr "ធ្វើមួយសម្រាប់ខ្ញុំ"
msgid "Make sure this is where you intend to go!"
msgstr "ត្រូវប្រាកដថានេះជាកន្លែងដែលអ្នកចង់ទៅ"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "គ្រប់គ្រងព័ត៌មានដែលបានរក្សាទុក"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "គ្រប់គ្រងពាក្យ និងស្លាកដែលបានបិទរបស់អ្នក"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr ""
@@ -4221,16 +4625,23 @@ msgstr ""
msgid "Mark as read"
msgstr "សម្គាល់ថាបានអានហើយ"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr ""
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "ប្រព័ន្ធផ្សព្វផ្សាយ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "ប្រព័ន្ធផ្សព្វផ្សាយដែលអាចរំខាន ឬមិនសមរម្យសម្រាប់ទស្សនិកជនមួយចំនួន"
@@ -4246,23 +4657,27 @@ msgstr "អ្នកប្រើប្រាស់ដែលបានលើកឡ
msgid "Mentions"
msgstr ""
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "ម៉ឺនុយ"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "សារ {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "សារត្រូវបានលុប"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "សារត្រូវបានលុប"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr ""
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr ""
@@ -4276,7 +4691,11 @@ msgstr "វាលបញ្ចូលសារ"
msgid "Message is too long"
msgstr "សារវែងពេក"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr ""
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "សារ"
@@ -4295,10 +4714,10 @@ msgstr "គណនីបន្លំ"
msgid "Misleading Post"
msgstr "post បន្លំ"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "ការសម្របសម្រួល"
@@ -4320,22 +4739,22 @@ msgstr "បញ្ជីសម្របសម្រួលដោយ <0/>"
msgid "Moderation list by you"
msgstr "បញ្ជីសម្របសម្រួលដោយអ្នក"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "បានបង្កើតបញ្ជីសម្របសម្រួល"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "បានធ្វើបច្ចុប្បន្នភាពបញ្ជីសម្របសម្រួល"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "បញ្ជីសម្របសម្រួល"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "បញ្ជីការសម្របសម្រួល"
@@ -4343,11 +4762,11 @@ msgstr "បញ្ជីការសម្របសម្រួល"
msgid "moderation settings"
msgstr "ការកំណត់កម្រិតមធ្យម"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr ""
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "ឧបករណ៍សំរបសំរួល"
@@ -4356,7 +4775,7 @@ msgstr "ឧបករណ៍សំរបសំរួល"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "អ្នកសម្របសម្រួលបានជ្រើសរើសដើម្បីកំណត់ការព្រមានទូទៅលើខ្លឹមសារ"
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "ច្រើនទៀត"
@@ -4365,9 +4784,9 @@ msgstr "ច្រើនទៀត"
msgid "More feeds"
msgstr "ព័ត៌មានច្រើនទៀត"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "ជម្រើសច្រើនទៀត"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "ចូលចិត្តបំផុតមុនគេ"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "ចម្លើយដែលចូលចិត្តបំផុតមុនគេ"
@@ -4400,14 +4819,14 @@ msgstr "បិទ"
msgid "Mute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr ""
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "បិទគណនី"
@@ -4420,11 +4839,11 @@ msgstr "បិទការសន្ទនា"
msgid "Mute in:"
msgstr "បិទសំឡេងក្នុង៖"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "បិទបញ្ជី"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "បិទសំឡេងគណនីទាំងនេះ?"
@@ -4452,26 +4871,26 @@ msgstr "បិទពាក្យនេះនៅក្នុងស្លាកត
msgid "Mute this word until you unmute it"
msgstr "បិទពាក្យនេះរហូតដល់អ្នកបើកសំឡេងវា"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "បិទ thread"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "បិទពាក្យ & ស្លាក"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "គណនីបិទ"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "គណនីបិទ"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "គណនីដែលបានបិទសំឡេងបានលុបការបង្ហោះរបស់ពួកគេចេញពីព័ត៌មានរបស់អ្នក និងពីការជូនដំណឹងរបស់អ្នក។ ការបិទសំឡេងមានលក្ខណៈឯកជនទាំងស្រុង"
@@ -4479,11 +4898,11 @@ msgstr "គណនីដែលបានបិទសំឡេងបានលុប
msgid "Muted by \"{0}\""
msgstr "បានបិទសំឡេងដោយ \"{0}\""
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "ពាក្យ និងស្លាកដែលបានបិទ"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "ការបិទសំឡេងគឺឯកជន។ គណនីដែលបានបិទអាចធ្វើអន្តរកម្មជាមួយអ្នក ប៉ុន្តែអ្នកនឹងមិនឃើញការបង្ហោះរបស់ពួកគេ ឬទទួលបានការជូនដំណឹងពីពួកគេទេ"
@@ -4492,15 +4911,15 @@ msgstr "ការបិទសំឡេងគឺឯកជន។ គណនីដ
msgid "My Birthday"
msgstr "ខួបកំណើតរបស់ខ្ញុំ"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "មតិព័ត៌មានរបស់ខ្ញុំ"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr ""
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "ទាមទារឈ្មោះ"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "ធម្មជាតិ"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "រុករកទៅ {0}"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "រុករកទៅអេក្រង់បន្ទាប់"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "រុករកទៅកម្រងព័ត៌មានរបស់អ្នក"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "ត្រូវការផ្លាស់ប្តូរវា?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "ត្រូវការរាយការណ៍អំពីការរំលោភសិទ្ធិអ្នកនិពន្ធ?"
@@ -4547,30 +4971,43 @@ msgstr "ត្រូវការរាយការណ៍អំពីការរ
msgid "Never lose access to your followers or data."
msgstr "កុំបាត់បង់សិទ្ធិចូលប្រើទៅកាន់អ្នកតាមដាន ឬទិន្នន័យរបស់អ្នក"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "មិនអីទេ បង្កើត handle សម្រាប់ខ្ញុំ"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "ថ្មី"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "ថ្មី"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "ការជជែកថ្មី"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "ថ្មី handle"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr ""
@@ -4578,7 +5015,7 @@ msgstr ""
msgid "New messages"
msgstr "សារថ្មី"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "បញ្ជីសម្របសម្រួលថ្មី"
@@ -4590,12 +5027,12 @@ msgstr "ពាក្យសម្ងាត់ថ្មី"
msgid "New Password"
msgstr "ពាក្យសម្ងាត់ថ្មី"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "post ថ្មី"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "post ថ្មី"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "post ថ្មី"
@@ -4613,19 +5050,20 @@ msgstr "post ថ្មី"
msgid "New user info dialog"
msgstr "ប្រអប់ព័ត៌មានអ្នកប្រើប្រាស់ថ្មី"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "បញ្ជីអ្នកប្រើប្រាស់ថ្មី"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "ការឆ្លើយតបថ្មីបំផុតជាមុនសិន"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "ព័ត៌មាន"
@@ -4655,11 +5093,15 @@ msgstr "រូបភាពបន្ទាប់"
msgid "No app passwords yet"
msgstr "មិនទាន់មានពាក្យសម្ងាត់កម្មវិធីនៅឡើយទេ"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "គ្មានបន្ទះ DNS"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "រកមិនឃើញ GIF ដែលមានលក្ខណៈពិសេសទេ។ ប្រហែលជាមានបញ្ហាជាមួយ Tenor"
@@ -4668,21 +5110,25 @@ msgstr "រកមិនឃើញ GIF ដែលមានលក្ខណៈពិ
msgid "No feeds found. Try searching for something else."
msgstr "រកមិនឃើញមតិព័ត៌មានទេ។ ព្យាយាមស្វែងរកអ្វីផ្សេងទៀត"
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr ""
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "មិនទាន់មានអ្នកចូលចិត្តទេ"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "លែងតាម {0}"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "មិនមានសារនៅឡើយទេ"
@@ -4711,31 +5157,38 @@ msgstr "មិនទាន់មានសម្រង់ទេ"
msgid "No reposts yet"
msgstr "មិនទាន់មានសារឡើងវិញនៅឡើយទេ"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "គ្មានលទ្ធផល"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "គ្មានលទ្ធផល"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr ""
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "រកមិនឃើញលទ្ធផលទេ"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "រកមិនឃើញលទ្ធផលសម្រាប់ \"{query}\""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "រកមិនឃើញលទ្ធផលសម្រាប់ {query}"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "រកមិនឃើញលទ្ធផលស្វែងរកសម្រាប់ \"{search}\" ទេ"
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "គ្មាននរណាម្នាក់"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "គ្មាននរណាម្នាក់ចូលចិត្តវានៅឡើយទេ។ ប្រហែលជាអ្នកគួរតែជាអ្នកដំបូង"
@@ -4775,19 +5227,15 @@ msgstr ""
msgid "Not followed by anyone you're following"
msgstr ""
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "រកមិនឃើញ"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "ពេលនេះទេ"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "ចំណាំអំពីការចែករំលែក"
@@ -4795,7 +5243,7 @@ msgstr "ចំណាំអំពីការចែករំលែក"
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "ចំណាំ៖ Bluesky គឺជាបណ្តាញបើកចំហ និងសាធារណៈ។ ការកំណត់នេះកំណត់តែការមើលឃើញខ្លឹមសាររបស់អ្នកនៅលើកម្មវិធី និងគេហទំព័រ Bluesky ហើយកម្មវិធីផ្សេងទៀតប្រហែលជាមិនគោរពការកំណត់នេះទេ។ ខ្លឹមសាររបស់អ្នកអាចនៅតែត្រូវបានបង្ហាញដល់អ្នកប្រើប្រាស់ដែលបានចេញពីគណនីដោយកម្មវិធី និងគេហទំព័រផ្សេងទៀត"
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "គ្មានអ្វីនៅទីនេះទេ"
@@ -4803,7 +5251,7 @@ msgstr "គ្មានអ្វីនៅទីនេះទេ"
msgid "Notification filters"
msgstr "តម្រងការជូនដំណឹង"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "ការកំណត់ការជូនដំណឹង"
@@ -4820,11 +5268,11 @@ msgstr "សំឡេងជូនដំណឹង"
msgid "Notification Sounds"
msgstr "សំឡេងជូនដំណឹង"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "ការជូនដំណឹង"
@@ -4832,12 +5280,12 @@ msgstr "ការជូនដំណឹង"
msgid "now"
msgstr "ឥឡូវនេះ"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "ឥឡូវនេះ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "អាក្រាតកាយ"
@@ -4859,21 +5307,23 @@ msgstr ""
msgid "Oh no! Something went wrong."
msgstr "អូទេ! មានអ្វីមួយខុសប្រក្រតី"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr ""
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "ចម្លើយចាស់បំផុតជាមុនសិន"
@@ -4881,19 +5331,19 @@ msgstr "ចម្លើយចាស់បំផុតជាមុនសិន"
msgid "on<0><1/><2><3/>2>0>"
msgstr ""
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "កំណត់ការចូលដំណើរការឡើងវិញ"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "GIFs មួយ ឬច្រើនបាត់អត្ថបទជំនួស"
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "រូបភាពមួយ ឬច្រើនបាត់អត្ថបទជំនួស"
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "វីដេអូមួយ ឬច្រើនបាត់អត្ថបទជំនួស"
@@ -4905,11 +5355,11 @@ msgstr "មានតែឯកសារ .jpg និង .png ប៉ុណ្ណោ
msgid "Only {0} can reply."
msgstr "មានតែ {0} ប៉ុណ្ណោះដែលអាចឆ្លើយតបបាន"
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "មានតែអក្សរ លេខ និងសហសញ្ញា"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "មានតែឯកសាររូបភាពប៉ុណ្ណោះដែលត្រូវបានគាំទ្រ"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "ឯកសារ WebVTT (.vtt) ងាយស្រួលគាំទ្រ"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr ""
@@ -4935,67 +5385,80 @@ msgstr ""
msgid "Open"
msgstr "បើក"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "បើកម៉ឺនុយផ្លូវកាត់ទម្រង់ {name}"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "បើកអ្នកបង្កើតរូបតំណាង"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "បើកជម្រើសការសន្ទនា"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "បើកកម្មវិធីជ្រើសរើសរូបអារម្មណ៍"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "បើកម៉ឺនុយជម្រើសមតិព័ត៌មាន"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr ""
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "បើកតំណទៅ {niceUrl}"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "បើកជម្រើសសារ"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "បើកទំព័របំបាត់កំហុសការសម្របសម្រួល"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "បើកការកំណត់ពាក្យ និងស្លាកដែលបានបិទ"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "បើកម៉ឺនុយជម្រើសប្រកាស"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "បើកម៉ឺនុយកញ្ចប់ចាប់ផ្តើម"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr ""
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr ""
@@ -5015,19 +5478,19 @@ msgstr "បើកប្រអប់មួយដើម្បីជ្រើសរ
msgid "Opens additional details for a debug entry"
msgstr "បើកព័ត៌មានលម្អិតបន្ថែមសម្រាប់ធាតុបំបាត់កំហុស"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "បើកកាមេរ៉ានៅលើឧបករណ៍"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr ""
@@ -5039,7 +5502,7 @@ msgstr "បើកកម្មវិធីតែង"
msgid "Opens device photo gallery"
msgstr "បើកវិចិត្រសាលរូបភាពឧបករណ៍"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr ""
@@ -5057,7 +5520,7 @@ msgstr ""
msgid "Opens GIF select dialog"
msgstr "បើកប្រអប់ជ្រើសរើស GIF"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr ""
@@ -5065,6 +5528,10 @@ msgstr ""
msgid "Opens list of invite codes"
msgstr "បើកបញ្ជីលេខកូដអញ្ជើញ"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "បើកទម្រង់កំណត់ពាក្យសម្ងាត់ឡើងវិញ"
@@ -5073,12 +5540,12 @@ msgstr "បើកទម្រង់កំណត់ពាក្យសម្ងា
msgid "Opens the linked website"
msgstr "បើកគេហទំព័រដែលបានភ្ជាប់"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "បើកកម្រងព័ត៌មាននេះ"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "បើកកម្មវិធីជ្រើសរើសវីដេអូ"
@@ -5121,11 +5588,11 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "ផ្សេងទៀត។"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "គណនីផ្សេងទៀត"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "រកមិនឃើញទំព័រ"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "ផ្អាក"
msgid "Pause video"
msgstr "ផ្អាក video"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "មនុស្ស"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "មនុស្សតាមដោយ @{0}"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "មនុស្សតាម @{0}"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "ការអនុញ្ញាតឱ្យចូលប្រើកាមេរ៉ាវិលគឺចាំបាច់"
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "ការអនុញ្ញាតឱ្យចូលប្រើកាមេរ៉ាវិលត្រូវបានបដិសេធ។ សូមបើកវានៅក្នុងការកំណត់ប្រព័ន្ធរបស់អ្នក"
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr ""
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "សត្វចិញ្ចឹម"
msgid "Photography"
msgstr "ការថតរូប"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "រូបភាពមានន័យសម្រាប់មនុស្សពេញវ័យ"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr ""
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
msgstr ""
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr ""
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr ""
@@ -5263,7 +5722,7 @@ msgstr ""
msgid "Pinned Feeds"
msgstr ""
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr ""
@@ -5302,24 +5761,28 @@ msgstr "លេង GIF"
msgid "Plays the video"
msgstr ""
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr ""
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "សូមជ្រើសរើស handle របស់អ្នក"
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "សូមជ្រើសរើសពាក្យសម្ងាត់របស់អ្នក"
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr ""
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "សូមបំពេញការផ្ទៀងផ្ទាត់ captcha"
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "សូមបញ្ជាក់អ៊ីមែលរបស់អ្នកមុនពេលផ្លាស់ប្តូរវា។ នេះជាតម្រូវការបណ្ដោះអាសន្ន ខណៈដែលឧបករណ៍អាប់ដេតអ៊ីមែលត្រូវបានបន្ថែម ហើយវានឹងត្រូវបានលុបចេញក្នុងពេលឆាប់ៗ"
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr ""
@@ -5335,19 +5798,41 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "សូមបញ្ចូលឈ្មោះតែមួយគត់សម្រាប់ពាក្យសម្ងាត់កម្មវិធីនេះ ឬប្រើពាក្យសម្ងាត់ដែលបានបង្កើតដោយចៃដន្យរបស់យើង"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "សូមបញ្ចូលពាក្យ ស្លាក ឬឃ្លាដែលត្រឹមត្រូវ ដើម្បីបិទសំឡេង"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr ""
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "សូមបញ្ចូលអ៊ីមែលរបស់អ្នក"
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "សូមបញ្ចូលលេខកូដអញ្ជើញរបស់អ្នក"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr ""
@@ -5381,24 +5866,25 @@ msgstr ""
msgid "Please sign in as @{0}"
msgstr "សូមចូលគណនីជា @{0}"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "សូមផ្ទៀងផ្ទាត់អ៊ីមែលរបស់អ្នក"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "នយោបាយ"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr ""
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "ការបង្ហោះ"
@@ -5408,32 +5894,32 @@ msgctxt "description"
msgid "Post"
msgstr "ការបង្ហោះ"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "Post ទាំងអស់"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "Post ដោយ {0}"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "Post ត្រូវាបានលុប"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "មិនអាចបង្ហោះសារបង្ហោះបានទេ។ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត"
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr ""
@@ -5455,7 +5941,7 @@ msgstr ""
msgid "Post interaction settings"
msgstr "ការកំណត់អន្តរកម្ម post"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr ""
@@ -5483,8 +5969,9 @@ msgctxt "toast"
msgid "Post unpinned"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "ការបង្ហោះ"
@@ -5503,7 +5990,7 @@ msgstr "តំណភ្ជាប់ដែលអាចយល់ច្រឡំ"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "បានរក្សាទុកចំណូលចិត្ត"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -5524,7 +6011,7 @@ msgstr "ចុចដើម្បីមើលអ្នកតាមដានគណ
msgid "Previous image"
msgstr "រូបភាពពីមុន"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "ភាសាចម្បង"
@@ -5537,31 +6024,31 @@ msgstr "ផ្តល់អាទិភាពដល់ការតាមដាន
msgid "Priority notifications"
msgstr "ការជូនដំណឹងជាអាទិភាព"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "ឯកជនភាព"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "ភាពឯកជន និងសុវត្ថិភាព"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "ភាពឯកជន និងសុវត្ថិភាព"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "គោលការណ៍ឯកជនភាព"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "ដំណើរការវីដេអូ..."
@@ -5570,23 +6057,23 @@ msgstr "ដំណើរការវីដេអូ..."
msgid "Processing..."
msgstr "កំពុងដំណើរការ..."
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "ប្រវត្តិរូប"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "ប្រវត្តិរូប"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "បានធ្វើបច្ចុប្បន្នភាពប្រវត្តិរូប"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
@@ -5600,6 +6087,26 @@ msgstr ""
msgid "Public, sharable lists which can be used to drive feeds."
msgstr ""
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr ""
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr ""
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr ""
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr ""
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "កូដ QR ត្រូវបានចម្លងទៅក្ដារតម្បៀតខ្ទាស់របស់អ្នក"
@@ -5612,25 +6119,25 @@ msgstr "កូដ QR ត្រូវបានទាញយកហើយ"
msgid "QR code saved to your camera roll!"
msgstr "លេខកូដ QR ត្រូវបានរក្សាទុកទៅក្នុងក្រឡុកកាមេរ៉ារបស់អ្នក"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "Quote post ត្រូវបានភ្ជាប់ម្តងទៀត"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "Quote post ត្រូវបានផ្ដាច់ដោយជោគជ័យ"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "Quote posts ត្រូវបានបិទ"
@@ -5642,39 +6149,48 @@ msgstr "កំណត់ Quote"
msgid "Quotes"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr ""
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "ចៃដន្យ (ហៅកាត់ថា \"រ៉ូឡែតរបស់ផ្ទាំងរូបភាព\")"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "លើសកម្រិតកំណត់ - អ្នកបានព្យាយាមផ្លាស់ប្តូរចំណុចទាញរបស់អ្នកច្រើនដងពេកក្នុងរយៈពេលខ្លី។ សូមរង់ចាំមួយភ្លែត មុនពេលព្យាយាមម្តងទៀត"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr ""
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr ""
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "បើកដំណើរការគណនីរបស់អ្នកឡើងវិញ"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "អានប្លក់ Bluesky"
@@ -5697,11 +6213,11 @@ msgstr ""
msgid "Reason:"
msgstr "ហេតុផល៖"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "ការស្វែងរកថ្មីៗ"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr ""
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "ភ្ជាប់ឡើងវិញ"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "ផ្ទុកការសន្ទនាឡើងវិញ"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "ដកចេញ"
msgid "Remove {displayName} from starter pack"
msgstr "លុប {displayName} ចេញពីកញ្ចប់ចាប់ផ្តើម"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr ""
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "លុបគណនី"
@@ -5752,13 +6268,13 @@ msgstr "លុបគណនី"
msgid "Remove attachment"
msgstr "យកឯកសារភ្ជាប់ចេញ"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "លុប Avatar"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "លុប Banner"
@@ -5776,24 +6292,25 @@ msgstr "លុបមតិព័ត៌មាន"
msgid "Remove feed?"
msgstr "លុបមតិព័ត៌មាន?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "លុបចេញពីមតិព័ត៌មានរបស់ខ្ញុំ"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "ដកចេញពីការចូលប្រើរហ័ស?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "យកចេញពីព័ត៌មានដែលបានរក្សាទុក"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr ""
@@ -5802,11 +6319,16 @@ msgstr ""
msgid "Remove image"
msgstr "លុបរូបភាព"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "លុបពាក្យស្ងាត់ចេញពីបញ្ជីរបស់អ្នក។"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "លុបកម្រងព័ត៌មាន"
@@ -5814,12 +6336,12 @@ msgstr "លុបកម្រងព័ត៌មាន"
msgid "Remove quote"
msgstr "លុប quote"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "លុបការបង្ហោះឡើងវិញ"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "លុបឯកសារចំណងជើងរង"
@@ -5827,6 +6349,21 @@ msgstr "លុបឯកសារចំណងជើងរង"
msgid "Remove this feed from your saved feeds"
msgstr "លុបព័ត៌មាននេះចេញពីព័ត៌មានដែលអ្នកបានរក្សាទុក"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr ""
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "លុបចេញដោយ author"
@@ -5835,7 +6372,7 @@ msgstr "លុបចេញដោយ author"
msgid "Removed by you"
msgstr "ដកចេញដោយអ្នក"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "បានដកចេញពីបញ្ជី"
@@ -5845,18 +6382,17 @@ msgid "Removed from my feeds"
msgstr "បានលុបចេញពីព័ត៌មានរបស់ខ្ញុំ"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "បានលុបចេញពីព័ត៌មានដែលបានរក្សាទុក"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "បានលុបចេញពីមតិព័ត៌មានរបស់អ្នក"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
msgstr ""
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
@@ -5868,7 +6404,7 @@ msgstr "លុប quoted post"
msgid "Replace with Discover"
msgstr "ជំនួសដោយ Discover"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "ការឆ្លើយតប"
@@ -5880,12 +6416,13 @@ msgstr "ការឆ្លើយតបត្រូវបានបិទ"
msgid "Replies to this post are disabled."
msgstr "ការឆ្លើយតបទៅនឹងការបង្ហោះនេះត្រូវបានបិទ"
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "ឆ្លើយតប"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -5907,86 +6444,86 @@ msgstr "ឆ្លើយតបការកំណត់"
msgid "Reply settings are chosen by the author of the thread"
msgstr "ការកំណត់ការឆ្លើយតបត្រូវបានជ្រើសរើសដោយ author នៃ thread"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr ""
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "ឆ្លើយតបទៅ <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "ឆ្លើយតបទៅនឹងការបង្ហោះដែលត្រូវបានរារាំង"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "ឆ្លើយតបទៅនឹង post"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "ឆ្លើយតបទៅអ្នក"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "បានធ្វើបច្ចុប្បន្នភាពភាពមើលឃើញនៃការឆ្លើយតប"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "ការឆ្លើយតបត្រូវបានលាក់ដោយជោគជ័យ"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "រាយការណ៍"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "រាយការណ៍គណនី"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "រាយការណ៍ការសន្ទនា"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "ប្រអប់រាយការណ៍"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "រាយការណ៍ព័ត៌មាន"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
-msgstr "រាយការណ៍ពីបញ្ជី"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "រាយការណ៍ពីសារ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "រាយការណ៍ពី post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "រាយការណ៍ពីកញ្ចប់ចាប់ផ្តើម"
@@ -6030,25 +6567,26 @@ msgstr "រាយការណ៍កញ្ចប់ចាប់ផ្តើមន
msgid "Report this user"
msgstr "រាយការណ៍ពីអ្នកប្រើប្រាស់នេះ"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "បង្ហោះឡើងវិញ"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "បង្ហោះឡើងវិញ"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "បង្ហោះឡើងវិញ ឬ quote post"
@@ -6056,27 +6594,27 @@ msgstr "បង្ហោះឡើងវិញ ឬ quote post"
msgid "Reposted By"
msgstr "បង្ហោះឡើងវិញដោយ"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "បង្ហោះឡើងវិញដោយ {0}"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "បង្ហោះឡើងវិញដោយ <0><1/>0>"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "ផ្សាយឡើងវិញដោយអ្នក"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "ការផ្សាយឡើងវិញនៃប្រកាសនេះ"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "ស្នើសុំការផ្លាស់ប្តូរ"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr ""
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6088,11 +6626,11 @@ msgstr "ស្នើសុំលេខកូដ"
msgid "Require alt text before posting"
msgstr "ទាមទារអត្ថបទជំនួសមុនពេលបង្ហោះ"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "ទាមទារសម្រាប់អ្នកផ្តល់សេវានេះ"
@@ -6100,13 +6638,19 @@ msgstr "ទាមទារសម្រាប់អ្នកផ្តល់សេ
msgid "Required in your region"
msgstr "ទាមទារនៅក្នុងតំបន់របស់អ្នក"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "ផ្ញើអ៊ីមែលឡើងវិញ"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "ផ្ញើអ៊ីមែលឡើងវិញ"
@@ -6123,8 +6667,8 @@ msgstr "កំណត់លេខកូដឡើងវិញ"
msgid "Reset Code"
msgstr "កំណត់លេខកូដឡើងវិញ"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "កំណត់ស្ថានភាពចាប់ផ្តើមឡើងវិញ"
@@ -6141,16 +6685,16 @@ msgstr ""
msgid "Retries the last action, which errored out"
msgstr "ព្យាយាមម្តងទៀតនូវសកម្មភាពចុងក្រោយ ដែលវាមានបញ្ហា"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "ព្យាយាមម្តងទៀតនូវសកម្មភា
msgid "Retry"
msgstr "ព្យាយាមម្តងទៀត"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr ""
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "ត្រឡប់ទៅទំព័រមុន"
@@ -6175,11 +6719,11 @@ msgstr "ត្រឡប់ទៅទំព័រមុន"
msgid "Returns to home page"
msgstr "ត្រឡប់ទៅទំព័រដើមវិញ"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "ត្រឡប់ទៅទំព័រមុនវិញ"
@@ -6190,24 +6734,26 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "រក្សាទុក"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "រក្សាទុក"
@@ -6221,12 +6767,12 @@ msgstr "រក្សាទុកថ្ងៃកំណើត"
msgid "Save changes"
msgstr "រក្សាទុកការផ្លាស់ប្តូរ"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "រក្សាទុកការផ្លាស់ប្តូរ"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "រក្សាទុករូបភាព"
@@ -6234,16 +6780,16 @@ msgstr "រក្សាទុករូបភាព"
msgid "Save image crop"
msgstr "រក្សាទុកការច្រឹបរូបភាព"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "រក្សាទុក handle ថ្មី"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "រក្សាទុកកូដ QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "រក្សាទុកក្នុងព័ត៌មានរបស់ខ្ញុំ"
@@ -6251,16 +6797,12 @@ msgstr "រក្សាទុកក្នុងព័ត៌មានរបស់
msgid "Saved Feeds"
msgstr "មតិព័ត៌មានដែលបានរក្សាទុក"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "បានរក្សាទុកនៅក្នុងការវិលរបស់កាមេរ៉ារបស់អ្នក"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "បានរក្សាទុកទៅក្នុងមតិព័ត៌មានរបស់អ្នក"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "រក្សាទុកការផ្លាស់ប្តូរណាមួយចំពោះកម្រងព័ត៌មានរបស់អ្នក"
@@ -6270,8 +6812,8 @@ msgstr "រក្សាទុកការកំណត់ការច្រឹប
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "និយាយថាជំរាបសួរ"
@@ -6280,45 +6822,42 @@ msgstr "និយាយថាជំរាបសួរ"
msgid "Science"
msgstr "វិទ្យាសាស្ត្រ"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "រំកិលទៅកំពូល"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "ស្វែងរក"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr ""
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr ""
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "ស្វែងរក \"{query}\""
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "ស្វែងរក \"{searchText}\""
@@ -6326,29 +6865,33 @@ msgstr "ស្វែងរក \"{searchText}\""
msgid "Search for feeds that you want to suggest to others."
msgstr "ស្វែងរកព័ត៌មានដែលអ្នកចង់ណែនាំដល់អ្នកដទៃ"
-#: src/view/screens/Search/Search.tsx:875
-msgid "Search for posts, users, or feeds"
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "ស្វែងរកអ្នកប្រើប្រាស់"
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr ""
+
+#: src/screens/Search/Shell.tsx:334
+msgid "Search for posts, users, or feeds"
+msgstr ""
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "ស្វែងរក GIFs"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "ស្វែងរកប្រវត្តិរូប"
@@ -6356,16 +6899,20 @@ msgstr "ស្វែងរកប្រវត្តិរូប"
msgid "Search Tenor"
msgstr "ស្វែងរក Tenor"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "ជំហានសុវត្ថិភាពចាំបាច់"
@@ -6385,7 +6932,7 @@ msgstr ""
msgid "See #{tag} posts by user"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "មើលការងារនៅ Bluesky"
@@ -6405,6 +6952,10 @@ msgstr "ជ្រើសរើសពណ៌មួយ"
msgid "Select account"
msgstr "ជ្រើសរើសគណនី"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "ជ្រើសរើសរូបតំណាង"
@@ -6413,10 +6964,22 @@ msgstr "ជ្រើសរើសរូបតំណាង"
msgid "Select an emoji"
msgstr "ជ្រើសរើសរូបអារម្មណ៍"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "ជ្រើសរើសភាសាមាតិកា"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr ""
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "ជ្រើសរើសពីគណនីដែលមានស្រាប់"
@@ -6433,15 +6996,15 @@ msgstr "ជ្រើសរើស GIF \"{0}\""
msgid "Select how long to mute this word for."
msgstr "ជ្រើសរើសរយៈពេលដើម្បីបិទពាក្យនេះ"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "ជ្រើសរើសភាសា..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "ជ្រើសរើសភាសា"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr ""
@@ -6449,6 +7012,10 @@ msgstr ""
msgid "Select moderator"
msgstr "ជ្រើសរើសអ្នកសម្របសម្រួល"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "ជ្រើសរើសរូបអារម្មណ៍ {emojiName}
msgid "Select the moderation service(s) to report to"
msgstr "ជ្រើសរើសសេវាកម្មសម្របសម្រួលដើម្បីរាយការណ៍ទៅ"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "ជ្រើសរើសវីដេអូ"
@@ -6470,23 +7037,24 @@ msgstr "ជ្រើសរើសវីដេអូ"
msgid "Select what content this mute word should apply to."
msgstr "ជ្រើសរើសខ្លឹមសារអ្វីដែលពាក្យដែលបិទនេះគួរអនុវត្តចំពោះ"
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "ជ្រើសរើសភាសាណាមួយដែលអ្នកចង់បញ្ចូលព័ត៌មានដែលបានជាវរបស់អ្នក។ ប្រសិនបើមិនត្រូវបានជ្រើសរើសទេ ភាសាទាំងអស់នឹងត្រូវបានបង្ហាញ"
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "ជ្រើសរើសថ្ងៃខែឆ្នាំកំណើតរបស់អ្នក"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "ជ្រើសរើសចំណាប់អារម្មណ៍របស់អ្នកពីជម្រើសខាងក្រោម"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "ជ្រើសរើសភាសាដែលអ្នកពេញចិត្តសម្រាប់ការបកប្រែនៅក្នុងព័ត៌មានរបស់អ្នក"
@@ -6498,19 +7066,17 @@ msgstr ""
msgid "Send a neat website!"
msgstr "ផ្ញើគេហទំព័រស្អាត"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr "ផ្ញើការបញ្ជាក់"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "ផ្ញើអ៊ីមែលបញ្ជាក់"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "ផ្ញើអ៊ីមែលបញ្ជាក់"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "ផ្ញើអ៊ីមែល"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "ផ្ញើអ៊ីមែល"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "ផ្ញើមតិកែលម្អ"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "ផ្ញើសារ"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr ""
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "ផ្ញើរសារទៅ..."
@@ -6544,17 +7114,20 @@ msgstr "ផ្ញើរបាយការណ៍"
msgid "Send report to {0}"
msgstr "ផ្ញើរបាយការណ៍ទៅ {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "ផ្ញើអ៊ីមែលផ្ទៀងផ្ទាត់"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "ផ្ញើតាមសារផ្ទាល់"
@@ -6570,7 +7143,7 @@ msgstr "អាសយដ្ឋានម៉ាស៊ីនមេ"
msgid "Set app icon to {0}"
msgstr ""
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "កំណត់ថ្ងៃខែឆ្នាំកំណើត"
@@ -6586,10 +7159,10 @@ msgstr "រៀបចំគណនីរបស់អ្នក"
msgid "Sets email for password reset"
msgstr "កំណត់អ៊ីមែលសម្រាប់កំណត់ពាក្យសម្ងាត់ឡើងវិញ"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "ការកំណត់"
@@ -6598,7 +7171,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "សកម្មភាពផ្លូវភេទ ឬអាក្រាតកាយផ្លូវភេទ"
@@ -6606,21 +7179,15 @@ msgstr "សកម្មភាពផ្លូវភេទ ឬអាក្រា
msgid "Sexually Suggestive"
msgstr "ចំណង់ផ្លូវភេទ"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "ចែករំលែក"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "ចែករំលែក"
@@ -6633,15 +7200,19 @@ msgstr "ចែករំលែករឿងដ៏ត្រជាក់មួយ"
msgid "Share a fun fact!"
msgstr "ចែករំលែកការពិតរីករាយ"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "ចែករំលែក"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "ចែករំលែកតំណ"
@@ -6650,32 +7221,46 @@ msgstr "ចែករំលែកតំណ"
msgid "Share Link"
msgstr "ចែករំលែកតំណ"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "ប្រអប់ចែករំលែកតំណ"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "ចែករំលែកកូដ QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "ចែករំលែកកញ្ចប់ចាប់ផ្តើមនេះ"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "ចែករំលែកកញ្ចប់ចាប់ផ្តើមនេះ និងជួយមនុស្សចូលរួមសហគមន៍របស់អ្នកនៅលើ Bluesky"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr ""
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "ចែករំលែកមតិព័ត៌មានដែលអ្នកចូលចិត្ត"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "កម្មវិធីសាកល្បងចំណូលចិត្តដែលបានចែករំលែក"
@@ -6685,7 +7270,7 @@ msgstr "ចែករំលែកគេហទំព័រដែលបានភ្
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "បង្ហាញ"
@@ -6696,8 +7281,8 @@ msgstr "បង្ហាញអត្ថបទជំនួស"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "បង្ហាញ"
@@ -6718,8 +7303,8 @@ msgstr ""
msgid "Show hidden replies"
msgstr "បង្ហាញការឆ្លើយតបដែលលាក់"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "បង្ហាញបែបនេះតិច"
@@ -6727,14 +7312,14 @@ msgstr "បង្ហាញបែបនេះតិច"
msgid "Show list anyway"
msgstr "ទោះយ៉ាងណាក៏ដោយ បង្ហាញបញ្ជី"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "បង្ហាញច្រើនទៀត"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "បង្ហាញច្រើនទៀតដូចនេះ"
@@ -6752,7 +7337,7 @@ msgstr "បង្ហាញប្រកាសសម្រង់"
msgid "Show replies"
msgstr "បង្ហាញការឆ្លើយតប"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr ""
@@ -6764,8 +7349,8 @@ msgstr ""
msgid "Show replies by people you follow before all other replies"
msgstr "បង្ហាញការឆ្លើយតបដោយមនុស្សដែលអ្នកតាមដាន មុនពេលការឆ្លើយតបផ្សេងទៀតទាំងអស់"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "បង្ហាញការឆ្លើយតបសម្រាប់អ្នករាល់គ្នា"
@@ -6787,11 +7372,11 @@ msgstr "បង្ហាញការព្រមាន"
msgid "Show warning and filter from feeds"
msgstr "បង្ហាញការព្រមាន និងត្រងពីមតិព័ត៌មាន"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr ""
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr ""
@@ -6809,8 +7394,8 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr ""
msgid "Sign in"
msgstr "ចូលគណនី"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "ចូលគណនីជា {0}"
@@ -6826,16 +7411,16 @@ msgstr "ចូលគណនីជា {0}"
msgid "Sign in as..."
msgstr "ចូលគណនីជា..."
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr ""
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "ចូល ឬបង្កើតគណនីរបស់អ្នក ដើម្បីចូលរួមការសន្ទនា"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "ចូល ឬចុះឈ្មោះ"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "ចូលទៅគណនីដែលមិនមានក្នុងបញ្ជី"
@@ -6843,15 +7428,15 @@ msgstr "ចូលទៅគណនីដែលមិនមានក្នុងប
msgid "Sign in to Bluesky or create a new account"
msgstr "ចូល Bluesky ឬបង្កើតគណនីថ្មីមួយ"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "ចេញ"
@@ -6859,8 +7444,8 @@ msgstr "ចេញ"
msgid "Sign Out"
msgstr "ចេញ"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "ចេញ?"
@@ -6874,11 +7459,6 @@ msgstr "តម្រូវឱ្យចូល"
msgid "Signed in as @{0}"
msgstr "ចូលជា @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "ចុះឈ្មោះដោយគ្មានកញ្ចប់ចាប់ផ្តើម"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "គណនីស្រដៀងគ្នា"
@@ -6896,12 +7476,21 @@ msgstr "រំលងជំហ៊ាននេះ"
msgid "Smaller"
msgstr "តូចជាង"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "កម្មវិធី Dev"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "មតិព័ត៌មានផ្សេងទៀតដែលអ្នកប្រហែលជាចូលចិត្ត"
@@ -6909,23 +7498,31 @@ msgstr "មតិព័ត៌មានផ្សេងទៀតដែលអ្ន
msgid "Some people can reply"
msgstr "មនុស្សមួយចំនួនអាចឆ្លើយតបបាន"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "មានអ្វីមួយខុសប្រក្រតី"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "មានអ្វីមួយខុសប្រក្រតី សូមព្យាយាមម្តងទៀត"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "មានអ្វីមួយខុសប្រក្រតី សូមព្យាយាមម្តងទៀត"
@@ -6934,16 +7531,16 @@ msgstr "មានអ្វីមួយខុសប្រក្រតី សូ
msgid "Something went wrong!"
msgstr "មានអ្វីមួយខុសប្រក្រតី"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr ""
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr ""
@@ -6978,34 +7575,39 @@ msgstr "សារឥតបានការ; ការលើកឡើង ឬកា
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "កីឡា"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "ចាប់ផ្តើមការជជែកថ្មី"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr ""
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "ចាប់ផ្តើមជជែកជាមួយ {displayName}"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "កញ្ចប់ចាប់ផ្តើម"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "កញ្ចប់ចាប់ផ្តើមដោយ {0}"
@@ -7013,38 +7615,39 @@ msgstr "កញ្ចប់ចាប់ផ្តើមដោយ {0}"
msgid "Starter pack by <0/>"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "កញ្ចប់ចាប់ផ្តើមដោយអ្នក"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "កញ្ចប់ចាប់ផ្តើមមិនត្រឹមត្រូវទេ"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "កញ្ចប់ចាប់ផ្តើម"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "កញ្ចប់ចាប់ផ្តើមអនុញ្ញាតឱ្យអ្នកចែករំលែកព័ត៌មានដែលអ្នកចូលចិត្ត និងមនុស្សយ៉ាងងាយស្រួលជាមួយមិត្តភក្តិរបស់អ្នក"
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "ទំព័រស្ថានភាព"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "ជំហានទី {0} នៃ {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "កន្លែងផ្ទុកត្រូវបានសម្អាត អ្នកត្រូវចាប់ផ្តើមកម្មវិធីឡើងវិញឥឡូវនេះ"
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr ""
@@ -7063,46 +7666,51 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "ជាវ"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "ជាវ @{0} ដើម្បីប្រើស្លាកទាំងនេះ៖"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "ជាវអ្នកដាក់ស្លាក"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "ជាវអ្នកដាក់ស្លាកនេះ"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "ជាវបញ្ជីនេះ"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "ជោគជ័យ!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
-msgstr "គណនីដែលបានណែនាំ"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
+msgstr ""
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "បានណែនាំសម្រាប់អ្នក"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "ណែនាំ"
@@ -7116,16 +7724,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "គាំទ្រ"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "ប្តូរគណនី"
@@ -7134,11 +7742,11 @@ msgstr "ប្តូរគណនី"
msgid "Switch Account"
msgstr "ប្តូរគណនី"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr ""
@@ -7149,9 +7757,9 @@ msgstr ""
msgid "System"
msgstr "ប្រព័ន្ធ"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "កំណត់ហេតុប្រព័ន្ធ"
@@ -7159,6 +7767,12 @@ msgstr "កំណត់ហេតុប្រព័ន្ធ"
msgid "Tags only"
msgstr "ស្លាកតែប៉ុណ្ណោះ"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "ប៉ះដើម្បីច្រានចោល"
@@ -7184,7 +7798,7 @@ msgstr "បច្ចេកវិទ្យា"
msgid "Tell a joke!"
msgstr "ប្រាប់រឿងកំប្លែងមួយ"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "ប្រាប់យើងបន្តិចអំពីខ្លួនអ្នក"
@@ -7192,17 +7806,17 @@ msgstr "ប្រាប់យើងបន្តិចអំពីខ្លួន
msgid "Tell us a little more"
msgstr "ប្រាប់យើងបន្តិចទៀត"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "លក្ខខណ្ឌ"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "លក្ខខណ្ឌនៃសេវាកម្ម"
@@ -7230,7 +7844,11 @@ msgstr ""
msgid "Text input field"
msgstr "វាលបញ្ចូលអត្ថបទ"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "សូមអរគុណ! អ៊ីមែលរបស់អ្នកត្រូវបានផ្ទៀងផ្ទាត់ដោយជោគជ័យ"
@@ -7242,7 +7860,7 @@ msgstr "សូមអរគុណ។ របាយការណ៍របស់អ
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "សូមអរគុណ អ្នកបានផ្ទៀងផ្ទាត់អាសយដ្ឋានអ៊ីមែលរបស់អ្នកដោយជោគជ័យ។ អ្នកអាចបិទប្រអប់នេះ"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "ដែលមានដូចខាងក្រោម៖"
@@ -7250,10 +7868,10 @@ msgstr "ដែលមានដូចខាងក្រោម៖"
msgid "That handle is already taken."
msgstr "ចំណុចទាញនោះត្រូវបានយករួចហើយ"
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "កញ្ចប់ចាប់ផ្តើមនោះមិនត្រ
msgid "That's all, folks!"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "គណនីនឹងអាចធ្វើអន្តរកម្មជាមួយអ្នកបន្ទាប់ពីឈប់ទប់ស្កាត់"
@@ -7282,7 +7900,7 @@ msgstr ""
msgid "The author of this thread has hidden this reply."
msgstr "អ្នកនិពន្ធនៃអត្ថបទនេះបានលាក់ការឆ្លើយតបនេះ"
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "កម្មវិធីបណ្តាញ Bluesky"
@@ -7302,6 +7920,10 @@ msgstr "មតិព័ត៌មាន Discover"
msgid "The Discover feed now knows what you like"
msgstr "ឥឡូវនេះផ្ទាំងព័ត៌មាន Discover ដឹងពីអ្វីដែលអ្នកចូលចិត្ត"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "បទពិសោធន៍គឺប្រសើរជាងនៅក្នុងកម្មវិធី។ ទាញយក Bluesky ឥឡូវនេះ ហើយយើងនឹងយកមកវិញនូវកន្លែងដែលអ្នកបានចាកចេញ"
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "គោលការណ៍ឯកជនភាពត្រូវបានផ្លាស់ទីទៅ <0/>"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "វីដេអូដែលបានជ្រើសរើសមានទំហំធំជាង 50MB"
+msgid "The selected video is larger than 100 MB."
+msgstr "វីដេអូដែលបានជ្រើសរើសមានទំហំធំជាង 100 MB"
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "ម៉ាស៊ីនមេហាក់ដូចជាកំពុងជួបប្រទះបញ្ហា។ សូមព្យាយាមម្តងទៀតក្នុងពេលបន្តិចទៀត"
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "កញ្ចប់ចាប់ផ្តើមដែលអ្នកកំពុងព្យាយាមមើលគឺមិនត្រឹមត្រូវទេ។ អ្នកអាចលុបកញ្ចប់ចាប់ផ្តើមនេះជំនួសវិញ"
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr ""
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "ទម្រង់គាំទ្រត្រូវបានផ្លាស់ប្តូរ។ ប្រសិនបើអ្នកត្រូវការជំនួយ សូម <0/> ឬចូលទៅកាន់ {HELP_DESK_URL} ដើម្បីទាក់ទងមកយើងខ្ញុំ"
@@ -7367,15 +7994,15 @@ msgstr "មិនមានកំណត់ពេលវេលាសម្រាប
msgid "There was an issue connecting to Tenor."
msgstr "មានបញ្ហាក្នុងការភ្ជាប់ទៅ Tenor"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "មានបញ្ហាក្នុងការទាក់ទងម៉ាស៊ីនមេ"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "មានបញ្ហាក្នុងការទាក់ទងម៉ាស៊ីនមេ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត"
@@ -7388,11 +8015,12 @@ msgstr "មានបញ្ហាក្នុងការទាក់ទងម៉
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "មានបញ្ហាក្នុងការទាញយកការជូនដំណឹង។ ចុចទីនេះដើម្បីព្យាយាមម្តងទៀត"
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "មានបញ្ហាក្នុងការទាញយកសារបង្ហោះ។ ចុចទីនេះដើម្បីព្យាយាមម្តងទៀត"
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "មានបញ្ហាក្នុងការទៅយកបញ្ជី។ ចុចទីនេះដើម្បីព្យាយាមម្តងទៀត"
@@ -7400,12 +8028,12 @@ msgstr "មានបញ្ហាក្នុងការទៅយកបញ្ជ
msgid "There was an issue fetching your app passwords"
msgstr "មានបញ្ហាក្នុងការទាញយកពាក្យសម្ងាត់កម្មវិធីរបស់អ្នក"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "មានបញ្ហាក្នុងការទៅយកបញ្ជីរបស់អ្នក។ ចុចទីនេះដើម្បីព្យាយាមម្តងទៀត"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "មានបញ្ហាក្នុងការទាញយកព័ត៌មានសេវាកម្មរបស់អ្នក"
@@ -7418,26 +8046,26 @@ msgstr "មានបញ្ហាក្នុងការដកម
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "មានបញ្ហាក្នុងការផ្ញើរបាយការណ៍របស់អ្នក។ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "មានបញ្ហាក្នុងការធ្វើបច្ចុប្បន្នភាពព័ត៌មានរបស់អ្នក សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr ""
@@ -7445,10 +8073,10 @@ msgstr ""
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "មានបញ្ហា។ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត"
@@ -7469,6 +8097,14 @@ msgstr "ការកំណត់ទាំងនេះអនុវត្តចំ
msgid "This {screenDescription} has been flagged:"
msgstr "{screenDescription} នេះត្រូវបានសម្គាល់៖"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "គណនីនេះបានស្នើសុំឱ្យអ្នកប្រើប្រាស់ចូលដើម្បីមើលកម្រងព័ត៌មានរបស់ពួកគេ"
@@ -7477,6 +8113,10 @@ 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/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "បណ្ដឹងតវ៉ានេះនឹងត្រូវបានផ្ញើទៅ <0>{sourceName}0>"
@@ -7510,14 +8150,22 @@ msgstr "ខ្លឹមសារនេះមិនមានទេ ដោយស
msgid "This content is not viewable without a Bluesky account."
msgstr "ខ្លឹមសារនេះមិនអាចមើលបានដោយគ្មានគណនី Bluesky ទេ"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "មុខងារនេះស្ថិតនៅក្នុងបេតា។ អ្នកអាចអានបន្ថែមអំពីការនាំចេញឃ្លាំងនៅក្នុង <0>ប្លុកនេះ0>"
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr ""
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "មុខងារនេះមិនមានពេលប្រើពាក្យសម្ងាត់កម្មវិធីទេ។ សូមចូលដោយប្រើពាក្យសម្ងាត់ចម្បងរបស់អ្នក"
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "មតិព័ត៌មាននេះទទេ! អ្នកប្រហែលជាត្រូវតាមដានអ្នកប្រើប្រាស់បន្ថែមទៀត ឬកែសម្រួលការកំណត់ភាសារបស់អ្នក"
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "មតិព័ត៌មាននេះគឺទទេ"
@@ -7540,7 +8188,7 @@ msgstr "មតិព័ត៌មាននេះគឺទទេ"
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "មតិព័ត៌មាននេះលែងមានអ៊ីនធឺណិតទៀតហើយ។ យើងកំពុងបង្ហាញ <0>Discover0> ជំនួសវិញ"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "ចំណុចទាញនេះត្រូវបានបម្រុងទុក។ សូមសាកល្បងមួយផ្សេងទៀត"
@@ -7548,9 +8196,10 @@ msgstr "ចំណុចទាញនេះត្រូវបានបម្រុ
msgid "This information is not shared with other users."
msgstr "ព័ត៌មាននេះមិនត្រូវបានចែករំលែកជាមួយអ្នកប្រើប្រាស់ផ្សេងទៀតទេ"
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "នេះមានសារៈសំខាន់ក្នុងករណីដែលអ្នកត្រូវការផ្លាស់ប្តូរអ៊ីមែលរបស់អ្នក ឬកំណត់ពាក្យសម្ងាត់របស់អ្នកឡើងវិញ"
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr ""
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "ស្លាកនេះត្រូវបានអនុវត្តដ
msgid "This label was applied by you."
msgstr "ស្លាកនេះត្រូវបានអនុវត្តដោយអ្នក"
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "អ្នកដាក់ស្លាកនេះមិនទាន់បានប្រកាសថាស្លាកណាដែលវាបោះពុម្ពទេ ហើយប្រហែលជាមិនសកម្មទេ"
@@ -7576,7 +8225,7 @@ msgstr ""
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr ""
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr ""
@@ -7584,7 +8233,7 @@ msgstr ""
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "សេវាកម្មសម្របសម្រួលនេះមិនមានទេ។ សូមមើលខាងក្រោមសម្រាប់ព័ត៌មានលម្អិតបន្ថែម។ ប្រសិនបើបញ្ហានេះនៅតែបន្តកើតមាន សូមទាក់ទងមកយើងខ្ញុំ"
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "ប្រកាសនេះអះអាងថាត្រូវបានបង្កើតឡើងនៅលើ <0>{0}0> ប៉ុន្តែត្រូវបានមើលឃើញជាលើកដំបូងដោយ Bluesky នៅលើ <1>{1}1>"
@@ -7592,28 +8241,29 @@ msgstr "ប្រកាសនេះអះអាងថាត្រូវបាន
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "ប្រកាសនេះត្រូវបានលុប"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "ប្រកាសនេះនឹងត្រូវបានលាក់ពីមតិព័ត៌មាន និងខ្សែស្រលាយ។ នេះមិនអាចត្រឡប់វិញបានទេ"
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "អ្នកនិពន្ធនៃប្រកាសនេះបានបិទការបង្ហោះសម្រង់"
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
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 "ការឆ្លើយតបនេះនឹងត្រូវបានតម្រៀបជាផ្នែកដែលលាក់នៅផ្នែកខាងក្រោមនៃខ្សែស្រឡាយរបស់អ្នក ហើយនឹងបិទការជូនដំណឹងសម្រាប់ការឆ្លើយតបជាបន្តបន្ទាប់ - ទាំងសម្រាប់ខ្លួនអ្នកនិងអ្នកដទៃ"
@@ -7621,10 +8271,14 @@ msgstr "ការឆ្លើយតបនេះនឹងត្រូ
msgid "This service has not provided terms of service or a privacy policy."
msgstr "សេវាកម្មនេះមិនបានផ្តល់លក្ខខណ្ឌនៃសេវាកម្ម ឬគោលការណ៍ឯកជនភាពទេ"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "វាគួរបង្កើតកំណត់ត្រាដែននៅ៖"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr ""
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "អ្នកប្រើប្រាស់នេះមិនមានអ្នកតាមទេ"
@@ -7662,21 +8316,21 @@ msgstr "អ្នកប្រើប្រាស់នេះមិនតាមដ
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "វានឹងលុប \"{0}\" ចេញពីពាក្យដែលអ្នកបានបិទ។ អ្នកតែងតែអាចបន្ថែមវាត្រឡប់មកវិញនៅពេលក្រោយ"
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "វានឹងដក @{0} ចេញពីបញ្ជីចូលប្រើរហ័ស"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "វានឹងលុបការបង្ហោះរបស់អ្នកចេញពីប្រកាសសម្រង់នេះសម្រាប់អ្នកប្រើប្រាស់ទាំងអស់ ហើយជំនួសវាដោយកន្លែងដាក់"
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "ចំណូលចិត្តខ្សែស្រឡាយ"
@@ -7684,8 +8338,8 @@ msgstr "ចំណូលចិត្តខ្សែស្រឡាយ"
msgid "Thread Preferences"
msgstr "ចំណូលចិត្តខ្សែស្រឡាយ"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr ""
@@ -7693,7 +8347,7 @@ msgstr ""
msgid "Threaded mode"
msgstr ""
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr ""
@@ -7705,14 +8359,15 @@ msgstr ""
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "ដើម្បីបិទវិធីសាស្ត្រ 2FA អ៊ីមែល សូមផ្ទៀងផ្ទាត់ការចូលប្រើអាសយដ្ឋានអ៊ីមែលរបស់អ្នក"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr ""
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "ដើម្បីរាយការណ៍ការសន្ទនា សូមរាយការណ៍សារមួយរបស់វាតាមរយៈអេក្រង់សន្ទនា។ វាអនុញ្ញាតឱ្យអ្នកសម្របសម្រួលរបស់យើងយល់ពីបរិបទនៃបញ្ហារបស់អ្នក"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "ដើម្បីបង្ហោះវីដេអូទៅ Bluesky អ្នកត្រូវតែផ្ទៀងផ្ទាត់អ៊ីមែលរបស់អ្នកជាមុនសិន"
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "តើអ្នកចង់ផ្ញើរបាយការណ៍នេះទៅអ្នកណា?"
@@ -7725,7 +8380,7 @@ msgstr "ថ្ងៃនេះ"
msgid "Toggle dropdown"
msgstr "បិទ/បើកការទម្លាក់ចុះ"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "បិទ/បើក ដើម្បីបើក ឬបិទមាតិកាសម្រាប់មនុស្សពេញវ័យ"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr ""
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "កំពូល"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "បកប្រែ"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr ""
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr ""
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr ""
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr ""
msgid "Two-factor authentication (2FA)"
msgstr "ការផ្ទៀងផ្ទាត់កត្តាពីរ (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr ""
@@ -7783,18 +8440,11 @@ msgstr ""
msgid "Type your message here"
msgstr "វាយបញ្ចូលសាររបស់អ្នកនៅទីនេះ"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "ប្រភេទ៖"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "បិទបញ្ជី"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "បិទបញ្ជី"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "មិនអាចភ្ជាប់បានទេ។ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត"
@@ -7809,7 +8459,7 @@ msgstr "មិនអាចភ្ជាប់បានទេ។ សូមពិ
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "មិនអាចទាក់ទងសេវាកម្មរបស់អ្នកបានទេ។ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក"
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "មិនអាចលុបបានទេ"
@@ -7817,36 +8467,41 @@ msgstr "មិនអាចលុបបានទេ"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "ឈប់ទប់ស្កាត់"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "ឈប់ទប់ស្កាត់"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "បិទគណនី"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "បិទគណនី?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "បោះបង់ការបង្ហោះឡើងវិញ"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "ឈប់តាម"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "ឈប់តាម {0}"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "ឈប់តាមដានគណនី"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr ""
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "បើកសំឡេង"
@@ -7895,10 +8555,10 @@ msgstr "បើកសំឡេង"
msgid "Unmute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "បើកគណនី"
@@ -7906,8 +8566,12 @@ msgstr "បើកគណនី"
msgid "Unmute conversation"
msgstr "បើកការសន្ទនា"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr ""
@@ -7915,38 +8579,47 @@ msgstr ""
msgid "Unmute video"
msgstr ""
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr ""
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr ""
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "ឈប់ជាវ"
@@ -7955,7 +8628,7 @@ msgstr "ឈប់ជាវ"
msgid "Unsubscribe from list"
msgstr "ឈប់ជាវពីបញ្ជី"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "ឈប់ជាវពីអ្នកដាក់ស្លាកនេះ"
@@ -7963,11 +8636,11 @@ msgstr "ឈប់ជាវពីអ្នកដាក់ស្លាកនេះ
msgid "Unsubscribed from list"
msgstr "ឈប់ជាវពីបញ្ជី"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "ប្រភេទវីដេអូដែលមិនគាំទ្រ"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "ប្រភេទវីដេអូដែលមិនគាំទ្រ៖ {0}"
@@ -7987,49 +8660,60 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "ធ្វើបច្ចុប្បន្នភាព <0>{displayName}0> នៅក្នុងបញ្ជី"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "ធ្វើបច្ចុប្បន្នភាពទៅ {domain}"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
-msgctxt "toast"
-msgid "Updating quote attachment failed"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
+msgctxt "toast"
+msgid "Updating quote attachment failed"
+msgstr "ការធ្វើបច្ចុប្បន្នភាពឯកសារភ្ជាប់សម្រង់បានបរាជ័យ"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "ការធ្វើបច្ចុប្បន្នភាពលទ្ធភាពមើលឃើញការឆ្លើយតបបានបរាជ័យ"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "កំពុងធ្វើបច្ចុប្បន្នភាព..."
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "បង្ហោះរូបថតជំនួសវិញ"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "បង្ហោះឯកសារអត្ថបទទៅ៖"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "បង្ហោះពីកាមេរ៉ា"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "បង្ហោះពីឯកសារ"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "បង្ហោះពីបណ្ណាល័យ"
@@ -8042,7 +8726,7 @@ msgstr "កំពុងបង្ហោះរូបភាព..."
msgid "Uploading link thumbnail..."
msgstr "កំពុងបង្ហោះរូបភាពតូចនៃតំណ..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "កំពុងបង្ហោះវីដេអូ..."
@@ -8050,22 +8734,22 @@ msgstr "កំពុងបង្ហោះវីដេអូ..."
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "ប្រើពាក្យសម្ងាត់កម្មវិធីដើម្បីចូលម៉ាស៊ីនភ្ញៀវ Bluesky ផ្សេងទៀតដោយមិនអនុញ្ញាតឱ្យចូលប្រើប្រាស់គណនីឬពាក្យសម្ងាត់របស់អ្នកពេញលេញ"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "ប្រើអ្នកផ្តល់សេវាលំនាំដើម"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "ប្រើកម្មវិធីរុករកតាមអ៊ីនធឺណិត"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "ប្រើកម្មវិធីរុករកតាមអ៊ីនធឺណិតក្នុងកម្មវិធីដើម្បីបើកតំណ"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "ប្រើកម្មវិធីរុករកលំនាំដើមរបស់ខ្ញុំ"
@@ -8119,15 +8803,15 @@ msgstr "បញ្ជីអ្នកប្រើប្រាស់ដោយ {0}"
msgid "User list by you"
msgstr "បញ្ជីអ្នកប្រើប្រាស់ដោយអ្នក"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "បានបង្កើតបញ្ជីអ្នកប្រើ"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "ធ្វើបច្ចុប្បន្នភាពបញ្ជីអ្នកប្រើប្រាស់"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8150,58 +8834,88 @@ msgstr "អ្នកប្រើប្រាស់ដែលខ្ញុំធ្
msgid "Users in \"{0}\""
msgstr "អ្នកប្រើប្រាស់នៅក្នុង \"{0}\""
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "អ្នកប្រើប្រាស់ដែលចូលចិត្តមាតិកា ឬទម្រង់នេះ"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "តម្លៃ៖"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "ទាមទារអ៊ីមែលដែលបានផ្ទៀងផ្ទាត់"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr ""
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr ""
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "ផ្ទៀងផ្ទាត់ DNS Record"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "ផ្ទៀងផ្ទាត់ប្រអប់អ៊ីមែល"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "ផ្ទៀងផ្ទាត់អ៊ីមែលថ្មី"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "ផ្ទៀងផ្ទាត់ឥឡូវនេះ"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "ផ្ទៀងផ្ទាត់ឯកសារអត្ថបទ"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "ផ្ទៀងផ្ទាត់អ៊ីមែលរបស់អ្នក"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "ផ្ទៀងផ្ទាត់អ៊ីមែលរបស់អ្នក"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "កំណែ {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "វីដេអូ"
msgid "Video failed to process"
msgstr "វីដេអូបានបរាជ័យក្នុងដំណើរការ"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr ""
@@ -8224,14 +8938,15 @@ msgstr ""
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "វីដេអូហ្គេម"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr ""
@@ -8239,11 +8954,11 @@ msgstr ""
msgid "Video not found."
msgstr "រកមិនឃើញវីដេអូ"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "ការកំណត់វីដេអូ"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "បង្ហោះវីដេអូ"
@@ -8251,31 +8966,32 @@ msgstr "បង្ហោះវីដេអូ"
msgid "Video: {0}"
msgstr "វីដេអូ៖ {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "មើលរូបតំណាងរបស់ {0}"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "មើលប្រវត្តិរូបរបស់ {0}"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "មើលប្រវត្តិរូបរបស់ {displayName}"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "មើលប្រវត្តិរូបរបស់អ្នកប្រើដែលត្រូវបានរារាំង"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "មើលធាតុបំបាត់កំហុស"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "មើលព័ត៌មានលម្អិត"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "មើលព័ត៌មានលម្អិតសម្រាប់ការរាយការណ៍អំពីការរំលោភលើសិទ្ធិអ្នកនិពន្ធ"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "មើល thread ពេញ"
@@ -8308,18 +9024,17 @@ msgstr "មើលព័ត៌មានអំពីស្លាកទាំងន
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "មើលប្រវត្តិរូប"
@@ -8331,7 +9046,11 @@ msgstr "មើលរូបតំណាង"
msgid "View the labeling service provided by @{0}"
msgstr "មើលសេវាកម្មដាក់ស្លាកដែលផ្តល់ដោយ @{0}"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "មើលអ្នកប្រើប្រាស់ដែលចូលចិត្តព័ត៌មាននេះ"
@@ -8339,11 +9058,11 @@ msgstr "មើលអ្នកប្រើប្រាស់ដែលចូលច
msgid "View video"
msgstr ""
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "មើលគណនីដែលអ្នកបានទប់ស្កាត់"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr ""
@@ -8352,14 +9071,18 @@ msgstr ""
msgid "View your feeds and explore more"
msgstr "មើលព័ត៌មានរបស់អ្នក និងស្វែងយល់បន្ថែម"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "មើលបញ្ជីសម្របសម្រួលរបស់អ្នក"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "មើលគណនីដែលបានបិទរបស់អ្នក"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "មាតិកាព្រមាន"
msgid "Warn content and filter from feeds"
msgstr "ព្រមានខ្លឹមសារ និងត្រងពីមតិព័ត៌មាន"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr ""
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "យើងមិនអាចស្វែងរកលទ្ធផលណាមួយសម្រាប់ hashtag នោះទេ"
@@ -8400,7 +9128,7 @@ msgstr "យើងមិនអាចស្វែងរកលទ្ធផលណា
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "យើងមិនអាចផ្ទុកការសន្ទនានេះបានទេ"
@@ -8420,6 +9148,14 @@ msgstr "យើងសង្ឃឹមថាអ្នកមានពេលវេល
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "យើងបានអស់ការប្រកាសពីការតាមដានរបស់អ្នក។ នេះជាព័ត៌មានចុងក្រោយពី <0/>"
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "យើងមិនអាចកំណត់ថាតើអ្នកត្រូវបានអនុញ្ញាតឱ្យបង្ហោះវីដេអូឬអត់។ សូមព្យាយាមម្តងទៀត"
@@ -8428,7 +9164,7 @@ 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:428
msgid "We were unable to load your configured labelers at this time."
msgstr "យើងមិនអាចផ្ទុកស្លាកសញ្ញាដែលបានកំណត់រចនាសម្ព័ន្ធរបស់អ្នកបានទេនៅពេលនេះ"
@@ -8440,20 +9176,28 @@ msgstr "យើងមិនអាចតភ្ជាប់បាន
msgid "We will let you know when your account is ready."
msgstr "យើងនឹងប្រាប់អ្នកនៅពេលគណនីរបស់អ្នករួចរាល់"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "យើងនឹងប្រើវាដើម្បីជួយសម្រួលបទពិសោធន៍របស់អ្នក"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "យើងកំពុងមានបញ្ហាបណ្តាញ សូមព្យាយាមម្តងទៀត"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr ""
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "យើងពិតជារំភើបណាស់ដែលមានអ្នកចូលរួមជាមួយយើង"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "យើងសុំទោស ប៉ុន្តែយើងមិនអាចដោះស្រាយបញ្ជីនេះបានទេ។ ប្រសិនបើវានៅតែបន្តកើតមាន សូមទាក់ទងអ្នកបង្កើតបញ្ជី @{handleOrDid}"
@@ -8461,11 +9205,11 @@ msgstr "យើងសុំទោស ប៉ុន្តែយើងមិនអ
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "យើងសុំទោស ប៉ុន្តែយើងមិនអាចផ្ទុកពាក្យដែលអ្នកបានបិទសំឡេងនៅពេលនេះបានទេ។ សូមព្យាយាមម្តងទៀត"
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
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:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "យើងសុំទោស! ប្រកាសដែលអ្នកកំពុងឆ្លើយតបត្រូវបានលុប"
@@ -8474,7 +9218,7 @@ msgstr "យើងសុំទោស! ប្រកាសដែលអ្នកក
msgid "We're sorry! We can't find the page you were looking for."
msgstr "យើងសុំទោស! យើងមិនអាចស្វែងរកទំព័រដែលអ្នកកំពុងស្វែងរកបានទេ"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "យើងសុំទោស! អ្នកអាចជាវបានតែអ្នកដាក់ស្លាកម្ភៃប៉ុណ្ណោះ ហើយអ្នកបានដល់ចំនួនកំណត់របស់អ្នកម្ភៃហើយ"
@@ -8494,16 +9238,16 @@ msgstr "តើអ្នកចាប់អារម្មណ៍អ្វី?"
msgid "What do you want to call your starter pack?"
msgstr "តើអ្នកចង់ហៅកញ្ចប់ចាប់ផ្តើមរបស់អ្នកថាម៉េច?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr ""
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "មានរឿងអី?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr ""
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "តើភាសាណាខ្លះត្រូវបានប្រើក្នុងអត្ថបទនេះ?"
@@ -8520,14 +9264,18 @@ msgstr "តើអ្នកណាអាចទាក់ទងជាមួយកា
msgid "Who can reply"
msgstr "អ្នកដែលអាចឆ្លើយបាន"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr ""
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr ""
@@ -8574,11 +9322,11 @@ msgstr "ហេតុអ្វីបានជាអ្នកប្រើប្រ
msgid "Write a message"
msgstr "សរសេរសារ"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "សរសេរសារបង្ហោះ"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "សរសេរការឆ្លើយតបរបស់អ្នក"
@@ -8588,11 +9336,16 @@ msgstr "សរសេរការឆ្លើយតបរបស់អ្នក"
msgid "Writers"
msgstr "អ្នកនិពន្ធ"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "ខុស DID ត្រឡប់ពីម៉ាស៊ីនមេ។ បានទទួល៖ {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "បាទ"
@@ -8601,15 +9354,15 @@ msgstr "បាទ"
msgid "Yes, deactivate"
msgstr "បាទ បិទដំណើរការ"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "បាទ/ចាស លុបកញ្ចប់ចាប់ផ្តើមនេះ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "បាទ ផ្ដាច់"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "បាទ លាក់"
@@ -8625,7 +9378,11 @@ msgstr "ម្សិលមិញ"
msgid "You"
msgstr "អ្នក"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr ""
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
msgstr ""
@@ -8633,6 +9390,19 @@ msgstr ""
msgid "You are in line."
msgstr "អ្នកស្ថិតនៅក្នុងជួរ"
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr ""
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr ""
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr ""
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យបង្ហោះវីដេអូទេ"
@@ -8641,6 +9411,27 @@ msgstr "អ្នកមិនត្រូវបានអនុញ្ញាតឱ
msgid "You are not following anyone."
msgstr "អ្នកមិនដើរតាមនរណាម្នាក់ទេ"
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr ""
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr ""
@@ -8682,7 +9472,7 @@ msgstr "អ្នកមិនមានអ្នកតាមទេ"
msgid "You don't follow any users who follow @{name}."
msgstr "អ្នកមិនធ្វើតាមអ្នកប្រើប្រាស់ណាដែលតាមដានទេ"
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr ""
@@ -8736,24 +9526,24 @@ msgstr "អ្នកបានបិទគណនីនេះ"
msgid "You have muted this user"
msgstr "អ្នកបានបិទអ្នកប្រើប្រាស់នេះ"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "អ្នកមិនទាន់មានការសន្ទនានៅឡើយទេ។ ចាប់ផ្តើមមួយ!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "អ្នកមិនមានមតិព័ត៌មានទេ"
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "អ្នកមិនមានបញ្ជីទេ"
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "អ្នកមិនទាន់បានបិទគណនីណាមួយនៅឡើយទេ។ ដើម្បីទប់ស្កាត់គណនី សូមចូលទៅកាន់កម្រងព័ត៌មានរបស់ពួកគេ ហើយជ្រើសរើស \"រារាំងគណនី\" ពីម៉ឺនុយនៅលើគណនីរបស់ពួកគេ"
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "អ្នកមិនទាន់បានបិទគណនីណាមួយនៅឡើយទេ។ ដើម្បីបិទគណនី សូមចូលទៅកាន់កម្រងព័ត៌មានរបស់ពួកគេ ហើយជ្រើសរើស \"បិទគណនី\" ពីម៉ឺនុយនៅលើគណនីរបស់ពួកគេ"
@@ -8761,11 +9551,15 @@ msgstr "អ្នកមិនទាន់បានបិទគណនីណាម
msgid "You have reached the end"
msgstr "អ្នកបានឈានដល់ទីបញ្ចប់ហើយ"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr ""
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "អ្នកបានឈានដល់ដែនកំណត់បណ្តោះអាសន្នសម្រាប់ការបង្ហោះវីដេអូ។ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "អ្នកមិនទាន់បានបង្កើតកញ្ចប់ចាប់ផ្តើមនៅឡើយទេ"
@@ -8787,22 +9581,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "អ្នកអាចប្តឹងតវ៉ាចំពោះស្លាកទាំងនេះ ប្រសិនបើអ្នកមានអារម្មណ៍ថា ពួកវាត្រូវបានដាក់ក្នុងកំហុស"
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "អ្នកអាចបន្ថែមបានត្រឹមតែ {STARTER_PACK_MAX_SIZE} ទម្រង់ប៉ុណ្ណោះ"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "អ្នកអាចបន្ថែមបានត្រឹមតែ 3 មតិព័ត៌មានប៉ុណ្ណោះ"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "អ្នកអាចជ្រើសរើសបានត្រឹមតែ 4 រូបភាពប៉ុណ្ណោះ"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "អ្នកត្រូវតែមានអាយុ 13 ឆ្នាំ ឬចាស់ជាងនេះដើម្បីចុះឈ្មោះ"
+msgid "You must be 13 years of age or older to create an account."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "អ្នកត្រូវតែតាមយ៉ាងហោចណាស់ប្រាំពីរនាក់ផ្សេងទៀតដើម្បីបង្កើតកញ្ចប់ចាប់ផ្ដើម"
@@ -8810,28 +9604,40 @@ msgstr "អ្នកត្រូវតែតាមយ៉ាងហ
msgid "You must grant access to your photo library to save a QR code"
msgstr "អ្នកត្រូវតែផ្តល់សិទ្ធិចូលប្រើបណ្ណាល័យរូបថតរបស់អ្នក ដើម្បីរក្សាទុកកូដ QR"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "អ្នកត្រូវតែផ្តល់សិទ្ធិចូលប្រើបណ្ណាល័យរូបថតរបស់អ្នក ដើម្បីរក្សាទុករូបភាព"
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "អ្នកត្រូវតែជ្រើសរើសស្លាកសញ្ញាយ៉ាងហោចណាស់មួយសម្រាប់របាយការណ៍"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr ""
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "ពីមុនអ្នកបានបិទដំណើរការ @{0}"
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "អ្នកនឹងត្រូវបានចេញពីគណនីរបស់អ្នកទាំងអស់"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "អ្នកនឹងលែងទទួលបានការជូនដំណឹងសម្រាប់ខ្សែនេះទៀតហើយ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "ឥឡូវនេះ អ្នកនឹងទទួលបានការជូនដំណឹងសម្រាប់អត្ថបទនេះ"
@@ -8839,23 +9645,23 @@ msgstr "ឥឡូវនេះ អ្នកនឹងទទួលបានកា
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "អ្នកនឹងទទួលបានអ៊ីមែលដែលមាន \"កំណត់កូដឡើងវិញ\" បញ្ចូលលេខកូដនោះនៅទីនេះ បន្ទាប់មកបញ្ចូលពាក្យសម្ងាត់ថ្មីរបស់អ្នក។"
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "អ្នក៖ {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "អ្នក៖ {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "អ្នក៖ {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "អ្នកនឹងធ្វើតាមអ្នកប្រើដែលបានណែនាំ និងមតិព័ត៌មាននៅពេលអ្នកបញ្ចប់ការបង្កើតគណនីរបស់អ្នក"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "អ្នកនឹងធ្វើតាមអ្នកប្រើប្រាស់ដែលបានណែនាំ នៅពេលអ្នកបញ្ចប់ការបង្កើតគណនីរបស់អ្នក"
@@ -8867,7 +9673,7 @@ msgstr "អ្នកនឹងធ្វើតាមមនុស្សទាំង
msgid "You'll follow these people right away"
msgstr "អ្នកនឹងធ្វើតាមមនុស្សទាំងនេះភ្លាមៗ"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "អ្នកនឹងទទួលបានអ៊ីមែលនៅ <0>{0}0> ដើម្បីផ្ទៀងផ្ទាត់ថាជាអ្នក"
@@ -8901,6 +9707,10 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "អ្នកបានដល់ចុងបញ្ចប់នៃព័ត៌មានរបស់អ្នកហើយ! ស្វែងរកគណនីមួយចំនួនទៀតដើម្បីតាមដាន"
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "អ្នកបានឈានដល់ដែនកំណត់ប្រចាំថ្ងៃរបស់អ្នកសម្រាប់ការបង្ហោះវីដេអូ (ច្រើនបៃ)"
@@ -8909,11 +9719,11 @@ msgstr "អ្នកបានឈានដល់ដែនកំណត់ប្រ
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "អ្នកបានឈានដល់ដែនកំណត់ប្រចាំថ្ងៃរបស់អ្នកសម្រាប់ការបង្ហោះវីដេអូ (វីដេអូច្រើនពេក)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "គណនីរបស់អ្នក។"
@@ -8941,7 +9751,7 @@ msgstr ""
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "ថ្ងៃខែឆ្នាំកំណើតរបស់អ្នក"
@@ -8953,26 +9763,30 @@ msgstr "កម្មវិធីរុករកតាមអ៊ីនធឺណិ
msgid "Your chats have been disabled"
msgstr "ការជជែករបស់អ្នកត្រូវបានបិទ"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "ជម្រើសរបស់អ្នកនឹងត្រូវបានរក្សាទុក ប៉ុន្តែអាចត្រូវបានផ្លាស់ប្តូរនៅពេលក្រោយនៅក្នុងការកំណត់"
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr ""
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "អ៊ីមែលរបស់អ្នកហាក់ដូចជាមិនត្រឹមត្រូវ"
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "អ៊ីមែលរបស់អ្នកត្រូវបានធ្វើបច្ចុប្បន្នភាព ប៉ុន្តែមិនត្រូវបានផ្ទៀងផ្ទាត់ទេ។ ជាជំហានបន្ទាប់ សូមផ្ទៀងផ្ទាត់អ៊ីមែលថ្មីរបស់អ្នក"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "អ៊ីមែលរបស់អ្នកមិនទាន់ត្រូវបានផ្ទៀងផ្ទាត់នៅឡើយ។ នេះគឺជាជំហានសុវត្ថិភាពដ៏សំខាន់មួយដែលយើងណែនាំ"
@@ -8988,14 +9802,31 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "មតិព័ត៌មានខាងក្រោមរបស់អ្នកគឺទទេ! តាមដានអ្នកប្រើប្រាស់បន្ថែមទៀត ដើម្បីមើលថាមានអ្វីកើតឡើង"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "ចំណុចទាញពេញលេញរបស់អ្នកនឹងមាន <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr ""
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr ""
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "ពាក្យដែលអ្នកបានបិទ"
@@ -9004,15 +9835,15 @@ msgstr "ពាក្យដែលអ្នកបានបិទ"
msgid "Your password has been changed successfully!"
msgstr "ពាក្យសម្ងាត់របស់អ្នកត្រូវបានផ្លាស់ប្តូរដោយជោគជ័យ"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "ប្រកាសរបស់អ្នកត្រូវបានផ្សព្វផ្សាយ"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "ប្រកាសរបស់អ្នកត្រូវបានបោះពុម្ពផ្សាយ"
@@ -9024,14 +9855,22 @@ 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:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "ការឆ្លើយតបរបស់អ្នកត្រូវបានបោះពុម្ពផ្សាយ"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "របាយការណ៍របស់អ្នកនឹងត្រូវបានផ្ញើទៅកាន់សេវាសម្របសម្រួល Bluesky"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr ""
diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po
index 9161a76c53..da1c0f4d32 100644
--- a/src/locale/locales/ko/messages.po
+++ b/src/locale/locales/ko/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ko\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 16:40\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(활성)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(임베드 콘텐츠 포함)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(이메일 없음)"
@@ -79,9 +79,9 @@ msgstr "{0, plural, other {# 재게시}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, other {#초}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "읽지 않은 항목 {0, plural, other {#개}}"
@@ -90,17 +90,17 @@ msgstr "읽지 않은 항목 {0, plural, other {#개}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, other {#개월}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, other {팔로워}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, other {팔로우 중}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, other {좋아요}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, other {좋아요}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, other {게시물}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, other {인용}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, other {재게시}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, other {게시물 {1}개}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "{0, plural, other {#명}}이 이 스타터 팩을 사용했습니다!"
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "<0><1>태그1>에서0> {0}"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "<0><1>텍스트 및 태그1>에서0> {0}"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr "{0} 님은 라이브 중"
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr "{0}은(는) 올바른 URL이 아닙니다"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "이번 주에 {0}명이 가입함"
@@ -137,13 +154,18 @@ msgstr "{0}/{1}"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
-msgstr ""
+msgstr "{0}/50자"
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0}명이 이 스타터 팩을 사용했습니다!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "{0} 님이 {1}(으)로 반응함"
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "{0} 님이 {2}에 {1}(으)로 반응함"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "{0} 님의 아바타"
@@ -175,7 +197,7 @@ msgstr "{0}분"
msgid "{0}s"
msgstr "{0}초"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "읽지 않은 항목 {count, plural, other {#개}}"
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, other {시간}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, other {분}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}0>이 나를 팔로우했습니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}0>이 내 맞춤 피드를 좋아합니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}0>이 내 게시물을 좋아합니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}0>이 내 재게시물을 좋아합니다"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}0>이 내 계정을 인증 취소했습니다"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}0>이 내 게시물을 재게시했습니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}0>이 내 재게시물을 재게시했습니다"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}0>이 내 스타터 팩으로 가입했습니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}0>이 나를 인증했습니다"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} 님이 나를 팔로우했습니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} 님이 나를 맞팔로우했습니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "{firstAuthorLink} 님이 내 맞춤 피드를 좋아합니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "{firstAuthorLink} 님이 내 게시물을 좋아합니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr "{firstAuthorLink} 님이 내 재게시물을 좋아합니다"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr "{firstAuthorLink} 님이 나를 인증 취소했습니다"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} 님이 내 게시물을 재게시했습니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr "{firstAuthorLink} 님이 내 재게시물을 재게시했습니다"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} 님이 내 스타터 팩으로 가입했습니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr "{firstAuthorLink} 님이 나를 인증했습니다"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 나를 팔로우했습니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 맞춤 피드를 좋아합니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 게시물을 좋아합니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 재게시물을 좋아합니다"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 계정을 인증 취소했습니다"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 게시물을 재게시했습니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 재게시물을 재게시했습니다"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 스타터 팩으로 가입했습니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 나를 인증했습니다"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} 님이 나를 팔로우했습니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} 님이 나를 맞팔로우했습니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "{firstAuthorName} 님이 내 맞춤 피드를 좋아합니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "{firstAuthorName} 님이 내 게시물을 좋아합니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr "{firstAuthorName} 님이 내 재게시물을 좋아합니다"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr "{firstAuthorName} 님이 나를 인증 취소했습니다"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} 님이 내 게시물을 재게시했습니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr "{firstAuthorName} 님이 내 재게시물을 재게시했습니다"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} 님이 내 스타터 팩으로 가입했습니다"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr "{firstAuthorName} 님이 나를 인증했습니다"
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} 팔로우 중"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "{handle} 님에게 메시지를 보낼 수 없습니다"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr "{hours, plural, other {#시간 {minutesString}}}"
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr "{hours, plural, other {#시간}}"
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "{joinedAllTimeCount, plural, other {#명}}의 사용자가 가입했습니다!"
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr "{minutes, plural, other {#분}}"
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "읽지 않은 항목 {notificationCount, plural, other {#개}}"
@@ -301,6 +404,34 @@ msgstr "{profileName} 님은 {0} 전에 Bluesky에 가입했습니다"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} 님은 {0} 전에 스타터 팩을 사용하여 Bluesky에 가입했습니다"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "{type}시간 전"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr "{userName} 님은 신뢰할 수 있는 인증자입니다"
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr "{userName} 님은 인증되었습니다"
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr "{userName} 님의 인증"
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "+{computedTotal}"
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, other {팔로워}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, other {팔로우 중}}"
@@ -343,7 +474,7 @@ msgstr "<0>실험적:0> 이 설정을 활성화하면 내가 팔로우하는
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>나0>와<1> 1><2>{0} 2>님이 스타터 팩에 포함됩니다"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠잘못된 핸들"
@@ -363,19 +494,28 @@ msgstr "30일"
msgid "7 days"
msgstr "7일"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "메시지"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr "새로운 방식의 인증"
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "정보"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr "수락"
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr "대화 요청 수락하기"
@@ -385,37 +525,37 @@ msgid "Accept Request"
msgstr "요청 수락"
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "접근성"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "접근성 설정"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "계정"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
msgstr "계정을 차단했습니다"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
msgstr "계정을 팔로우했습니다"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
msgstr "계정을 뮤트했습니다"
@@ -429,33 +569,37 @@ msgstr "계정 뮤트됨"
msgid "Account Muted by List"
msgstr "리스트로 계정 뮤트됨"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "계정 옵션"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "빠른 액세스에서 계정 제거"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
msgstr "계정을 차단 해제했습니다"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
msgstr "계정을 언팔로우했습니다"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
msgstr "계정을 언뮤트했습니다"
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
+msgstr "물결 모양의 파란색 체크 표시 <0><1/>0> 가 있는 계정은 다른 계정을 인증할 수 있습니다. 이러한 신뢰할 수 있는 인증자는 Bluesky에서 선정합니다."
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "추가"
@@ -473,8 +617,12 @@ msgstr "스타터 팩에 {displayName} 추가"
msgid "Add a content warning"
msgstr "콘텐츠 경고 추가"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr "프로필에 임시 라이브 상태를 추가합니다. 누군가 내 아바타를 클릭하면 내 라이브 이벤트에 대한 정보를 볼 수 있습니다."
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "이 리스트에 사용자 추가"
@@ -485,7 +633,7 @@ msgstr "계정 추가"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "계정 추가"
msgid "Add alt text"
msgstr "대체 텍스트 추가"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "대체 텍스트 추가 (선택 사항)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "다른 계정 추가"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "다른 게시물 추가하기"
@@ -518,8 +666,12 @@ msgstr "앱 비밀번호 추가"
msgid "Add App Password"
msgstr "앱 비밀번호 추가"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr "이모티콘 반응 추가"
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr "세부 정보 추가 (선택 사항)"
@@ -531,15 +683,23 @@ msgstr "선택한 설정으로 뮤트 단어 추가"
msgid "Add muted words and tags"
msgstr "뮤트할 단어 및 태그 추가"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "새 게시물 추가"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr "사람 추가"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr "리스트에 사람들 추가하기"
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr "반응 추가"
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "추천 피드 추가"
@@ -552,27 +712,28 @@ msgstr "스타터 팩에 피드를 추가해 보세요!"
msgid "Add the default feed of only people you follow"
msgstr "내가 팔로우하는 사람의 기본 피드만 추가하기"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "도메인에 다음 DNS 레코드를 추가하세요:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "이 피드를 내 피드에 추가하기"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "리스트에 추가"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "리스트에 추가"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "내 피드에 추가"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr "리스트에 사용자 추가"
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "리스트에 추가했습니다"
@@ -581,22 +742,22 @@ msgstr "리스트에 추가했습니다"
msgid "Added to my feeds"
msgstr "내 피드에 추가했습니다"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr "추가 세부 정보 (300자 이내)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "성인물"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "성인 콘텐츠"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "성인 콘텐츠는 <0>bsky.app0>에서 웹을 통해서만 활성화할 수 있습니다."
@@ -604,30 +765,35 @@ msgstr "성인 콘텐츠는 <0>bsky.app0>에서 웹을 통해서만 활성화
msgid "Adult content is disabled."
msgstr "성인 콘텐츠가 비활성화되어 있습니다."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "성인 콘텐츠 라벨"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "고급"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr "alice@example.com"
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr "모두"
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "모든 계정을 팔로우했습니다"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr "모든 언어"
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "저장한 모든 피드를 한 곳에서 확인하세요."
@@ -671,10 +837,10 @@ msgstr "ALT"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "대체 텍스트"
@@ -688,19 +854,18 @@ msgstr "대체 텍스트는 시각장애인과 저시력 사용자를 위해 이
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "대체 텍스트를 자릅니다. 제한: {0}자."
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr "대체 텍스트가 잘립니다. {MAX_ALT_TEXT, plural, other {제한: {0}자.}}"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "{0}(으)로 이메일을 보냈습니다. 이 이메일에는 아래에 입력하는 인증 코드가 포함되어 있습니다."
-#: src/view/com/modals/ChangeEmail.tsx:114
-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/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr "이전 주소인 {currentEmail}(으)로 이메일을 보냈습니다. 이 이메일에는 아래에 입력하는 인증 코드가 포함되어 있습니다."
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "이메일을 보냈습니다! 아래에 이메일에 포함된 인증 코드를 입력하세요."
@@ -716,7 +881,11 @@ msgstr "오류 발생"
msgid "An error occurred while compressing the video."
msgstr "동영상을 압축하는 동안 오류가 발생했습니다."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr "피드를 가져오는 동안 오류가 발생했습니다."
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "스타터 팩을 만드는 동안 오류가 발생했습니다. 다시 시도하시겠습니까?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "동영상을 불러오는 동안 오류가 발생했습니다. 다시 시도해 주세요."
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "QR 코드를 저장하는 동안 오류가 발생했습니다"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "동영상을 선택하는 동안 오류가 발생했습니다"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "모두 팔로우하려고 하는 동안 오류가 발생했습니다"
@@ -746,28 +914,37 @@ msgstr "모두 팔로우하려고 하는 동안 오류가 발생했습니다"
msgid "An error occurred while uploading the video."
msgstr "동영상을 업로드하는 동안 오류가 발생했습니다."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr "Bluesky가 신뢰할 수 있는 인증자를 선정하고 신뢰할 수 있는 인증자가 차례로 개별 사용자 계정을 인증하는 과정을 보여주는 그림."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "어떤 옵션에도 포함되지 않는 문제"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
-msgstr "채팅을 시작하는 동안 문제가 발생했습니다"
+msgstr "대화를 시작하는 동안 문제가 발생했습니다"
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47
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:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "문제가 발생했습니다. 다시 시도해 주세요."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr "파란색 체크 표시가 달린 인증된 사용자의 프로필 화면이 열린 Bluesky 앱을 iPhone에 띄워 보여주는 목업 이미지."
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "알 수 없는 오류가 발생했습니다"
@@ -790,6 +967,10 @@ msgstr "동물"
msgid "Animated GIF"
msgstr "움직이는 GIF"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr "Bluesky의 인증 기능 소개"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "반사회적 행위"
msgid "Anybody can interact"
msgstr "누구나 상호작용할 수 있음"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "앱 아이콘"
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "앱 언어"
@@ -836,7 +1017,7 @@ msgstr "앱 비밀번호 이름은 4자 이상이어야 합니다"
msgid "App passwords"
msgstr "앱 비밀번호"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "앱 비밀번호"
@@ -872,10 +1053,10 @@ msgstr "일시 정지 이의신청"
msgid "Appeal this decision"
msgstr "이 결정에 이의신청"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "모양"
@@ -884,12 +1065,12 @@ msgstr "모양"
msgid "Apply default recommended feeds"
msgstr "기본 추천 피드 적용하기"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "{0}에 보관됨"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "보관된 게시물"
@@ -897,15 +1078,15 @@ msgstr "보관된 게시물"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "앱 비밀번호 \"{0}\"을(를) 삭제하시겠습니까?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
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:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "이 스타터 팩을 삭제하시겠습니까?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "변경 사항을 삭제하시겠습니까?"
@@ -921,15 +1102,15 @@ msgstr "정말 이 대화에서 나가시겠습니까? 나에게 보이는 메
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "피드에서 {0}을(를) 제거하시겠습니까?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "내 피드에서 이 피드를 삭제하시겠습니까?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "이 초안을 삭제하시겠습니까?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "이 게시물을 삭제하시겠습니까?"
@@ -937,7 +1118,7 @@ msgstr "이 게시물을 삭제하시겠습니까?"
msgid "Are you sure?"
msgstr "정말인가요?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr "<0>{suggestedLanguageName}0>(으)로 쓰고 있나요?"
@@ -946,11 +1127,16 @@ msgstr "<0>{suggestedLanguageName}0>(으)로 쓰고 있나요?"
msgid "Art"
msgstr "예술"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "선정적이지 않거나 예술적인 나체."
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr "알고리즘에 주제 지정"
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "3자 이상"
@@ -963,12 +1149,12 @@ msgstr "오로라"
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "자동 재생 옵션은 <0>콘텐츠 및 미디어 설정0>으로 이동했습니다."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "동영상 및 GIF 자동 재생"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "동영상 및 GIF 자동 재생"
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "뒤로"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr "대화로 돌아가기"
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
-msgstr "목록을 만들기 전에 먼저 이메일을 인증해야 합니다."
+msgstr "리스트를 만들기 전에 먼저 이메일을 인증해야 합니다."
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "게시물을 작성하기 전에 먼저 이메일을 인증해야 합니다."
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr "게시물을 작성하거나 답글을 달기 전에 먼저 이메일을 인증해야 합니다."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "스타터 팩을 만들기 전에 먼저 이메일을 인증해야 합니다."
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "다른 사용자에게 메시지를 보내기 전에 먼저 이메일을 인증해야 합니다."
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr "이 대화 요청을 수락하려면 먼저 이메일을 인증해야 합니다."
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
-msgstr "BETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
+msgstr "다른 사용자에게 메시지를 보내려면 먼저 이메일을 인증해야 합니다."
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "생년월일"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "차단"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "계정 차단"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "계정을 차단하시겠습니까?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "계정 차단"
@@ -1054,7 +1241,7 @@ msgstr "차단 및 삭제"
msgid "Block and/or delete this conversation"
msgstr "이 대화를 차단 또는 삭제합니다"
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "리스트 차단"
@@ -1062,7 +1249,7 @@ msgstr "리스트 차단"
msgid "Block or report"
msgstr "차단 또는 신고"
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "이 계정들을 차단하시겠습니까?"
@@ -1079,21 +1266,21 @@ msgstr "사용자 차단"
msgid "Blocked"
msgstr "차단됨"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "차단한 계정"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "차단한 계정"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "차단한 계정은 내 스레드에 답글을 달거나 나를 멘션하거나 기타 다른 방식으로 나와 상호작용할 수 없습니다."
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 "차단한 계정은 내 스레드에 답글을 달거나 나를 멘션하거나 기타 다른 방식으로 나와 상호작용할 수 없습니다. 차단한 계정의 콘텐츠를 볼 수 없으며 해당 계정도 내 콘텐츠를 볼 수 없게 됩니다."
@@ -1101,19 +1288,19 @@ msgstr "차단한 계정은 내 스레드에 답글을 달거나 나를 멘션
msgid "Blocked post."
msgstr "차단된 게시물."
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "차단하더라도 이 라벨러가 내 계정에 라벨을 붙이는 것을 막지는 못합니다."
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "차단 목록은 공개됩니다. 차단한 계정은 내 스레드에 답글을 달거나 나를 멘션하거나 기타 다른 방식으로 나와 상호작용할 수 없습니다."
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
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:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "블로그"
@@ -1122,7 +1309,7 @@ msgstr "블로그"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky는 해당 날짜의 진위를 확인할 수 없습니다."
@@ -1148,7 +1335,7 @@ msgstr "Bluesky는 친구와 함께하면 더 좋답니다!"
msgid "Bluesky Social Terms of Service"
msgstr "Bluesky Social 서비스 이용약관"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky가 네트워크에 있는 사람들 중에서 임의로 추천 계정 세트를 선택합니다."
@@ -1156,6 +1343,10 @@ msgstr "Bluesky가 네트워크에 있는 사람들 중에서 임의로 추천
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "로그아웃한 사용자에게 내 프로필과 게시물을 표시하지 않습니다. 다른 앱에서는 이 설정을 따르지 않을 수 있습니다. 내 계정을 비공개로 전환하지는 않습니다."
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr "Bluesky는 주목할 만하고 신뢰할 수 있는 계정을 우선적으로 인증합니다."
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr "Bluesky+"
@@ -1166,34 +1357,34 @@ msgstr "Bluesky+ 아이콘"
#: src/lib/moderation/useLabelBehaviorDescription.ts:53
msgid "Blur images"
-msgstr "이미지 흐리게"
+msgstr "이미지 블러"
#: src/lib/moderation/useLabelBehaviorDescription.ts:51
msgid "Blur images and filter from feeds"
-msgstr "이미지 흐리게 및 피드에서 필터링"
+msgstr "이미지 블러 및 피드에서 필터링"
#: src/screens/Onboarding/index.tsx:30
#: src/screens/Onboarding/state.ts:96
msgid "Books"
msgstr "책"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "탐색 페이지에서 더 많은 계정 찾아보기"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "탐색 페이지에서 더 많은 피드 찾아보기"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "더 많은 추천 찾아보기"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "탐색 페이지에서 더 많은 추천 찾아보기"
@@ -1214,20 +1405,26 @@ msgstr "{displayName} 태그된 게시물 탐색하기"
msgid "Browse starter pack {displayName}"
msgstr "스타터 팩 {displayName} 탐색하기"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr "주제 {0} 탐색하기"
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr "주제 {displayName} 탐색하기"
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "비즈니스"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "{0} 님이 만듦"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "<0>{0}0> 님이 만듦"
@@ -1243,44 +1440,51 @@ msgstr "계정을 만들면 <0>서비스 이용약관0> 및 <1>개인정보
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "계정을 만들면 <0>서비스 이용약관0>에 동의하는 것입니다."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr "내가 만듦"
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "카메라"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "취소"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "계정 삭제 취소"
msgid "Cancel image crop"
msgstr "이미지 자르기 취소"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "프로필 편집 취소"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "게시물 인용 취소"
@@ -1308,8 +1512,7 @@ msgstr "게시물 인용 취소"
msgid "Cancel reactivation and sign out"
msgstr "재활성화 취소 및 로그아웃"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "검색 취소"
@@ -1317,24 +1520,23 @@ msgstr "검색 취소"
msgid "Cancels opening the linked website"
msgstr "연결된 웹사이트를 여는 것을 취소합니다"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "차단된 사용자와 상호작용할 수 없습니다"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "자막(.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "자막 및 대체 텍스트"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "변경"
@@ -1347,46 +1549,41 @@ msgstr "앱 아이콘을 변경합니다"
msgid "Change app icon to \"{0}\""
msgstr "앱 아이콘을 \"{0}\"(으)로 변경합니다"
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "이메일 변경"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr "앱 언어 변경"
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "이메일 주소 변경"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "핸들 변경"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr "검토 서비스 변경"
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "내 이메일 변경하기"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "비밀번호 변경"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr "게시물 언어를 {suggestedLanguageName}(으)로 변경"
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr "신고 이유 변경"
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
-msgstr "이메일 변경"
+msgstr "이메일 변경하기"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "이메일 주소를 변경하세요"
@@ -1394,20 +1591,20 @@ msgstr "이메일 주소를 변경하세요"
msgid "Changes app icon"
msgstr "앱 아이콘을 변경합니다"
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr "호스팅 제공자를 변경합니다"
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "대화"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
msgstr "대화를 삭제했습니다"
@@ -1417,20 +1614,19 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "대화를 뮤트했습니다"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr "대화 요청 수신함"
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr "대화 요청"
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "대화 설정"
@@ -1443,8 +1639,8 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "대화를 언뮤트했습니다"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr "대화"
@@ -1461,7 +1657,7 @@ msgstr "이메일에서 로그인 코드를 확인한 후 여기에 입력하세
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "받은 편지함에서 아래에 입력할 인증 코드가 포함된 이메일이 있는지 확인하세요."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "도메인 인증 방법 선택"
@@ -1469,7 +1665,7 @@ msgstr "도메인 인증 방법 선택"
msgid "Choose Feeds"
msgstr "피드 선택"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "임의로 선택하기"
@@ -1477,10 +1673,6 @@ msgstr "임의로 선택하기"
msgid "Choose People"
msgstr "사람들 선택"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "게시하는 미디어에 적용할 자체 라벨을 선택하세요. 아무것도 선택하지 않으면 이 게시물이 모든 대상에게 적합하다는 것입니다."
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "맞춤 피드를 구동할 알고리즘을 선택하세요."
@@ -1493,27 +1685,31 @@ msgstr "이 색상을 아바타로 선택"
msgid "Choose your account provider"
msgstr "계정 제공자 선택"
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "나만의 타임라인을 선택하세요! 커뮤니티에서 만든 피드를 통해 마음에 드는 콘텐츠를 찾을 수 있습니다."
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "비밀번호를 입력하세요"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr "사용자 이름 선택"
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "모든 스토리지 데이터 지우기"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "모든 스토리지 데이터 지우기 (이후 다시 시작)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr "이미지 캐시 지우기"
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "검색어 지우기"
@@ -1522,6 +1718,14 @@ msgstr "검색어 지우기"
msgid "click here"
msgstr "이곳을 클릭"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr "인증 절차를 다시 시작하려면 이곳을 클릭하세요."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr "이메일을 변경하려면 이곳을 클릭하세요"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "이 게시물의 인용 게시물을 비활성화하려면 클릭하세요."
@@ -1534,7 +1738,7 @@ msgstr "이 게시물의 인용 게시물을 활성화하려면 클릭하세요.
msgid "Click to open tag menu for {tag}"
msgstr "클릭하여 {tag}에 대한 태그 메뉴를 엽니다"
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "클릭하여 메시지를 다시 보내기"
@@ -1546,24 +1750,34 @@ msgstr "기후"
msgid "Clip 🐴 clop 🐴"
msgstr "다그닥 🐴 다그닥 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "닫기"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "열려 있는 대화 상자 닫기"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "하단 서랍 닫기"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "대화 상자 닫기"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr "서랍 메뉴 닫기"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr "이모티콘 선택기 닫기"
@@ -1600,7 +1816,13 @@ msgstr "이미지 닫기"
msgid "Close image viewer"
msgstr "이미지 뷰어 닫기"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr "매뉴 닫기"
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "이 대화 상자 닫기"
@@ -1608,8 +1830,12 @@ msgstr "이 대화 상자 닫기"
msgid "Closes password update alert"
msgstr "비밀번호 변경 알림을 닫습니다"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr "게시물 작성기를 닫고 게시물 초안을 삭제합니다"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr "이모티콘 선택기를 닫습니다"
@@ -1617,11 +1843,11 @@ msgstr "이모티콘 선택기를 닫습니다"
msgid "Closes viewer for header image"
msgstr "헤더 이미지 뷰어를 닫습니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "사용자 목록 접기"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "이 알림에 대한 사용자 목록을 축소합니다"
@@ -1644,7 +1870,7 @@ msgstr "코미디"
msgid "Comics"
msgstr "만화"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "커뮤니티 가이드라인"
@@ -1653,23 +1879,23 @@ msgstr "커뮤니티 가이드라인"
msgid "Complete onboarding and start using your account"
msgstr "온보딩 완료 후 계정 사용 시작"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "챌린지 완료하기"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "새 게시물 작성하기"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "최대 {MAX_GRAPHEME_LENGTH}자 길이까지 글을 작성할 수 있습니다"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr "게시물을 최대 {0, plural, other {#자}}까지 작성할 수 있습니다"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "답글 작성하기"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "동영상 압축 중…"
@@ -1681,23 +1907,17 @@ msgstr "{name} 카테고리에 대한 콘텐츠 필터링 설정을 구성합니
msgid "Configured in <0>moderation settings0>."
msgstr "<0>검토 설정0>에서 설정합니다."
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "확인"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "변경 확인"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "콘텐츠 언어 설정 확인"
@@ -1706,26 +1926,27 @@ msgstr "콘텐츠 언어 설정 확인"
msgid "Confirm delete account"
msgstr "계정 삭제 확인"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "나이를 확인하세요:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "생년월일 확인"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "인증 코드"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "인증 코드"
@@ -1733,22 +1954,22 @@ msgstr "인증 코드"
msgid "Connecting..."
msgstr "연결 중…"
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "지원에 연락하기"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "콘텐츠 및 미디어"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "콘텐츠 및 미디어"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "콘텐츠 및 미디어"
@@ -1756,15 +1977,15 @@ msgstr "콘텐츠 및 미디어"
msgid "Content Blocked"
msgstr "콘텐츠 차단됨"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "콘텐츠 필터"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr "좋아할 만한 네트워크 전반의 콘텐츠를 모았습니다."
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "콘텐츠 언어"
@@ -1785,16 +2006,16 @@ msgstr "콘텐츠 경고"
msgid "Content warnings"
msgstr "콘텐츠 경고"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "컨텍스트 메뉴 배경을 클릭하여 메뉴를 닫습니다."
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "계속"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "{0}(으)로 계속하기 (현재 로그인)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "스레드 더 보기…"
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "다음 단계로 계속하기"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "대화를 삭제했습니다"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "대화 삭제됨"
@@ -1826,16 +2047,17 @@ msgstr "요리"
msgid "Copied"
msgstr "복사됨"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "빌드 버전을 클립보드에 복사했습니다"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "클립보드에 복사했습니다"
@@ -1844,25 +2066,29 @@ msgstr "클립보드에 복사했습니다"
msgid "Copied!"
msgstr "복사했습니다!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr "빌드 버전을 클립보드에 복사합니다"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "복사"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr "무시하고 복사"
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "앱 비밀번호 복사"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr "at:// URI 복사"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr "작성자 DID 복사"
@@ -1871,57 +2097,69 @@ msgstr "작성자 DID 복사"
msgid "Copy code"
msgstr "코드 복사"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "DID 복사"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "호스트 복사"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "링크 복사"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "링크 복사"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "리스트 링크 복사"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "게시물 링크 복사"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr "프로필 링크 복사"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr "스타터 팩 링크 복사"
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "메시지 텍스트 복사"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr "게시물 at:// URI 복사"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "게시물 텍스트 복사"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "QR 코드 복사"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "TXT 레코드 값 복사"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "저작권 정책"
@@ -1931,11 +2169,11 @@ msgstr "저작권 정책"
msgid "Could not leave chat"
msgstr "대화에서 나갈 수 없습니다"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "피드를 불러올 수 없습니다"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "리스트를 불러올 수 없습니다"
@@ -1947,28 +2185,28 @@ msgstr "대화를 뮤트할 수 없습니다"
msgid "Could not process your video"
msgstr "동영상을 처리할 수 없습니다"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "만들기"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "스타터 팩 QR 코드 만들기"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "스타터 팩 만들기"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "나를 위한 스타터 팩 만들기"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "나를 위한 스타터 팩 만들기"
msgid "Create account"
msgstr "가입하기"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "계정 만들기"
@@ -1985,11 +2223,16 @@ msgstr "계정 만들기"
msgid "Create an account"
msgstr "계정 만들기"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr "이 스타터 팩을 사용하지 않고 계정 만들기"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "대신 아바타 만들기"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "다른 스타터 팩 만들기"
@@ -1998,7 +2241,7 @@ msgstr "다른 스타터 팩 만들기"
msgid "Create new account"
msgstr "새 계정 만들기"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "{0}에 대한 신고 작성하기"
@@ -2053,17 +2296,17 @@ msgstr "어두운 모드"
msgid "Dark theme"
msgstr "어두운 테마"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "생년월일"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "계정 비활성화"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "검토 디버그"
@@ -2079,19 +2322,19 @@ msgstr "기본"
msgid "Default icons"
msgstr "기본 아이콘"
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "삭제"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "계정 삭제"
@@ -2107,19 +2350,19 @@ msgstr "앱 비밀번호 삭제"
msgid "Delete app password?"
msgstr "앱 비밀번호를 삭제하시겠습니까?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr "대화 삭제"
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "대화 신고 기록 삭제"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr "대화 삭제"
@@ -2127,19 +2370,19 @@ msgstr "대화 삭제"
msgid "Delete Conversation"
msgstr "대화 삭제"
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "나에게서 삭제"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
msgstr "리스트 삭제"
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "메시지 삭제"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "나에게 보이는 메시지 삭제"
@@ -2147,26 +2390,26 @@ msgstr "나에게 보이는 메시지 삭제"
msgid "Delete my account"
msgstr "내 계정 삭제"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "게시물 삭제"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "스타터 팩 삭제"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "스타터 팩 삭제"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "이 리스트를 삭제하시겠습니까?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "이 게시물을 삭제하시겠습니까?"
@@ -2174,8 +2417,8 @@ msgstr "이 게시물을 삭제하시겠습니까?"
msgid "Deleted"
msgstr "삭제됨"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "삭제된 계정"
@@ -2183,48 +2426,48 @@ msgstr "삭제된 계정"
msgid "Deleted post."
msgstr "삭제된 게시물."
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "설명"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "설명이 너무 깁니다"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "설명이 너무 깁니다. 최대 글자 수는 {DESCRIPTION_MAX_GRAPHEMES}자입니다."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "설명이 너무 깁니다. {DESCRIPTION_MAX_GRAPHEMES, plural, other {최대 글자 수는 #자입니다.}}"
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "설명이 포함된 대체 텍스트"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "인용 해제"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "인용을 해제하시겠습니까?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
msgstr "개발자 모드를 비활성화했습니다"
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
msgstr "개발자 모드를 활성화했습니다"
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "개발자 옵션"
@@ -2236,6 +2479,15 @@ msgstr "대화 상자: 이 게시물과 상호작용할 수 있는 사람 조정
msgid "Dim"
msgstr "어둑함"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr "2단계 인증 비활성화"
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr "이메일 2단계 인증 비활성화"
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "이메일 2단계 인증 끄기"
@@ -2254,25 +2506,25 @@ msgstr "자막 사용 안 함"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "사용 안 함"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "삭제"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "변경 사항 삭제"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "초안 삭제"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "게시물 삭제"
@@ -2281,24 +2533,24 @@ msgstr "게시물 삭제"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "앱이 로그아웃한 사용자에게 내 계정을 표시하지 않도록 설정하기"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr "피드 발견하기"
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "새로운 맞춤 피드 찾아보기"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "새 피드 발견하기"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "새 피드 발견하기"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "닫기"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "오류 무시"
@@ -2306,6 +2558,10 @@ msgstr "오류 무시"
msgid "Dismiss getting started guide"
msgstr "시작하기 가이드 닫기"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr "관심 주제 닫기"
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr "이 부분 닫기"
@@ -2315,27 +2571,27 @@ msgstr "이 부분 닫기"
msgid "Display larger alt text badges"
msgstr "더 큰 대체 텍스트 배지 표시"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "표시 이름"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "표시 이름"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "표시 이름이 너무 깁니다"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "표시 이름이 너무 깁니다. 최대 글자 수는 {DISPLAY_NAME_MAX_GRAPHEMES}자입니다."
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr "표시 이름이 너무 깁니다. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {최대 글자 수는 #자입니다.}}"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "DNS 패널"
@@ -2347,37 +2603,45 @@ msgstr "내가 팔로우하는 사용자에게는 이 뮤트 단어를 적용하
msgid "Does not include nudity."
msgstr "나체를 포함하지 않습니다."
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "하이픈으로 시작하거나 끝나지 않음"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "도메인을 확인했습니다."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr "코드가 없거나 새 코드가 필요한가요? <0>이곳을 클릭하세요.0>"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr "이메일이 보이지 않나요? <0>다시 보내려면 이곳을 클릭하세요.0>"
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "완료"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "완료"
msgid "Done{extraText}"
msgstr "완료{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr "메시지를 두 번 탭하거나 길게 눌러서 반응을 추가합니다"
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "두 번 탭하여 대화 상자를 닫습니다"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr "두 번 탭하여 좋아요 표시합니다"
@@ -2413,23 +2681,23 @@ msgstr "드롭하여 이미지 추가"
msgid "Duration:"
msgstr "기간:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "예: alice"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "예: 앨리스 라스트네임"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "예: 앨리스 로버츠"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "예: alice.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "예: 예술가, 개 애호가 및 열혈 독서가."
@@ -2437,19 +2705,19 @@ msgstr "예: 예술가, 개 애호가 및 열혈 독서가."
msgid "E.g. artistic nudes."
msgstr "예: 예술적인 나체."
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "예: 멋진 게시자"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "예: 스팸 계정"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "예: 놓칠 수 없는 게시자들."
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "예: 반복적으로 광고 답글을 다는 계정."
@@ -2457,20 +2725,21 @@ msgstr "예: 반복적으로 광고 답글을 다는 계정."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "각 코드는 한 번만 사용할 수 있습니다. 주기적으로 더 많은 초대 코드를 받게 됩니다."
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "편집"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "편집"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "아바타 편집"
@@ -2478,31 +2747,41 @@ msgstr "아바타 편집"
msgid "Edit Feeds"
msgstr "피드 편집하기"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "이미지 편집하기"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "상호작용 설정 편집"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr "관심 주제 편집"
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "리스트 세부 정보 편집"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr "라이브 상태 편집"
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "검토 리스트 편집"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "내 피드 편집"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "내 프로필 편집하기"
@@ -2515,23 +2794,23 @@ msgstr "사람들 편집하기"
msgid "Edit post interaction settings"
msgstr "게시물 상호작용 설정 편집하기"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "프로필 편집"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "프로필 편집"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "스타터 팩 편집"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "사용자 리스트 편집"
@@ -2539,15 +2818,15 @@ msgstr "사용자 리스트 편집"
msgid "Edit who can reply"
msgstr "답글을 달 수 있는 사람 편집"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "내 표시 이름을 편집합니다"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "내 프로필 설명을 편집합니다"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "스타터 팩 편집"
@@ -2560,9 +2839,8 @@ msgstr "교육"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr "이 리스트의 작성자가 나를 차단했거나 내가 작성자를 차단했습니다."
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "이메일"
@@ -2573,7 +2851,7 @@ msgstr "이메일 2단계 인증을 비활성화했습니다"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
-msgstr "이메일 2단계 인증을 활성화했습니다"
+msgstr "이메일 2단계 인증 활성화됨"
#: src/screens/Login/ForgotPasswordForm.tsx:93
msgid "Email address"
@@ -2583,20 +2861,17 @@ msgstr "이메일 주소"
msgid "Email Resent"
msgstr "이메일 다시 전송됨"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
-msgstr "이메일을 변경했습니다"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
+msgstr "이메일을 보냈습니다!"
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "이메일 변경됨"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr "이메일을 변경했습니다!"
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
-msgstr "이메일을 인증했습니다"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
+msgstr "이메일 인증 완료!"
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
msgid "Email Verified"
@@ -2608,8 +2883,8 @@ msgstr "임베드 HTML 코드"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "게시물 임베드"
@@ -2617,12 +2892,13 @@ msgstr "게시물 임베드"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "웹사이트에 이 게시물을 임베드하세요. 다음 코드를 복사하여 웹사이트에 HTML 코드로 붙여넣기만 하면 됩니다."
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "임베드 동영상 플레이어"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "활성화"
@@ -2630,12 +2906,12 @@ msgstr "활성화"
msgid "Enable {0} only"
msgstr "{0}에서만 사용"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "성인 콘텐츠 활성화"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
msgstr "이메일 2단계 인증 활성화"
#: src/components/dialogs/EmbedConsent.tsx:81
@@ -2660,30 +2936,30 @@ msgstr "자막 사용"
msgid "Enable this source only"
msgstr "이 소스에서만 사용"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr "인기 주제 사용"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr "Discover 피드에서 인기 동영상 사용"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr "Discover 피드에서 인기 동영상 사용"
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "사용"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "피드 끝"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "각 자막 파일에 대한 언어를 선택했는지 확인하세요."
@@ -2696,13 +2972,14 @@ msgstr "비밀번호 입력"
msgid "Enter a word or tag"
msgstr "단어 또는 태그 입력"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
-msgid "Enter Code"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
msgstr "코드 입력"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "인증 코드 입력"
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
+msgid "Enter Code"
+msgstr "코드 입력"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
@@ -2712,7 +2989,7 @@ msgstr "전체화면으로 보기"
msgid "Enter the code you received to change your password."
msgstr "비밀번호를 변경하려면 받은 코드를 입력하세요."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "사용할 도메인 입력"
@@ -2720,20 +2997,20 @@ msgstr "사용할 도메인 입력"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "계정을 만들 때 사용한 이메일을 입력하세요. 새 비밀번호를 설정할 수 있도록 \"재설정 코드\"를 보내 드립니다."
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr "계정을 만들 때 사용한 사용자 이름 또는 이메일 주소를 입력하세요"
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "생년월일을 입력하세요"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "이메일 주소를 입력하세요"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "새 이메일을 입력하세요"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "아래에 새 이메일 주소를 입력하세요."
@@ -2749,7 +3026,11 @@ msgstr "사용자 이름 및 비밀번호 입력"
msgid "Enters full screen"
msgstr "전체화면으로 봅니다"
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr "엔터테인먼트"
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "오류"
@@ -2758,15 +3039,18 @@ msgstr "오류"
msgid "Error occurred while saving file"
msgstr "파일을 저장하는 동안 오류가 발생했습니다"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "캡차 응답을 수신하는 동안 오류가 발생했습니다."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "오류:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr "오류: {error}"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "모두"
@@ -2808,40 +3092,32 @@ msgstr "전체화면 나가기"
#: src/view/com/modals/DeleteAccount.tsx:275
msgid "Exits account deletion process"
-msgstr "계정 삭제 프로세스를 종료합니다"
+msgstr "계정 삭제 절차를 종료합니다"
#: src/view/com/modals/CropImage.web.tsx:95
msgid "Exits image cropping process"
-msgstr "이미지 자르기 프로세스를 종료합니다"
+msgstr "이미지 자르기 절차를 종료합니다"
#: src/view/com/lightbox/Lightbox.web.tsx:110
msgid "Exits image view"
msgstr "이미지 보기를 종료합니다"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "검색어 입력을 종료합니다"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "대체 텍스트 확장"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "사용자 목록 펼치기"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "답글을 달고 있는 전체 게시물을 펼치거나 접습니다"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr "게시물 텍스트를 펼치거나 접습니다"
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr "답글을 달고 있는 전체 게시물을 펼치거나 접습니다"
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "레코드로 확인될 것으로 예상되는 URI"
@@ -2864,6 +3140,10 @@ msgstr "{0}에 만료"
msgid "Expires in {0}"
msgstr "{0}에 만료"
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr "{0} 후 {1}에 종료"
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "노골적이거나 불쾌감을 줄 수 있는 미디어."
msgid "Explicit sexual images."
msgstr "노골적인 성적 이미지."
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr "탐색"
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "내 데이터 내보내기"
@@ -2882,8 +3169,8 @@ msgstr "내 데이터 내보내기"
msgid "Export My Data"
msgstr "내 데이터 내보내기"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "외부 미디어"
@@ -2897,17 +3184,22 @@ msgstr "외부 미디어"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "외부 미디어는 웹사이트가 나와 내 기기에 대한 정보를 수집하도록 할 수 있습니다. \"재생\" 버튼을 누르기 전까지는 어떠한 정보도 전송되거나 요청되지 않습니다."
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "외부 미디어 설정"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
msgstr "대화를 수락하지 못했습니다"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr "이모티콘 반응을 추가하지 못했습니다"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "핸들을 변경하지 못했습니다. 다시 시도해 주세요."
@@ -2915,7 +3207,7 @@ msgstr "핸들을 변경하지 못했습니다. 다시 시도해 주세요."
msgid "Failed to create app password. Please try again."
msgstr "앱 비밀번호를 만들지 못했습니다. 다시 시도해 주세요."
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr "대화를 만들지 못했습니다"
@@ -2924,35 +3216,37 @@ msgstr "대화를 만들지 못했습니다"
msgid "Failed to create starter pack"
msgstr "스타터 팩을 만들지 못했습니다"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "리스트를 만들지 못했습니다. 인터넷 연결을 확인한 후 다시 시도해 주세요."
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr "대화를 삭제하지 못했습니다"
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "메시지를 삭제하지 못했습니다"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "게시물을 삭제하지 못했습니다. 다시 시도해 주세요"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "스타터 팩을 삭제하지 못했습니다"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr "대화를 불러오지 못했습니다"
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "피드 환경설정을 불러오지 못했습니다"
@@ -2964,17 +3258,19 @@ msgstr "GIF를 불러오지 못했습니다"
msgid "Failed to load past messages"
msgstr "지난 메시지를 불러오지 못했습니다"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "추천 피드를 불러오지 못했습니다"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "추천 팔로우를 불러오지 못했습니다"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr "모든 요청을 읽음으로 표시하지 못했습니다"
@@ -2982,7 +3278,16 @@ msgstr "모든 요청을 읽음으로 표시하지 못했습니다"
msgid "Failed to pin post"
msgstr "게시물을 고정하지 못했습니다"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr "이모티콘 반응을 제거하지 못했습니다"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr "인증을 취소하지 못했습니다"
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "이미지를 저장하지 못함: {0}"
@@ -2994,20 +3299,39 @@ msgstr "알림 설정을 저장하지 못했습니다. 다시 시도해 주세
msgid "Failed to save settings. Please try again."
msgstr "설정을 저장하지 못했습니다. 다시 시도해 주세요."
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr "관심 주제를 저장하지 못했습니다."
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "전송 실패"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr "이메일을 보내지 못했습니다. 다시 시도해 주세요."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "이의신청을 제출하지 못했습니다. 다시 시도해 주세요."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "스레드 뮤트를 전환하지 못했습니다. 다시 시도해 주세요"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr "이메일 2단계 인증을 변경하지 못했습니다"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr "이메일을 변경하지 못했습니다. 다시 시도해 주세요."
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "피드를 업데이트하지 못했습니다"
@@ -3022,20 +3346,24 @@ msgstr "설정을 업데이트하지 못했습니다"
msgid "Failed to upload video"
msgstr "동영상을 업로드하지 못했습니다"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr "이메일을 인증하지 못했습니다. 다시 시도해 주세요."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "핸들을 인증하지 못했습니다. 다시 시도해 주세요."
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "피드"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "{0} 님의 피드"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr "피드 메뉴"
@@ -3043,26 +3371,26 @@ msgstr "피드 메뉴"
msgid "Feed toggle"
msgstr "피드 켜기/끄기"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "피드백"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
msgstr "피드백을 보냈습니다!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "피드"
@@ -3070,13 +3398,13 @@ msgstr "피드"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "피드는 사용자가 약간의 코딩 전문 지식만으로 구축할 수 있는 맞춤 알고리즘입니다. <0/>에서 자세한 내용을 확인하세요."
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
msgstr "피드를 업데이트했습니다!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr "좋아할 만한 피드를 모았습니다."
@@ -3092,11 +3420,11 @@ msgstr "파일을 성공적으로 저장했습니다!"
msgid "Filter from feeds"
msgstr "피드에서 필터링"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr "언어별 검색 필터링"
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr "언어별 검색 필터링 (현재: {currentLanguageLabel})"
@@ -3110,13 +3438,13 @@ msgstr "마무리 중"
msgid "Find accounts to follow"
msgstr "팔로우할 계정 찾아보기"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr "팔로우할 사람 찾아보기"
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Bluesky에서 게시물, 사용자, 피드 찾기"
@@ -3148,11 +3476,11 @@ msgid "Flexible"
msgstr "유연성"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "팔로우"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "팔로우"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "{0} 님을 팔로우"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr "{handle} 님을 팔로우"
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "{name} 님을 팔로우"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr "10개 계정 팔로우하기"
msgid "Follow 7 accounts"
msgstr "7개 계정 팔로우하기"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "계정 팔로우"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "모두 팔로우"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "맞팔로우"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "맞팔로우"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "더 많은 계정을 팔로우하고 관심 주제를 연결하여 네트워크를 구축하세요."
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "<0>{0}0> 님이 팔로우함"
@@ -3224,7 +3544,7 @@ 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/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "내가 아는 @{0} 님의 팔로워"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "내가 아는 팔로워"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "팔로우 중"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "{0} 님을 팔로우했습니다"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr "{handle} 님을 팔로우 중"
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "{name} 님을 팔로우했습니다"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "팔로우 중 피드 설정"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "팔로우 중 피드 설정"
@@ -3301,6 +3617,10 @@ msgstr "보안상의 이유로 이 비밀번호는 다시 볼 수 없습니다.
msgid "For the best experience, we recommend using the theme font."
msgstr "최상의 경험을 위해 테마 글꼴을 사용하는 것을 추천합니다."
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr "추천"
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "무기한"
@@ -3327,7 +3647,7 @@ msgstr "잦은 원치 않는 콘텐츠 게시"
msgid "From @{sanitizedAuthor}"
msgstr "@{sanitizedAuthor} 님의 태그"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "<0/>에서"
@@ -3336,28 +3656,30 @@ msgstr "<0/>에서"
msgid "Gallery"
msgstr "갤러리"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "스타터 팩 만들기"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "도움말"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
msgstr "시작하기"
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "시작하기"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr "GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "프로필에 얼굴 달기"
@@ -3366,17 +3688,17 @@ msgstr "프로필에 얼굴 달기"
msgid "Glaring violations of law or terms of service"
msgstr "명백한 법률 또는 서비스 이용약관 위반 행위"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "뒤로"
@@ -3384,10 +3706,10 @@ msgstr "뒤로"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "뒤로"
@@ -3408,7 +3730,27 @@ msgstr "홈으로 이동"
msgid "Go Home"
msgstr "홈으로 이동"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr "라이브 시작"
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr "라이브 시작"
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr "라이브 예정 시간"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr "{firstAuthorName} 님의 프로필로 가기"
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "{0} 님과의 대화로 이동합니다"
@@ -3427,8 +3769,8 @@ msgstr "사용자의 프로필로 가기"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "불쾌감을 주는 미디어"
@@ -3437,21 +3779,21 @@ msgstr "불쾌감을 주는 미디어"
msgid "Half way there!"
msgstr "절반은 완료!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "핸들"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "이미 사용 중인 핸들입니다. 다른 핸들을 사용하세요."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "핸들을 변경했습니다!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "핸들이 너무 깁니다. 더 짧은 핸들을 사용하세요."
@@ -3464,7 +3806,7 @@ msgstr "햅틱"
msgid "Harassment, trolling, or intolerance"
msgstr "괴롭힘, 분쟁 유발 또는 차별"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "해시태그"
@@ -3472,19 +3814,24 @@ msgstr "해시태그"
msgid "Hashtag {tag}"
msgstr "해시태그 #{tag}"
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr "코드가 있나요? <0>이곳을 클릭하세요.0>"
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "문제가 있나요?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "도움말"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "사진을 업로드하거나 아바타를 만들어 사람들이 내가 봇이 아니라는 사실을 알 수 있도록 하세요."
@@ -3497,7 +3844,7 @@ msgstr "앱 비밀번호를 만들었습니다!"
msgid "Hidden"
msgstr "숨겨짐"
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr "검토 설정에 의해 숨겨졌습니다."
@@ -3509,18 +3856,17 @@ msgstr "숨겨진 리스트"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "숨기기"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "숨기기"
@@ -3529,38 +3875,40 @@ msgstr "숨기기"
msgid "Hide customization options"
msgstr "사용자 지정 옵션 숨기기"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "나에게서 게시물 숨기기"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "모두에게서 답글 숨기기"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "나에게서 답글 숨기기"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr "이 카드 숨기기"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "이 게시물을 숨기시겠습니까?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "이 답글을 숨기시겠습니까?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "인기 주제 숨기기"
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "인기 주제를 숨기시겠습니까?"
@@ -3569,10 +3917,15 @@ msgstr "인기 주제를 숨기시겠습니까?"
msgid "Hide trending videos?"
msgstr "인기 동영상을 숨기시겠습니까?"
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "사용자 리스트 숨기기"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr "인증 배지 숨기기"
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "피드 서버에서 잘못된 응답을 보냈습니다. 피드 소유
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "이 피드를 찾는 데 문제가 있습니다. 피드가 삭제되었을 수 있습니다."
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "이 데이터를 불러오는 데 문제가 있는 것 같습니다. 자세한 내용은 아래를 참조하세요. 이 문제가 지속되면 문의해 주세요."
@@ -3610,15 +3963,15 @@ msgstr "검토 서비스를 불러올 수 없습니다."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "잠깐! 동영상에 대한 접근 권한이 점차적으로 제공되고 있지만 아직은 기다려야 합니다. 나중에 다시 확인해 주세요!"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "홈"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "호스트:"
@@ -3627,34 +3980,33 @@ msgstr "호스트:"
msgid "Hosting provider"
msgstr "호스팅 제공자"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr "인기"
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "인기순"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "이 링크를 어떻게 여시겠습니까?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "코드를 가지고 있습니다"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "코드를 가지고 있습니다"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "인증 코드를 가지고 있습니다"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "내 도메인을 가지고 있습니다"
@@ -3667,22 +4019,30 @@ msgstr "확인"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "대체 텍스트가 긴 경우 대체 텍스트 확장 상태를 전환합니다"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "이 리스트를 삭제하면 다시 복구할 수 없습니다."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "자체 도메인이 있는 경우 이를 핸들로 사용할 수 있으며, 이를 통해 본인임을 다른 사람들에게 알릴 수 있습니다. <0>더 알아보기0>"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr "이메일을 변경해야 하는 경우 <0>이곳을 클릭하세요0>."
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "이 게시물을 삭제하면 다시 복구할 수 없습니다."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr "이메일 주소를 변경하면 이메일 2단계 인증이 비활성화됩니다."
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "비밀번호를 변경하고 싶다면 본인 계정임을 확인할 수 있는 코드를 보내 드립니다."
@@ -3704,9 +4064,22 @@ msgstr "불법 및 긴급 사항"
msgid "Image"
msgstr "이미지"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "이미지를 사진 보관함에 저장했습니다"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr "이미지 캐시를 지웠습니다"
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr "이미지 캐시를 지우고 {0}를 확보했습니다"
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr "이미지를 저장했습니다"
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr "사진 보관함에 대한 접근 권한이 부여되지 않으면 이미지를 저장할 수 없습니다."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,13 +4097,13 @@ msgid "Inappropriate messages or explicit links"
msgstr "부적절한 메시지 또는 노골적인 링크"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr "수신함 제로!"
#: src/screens/Login/LoginForm.tsx:164
msgid "Incorrect username or password"
-msgstr "잘못된 사용자 이름 또는 비밀번호"
+msgstr "사용자 이름 또는 비밀번호가 올바르지 않습니다"
#: src/screens/Login/SetNewPasswordForm.tsx:131
msgid "Input code sent to your email for password reset"
@@ -3752,15 +4125,11 @@ msgstr "계정을 삭제하기 위해 비밀번호를 입력합니다"
msgid "Input the code which has been emailed to you"
msgstr "이메일로 전송된 코드를 입력합니다"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "가입 시 사용한 사용자 이름 또는 이메일 주소를 입력합니다"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "상호작용 제한됨"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr "상호작용 설정"
@@ -3769,11 +4138,11 @@ msgstr "상호작용 설정"
msgid "Invalid 2FA confirmation code."
msgstr "잘못된 2단계 인증 코드입니다."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "잘못된 핸들입니다. 다른 핸들을 사용하세요."
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "유효하지 않거나 지원되지 않는 게시물 기록"
@@ -3789,11 +4158,11 @@ msgstr "잘못된 인증 코드"
msgid "Invite a Friend"
msgstr "친구 초대하기"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "초대 코드"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "초대 코드가 올바르지 않습니다. 코드를 올바르게 입력했는지 확인한 후 다시 시도해 주세요."
@@ -3805,7 +4174,7 @@ msgstr "초대 코드: {0}개 사용 가능"
msgid "Invite codes: 1 available"
msgstr "초대 코드: 1개 사용 가능"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "이 스타터 팩을 사용할 사람들을 초대하세요!"
@@ -3817,7 +4186,7 @@ msgstr "친구를 초대하여 좋아하는 피드와 사람들을 팔로우할
msgid "Invites, but personal"
msgstr "개인적인 초대"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "올바른 주소입니다"
@@ -3825,19 +4194,19 @@ msgstr "올바른 주소입니다"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "아직은 나밖에 없습니다. 위에서 검색하여 스타터 팩에 더 많은 사람을 추가하세요."
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "작업 ID: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "채용"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "Bluesky 가입하기"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "작성자가 라벨 지정함."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "라벨"
@@ -3868,7 +4237,7 @@ msgstr "라벨"
msgid "Labels added"
msgstr "라벨 추가됨"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "라벨은 사용자 및 콘텐츠에 대한 주석입니다. 네트워크를 숨기고, 경고하고, 분류하는 데 사용할 수 있습니다."
@@ -3884,13 +4253,13 @@ msgstr "내 콘텐츠의 라벨"
msgid "Language selection"
msgstr "언어 선택"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "언어 설정"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "언어"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "큼"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "최신"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "더 알아보기"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr "더 알아보기"
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "더 알아보기"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "Bluesky에 대해 더 알아보기"
@@ -3933,6 +4311,11 @@ msgstr "이 콘텐츠에 적용된 검토 설정에 대해 자세히 알아보
msgid "Learn more about this warning"
msgstr "이 경고에 대해 더 알아보기"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr "Bluesky의 인증에 대해 더 알아보기"
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "Bluesky 떠나기"
msgid "left to go."
msgstr "명 남았습니다."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "직접 선택하기"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "밝음"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr "좋아요"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "좋아요 ({0, plural, other {#개}})"
@@ -4013,17 +4397,16 @@ msgstr "10개 게시물에 좋아요 누르기"
msgid "Like 10 posts to train the Discover feed"
msgstr "10개 게시물에 좋아요를 눌러 Discover 피드를 훈련시키세요"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "이 피드에 좋아요 표시"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr "이 라벨러에 좋아요 표시"
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "좋아요 표시한 사용자"
@@ -4033,40 +4416,40 @@ msgstr "좋아요 표시한 사용자"
msgid "Liked By"
msgstr "좋아요 표시한 사용자"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "{0, plural, other {#명}}의 사용자가 좋아함"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "{likeCount, plural, other {#명}}의 사용자가 좋아함"
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "좋아요"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "이 게시물을 좋아요 표시합니다"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr "일반"
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "리스트"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "리스트 아바타"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
msgstr "리스트를 차단했습니다"
@@ -4084,7 +4467,7 @@ msgstr "<0/> 님의 리스트"
msgid "List by you"
msgstr "내 리스트"
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
msgstr "리스트를 삭제했습니다"
@@ -4093,35 +4476,35 @@ msgstr "리스트를 삭제했습니다"
msgid "List has been hidden"
msgstr "리스트 숨겨짐"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "리스트 숨겨짐"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
msgstr "리스트를 뮤트했습니다"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "리스트 이름"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
msgstr "리스트를 차단 해제했습니다"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
msgstr "리스트를 언뮤트했습니다"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "리스트"
@@ -4129,34 +4512,47 @@ msgstr "리스트"
msgid "Lists blocking this user:"
msgstr "이 사용자를 차단한 리스트:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr "라이브"
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr "라이브 기능은 베타 테스트 중입니다"
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr "라이브 링크"
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "더 불러오기"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "추천 피드 더 불러오기"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "추천 팔로우 더 불러오기"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "새 알림 불러오기"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "새 게시물 불러오기"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "불러오는 중…"
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "로그"
@@ -4164,12 +4560,12 @@ msgstr "로그"
msgid "Logged-out visibility"
msgstr "로그아웃 표시"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr "@sawaratsuki.bsky.social 님의 로고"
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "<0>@sawaratsuki.bsky.social0> 님의 로고"
@@ -4193,7 +4589,11 @@ msgstr "모든 피드를 고정 해제했군요. 하지만 걱정하지 마세
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "팔로우 중 피드가 누락된 것 같습니다. <0>이곳을 클릭해 하나 추가하세요.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr "계정의 이메일 설정 조정하기"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "나를 위해 만들기"
@@ -4201,18 +4601,22 @@ msgstr "나를 위해 만들기"
msgid "Make sure this is where you intend to go!"
msgstr "이곳이 당신이 가고자 하는 곳인지 확인하세요!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "저장한 피드 관리"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr "인증 설정 관리"
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "뮤트한 단어 및 태그 관리"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr "모두 읽음으로 표시"
@@ -4221,16 +4625,23 @@ msgstr "모두 읽음으로 표시"
msgid "Mark as read"
msgstr "읽음으로 표시"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr "모두 읽음으로 표시했습니다"
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr "나중에 하기"
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "미디어"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "일부 사용자에게 불쾌감을 주거나 부적절할 수 있는 미디어."
@@ -4246,23 +4657,27 @@ msgstr "멘션한 사용자"
msgid "Mentions"
msgstr "멘션"
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "메뉴"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "{0} 님에게 메시지 보내기"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "메시지를 삭제했습니다"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "메시지 삭제됨"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr "@{0} 님이 보낸 메시지: {1}"
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "서버에서 보낸 메시지: {0}"
@@ -4276,7 +4691,11 @@ msgstr "메시지 입력 필드"
msgid "Message is too long"
msgstr "메시지가 너무 깁니다"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr "메시지 옵션"
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "메시지"
@@ -4295,10 +4714,10 @@ msgstr "오해의 소지가 있는 계정"
msgid "Misleading Post"
msgstr "오해의 소지가 있는 게시물"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "검토"
@@ -4320,22 +4739,22 @@ msgstr "<0/> 님의 검토 리스트"
msgid "Moderation list by you"
msgstr "내 검토 리스트"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
msgstr "검토 리스트를 생성했습니다"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
msgstr "검토 리스트를 업데이트했습니다"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "검토 리스트"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "검토 리스트"
@@ -4343,11 +4762,11 @@ msgstr "검토 리스트"
msgid "moderation settings"
msgstr "검토 설정"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "검토 상태"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "검토 도구"
@@ -4356,7 +4775,7 @@ msgstr "검토 도구"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "검토자가 콘텐츠에 일반 경고를 설정했습니다."
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "더 보기"
@@ -4365,9 +4784,9 @@ msgstr "더 보기"
msgid "More feeds"
msgstr "피드 더 보기"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "옵션 더 보기"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "좋아요 많은 순"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "좋아요 많은 순"
@@ -4400,14 +4819,14 @@ msgstr "음소거"
msgid "Mute {tag}"
msgstr "{tag} 뮤트"
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "계정 뮤트"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "계정 뮤트"
@@ -4420,11 +4839,11 @@ msgstr "대화 뮤트"
msgid "Mute in:"
msgstr "뮤트 범위:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "리스트 뮤트"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "이 계정들을 뮤트하시겠습니까?"
@@ -4452,26 +4871,26 @@ msgstr "태그에서만 이 단어 뮤트하기"
msgid "Mute this word until you unmute it"
msgstr "뮤트를 해제할 때까지 이 단어 뮤트하기"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "스레드 뮤트"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "단어 및 태그 뮤트"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "뮤트한 계정"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "뮤트한 계정"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "계정을 뮤트하면 피드와 알림에서 해당 계정의 게시물이 사라집니다. 뮤트 목록은 완전히 비공개로 유지됩니다."
@@ -4479,11 +4898,11 @@ msgstr "계정을 뮤트하면 피드와 알림에서 해당 계정의 게시물
msgid "Muted by \"{0}\""
msgstr "\"{0}\"에 의해 뮤트됨"
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "뮤트한 단어 및 태그"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "뮤트 목록은 비공개입니다. 뮤트한 계정은 나와 상호작용할 수 있지만 해당 계정의 게시물을 보거나 해당 계정으로부터 알림을 받을 수 없습니다."
@@ -4492,15 +4911,15 @@ msgstr "뮤트 목록은 비공개입니다. 뮤트한 계정은 나와 상호
msgid "My Birthday"
msgstr "내 생년월일"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "내 피드"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "이름"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "이름을 입력하세요"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "자연"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "{0}(으)로 이동"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr "스타터 팩으로 이동하기"
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "다음 화면으로 이동합니다"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "내 프로필로 이동합니다"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
-msgstr "이메일을 변경하시겠어요?"
+msgstr "이메일을 변경해야 하나요?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "저작권 위반을 신고해야 하나요?"
@@ -4547,30 +4971,43 @@ msgstr "저작권 위반을 신고해야 하나요?"
msgid "Never lose access to your followers or data."
msgstr "팔로워 또는 데이터에 대한 접근 권한을 잃지 않습니다."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "취소하고 내 핸들 만들기"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "신규"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "새로 만들기"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "새 대화"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr "새 이메일 주소"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr "새로운 기능"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "새 핸들"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr "새 리스트"
@@ -4578,7 +5015,7 @@ msgstr "새 리스트"
msgid "New messages"
msgstr "새 메시지"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "새 검토 리스트"
@@ -4590,12 +5027,12 @@ msgstr "새 비밀번호"
msgid "New Password"
msgstr "새 비밀번호"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "새 게시물"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "새 게시물"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "새 게시물"
@@ -4613,19 +5050,20 @@ msgstr "새 게시물"
msgid "New user info dialog"
msgstr "새 사용자 정보 대화 상자"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "새 사용자 리스트"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "새로운 순"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "뉴스"
@@ -4655,11 +5093,15 @@ msgstr "다음 이미지"
msgid "No app passwords yet"
msgstr "앱 비밀번호 없음"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "DNS 패널 없음"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr "종료 시간 미정"
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "인기 GIF를 찾을 수 없습니다. Tenor에 문제가 있을 수 있습니다."
@@ -4668,21 +5110,25 @@ msgstr "인기 GIF를 찾을 수 없습니다. Tenor에 문제가 있을 수 있
msgid "No feeds found. Try searching for something else."
msgstr "피드를 찾을 수 없습니다. 다른 피드를 검색해 보세요."
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr "이미지 없음"
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "아직 좋아요 없음"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "더 이상 {0} 님을 팔로우하지 않음"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
-msgstr "{MAX_SERVICE_HANDLE_LENGTH}자 이하"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr "{MAX_SERVICE_HANDLE_LENGTH, plural, other {#자}} 이하"
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "아직 메시지가 없습니다"
@@ -4711,31 +5157,38 @@ msgstr "아직 인용 없음"
msgid "No reposts yet"
msgstr "아직 재게시물 없음"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "결과 없음"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "결과 없음"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr "\"{0}\"에 대한 결과가 없습니다."
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "결과를 찾을 수 없음"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "\"{query}\"에 대한 결과를 찾을 수 없습니다"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "{query}에 대한 결과를 찾을 수 없습니다"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr "결과가 없습니다."
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "\"{search}\"에 대한 검색 결과를 찾을 수 없습니다."
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "없음"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "아직 아무도 좋아요를 누르지 않았습니다. 첫 번째가 되어 보세요!"
@@ -4775,19 +5227,15 @@ msgstr "선정적이지 않은 나체"
msgid "Not followed by anyone you're following"
msgstr "내가 팔로우하는 사람이 팔로우하지 않음"
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "찾을 수 없음"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "나중에 하기"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "공유 관련 참고 사항"
@@ -4795,7 +5243,7 @@ msgstr "공유 관련 참고 사항"
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "참고: Bluesky는 개방형 공개 네트워크입니다. 이 설정은 Bluesky 앱과 웹사이트에서만 내 콘텐츠가 표시되는 것을 제한하며, 다른 앱에서는 이 설정을 준수하지 않을 수 있습니다. 다른 앱과 웹사이트에서는 로그아웃한 사용자에게 내 콘텐츠가 계속 표시될 수 있습니다."
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "빈 페이지"
@@ -4803,7 +5251,7 @@ msgstr "빈 페이지"
msgid "Notification filters"
msgstr "알림 필터"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "알림 설정"
@@ -4820,11 +5268,11 @@ msgstr "알림음"
msgid "Notification Sounds"
msgstr "알림음"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "알림"
@@ -4832,12 +5280,12 @@ msgstr "알림"
msgid "now"
msgstr "지금"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "지금"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "나체"
@@ -4859,21 +5307,23 @@ msgstr "이런!"
msgid "Oh no! Something went wrong."
msgstr "이런! 뭔가 잘못되었습니다."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "확인"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "확인"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "오래된 순"
@@ -4881,19 +5331,19 @@ msgstr "오래된 순"
msgid "on<0><1/><2><3/>2>0>"
msgstr "<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "온보딩 재설정"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "하나 이상의 GIF에 대체 텍스트가 누락되었습니다."
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "하나 이상의 이미지에 대체 텍스트가 누락되었습니다."
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "하나 이상의 동영상에 대체 텍스트가 누락되었습니다."
@@ -4905,11 +5355,11 @@ msgstr ".jpg 및 .png 파일만 지원됩니다"
msgid "Only {0} can reply."
msgstr "{0}만 답글을 달 수 있습니다."
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "문자, 숫자, 하이픈만 포함"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "이미지 파일만 지원됩니다"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "이런, 뭔가 잘못되었습니다!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "이런!"
@@ -4935,67 +5385,80 @@ msgstr "이런!"
msgid "Open"
msgstr "공개성"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "{name} 님의 프로필 단축 메뉴 열기"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "아바타 생성기 열기"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "대화 옵션 열기"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr "서랍 메뉴 열기"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "이모티콘 선택기 열기"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr "피드 정보 화면 열기"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "피드 옵션 메뉴 열기"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr "전체 이모티콘 목록 열기"
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "{niceUrl} 링크 열기"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "메시지 옵션 열기"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "검토 디버그 페이지 열기"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "뮤트한 단어 및 태그 설정 열기"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr "팩 열기"
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "게시물 옵션 메뉴 열기"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr "프로필 열기"
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr "공유 메뉴 열기"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "스타터 팩 메뉴 열기"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "스토리북 페이지 열기"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "시스템 로그 열기"
@@ -5015,19 +5478,19 @@ msgstr "이 스레드에 답글을 달 수 있는 사람을 선택하는 대화
msgid "Opens additional details for a debug entry"
msgstr "디버그 항목에 대한 추가 세부 정보를 엽니다"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
msgstr "대체 텍스트 대화 상자를 엽니다"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "기기에서 카메라를 엽니다"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
msgstr "자막 및 대체 텍스트 대화 상자를 엽니다"
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr "핸들 변경 대화 상자를 엽니다"
@@ -5039,7 +5502,7 @@ msgstr "답글 작성 상자를 엽니다"
msgid "Opens device photo gallery"
msgstr "기기의 사진 갤러리를 엽니다"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr "이모티콘 선택기를 엽니다"
@@ -5057,7 +5520,7 @@ msgstr "존재하는 Bluesky 계정에 로그인하는 화면을 엽니다"
msgid "Opens GIF select dialog"
msgstr "GIF 선택 대화 상자를 엽니다"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr "브라우저에서 지원 문서를 엽니다"
@@ -5065,6 +5528,10 @@ msgstr "브라우저에서 지원 문서를 엽니다"
msgid "Opens list of invite codes"
msgstr "초대 코드 목록을 엽니다"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr "라이브 상태 대화 상자를 엽니다"
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "비밀번호 재설정 양식을 엽니다"
@@ -5073,12 +5540,12 @@ msgstr "비밀번호 재설정 양식을 엽니다"
msgid "Opens the linked website"
msgstr "연결된 웹사이트를 엽니다"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "이 프로필을 엽니다"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "동영상 선택기를 엽니다"
@@ -5121,11 +5588,11 @@ msgstr "OTA 상태: 사용할 수 없음"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "기타"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "다른 계정"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "페이지를 찾을 수 없음"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "일시 정지"
msgid "Pause video"
msgstr "동영상 일시 정지"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "사람들"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "@{0} 님이 팔로우하는 사람들"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "@{0} 님을 팔로우하는 사람들"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "사진 보관함에 접근할 수 있는 권한이 필요합니다."
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "사진 보관함에 접근할 수 있는 권한이 거부되었습니다. 시스템 설정에서 활성화하세요."
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr "사진 보관함에 대한 접근 권한이 거부되었습니다. 시스템 설정에서 활성화해 주세요."
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "반려동물"
msgid "Photography"
msgstr "사진"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "성인용 사진."
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr "고정"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr "피드 고정"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
-msgstr "쉽게 접근할 수 있도록 인기 동영상 피드를 홈 화면에 고정합니다"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
+msgstr "피드 고정"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "홈에 고정"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "홈에 고정"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "내 프로필에 고정"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "고정됨"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr "{0}을(를) 홈에 고정했습니다"
@@ -5263,7 +5722,7 @@ msgstr "{0}을(를) 홈에 고정했습니다"
msgid "Pinned Feeds"
msgstr "고정한 피드"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "내 피드에 고정했습니다"
@@ -5302,24 +5761,28 @@ msgstr "GIF를 재생합니다"
msgid "Plays the video"
msgstr "동영상을 재생합니다"
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr "게시하는 미디어에 해당하는 콘텐츠 경고 라벨을 추가해 주세요."
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "핸들을 입력하세요."
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "비밀번호를 입력하세요."
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr "방금 보낸 이메일에 있는 링크를 클릭하여 새 이메일 주소를 인증하세요. 이는 Bluesky의 모든 기능을 계속해서 즐길 수 있도록 하기 위한 중요한 단계입니다."
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "인증 캡차를 완료해 주세요."
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "이메일을 변경하기 전에 이메일을 확인해 주세요. 이는 이메일 변경 도구가 추가되는 동안 일시적으로 요구되는 사항이며 곧 제거될 예정입니다."
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr "이메일 주소를 정확하게 입력했는지 다시 한 번 확인해 주세요."
@@ -5335,19 +5798,41 @@ msgstr "비밀번호를 입력하세요. 비밀번호는 8자 이상이어야
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "이 앱 비밀번호에 대해 고유한 이름을 입력하거나 무작위로 생성된 이름을 사용하세요."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr "올바른 코드를 입력해 주세요."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr "올바른 이메일 주소를 입력해 주세요."
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "뮤트할 단어나 태그 또는 문구를 입력하세요"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr "아래에 <0>{0}0>(으)로 전송된 코드를 입력하세요."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr "기존 이메일 주소로 전송된 보안 코드를 입력하세요."
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "이메일을 입력하세요."
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "초대 코드를 입력하세요."
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr "새 이메일 주소를 입력하세요."
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr "비밀번호를 입력하세요"
@@ -5381,24 +5866,25 @@ msgstr "신고 이유를 선택하세요"
msgid "Please sign in as @{0}"
msgstr "@{0}(으)로 로그인하세요"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr "이메일을 인증해 주세요"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "이메일 인증하기"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "정치"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr "네트워크에서 인기 있는 동영상을 확인하세요."
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "음란물"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "게시하기"
@@ -5408,23 +5894,23 @@ msgctxt "description"
msgid "Post"
msgstr "게시물"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "모두 게시하기"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "{0} 님의 게시물"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "@{0} 님의 게시물"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
msgstr "게시물을 삭제했습니다"
@@ -5433,7 +5919,7 @@ msgstr "게시물을 삭제했습니다"
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "게시물을 업로드하지 못했습니다. 인터넷 연결을 확인한 후 다시 시도해 주세요."
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr "게시물 삭제됨"
@@ -5455,7 +5941,7 @@ msgstr "내가 숨긴 게시물"
msgid "Post interaction settings"
msgstr "게시물 상호작용 설정"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr "게시물 상호작용 설정"
@@ -5483,8 +5969,9 @@ msgctxt "toast"
msgid "Post unpinned"
msgstr "게시물을 고정 해제했습니다"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "게시물"
@@ -5524,7 +6011,7 @@ msgstr "내가 팔로우하는 이 계정의 팔로워를 보려면 누르세요
msgid "Previous image"
msgstr "이전 이미지"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "주 언어"
@@ -5537,31 +6024,31 @@ msgstr "내 팔로우 먼저 표시"
msgid "Priority notifications"
msgstr "우선순위 알림"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "개인정보"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "개인정보 및 보안"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "개인정보 및 보안"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "개인정보 처리방침"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "동영상 처리 중…"
@@ -5570,20 +6057,20 @@ msgstr "동영상 처리 중…"
msgid "Processing..."
msgstr "처리 중…"
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "프로필"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "프로필"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
msgstr "프로필을 업데이트했습니다"
@@ -5600,6 +6087,26 @@ msgstr "일괄 뮤트하거나 차단할 수 있는 공개적이고 공유 가
msgid "Public, sharable lists which can be used to drive feeds."
msgstr "피드를 탐색하는 데 사용할 수 있는 공개적이고 공유 가능한 목록입니다."
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr "게시물 등록하기"
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr "게시물 등록하기"
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr "답글 등록하기"
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr "답글 등록하기"
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "QR 코드를 클립보드에 복사했습니다."
@@ -5612,25 +6119,25 @@ msgstr "QR 코드를 다운로드했습니다."
msgid "QR code saved to your camera roll!"
msgstr "QR 코드를 사진 보관함에 저장했습니다."
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "게시물 인용"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "인용을 다시 연결했습니다"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "인용을 성공적으로 해제했습니다"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "게시물 인용 비활성화됨"
@@ -5642,39 +6149,48 @@ msgstr "인용 설정"
msgid "Quotes"
msgstr "인용"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "이 게시물의 인용"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "무작위"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "짧은 시간에 핸들 변경을 너무 많이 시도했습니다. 잠시 기다렸다가 다시 시도해 주세요."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "인용 다시 연결"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr "{emoji}(으)로 반응하기"
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "계정 재활성화"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr "블로그 게시물 읽기"
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr "접기"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr "펼치기"
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "Bluesky 블로그 읽기"
@@ -5697,11 +6213,11 @@ msgstr "이의신청 이유"
msgid "Reason:"
msgstr "이유:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "최근 검색"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr "추천"
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "다시 연결"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr "거절"
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr "대화 요청 거절하기"
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "대화 다시 불러오기"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "제거"
msgid "Remove {displayName} from starter pack"
msgstr "스타터 팩에서 {displayName} 제거"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr "{historyItem} 제거"
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "계정 제거"
@@ -5752,13 +6268,13 @@ msgstr "계정 제거"
msgid "Remove attachment"
msgstr "첨부 제거"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "아바타 제거"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "배너 제거"
@@ -5776,24 +6292,25 @@ msgstr "피드 제거"
msgid "Remove feed?"
msgstr "피드를 제거하시겠습니까?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "내 피드에서 제거"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "빠른 액세스에서 제거하시겠습니까?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "저장한 피드에서 제거"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr "내 피드에서 제거하시겠습니까?"
@@ -5802,11 +6319,16 @@ msgstr "내 피드에서 제거하시겠습니까?"
msgid "Remove image"
msgstr "이미지 제거"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr "라이브 상태 제거"
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "목록에서 뮤트한 단어 제거"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "프로필 제거"
@@ -5814,12 +6336,12 @@ msgstr "프로필 제거"
msgid "Remove quote"
msgstr "인용 제거"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "재게시 취소"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "자막 파일 제거"
@@ -5827,6 +6349,21 @@ msgstr "자막 파일 제거"
msgid "Remove this feed from your saved feeds"
msgstr "저장한 피드에서 이 피드를 제거합니다"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr "리스트에서 사용자 제거"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr "인증 취소"
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr "이 계정을 인증 취소하시겠습니까?"
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "작성자가 제거함"
@@ -5835,7 +6372,7 @@ msgstr "작성자가 제거함"
msgid "Removed by you"
msgstr "내가 제거함"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "리스트에서 제거했습니다"
@@ -5845,19 +6382,18 @@ msgid "Removed from my feeds"
msgstr "내 피드에서 제거했습니다"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "저장한 피드에서 제거했습니다"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "내 피드에서 제거했습니다"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
-msgstr "검색 기록에서 프로필을 제거합니다"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr "인증을 취소했습니다"
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
msgid "Removes quoted post"
@@ -5868,7 +6404,7 @@ msgstr "인용된 게시물을 제거합니다"
msgid "Replace with Discover"
msgstr "Discover로 교체"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "답글"
@@ -5880,12 +6416,13 @@ msgstr "답글 비활성화됨"
msgid "Replies to this post are disabled."
msgstr "이 게시물에 대한 답글은 비활성화되어 있습니다."
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "답글 게시하기"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "답글 ({0, plural, other {#개}})"
@@ -5907,86 +6444,86 @@ msgstr "답글 설정"
msgid "Reply settings are chosen by the author of the thread"
msgstr "답글 설정은 스레드 작성자가 선택합니다"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr "답글 정렬"
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "<0><1/>0> 님에게 보내는 답글"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "차단된 게시물에 보내는 답글"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "게시물에 보내는 답글"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "나에게 보내는 답글"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
msgstr "답글 표시 여부를 업데이트했습니다"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "답글을 성공적으로 숨겼습니다"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "신고"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "계정 신고"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "대화 신고"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "신고 대화 상자"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "피드 신고"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
msgstr "리스트 신고"
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "메시지 신고"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "게시물 신고"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "스타터 팩 신고"
@@ -6030,25 +6567,26 @@ msgstr "이 스타터 팩 신고하기"
msgid "Report this user"
msgstr "이 사용자 신고하기"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "재게시"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "재게시"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "재게시 ({0, plural, other {#개}})"
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "재게시 또는 게시물 인용"
@@ -6056,26 +6594,26 @@ msgstr "재게시 또는 게시물 인용"
msgid "Reposted By"
msgstr "재게시한 사용자"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "{0} 님이 재게시함"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "<0><1/>0> 님이 재게시함"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "내가 재게시함"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "이 게시물의 재게시물"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
msgstr "변경 요청"
#: src/view/com/modals/ChangePassword.tsx:253
@@ -6088,11 +6626,11 @@ msgstr "코드 요청"
msgid "Require alt text before posting"
msgstr "게시하기 전 대체 텍스트 필수"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr "계정에 로그인할 때 이메일 코드를 요구합니다."
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "이 제공자에서 필수"
@@ -6100,13 +6638,19 @@ msgstr "이 제공자에서 필수"
msgid "Required in your region"
msgstr "내 지역에서 필수"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr "다시 보내기"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "이메일 다시 전송"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "이메일 다시 전송"
@@ -6123,8 +6667,8 @@ msgstr "재설정 코드"
msgid "Reset Code"
msgstr "재설정 코드"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "온보딩 상태 초기화"
@@ -6141,16 +6685,16 @@ msgstr "로그인을 다시 시도합니다"
msgid "Retries the last action, which errored out"
msgstr "오류가 발생한 마지막 작업을 다시 시도합니다"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "오류가 발생한 마지막 작업을 다시 시도합니다"
msgid "Retry"
msgstr "다시 시도"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr "신고 옵션 불러오기 다시 시도"
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "이전 페이지로 돌아갑니다"
@@ -6175,11 +6719,11 @@ msgstr "이전 페이지로 돌아갑니다"
msgid "Returns to home page"
msgstr "홈 페이지로 돌아갑니다"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "이전 페이지로 돌아갑니다"
@@ -6190,24 +6734,26 @@ msgstr "이전 단계로 돌아갑니다"
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "저장"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "저장"
@@ -6221,12 +6767,12 @@ msgstr "생년월일 저장"
msgid "Save changes"
msgstr "변경 사항 저장"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "변경 사항 저장"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "이미지 저장"
@@ -6234,16 +6780,16 @@ msgstr "이미지 저장"
msgid "Save image crop"
msgstr "이미지 자르기 저장"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "새 핸들 저장"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "QR 코드 저장"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "내 피드에 저장"
@@ -6251,16 +6797,12 @@ msgstr "내 피드에 저장"
msgid "Saved Feeds"
msgstr "저장한 피드"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "사진 보관함에 저장했습니다"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "내 피드에 저장했습니다"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "내 프로필의 모든 변경 사항을 저장합니다"
@@ -6270,8 +6812,8 @@ msgstr "이미지 자르기 설정을 저장합니다"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "인사해 보세요!"
@@ -6280,45 +6822,42 @@ msgstr "인사해 보세요!"
msgid "Science"
msgstr "과학"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "맨 위로 스크롤"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "검색"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "@{0} 님의 게시물 검색"
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr "이름 또는 관심 주제로 검색"
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr "피드 검색"
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr "\"{interestsDisplayName}\" 검색{activeText}"
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "\"{query}\"에 대한 검색 결과"
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "\"{searchText}\"에 대한 검색 결과"
@@ -6326,29 +6865,33 @@ msgstr "\"{searchText}\"에 대한 검색 결과"
msgid "Search for feeds that you want to suggest to others."
msgstr "다른 사람에게 추천할 피드를 검색하세요."
-#: src/view/screens/Search/Search.tsx:875
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
+msgstr "더 많은 계정 검색하기"
+
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr "더 많은 피드 검색하기"
+
+#: src/screens/Search/Shell.tsx:334
msgid "Search for posts, users, or feeds"
msgstr "게시물, 사용자 또는 피드 검색"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "사용자 검색하기"
-
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "GIF 검색하기"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr "내 게시물 검색"
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr "게시물 검색"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "프로필 검색"
@@ -6356,16 +6899,20 @@ msgstr "프로필 검색"
msgid "Search Tenor"
msgstr "Tenor 검색"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr "검색..."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr "프로필을 검색합니다"
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr "보안 단계 필요"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "보안 단계 필요"
@@ -6385,7 +6932,7 @@ msgstr "#{tag} 게시물 보기"
msgid "See #{tag} posts by user"
msgstr "사용자의 #{tag} 게시물 보기"
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Bluesky에 지원하기"
@@ -6405,6 +6952,10 @@ msgstr "색상 선택"
msgid "Select account"
msgstr "계정 선택"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr "앱 언어를 선택하세요"
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "아바타 선택"
@@ -6413,10 +6964,22 @@ msgstr "아바타 선택"
msgid "Select an emoji"
msgstr "이모티콘 선택"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr "옵션 선택"
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr "앱 언어 선택"
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "콘텐츠 언어 선택"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr "시간 선택"
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "기존 계정에서 선택하기"
@@ -6433,15 +6996,15 @@ msgstr "GIF \"{0}\" 선택"
msgid "Select how long to mute this word for."
msgstr "이 단어를 음소거할 기간 선택하기"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "언어 선택…"
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "언어 선택"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr "검토 서비스 선택"
@@ -6449,6 +7012,10 @@ msgstr "검토 서비스 선택"
msgid "Select moderator"
msgstr "검토자 선택"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr "주 언어 선택"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "{emojiName} 이모티콘을 아바타로 선택하기"
msgid "Select the moderation service(s) to report to"
msgstr "신고할 검토 서비스를 선택하세요."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "동영상 선택"
@@ -6470,23 +7037,24 @@ msgstr "동영상 선택"
msgid "Select what content this mute word should apply to."
msgstr "이 뮤트 단어를 적용할 콘텐츠 선택하기"
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr "앱의 사용자 인터페이스에 사용할 언어를 선택합니다."
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "구독하는 피드에 포함할 언어를 선택합니다. 선택하지 않으면 모든 언어가 표시됩니다."
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "생년월일을 선택하세요"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "아래 옵션에서 관심 주제를 선택하세요"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "피드에서 번역을 위해 선호하는 언어를 선택합니다."
@@ -6498,19 +7066,17 @@ msgstr "옵션 {numItems}개 중 {0}번째를 선택합니다"
msgid "Send a neat website!"
msgstr "멋진 웹사이트 링크를 보내 보세요!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
msgstr "인증 메일 보내기"
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "인증 이메일 보내기"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "인증 이메일 보내기"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "이메일 보내기"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "이메일 보내기"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "피드백 보내기"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "메시지 보내기"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr "{name} 님에게 게시물 보내기"
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "게시물을 다음으로 보내기"
@@ -6544,17 +7114,20 @@ msgstr "신고 보내기"
msgid "Send report to {0}"
msgstr "{0}에게 신고 보내기"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr "{title}에게 신고 보내기"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "인증 이메일 보내기"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "다이렉트 메시지로 보내기"
@@ -6570,7 +7143,7 @@ msgstr "서버 주소"
msgid "Set app icon to {0}"
msgstr "앱 아이콘을 {0}(으)로 설정"
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "생년월일 설정"
@@ -6586,10 +7159,10 @@ msgstr "계정 설정하기"
msgid "Sets email for password reset"
msgstr "비밀번호 재설정을 위한 이메일을 설정합니다"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "설정"
@@ -6598,7 +7171,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "설정을 저장했습니다"
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "성행위 또는 선정적인 나체."
@@ -6606,21 +7179,15 @@ msgstr "성행위 또는 선정적인 나체."
msgid "Sexually Suggestive"
msgstr "외설적"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "공유"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "공유"
@@ -6633,15 +7200,19 @@ msgstr "멋진 이야기를 전하세요!"
msgid "Share a fun fact!"
msgstr "재미있는 사실을 전하세요!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "무시하고 공유"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr "작성자 DID 공유"
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "링크 공유"
@@ -6650,32 +7221,46 @@ msgstr "링크 공유"
msgid "Share Link"
msgstr "링크 공유"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "링크 공유 대화 상자"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr "게시물 at:// URI 공유"
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "QR 코드 공유"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr "이 피드 공유하기"
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "이 스타터 팩 공유하기"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "이 스타터 팩을 공유하여 사람들이 Bluesky에서 커뮤니티에 참여할 수 있도록 도와주세요."
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr "공유..."
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "좋아하는 피드를 공유해 보세요!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "공유 설정 테스터"
@@ -6685,7 +7270,7 @@ msgstr "연결된 웹사이트를 공유합니다"
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "표시"
@@ -6696,8 +7281,8 @@ msgstr "대체 텍스트 표시"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "무시하고 표시"
@@ -6718,8 +7303,8 @@ msgstr "사용자 지정 옵션 표시"
msgid "Show hidden replies"
msgstr "숨겨진 답글 표시"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "이런 항목 덜 보기"
@@ -6727,14 +7312,14 @@ msgstr "이런 항목 덜 보기"
msgid "Show list anyway"
msgstr "무시하고 리스트 표시하기"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "더 보기"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "이런 항목 더 보기"
@@ -6752,7 +7337,7 @@ msgstr "인용 게시물 표시"
msgid "Show replies"
msgstr "답글 표시"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr "답글 표시 형식"
@@ -6764,8 +7349,8 @@ msgstr "스레드로 답글 표시"
msgid "Show replies by people you follow before all other replies"
msgstr "내가 팔로우하는 사람들의 답글을 다른 모든 답글보다 먼저 표시"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "모두에게 답글 표시"
@@ -6787,11 +7372,11 @@ msgstr "경고 표시"
msgid "Show warning and filter from feeds"
msgstr "경고 표시 및 피드에서 필터링"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr "이 게시물이 언제 작성되었는지에 대한 정보를 표시합니다"
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr "전환할 수 있는 다른 계정을 표시합니다"
@@ -6809,8 +7394,8 @@ msgstr "콘텐츠를 표시합니다"
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr "콘텐츠를 표시합니다"
msgid "Sign in"
msgstr "로그인"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "{0}(으)로 로그인"
@@ -6826,16 +7411,16 @@ msgstr "{0}(으)로 로그인"
msgid "Sign in as..."
msgstr "로그인"
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr "로그인 또는 계정 만들기"
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "대화에 참여하려면 로그인하거나 계정을 만드세요!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "로그인 또는 가입"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "목록에 없는 계정으로 로그인"
@@ -6843,15 +7428,15 @@ msgstr "목록에 없는 계정으로 로그인"
msgid "Sign in to Bluesky or create a new account"
msgstr "Bluesky에 로그인하거나 새 계정 만들기"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "로그아웃"
@@ -6859,8 +7444,8 @@ msgstr "로그아웃"
msgid "Sign Out"
msgstr "로그아웃"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "로그아웃하시겠습니까?"
@@ -6874,11 +7459,6 @@ msgstr "로그인 필요"
msgid "Signed in as @{0}"
msgstr "@{0}(으)로 로그인했습니다"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "스타터 팩 없이 가입하기"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "비슷한 계정"
@@ -6896,12 +7476,21 @@ msgstr "이 단계 건너뛰기"
msgid "Smaller"
msgstr "작음"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr "알림을 끕니다"
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "소프트웨어 개발"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr "일부 인증이 유효하지 않습니다."
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "좋아할 만한 다른 피드"
@@ -6909,23 +7498,31 @@ msgstr "좋아할 만한 다른 피드"
msgid "Some people can reply"
msgstr "일부 사람들이 답글을 달 수 있음"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr "누가 {0}(으)로 반응함"
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr "누가 {1}에 {0}(으)로 반응함"
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "신고하려는 데이터에 문제가 있습니다. 지원에 문의하세요."
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "알 수 없는 오류가 발생했습니다"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요."
@@ -6934,16 +7531,16 @@ msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요.
msgid "Something went wrong!"
msgstr "문제가 발생했습니다!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr "문제가 발생했나요? 저희에게 알려주세요."
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr "죄송합니다. 세션이 만료되었습니다. 다시 로그인해 주세요."
@@ -6978,34 +7575,39 @@ msgstr "스팸, 과도한 멘션 또는 답글"
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "스포츠"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr "대화를 시작하면 여기에 표시됩니다."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "새 대화 시작하기"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr "사람 추가하기"
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr "사람들을 추가해 보세요!"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "{displayName} 님과 대화 시작하기"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "스타터 팩"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "{0} 님의 스타터 팩"
@@ -7013,38 +7615,39 @@ msgstr "{0} 님의 스타터 팩"
msgid "Starter pack by <0/>"
msgstr "<0/> 님의 스타터 팩"
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "내 스타터 팩"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "스타터 팩이 유효하지 않음"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "스타터 팩"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "스타터 팩을 사용하면 좋아하는 피드와 사람들을 친구들과 쉽게 공유할 수 있습니다."
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "상태 페이지"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "{1}단계 중 {0}단계"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "스토리지가 지워졌으며 지금 앱을 다시 시작해야 합니다."
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "스토리북"
@@ -7063,46 +7666,51 @@ msgstr "이의신청 제출"
msgid "Submit Appeal"
msgstr "이의신청 제출"
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr "신고 제출"
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "구독"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "이 라벨을 사용하려면 @{0}을(를) 구독하세요."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "라벨러 구독"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "이 라벨러 구독하기"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "이 리스트 구독하기"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "성공!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr "성공적으로 인증했습니다"
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
msgstr "추천 계정"
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "나를 위한 추천"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "외설적"
@@ -7116,16 +7724,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "일몰"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "지원"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "계정 전환"
@@ -7134,11 +7742,11 @@ msgstr "계정 전환"
msgid "Switch Account"
msgstr "계정 전환"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr "계정 전환"
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr "{0}(으)로 전환"
@@ -7149,9 +7757,9 @@ msgstr "{0}(으)로 전환"
msgid "System"
msgstr "시스템"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "시스템 로그"
@@ -7159,6 +7767,12 @@ msgstr "시스템 로그"
msgid "Tags only"
msgstr "태그만"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr "컨텍스트 메뉴를 닫습니다"
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "탭하여 닫기"
@@ -7184,7 +7798,7 @@ msgstr "기술"
msgid "Tell a joke!"
msgstr "농담해 보세요!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "본인에 대해 간단히 소개해 주세요"
@@ -7192,17 +7806,17 @@ msgstr "본인에 대해 간단히 소개해 주세요"
msgid "Tell us a little more"
msgstr "좀 더 자세히 알려주세요"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "이용약관"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "서비스 이용약관"
@@ -7230,7 +7844,11 @@ msgstr "텍스트 필드"
msgid "Text input field"
msgstr "텍스트 입력 필드"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr "피드백을 보내주셔서 감사합니다! 피드 운영자에게 전송되었습니다."
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "감사합니다! 이메일을 성공적으로 인증했습니다."
@@ -7242,7 +7860,7 @@ msgstr "감사합니다. 신고를 전송했습니다."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "이메일 주소를 성공적으로 인증했습니다. 이 대화 상자를 닫아도 됩니다."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "텍스트 파일 내용:"
@@ -7250,10 +7868,10 @@ msgstr "텍스트 파일 내용:"
msgid "That handle is already taken."
msgstr "이 핸들은 이미 사용 중입니다."
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "스타터 팩을 찾을 수 없습니다."
msgid "That's all, folks!"
msgstr "이상입니다, 여러분!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr "그게 다예요!"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "차단을 해제하면 이 계정이 나와 상호작용할 수 있게 됩니다."
@@ -7282,7 +7900,7 @@ msgstr "앱을 다시 시작합니다"
msgid "The author of this thread has hidden this reply."
msgstr "이 스레드의 작성자가 이 답글을 숨겼습니다."
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "Bluesky 웹 애플리케이션"
@@ -7302,6 +7920,10 @@ msgstr "Discover 피드"
msgid "The Discover feed now knows what you like"
msgstr "Discover 피드는 이제 당신이 무엇을 좋아하는지 알 테죠"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr "입력한 이메일 주소가 현재 이메일 주소와 동일합니다."
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "앱에서 더 나은 환경을 경험하세요. 지금 Bluesky를 다운로드하면 중단한 부분부터 다시 시작합니다."
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "개인정보 처리방침을 <0/>(으)로 이동했습니다"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "선택한 동영상이 50MB를 초과합니다."
+msgid "The selected video is larger than 100 MB."
+msgstr "선택한 동영상이 100MB를 초과합니다."
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "서버에 문제가 있는 것 같습니다. 잠시 후 다시 시도해 주세요."
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "이 스타터 팩은 유효하지 않습니다. 대신 이 스타터 팩을 삭제할 수 있습니다."
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr "컨텍스트 메뉴 제목"
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "지원 양식을 이동했습니다. 도움이 필요하다면 <0/>하거나 {HELP_DESK_URL}에 방문하여 문의해 주세요."
@@ -7367,15 +7994,15 @@ msgstr "계정 비활성화에는 시간 제한이 없으므로 언제든지 다
msgid "There was an issue connecting to Tenor."
msgstr "Tenor에 연결하는 동안 문제가 발생했습니다."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "서버에 연결하는 동안 문제가 발생했습니다"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "서버에 연결하는 동안 문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도해 주세요."
@@ -7388,11 +8015,12 @@ msgstr "서버에 연결하는 동안 문제가 발생했습니다"
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "알림을 가져오는 동안 문제가 발생했습니다. 다시 시도하려면 이곳을 탭하세요."
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "게시물을 가져오는 동안 문제가 발생했습니다. 다시 시도하려면 이곳을 탭하세요."
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "리스트를 가져오는 동안 문제가 발생했습니다. 다시 시도하려면 이곳을 탭하세요."
@@ -7400,12 +8028,12 @@ msgstr "리스트를 가져오는 동안 문제가 발생했습니다. 다시
msgid "There was an issue fetching your app passwords"
msgstr "앱 비밀번호를 가져오는 동안 문제가 발생했습니다"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "리스트를 가져오는 동안 문제가 발생했습니다. 다시 시도하려면 이곳을 탭하세요."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "내 서비스 정보를 가져오는 동안 문제가 발생했습니다"
@@ -7418,26 +8046,26 @@ msgstr "이 피드를 삭제하는 동안 문제가 발생했습니다. 인터
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "신고를 전송하는 동안 문제가 발생했습니다. 인터넷 연결을 확인해 주세요."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "피드를 업데이트하는 동안 문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도해 주세요."
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "문제가 발생했습니다! {0}"
@@ -7445,10 +8073,10 @@ msgstr "문제가 발생했습니다! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도해 주세요."
@@ -7469,6 +8097,14 @@ msgstr "이 설정은 팔로우 중 피드에만 적용됩니다."
msgid "This {screenDescription} has been flagged:"
msgstr "이 {screenDescription}에 다음 플래그가 지정되었습니다:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr "이 계정은 신뢰할 수 있는 출처에 의해 인증되었으므로 체크 표시가 있습니다."
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr "이 계정은 한 번 이상 인증을 시도했지만 현재는 인증되지 않았습니다."
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "이 계정의 프로필을 보려면 로그인해야 합니다."
@@ -7477,6 +8113,10 @@ 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/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr "이 작업은 언제든지 취소할 수 있습니다."
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "이 이의신청을 <0>{sourceName}0>에게 보냅니다."
@@ -7510,14 +8150,22 @@ msgstr "관련 사용자 중 한 명이 다른 사용자를 차단했기 때문
msgid "This content is not viewable without a Bluesky account."
msgstr "이 콘텐츠는 Bluesky 계정이 없으면 볼 수 없습니다."
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "이 대화는 삭제되었거나 비활성화된 계정과의 대화입니다. 옵션을 보려면 누르세요"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr "이 이메일은 이미 내 계정에 연결되어 있습니다."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "이 기능은 베타 버전입니다. 저장소 내보내기에 대한 자세한 내용은 <0>이 블로그 글0>에서 확인할 수 있습니다."
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr "앱 비밀번호를 사용하는 동안에는 이 기능을 사용할 수 없습니다. 기본 비밀번호로 로그인하세요."
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "앱 비밀번호를 사용하는 동안에는 이 기능을 사용할 수 없습니다. 기본 비밀번호로 로그인하세요."
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "이 피드는 비어 있습니다. 더 많은 사용자를 팔로우하거나 언어 설정을 조정해 보세요."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "이 피드는 비어 있습니다."
@@ -7540,7 +8188,7 @@ msgstr "이 피드는 비어 있습니다."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "이 피드는 더 이상 온라인 상태가 아닙니다. 대신 <0>Discover0>를 표시합니다."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "이 핸들은 예약되었습니다. 다른 핸들을 사용하세요."
@@ -7548,9 +8196,10 @@ msgstr "이 핸들은 예약되었습니다. 다른 핸들을 사용하세요."
msgid "This information is not shared with other users."
msgstr "이 정보는 다른 사용자와 공유되지 않습니다."
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "이는 이메일을 변경하거나 비밀번호를 재설정해야 할 때 중요한 정보입니다."
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr "올바른 링크가 아닙니다"
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,9 +8209,9 @@ msgstr "이 라벨은 작성자가 적용했습니다."
msgid "This label was applied by you."
msgstr "이 라벨은 내가 적용했습니다."
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
-msgstr "이 라벨러는 라벨을 게시하지 않았으며 활성화되어 있지 않을 수 있습니다."
+msgstr "이 라벨러는 라벨을 등록하지 않았으며 활성화되어 있지 않을 수 있습니다."
#: src/view/com/modals/LinkWarning.tsx:72
msgid "This link is taking you to the following website:"
@@ -7576,7 +8225,7 @@ msgstr "<0>{0}0> 님이 만든 이 목록은 이름이나 설명에 Bluesky의
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr "내가 만든 이 목록은 이름이나 설명에 Bluesky의 커뮤니티 가이드라인을 위반할 가능성이 있는 내용이 포함되어 있습니다."
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr "이 리스트는 비어 있습니다."
@@ -7584,7 +8233,7 @@ msgstr "이 리스트는 비어 있습니다."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "이 검토 서비스는 사용할 수 없습니다. 자세한 내용은 아래를 참조하세요. 이 문제가 지속되면 문의해 주세요."
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "이 게시물은 <0>{0}0>에 작성되었다고 주장하지만 Bluesky에서는 <1>{1}1>에 처음 확인되었습니다."
@@ -7592,28 +8241,29 @@ msgstr "이 게시물은 <0>{0}0>에 작성되었다고 주장하지만 Bluesk
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr "이 게시물에 알 수 없는 유형의 스레드게이트가 있습니다. 앱이 오래되었을 수 있습니다."
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "이 게시물은 삭제되었습니다."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "이 게시물은 로그인한 사용자에게만 표시됩니다. 로그인하지 않은 사용자에게는 표시되지 않습니다."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "이 게시물을 피드와 스레드에서 숨깁니다. 이 작업은 되돌릴 수 없습니다."
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "이 게시물의 작성자가 인용 게시물을 비활성화했습니다."
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr "이 프로필은 로그인한 사용자에게만 표시됩니다. 로그인하지 않은 사용자에게는 표시되지 않습니다."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
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 "이 답글은 스레드 하단의 숨겨진 위치에 정렬되며 자신과 다른 사용자 모두의 후속 답글에 대한 알림이 뮤트됩니다."
@@ -7621,10 +8271,14 @@ msgstr "이 답글은 스레드 하단의 숨겨진 위치에 정렬되며 자
msgid "This service has not provided terms of service or a privacy policy."
msgstr "이 서비스는 서비스 이용약관이나 개인정보 처리방침을 제공하지 않습니다."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "이 도메인에 레코드가 추가됩니다:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr "이 사용자는 표시 이름이 없으므로 인증할 수 없습니다."
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "이 사용자는 팔로워가 없습니다."
@@ -7662,21 +8316,21 @@ msgstr "이 사용자는 아무도 팔로우하지 않았습니다."
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "뮤트한 단어에서 \"{0}\"을(를) 삭제합니다. 나중에 언제든지 다시 추가할 수 있습니다."
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "빠른 액세스 목록에서 @{0}을(를) 제거합니다."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "모든 사용자의 인용 게시물에서 해당 게시물이 삭제되고 자리 표시자로 대체됩니다."
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr "스레드 옵션"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "스레드 설정"
@@ -7684,8 +8338,8 @@ msgstr "스레드 설정"
msgid "Thread Preferences"
msgstr "스레드 설정"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr "스레드"
@@ -7693,7 +8347,7 @@ msgstr "스레드"
msgid "Threaded mode"
msgstr "스레드 모드"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "스레드 설정"
@@ -7705,14 +8359,15 @@ msgstr "남은 시간: {0, plural, other {#초}}"
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "이메일 2단계 인증을 비활성화하려면 이메일 주소에 대한 접근 권한을 인증하세요."
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr "이메일 2단계 인증을 비활성화하려면 <0>{0}0>에 대한 접근 권한을 인증해 주세요."
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "대화를 신고하려면 대화 화면에서 해당 메시지 중 하나를 신고하세요. 이렇게 하면 운영진이 문제의 맥락을 파악할 수 있습니다."
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Bluesky에 동영상을 업로드하려면 먼저 이메일을 인증해야 합니다."
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "이 신고를 누구에게 보내시겠습니까?"
@@ -7725,7 +8380,7 @@ msgstr "오늘"
msgid "Toggle dropdown"
msgstr "드롭다운 열기 및 닫기"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "성인 콘텐츠 활성화 또는 비활성화 전환"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr "소리를 켜거나 끕니다"
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "인기"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr "주제"
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "번역"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr "인기"
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr "인기 동영상"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr "신뢰는 관계, 커뮤니티, 공유된 맥락에서 비롯되므로 직접 인증을 발행할 수 있는 조직인 <0>신뢰할 수 있는 인증자0> 또한 지원합니다."
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "TV"
msgid "Two-factor authentication (2FA)"
msgstr "2단계 인증"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr "원하는 사용자 이름을 입력하세요"
@@ -7783,18 +8440,11 @@ msgstr "원하는 사용자 이름을 입력하세요"
msgid "Type your message here"
msgstr "메시지를 입력하세요"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "유형:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "리스트 차단 해제"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "리스트 언뮤트"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "연결할 수 없습니다. 인터넷 연결을 확인한 후 다시 시도하세요."
@@ -7809,7 +8459,7 @@ msgstr "연결할 수 없습니다. 인터넷 연결을 확인한 후 다시 시
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "서비스에 연결할 수 없습니다. 인터넷 연결을 확인하세요."
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "삭제할 수 없음"
@@ -7817,36 +8467,41 @@ msgstr "삭제할 수 없음"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "차단 해제"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "차단 해제"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "계정 차단 해제"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "계정을 차단 해제하시겠습니까?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr "리스트 차단 해제"
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "재게시 취소"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "재게시 취소 ({0, plural, other {#개}})"
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "언팔로우"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "{0} 님을 언팔로우"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "계정 언팔로우"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr "사용자를 언팔로우합니다"
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "안타깝게도 구독하는 라벨러 중 이 신고 유형을 지원하는 라벨러가 없습니다."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr "알 수 없는 인증자"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr "좋아요 취소"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "좋아요 취소 ({0, plural, other {#개}})"
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr "음소거 해제"
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "언뮤트"
@@ -7895,10 +8555,10 @@ msgstr "언뮤트"
msgid "Unmute {tag}"
msgstr "{tag} 언뮤트"
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "계정 언뮤트"
@@ -7906,8 +8566,12 @@ msgstr "계정 언뮤트"
msgid "Unmute conversation"
msgstr "대화 언뮤트"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr "리스트 언뮤트"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "스레드 언뮤트"
@@ -7915,38 +8579,47 @@ msgstr "스레드 언뮤트"
msgid "Unmute video"
msgstr "동영상 음소거 해제"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "고정 해제"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr "피드 고정 해제"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr "피드 고정 해제"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "홈에서 고정 해제"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "프로필에서 고정 해제"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "검토 리스트 고정 해제"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr "{0}을(를) 홈에서 고정 해제했습니다"
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "내 피드에서 고정 해제했습니다"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr "이메일 알림 켜기"
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "구독 취소"
@@ -7955,7 +8628,7 @@ msgstr "구독 취소"
msgid "Unsubscribe from list"
msgstr "리스트 구독 취소"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "이 라벨러 구독 취소하기"
@@ -7963,11 +8636,11 @@ msgstr "이 라벨러 구독 취소하기"
msgid "Unsubscribed from list"
msgstr "리스트를 구독 취소했습니다"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "지원되지 않는 동영상 유형"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "지원되지 않는 동영상 유형: {0}"
@@ -7987,17 +8660,28 @@ msgstr "업데이트"
msgid "Update <0>{displayName}0> in Lists"
msgstr "리스트에서 <0>{displayName}0> 업데이트"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr "이메일 변경"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "{domain}(으)로 변경"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
+msgstr "이메일 변경하기"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr "인용 첨부를 업데이트하지 못했습니다"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "답글 표시 여부를 업데이트하지 못했습니다"
@@ -8006,32 +8690,32 @@ msgstr "답글 표시 여부를 업데이트하지 못했습니다"
msgid "Updating..."
msgstr "업데이트 중…"
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "대신 사진 업로드하기"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "텍스트 파일 업로드 경로:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "카메라에서 업로드"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "파일에서 업로드"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
-msgstr "라이브러리에서 업로드"
+msgstr "보관함에서 업로드"
#: src/lib/api/index.ts:302
msgid "Uploading images..."
@@ -8042,7 +8726,7 @@ msgstr "이미지 업로드 중…"
msgid "Uploading link thumbnail..."
msgstr "링크 미리보기 업로드 중…"
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "동영상 업로드 중…"
@@ -8050,22 +8734,22 @@ msgstr "동영상 업로드 중…"
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "앱 비밀번호를 사용하면 계정이나 비밀번호에 대한 전체 접근 권한을 제공하지 않고도 다른 Bluesky 클라이언트에 로그인할 수 있습니다."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "기본 제공자 사용"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "인앱 브라우저 사용"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "인앱 브라우저를 사용하여 링크 열기"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "내 기본 브라우저 사용"
@@ -8119,12 +8803,12 @@ msgstr "{0} 님의 사용자 리스트"
msgid "User list by you"
msgstr "내 사용자 리스트"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
msgstr "사용자 리스트를 생성했습니다"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
msgstr "사용자 리스트를 업데이트했습니다"
@@ -8150,58 +8834,88 @@ msgstr "내가 팔로우하는 사용자"
msgid "Users in \"{0}\""
msgstr "\"{0}\"에 있는 사용자"
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "이 콘텐츠 또는 프로필을 좋아하는 사용자"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr "내가 팔로우하는 사용자"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "값:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "이메일 인증 필요"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr "인증하지 못했습니다. 다시 시도해 주세요."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr "인증 설정"
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr "인증 설정"
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr "Bluesky의 인증은 다른 플랫폼과 다르게 작동합니다. <0>이곳0>에서 자세히 알아보세요."
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr "인증자:"
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr "계정 인증"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr "코드 인증"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "DNS 레코드 인증"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr "이메일 인증"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr "이메일 코드 인증하기"
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "이메일 인증 대화 상자"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "새 이메일 인증"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "지금 인증하기"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "텍스트 파일 인증"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr "이 계정을 인증하시겠습니까?"
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "이메일 인증하기"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "이메일 인증하기"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "버전 {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "동영상"
msgid "Video failed to process"
msgstr "동영상을 처리하지 못했습니다"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr "동영상 피드"
@@ -8224,14 +8938,15 @@ msgstr "{0} 님의 동영상: {text}"
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "비디오 게임"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr "동영상 일시 정지됨"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr "동영상 재생 중"
@@ -8239,11 +8954,11 @@ msgstr "동영상 재생 중"
msgid "Video not found."
msgstr "동영상을 찾을 수 없습니다."
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "동영상 설정"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "동영상 업로드됨"
@@ -8251,31 +8966,32 @@ msgstr "동영상 업로드됨"
msgid "Video: {0}"
msgstr "동영상: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr "동영상"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
msgstr "동영상 길이는 3분 미만이어야 합니다"
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "{0} 님의 아바타 보기"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "{0} 님의 프로필 보기"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "{displayName} 님의 프로필 보기"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "차단된 사용자의 프로필 보기"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "디버그 항목 보기"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "세부 정보 보기"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "저작권 위반 신고에 대한 세부 정보 보기"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "전체 스레드 보기"
@@ -8308,18 +9024,17 @@ msgstr "이 라벨에 대한 정보 보기"
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr "더 보기"
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "프로필 보기"
@@ -8331,7 +9046,11 @@ msgstr "아바타 보기"
msgid "View the labeling service provided by @{0}"
msgstr "{0} 님이 제공하는 라벨링 서비스 보기"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr "이 사용자의 인증 보기"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "이 피드를 좋아하는 사용자 보기"
@@ -8339,11 +9058,11 @@ msgstr "이 피드를 좋아하는 사용자 보기"
msgid "View video"
msgstr "동영상 보기"
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "내가 차단한 계정 보기"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr "기본 게시물 상호작용 설정 보기"
@@ -8352,14 +9071,18 @@ msgstr "기본 게시물 상호작용 설정 보기"
msgid "View your feeds and explore more"
msgstr "내 피드를 보거나 새 피드 탐색하기"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "내 검토 리스트 보기"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "내가 뮤트한 계정 보기"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr "내 인증 보기"
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "콘텐츠 경고"
msgid "Warn content and filter from feeds"
msgstr "콘텐츠 경고 및 피드에서 필터링"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr "시청하기"
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "해당 해시태그에 대한 결과를 찾을 수 없습니다."
@@ -8400,13 +9128,13 @@ msgstr "해당 해시태그에 대한 결과를 찾을 수 없습니다."
msgid "We couldn't find any results for that topic."
msgstr "해당 주제에 대한 결과를 찾을 수 없습니다."
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "이 대화를 불러올 수 없습니다"
#: src/screens/SignupQueued.tsx:160
msgid "We estimate {estimatedTime} until your account is ready."
-msgstr "계정이 준비될 때까지 {estimatedTime}이(가) 걸릴 것으로 예상됩니다."
+msgstr "계정이 준비될 때까지 {estimatedTime}이 걸릴 것으로 예상됩니다."
#: src/components/intents/VerifyEmailIntentDialog.tsx:107
msgid "We have sent another verification email to <0>{0}0>."
@@ -8420,6 +9148,14 @@ msgstr "즐거운 시간 되시기 바랍니다. Bluesky의 다음 특징을 기
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "팔로우하는 사용자의 게시물이 부족합니다. 대신 <0/>의 최신 게시물을 표시합니다."
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr "관심 주제를 2개 이상 선택하는 것을 권장합니다."
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "링크가 포함된 이메일을 <0>{0}0>(으)로 보냈습니다. 이메일 인증 절차를 완료하려면 해당 링크를 클릭하세요."
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "동영상을 업로드할 수 있는지 확인할 수 없습니다. 다시 시도해 주세요."
@@ -8428,7 +9164,7 @@ 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:428
msgid "We were unable to load your configured labelers at this time."
msgstr "현재 구성된 라벨러를 불러올 수 없습니다."
@@ -8440,20 +9176,28 @@ msgstr "연결하지 못했습니다. 계정 설정을 계속하려면 다시
msgid "We will let you know when your account is ready."
msgstr "계정이 준비되면 알려 드리겠습니다."
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr "링크가 포함된 이메일을 <0>{0}0>(으)로 보냅니다. 이메일 인증 절차를 완료하려면 해당 링크를 클릭하세요."
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "이를 통해 사용자 환경을 맞춤 설정할 수 있습니다."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "네트워크 문제가 발생했습니다. 다시 시도해 주세요"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr "Bluesky에 인증을 쉽게 확인할 수 있는 체크 표시를 도입합니다."
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "함께하게 되어 정말 기뻐요!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "죄송하지만 이 리스트를 불러올 수 없습니다. 이 문제가 계속되면 리스트 작성자인 @{handleOrDid}에게 문의하세요."
@@ -8461,11 +9205,11 @@ msgstr "죄송하지만 이 리스트를 불러올 수 없습니다. 이 문제
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "죄송하지만 현재 뮤트한 단어를 불러올 수 없습니다. 다시 시도해 주세요."
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
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:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "죄송하지만 답글을 달려는 게시물이 삭제되었습니다."
@@ -8474,7 +9218,7 @@ msgstr "죄송하지만 답글을 달려는 게시물이 삭제되었습니다."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "죄송합니다. 페이지를 찾을 수 없습니다."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "죄송합니다. 라벨러는 20개까지만 구독할 수 있으며 20개에 도달했습니다."
@@ -8494,16 +9238,16 @@ msgstr "어떤 주제에 관심이 있으신가요?"
msgid "What do you want to call your starter pack?"
msgstr "스타터 팩의 이름을 무엇으로 할까요?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr "사람들이 무엇에 대해 게시하고 있는지 살펴보세요."
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "무슨 일이 일어나고 있나요?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr "체크 표시를 탭하면 어떤 조직이 인증을 승인했는지 확인할 수 있습니다."
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "이 게시물에 어떤 언어가 사용되나요?"
@@ -8520,14 +9264,18 @@ msgstr "누가 이 게시물과 상호작용할 수 있나요?"
msgid "Who can reply"
msgstr "답글을 달 수 있는 사람"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr "누가 인증을 받을 수 있나요?"
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "이런!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr "이런! 인기 동영상을 불러오지 못했습니다."
@@ -8574,11 +9322,11 @@ msgstr "이 사용자를 검토해야 하는 이유는 무엇인가요?"
msgid "Write a message"
msgstr "메시지를 입력하세요"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "게시물 작성"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "답글 작성하기"
@@ -8588,11 +9336,16 @@ msgstr "답글 작성하기"
msgid "Writers"
msgstr "작가"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "서버에서 잘못된 DID를 반환했습니다. 수신됨: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr "www.mylivestream.tv"
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "예"
@@ -8601,15 +9354,15 @@ msgstr "예"
msgid "Yes, deactivate"
msgstr "비활성화"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "이 스타터 팩 삭제하기"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "해제"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "숨기기"
@@ -8625,14 +9378,31 @@ msgstr "어제"
msgid "You"
msgstr "나"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr "나는 신뢰할 수 있는 인증자입니다"
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
-msgstr ""
+msgstr "호스팅 제공자:"
#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
msgstr "대기 중입니다."
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr "라이브 중"
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr "더 이상 라이브 중이 아닙니다"
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr "라이브를 시작할 수 없습니다"
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "동영상을 업로드할 수 없습니다."
@@ -8641,6 +9411,27 @@ msgstr "동영상을 업로드할 수 없습니다."
msgid "You are not following anyone."
msgstr "아무도 팔로우하지 않았습니다."
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr "라이브 중입니다!"
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr "내 계정은 인증되었습니다"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr "현재 인증된 상태입니다. 표시 이름을 변경하면 인증이 해제될 수 있습니다. <0>더 알아보기0>"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr "현재 인증된 상태입니다. 핸들을 변경하면 인증이 해제될 수 있습니다. <0>더 알아보기0>"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr "\"콘텐츠 및 미디어\" 설정에서 언제든지 관심 주제를 조정할 수 있습니다."
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr "<0>설정 → 검토 → 상호작용 설정0>에서 기본 상호작
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr "나중에 설정에서 변경할 수 있습니다."
@@ -8682,9 +9472,9 @@ msgstr "팔로워가 없습니다."
msgid "You don't follow any users who follow @{name}."
msgstr "@{name} 님을 팔로우하는 사용자를 팔로우하고 있지 않습니다."
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
-msgstr "지금은 채팅 요청이 없습니다."
+msgstr "지금은 대화 요청이 없습니다."
#: src/view/com/modals/InviteCodes.tsx:67
msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer."
@@ -8736,24 +9526,24 @@ msgstr "내가 이 계정을 뮤트했습니다."
msgid "You have muted this user"
msgstr "내가 이 사용자를 뮤트했습니다"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "아직 대화가 없습니다. 시작해 보세요!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "피드가 없습니다."
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "리스트가 없습니다."
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "아직 어떤 계정도 차단하지 않았습니다. 계정을 차단하려면 해당 계정의 프로필로 이동하여 계정 메뉴에서 \"계정 차단\"을 선택하세요."
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "아직 어떤 계정도 뮤트하지 않았습니다. 계정을 뮤트하려면 해당 계정의 프로필로 이동하여 계정 메뉴에서 \"계정 뮤트\"를 선택하세요."
@@ -8761,11 +9551,15 @@ msgstr "아직 어떤 계정도 뮤트하지 않았습니다. 계정을 뮤트
msgid "You have reached the end"
msgstr "끝에 도달했습니다"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr "이메일 주소를 성공적으로 인증했습니다. 이 대화 상자를 닫아도 됩니다."
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "일시적으로 동영상 업로드 한도에 도달했습니다. 나중에 다시 시도해 주세요."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "아직 스타터 팩을 만들지 않았습니다."
@@ -8787,22 +9581,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "이 라벨이 잘못 지정되었다고 생각되면 이의신청할 수 있습니다."
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "프로필은 최대 {STARTER_PACK_MAX_SIZE}개까지 추가할 수 있습니다"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr "프로필은 최대 {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE}개}}까지 추가할 수 있습니다"
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "피드는 최대 3개까지 추가할 수 있습니다"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "이미지는 최대 4개까지 선택할 수 있습니다"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "가입하려면 만 13세 이상이어야 합니다."
+msgid "You must be 13 years of age or older to create an account."
+msgstr "계정을 만들려면 만 13세 이상이어야 합니다."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "스타터 팩을 만들려면 다른 사람을 최소 7명 이상 팔로우해야 합니다."
@@ -8810,28 +9604,40 @@ msgstr "스타터 팩을 만들려면 다른 사람을 최소 7명 이상 팔로
msgid "You must grant access to your photo library to save a QR code"
msgstr "QR 코드를 저장하려면 사진 보관함에 대한 접근 권한을 부여해야 합니다"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "이미지를 저장하려면 사진 보관함에 대한 접근 권한을 부여해야 합니다"
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "신고하려면 라벨을 하나 이상 선택해야 합니다"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr "이메일 2단계 인증을 사용하려면 이메일 주소를 인증해야 합니다."
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "이전에 @{0}을(를) 비활성화했습니다."
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr "앱을 다시 시작해야 할 수 있습니다."
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr "내가 {0}(으)로 반응함"
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr "내가 {1}에 {0}(으)로 반응함"
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "모든 계정에서 로그아웃됩니다."
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "이 스레드에 대한 알림을 더 이상 받지 않습니다"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "이제 이 스레드에 대한 알림을 받습니다"
@@ -8839,23 +9645,23 @@ msgstr "이제 이 스레드에 대한 알림을 받습니다"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "\"재설정 코드\"가 포함된 이메일을 받게 되면 여기에 해당 코드를 입력한 다음 새 비밀번호를 입력하세요."
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "나: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "나: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "나: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "계정 생성을 완료하면 추천 사용자 및 피드를 팔로우하게 됩니다."
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "계정 생성을 완료하면 추천 사용자를 팔로우하게 됩니다."
@@ -8867,7 +9673,7 @@ msgstr "다음 사람들 외 {0}명을 팔로우하게 됩니다"
msgid "You'll follow these people right away"
msgstr "다음 사람들을 바로 팔로우하게 됩니다"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "본인 인증을 위해 <0>{0}0>(으)로 이메일을 보냅니다."
@@ -8901,6 +9707,10 @@ msgstr "팔로우할 사람들을 찾은 것 같군요"
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "피드 끝에 도달했습니다! 팔로우할 계정을 더 찾아보세요."
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr "허용된 최대 요청 수에 도달했습니다. 나중에 다시 시도해 주세요."
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "동영상 업로드 일일 한도에 도달했습니다 (용량이 너무 큼)"
@@ -8909,11 +9719,11 @@ msgstr "동영상 업로드 일일 한도에 도달했습니다 (용량이 너
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "동영상 업로드 일일 한도에 도달했습니다 (동영상 수가 너무 많음)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "시청할 동영상이 부족합니다. 잠시 쉬는 건 어떠신가요?"
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "내 계정"
@@ -8941,7 +9751,7 @@ msgstr "귀하의 계정이 <0>Bluesky Social 서비스 이용약관0>을 위
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr "이의신청을 제출했습니다. 이의신청이 받아들여지면 이메일을 보내 드립니다."
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "생년월일"
@@ -8953,26 +9763,30 @@ msgstr "브라우저가 이 동영상 형식을 지원하지 않습니다. 다
msgid "Your chats have been disabled"
msgstr "대화가 사용 중지되었습니다"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "선택 사항은 저장되며 나중에 설정에서 변경할 수 있습니다."
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr "선택한 항목은 앞으로 클릭할 링크에도 적용되며 설정에서 언제든지 변경할 수 있습니다."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "현재 핸들 <0>{0}0>은 자동으로 예약된 상태로 유지됩니다. 이 계정에서 언제든지 다시 전환할 수 있습니다."
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr "이메일 주소를 변경했지만 아직 인증되지 않았습니다. 다음 단계에서 새 이메일을 인증해 주세요."
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "이메일이 잘못된 것 같습니다."
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "이메일을 변경했지만 인증되지 않았습니다. 다음 단계로 새 이메일을 인증해 주세요."
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr "내 이메일이 아직 인증되지 않았습니다. Bluesky의 모든 기능을 즐기려면 이메일을 인증해 주세요."
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "이메일이 아직 인증되지 않았습니다. 이는 중요한 보안 단계이므로 권장하는 사항입니다."
@@ -8988,14 +9802,31 @@ msgstr "내 팔로워"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "팔로우 중 피드가 비어 있습니다. 더 많은 사용자를 팔로우하여 무슨 일이 일어나고 있는지 확인하세요."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "내 전체 핸들: <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr "내 전체 사용자 이름: <0>@{0}0>"
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr "내 관심 주제"
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr "관심 주제를 업데이트했습니다!"
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr "관심 주제는 내가 좋아하는 것을 찾도록 도와줍니다!"
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "뮤트한 단어"
@@ -9004,17 +9835,17 @@ msgstr "뮤트한 단어"
msgid "Your password has been changed successfully!"
msgstr "비밀번호를 성공적으로 변경했습니다."
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr "비밀번호는 8자 이상이어야 합니다."
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
-msgstr "게시물을 게시했습니다"
+msgstr "게시물을 등록했습니다"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
-msgstr "게시물을 게시했습니다"
+msgstr "게시물을 등록했습니다"
#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Your posts, likes, and blocks are public. Mutes are private."
@@ -9024,14 +9855,22 @@ 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:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
-msgstr "답글을 게시했습니다"
+msgstr "답글을 등록했습니다"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr "신고를 <0>{0}0>에게 보냅니다."
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "신고를 Bluesky Moderation Service에게 보냅니다."
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr "선택한 관심 주제는 사용자가 관심 있는 콘텐츠를 제공하는 데 도움을 줍니다."
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr "내 인증"
diff --git a/src/locale/locales/ne/messages.po b/src/locale/locales/ne/messages.po
index a9d559cb15..a9fa619af8 100644
--- a/src/locale/locales/ne/messages.po
+++ b/src/locale/locales/ne/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ne\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 03:35\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Nepali\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "सामग्री समावेश गरिएको छ"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "इमेल छैन"
@@ -79,9 +79,9 @@ msgstr "{0, plural, one {# पुन: पोष्ट} other {# पुन: प
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# सेकेन्ड} other {# सेकेन्डहरू}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -90,17 +90,17 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {अनुगामी} other {अनुगामीहरू}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {अनुगमन गरिरहेको} other {अनुगमन गरिरहेका}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {मन पराइएको} other {मन पराइएका}}"
@@ -108,14 +108,23 @@ msgstr "{0, plural, one {मन पराइएको} other {मन परा
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {पोष्ट} other {पोष्टहरू}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {उद्धरण} other {उद्धरणहरू}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {पुन: पोष्ट} other {पुन: पोष्टहरू}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr ""
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr ""
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -126,6 +135,14 @@ msgstr "{0} <0>ट्यागहरूमा <1>भित्र1>0>"
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>पाठ र ट्यागहरूमा <1>भित्र1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr ""
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} यस हप्ता सामेल भए"
@@ -139,11 +156,16 @@ msgstr "{0} को {1}"
msgid "{0} out of 50"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0} जनाले यो स्टार्टर प्याक प्रयोग गरेका छन्!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr ""
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "{0} को अवतार"
@@ -175,7 +197,7 @@ msgstr "{0}मि"
msgid "{0}s"
msgstr "{0}से"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -192,103 +214,184 @@ msgstr "{estimatedTimeHrs, plural, one {घण्टा} other {घण्टा
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {मिनेट} other {मिनेटहरू}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} र <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> ले तपाईंलाई अनुसरण गरे"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "{firstAuthorLink} र <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> ले तपाईंको कस्टम फिडलाई मन पराए"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink} र <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> ले तपाईंको पोस्टलाई मन पराए"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} र <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> ले तपाईंको पोस्टलाई पुन: पोस्ट गरे"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} र <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> ले तपाईंको स्टार्टर प्याकबाट साइन अप गरे"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} ले तपाईंलाई अनुसरण गरे"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} ले तपाईंलाई पुनः अनुसरण गरे"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "{firstAuthorLink} ले तपाईंको कस्टम फिडलाई मन पराए"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "{firstAuthorLink} ले तपाईंको पोस्टलाई मन पराए"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} ले तपाईंको पोस्टलाई पुन: पोस्ट गरे"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} ले तपाईंको स्टार्टर प्याकबाट साइन अप गरे"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} र {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंलाई अनुसरण गरे"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "{firstAuthorName} र {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको कस्टम फिडलाई मन पराए"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "{firstAuthorName} र {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको पोस्टलाई मन पराए"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} र {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको पोस्टलाई पुन: पोस्ट गरे"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName} र {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको स्टार्टर प्याकबाट साइन अप गरे"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} ले तपाईंलाई पछ्याए"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} ले तपाईंलाई फिर्ता पछ्याए"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "{firstAuthorName} ले तपाईंको कस्टम फिडलाई मन पराए"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "{firstAuthorName} ले तपाईंको पोस्टलाई मन पराए"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} ले तपाईंको पोस्टलाई पुन: पोस्ट गरे"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} ले तपाईंको स्टार्टर प्याकबाट साइन अप गरे"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} पछ्याउँदै छन्"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "{handle} लाई सन्देश पठाउन सकिदैन"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr ""
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr ""
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -301,6 +404,34 @@ msgstr "{profileName} ले {0} अघि Bluesky मा सामेल भए
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} ले {0} अघि स्टार्टर प्याकको प्रयोग गरी Bluesky मा सामेल भए"
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr ""
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr ""
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr ""
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr ""
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr ""
+
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -311,11 +442,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} other {# others}} तपाईंको स्टार्टर प्याकमा समावेश छन्"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {अनुगामी} other {अनुगामीहरू}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {पछ्याउँदै छन्} other {पछ्याउँदै छन्}}"
@@ -343,7 +474,7 @@ msgstr "<0>प्रयोगात्मक:0> यो प्राथमि
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>तपाईं0> र<1> 1><2>{0} 2> तपाईंको स्टार्टर प्याकमा समावेश छन्"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠अवैध ह्यान्डल"
@@ -363,19 +494,28 @@ msgstr "३० दिन"
msgid "7 days"
msgstr "७ दिन"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr ""
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "बारेमा"
#. Accept a chat request
-#: src/screens/Messages/components/RequestButtons.tsx:235
+#: src/screens/Messages/components/RequestButtons.tsx:259
msgid "Accept"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:225
+#: src/screens/Messages/components/RequestButtons.tsx:249
msgid "Accept chat request"
msgstr ""
@@ -385,40 +525,40 @@ msgid "Accept Request"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:46
-#: src/screens/Settings/Settings.tsx:191
-#: src/screens/Settings/Settings.tsx:194
+#: src/screens/Settings/Settings.tsx:201
+#: src/screens/Settings/Settings.tsx:204
msgid "Accessibility"
msgstr "पहुँचयोग्यता"
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:355
msgid "Accessibility Settings"
msgstr "पहुँचयोग्यता सेटिङ्स"
-#: src/Navigation.tsx:359
+#: src/Navigation.tsx:371
#: src/screens/Login/LoginForm.tsx:194
-#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Settings/Settings.tsx:153
-#: src/screens/Settings/Settings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:48
+#: src/screens/Settings/Settings.tsx:163
+#: src/screens/Settings/Settings.tsx:166
msgid "Account"
msgstr "खाता"
-#: src/screens/Messages/components/RequestButtons.tsx:81
-#: src/view/com/profile/ProfileMenu.tsx:141
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:375
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:360
+#: src/screens/Messages/components/RequestButtons.tsx:91
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account blocked"
-msgstr ""
+msgstr "खाता ब्लक गरिएको छ"
-#: src/view/com/profile/ProfileMenu.tsx:154
+#: src/view/com/profile/ProfileMenu.tsx:171
msgctxt "toast"
msgid "Account followed"
-msgstr ""
+msgstr "खाता पछ्याइएको छ"
-#: src/view/com/profile/ProfileMenu.tsx:117
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:398
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:134
msgctxt "toast"
msgid "Account muted"
-msgstr ""
+msgstr "खाता म्यूट गरिएको छ"
#: src/components/moderation/ModerationDetailsDialog.tsx:103
#: src/lib/moderation/useModerationCauseDescription.ts:98
@@ -429,33 +569,37 @@ msgstr "खाता म्यूट गरिएको छ"
msgid "Account Muted by List"
msgstr "सूचीद्वारा खाता म्यूट गरिएको छ"
-#: src/screens/Settings/Settings.tsx:430
+#: src/screens/Settings/Settings.tsx:505
msgid "Account options"
msgstr "खाताको विकल्पहरू"
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:541
msgid "Account removed from quick access"
msgstr "खाता छिटो पहुँचबाट हटाइएको छ"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:131
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unblocked"
-msgstr ""
+msgstr "खाताको ब्लक हटाइएको छ"
-#: src/view/com/profile/ProfileMenu.tsx:166
+#: src/view/com/profile/ProfileMenu.tsx:183
msgctxt "toast"
msgid "Account unfollowed"
-msgstr ""
+msgstr "खाताको पछ्याइ हटाइएको छ"
-#: src/view/com/profile/ProfileMenu.tsx:107
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:388
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:373
+#: src/view/com/profile/ProfileMenu.tsx:124
msgctxt "toast"
msgid "Account unmuted"
+msgstr "खाताको म्यूट हटाइएको छ"
+
+#: src/components/verification/VerifierDialog.tsx:96
+msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:328
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr "थप्नुहोस्"
@@ -473,8 +617,12 @@ msgstr "स्टार्टर प्याकमा {displayName} थप्
msgid "Add a content warning"
msgstr "सामग्री चेतावनी थप्नुहोस्"
-#: src/view/screens/ProfileList.tsx:917
-#: src/view/screens/ProfileList.tsx:935
+#: src/components/live/GoLiveDialog.tsx:101
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:924
+#: src/view/screens/ProfileList.tsx:942
msgid "Add a user to this list"
msgstr "यस सूचीमा एक प्रयोगकर्ता थप्नुहोस्"
@@ -485,7 +633,7 @@ msgstr "खाता थप्नुहोस्"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:144
-#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/GifAltText.tsx:210
#: src/view/com/composer/photos/Gallery.tsx:169
#: src/view/com/composer/photos/Gallery.tsx:216
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
@@ -493,18 +641,18 @@ msgstr "खाता थप्नुहोस्"
msgid "Add alt text"
msgstr "वैकल्पिक पाठ थप्नुहोस्"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
msgid "Add alt text (optional)"
msgstr "वैकल्पिक पाठ थप्नुहोस् (ऐच्छिक)"
-#: src/screens/Settings/Settings.tsx:373
-#: src/screens/Settings/Settings.tsx:376
-#: src/view/shell/desktop/LeftNav.tsx:280
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/screens/Settings/Settings.tsx:445
+#: src/screens/Settings/Settings.tsx:448
+#: src/view/shell/desktop/LeftNav.tsx:260
+#: src/view/shell/desktop/LeftNav.tsx:264
msgid "Add another account"
msgstr "अर्को खाता थप्नुहोस्"
-#: src/view/com/composer/Composer.tsx:743
+#: src/view/com/composer/Composer.tsx:731
msgid "Add another post"
msgstr "अर्को पोष्ट थप्नुहोस्"
@@ -518,8 +666,12 @@ msgstr "एप पासवर्ड थप्नुहोस्"
msgid "Add App Password"
msgstr "एप पासवर्ड थप्नुहोस्"
-#: src/components/moderation/ReportDialog/index.tsx:392
-#: src/components/moderation/ReportDialog/index.tsx:396
+#: src/components/dms/EmojiReactionPicker.web.tsx:35
+msgid "Add emoji reaction"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:400
+#: src/components/moderation/ReportDialog/index.tsx:404
msgid "Add more details (optional)"
msgstr ""
@@ -531,15 +683,23 @@ msgstr ""
msgid "Add muted words and tags"
msgstr "म्यूट शब्दहरू र ट्यागहरू थप्नुहोस्"
-#: src/view/com/composer/Composer.tsx:1258
+#: src/view/com/composer/Composer.tsx:1287
msgid "Add new post"
msgstr "नयाँ पोष्ट थप्नुहोस्"
-#: src/view/screens/ProfileList.tsx:925
-#: src/view/screens/ProfileList.tsx:943
+#: src/view/screens/ProfileList.tsx:932
+#: src/view/screens/ProfileList.tsx:950
msgid "Add people"
msgstr ""
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79
+msgid "Add people to list"
+msgstr ""
+
+#: src/components/dms/EmojiPopup.android.tsx:55
+msgid "Add Reaction"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "सुझाइएको फिड थप्नुहोस्"
@@ -552,27 +712,28 @@ msgstr "आफ्नो स्टार्टर प्याकमा केह
msgid "Add the default feed of only people you follow"
msgstr "तपाईंले पछ्याएका व्यक्तिहरूको डिफल्ट फिड थप्नुहोस्"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:406
msgid "Add the following DNS record to your domain:"
msgstr "तपाईंको डोमेनमा निम्न DNS रेकर्ड थप्नुहोस्:"
-#: src/components/FeedCard.tsx:295
+#: src/components/FeedCard.tsx:305
msgid "Add this feed to your feeds"
msgstr "यस फिडलाई तपाईंको फिडमा थप्नुहोस्"
-#: src/view/com/profile/ProfileMenu.tsx:276
+#: src/view/com/profile/ProfileMenu.tsx:305
+#: src/view/com/profile/ProfileMenu.tsx:308
msgid "Add to lists"
msgstr "सूचीहरूमा थप्नुहोस्"
-#: src/view/com/profile/ProfileMenu.tsx:273
-msgid "Add to Lists"
-msgstr "सूचीहरूमा थप्नुहोस्"
-
#: src/view/com/feeds/FeedSourceCard.tsx:269
msgid "Add to my feeds"
msgstr "मेरो फिडमा थप्नुहोस्"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156
+msgid "Add user to list"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109
#: src/view/com/modals/UserAddRemoveLists.tsx:162
msgid "Added to list"
msgstr "सूचीमा थपियो"
@@ -581,22 +742,22 @@ msgstr "सूचीमा थपियो"
msgid "Added to my feeds"
msgstr "मेरो फिडमा थपियो"
-#: src/components/moderation/ReportDialog/index.tsx:410
+#: src/components/moderation/ReportDialog/index.tsx:418
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:160
+#: src/view/com/composer/labels/LabelsBtn.tsx:159
msgid "Adult"
msgstr "वयस्क"
#: src/components/moderation/ContentHider.tsx:113
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:148
-#: src/view/com/composer/labels/LabelsBtn.tsx:128
+#: src/view/com/composer/labels/LabelsBtn.tsx:127
msgid "Adult Content"
msgstr "वयस्क सामग्री"
-#: src/screens/Moderation/index.tsx:355
+#: src/screens/Moderation/index.tsx:374
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "वयस्क सामग्री मात्र वेब मार्फत <0>bsky.app0> मा सक्षम गर्न सकिन्छ।"
@@ -604,30 +765,35 @@ msgstr "वयस्क सामग्री मात्र वेब मा
msgid "Adult content is disabled."
msgstr "वयस्क सामग्री अक्षम छ।"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:138
+#: src/view/com/composer/labels/LabelsBtn.tsx:196
msgid "Adult Content labels"
msgstr "वयस्क सामग्रीका लेबलहरू"
-#: src/screens/Moderation/index.tsx:399
+#: src/screens/Moderation/index.tsx:418
msgid "Advanced"
msgstr "उन्नत"
+#: src/components/dialogs/ChangeEmailDialog.tsx:143
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+msgid "alice@example.com"
+msgstr ""
+
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:381
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
msgid "All accounts have been followed!"
msgstr "सबै खाताहरू पछ्याइएका छन्!"
-#: src/view/screens/Search/Search.tsx:370
-#: src/view/screens/Search/Search.tsx:405
-#: src/view/screens/Search/Search.tsx:407
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:64
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:99
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:101
msgid "All languages"
msgstr ""
-#: src/view/screens/Feeds.tsx:702
+#: src/view/screens/Feeds.tsx:705
msgid "All the feeds you've saved, right in one place."
msgstr "तपाईंले बचत गरेका सबै फिडहरू एउटै स्थानमा।"
@@ -671,10 +837,10 @@ msgstr "वैकल्पिक"
#: src/screens/Settings/AccessibilitySettings.tsx:56
#: src/view/com/composer/GifAltText.tsx:154
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
-#: src/view/com/composer/videos/SubtitleDialog.tsx:102
-#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
+#: src/view/com/composer/videos/SubtitleDialog.tsx:101
+#: src/view/com/composer/videos/SubtitleDialog.tsx:105
msgid "Alt text"
msgstr "वैकल्पिक पाठ"
@@ -688,19 +854,18 @@ msgstr "वैकल्पिक पाठले दृष्टिहीन र
#: src/view/com/composer/GifAltText.tsx:179
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:139
-msgid "Alt text will be truncated. Limit: {0} characters."
-msgstr "वैकल्पिक पाठ छोट्याइनेछ। सीमा: {0} अक्षरहरू।"
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr ""
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:93
-#: src/view/com/modals/VerifyEmail.tsx:132
msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
msgstr "एक इमेल {0} मा पठाइएको छ। यसमा एक पुष्टिकरण कोड समावेश छ, जसलाई तपाईं तल प्रविष्ट गर्न सक्नुहुन्छ।"
-#: src/view/com/modals/ChangeEmail.tsx:114
-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/ChangeEmailDialog.tsx:59
+msgid "An email has been sent to your previous address, {currentEmail}. It includes a confirmation code which you can enter below."
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:120
msgid "An email has been sent! Please enter the confirmation code included in the email below."
msgstr "इमेल पठाइएको छ! कृपया इमेलमा समावेश गरिएको पुष्टिकरण कोड तल प्रविष्ट गर्नुहोस्।"
@@ -716,7 +881,11 @@ msgstr "त्रुटि भयो"
msgid "An error occurred while compressing the video."
msgstr "भिडियो संकुचन गर्दा त्रुटि भयो।"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/state/queries/explore-feed-previews.tsx:184
+msgid "An error occurred while fetching the feed."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:343
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "तपाईंको स्टार्टर प्याक निर्माण गर्दा त्रुटि भयो। के पुन: प्रयास गर्न चाहनुहुन्छ?"
@@ -729,16 +898,15 @@ msgid "An error occurred while loading the video. Please try again."
msgstr "भिडियो लोड गर्दा त्रुटि भयो। कृपया पुन: प्रयास गर्नुहोस्।"
#: src/components/StarterPack/QrCodeDialog.tsx:72
-#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "QR कोड बचत गर्दा त्रुटि भयो!"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:83
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:63
msgid "An error occurred while selecting the video"
msgstr "भिडियो चयन गर्दा त्रुटि भयो"
-#: src/screens/StarterPack/StarterPackScreen.tsx:347
-#: src/screens/StarterPack/StarterPackScreen.tsx:369
+#: src/screens/StarterPack/StarterPackScreen.tsx:352
+#: src/screens/StarterPack/StarterPackScreen.tsx:374
msgid "An error occurred while trying to follow all"
msgstr "सबैलाई पछ्याउने प्रयास गर्दा त्रुटि भयो"
@@ -746,12 +914,17 @@ msgstr "सबैलाई पछ्याउने प्रयास गर्
msgid "An error occurred while uploading the video."
msgstr "भिडियो अपलोड गर्दा त्रुटि भयो।"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
+#: src/components/verification/VerifierDialog.tsx:86
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:28
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "यी विकल्पहरूमा समावेश नभएको समस्या"
-#: src/components/dms/dialogs/NewChatDialog.tsx:41
+#: src/components/dms/dialogs/NewChatDialog.tsx:38
msgid "An issue occurred starting the chat"
msgstr "कुराकानी सुरु गर्दा समस्या भयो"
@@ -761,13 +934,17 @@ msgstr "कुराकानी खोल्ने प्रयास गर्
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:332
-#: src/components/ProfileCard.tsx:353
+#: src/components/ProfileCard.tsx:386
+#: src/components/ProfileCard.tsx:407
#: src/view/com/profile/FollowButton.tsx:38
#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "समस्या भयो, कृपया पुन: प्रयास गर्नुहोस्।"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:185
msgid "an unknown error occurred"
msgstr "अज्ञात त्रुटि भयो"
@@ -790,6 +967,10 @@ msgstr "जनावरहरू"
msgid "Animated GIF"
msgstr "एनिमेटेड GIF"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+msgid "Announcing verification on Bluesky"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:33
#: src/lib/moderation/useReportOptions.ts:33
msgid "Anti-Social Behavior"
@@ -799,14 +980,14 @@ msgstr "विरोधी सामाजिक व्यवहार"
msgid "Anybody can interact"
msgstr "कुनै पनि व्यक्ति अन्तरक्रिया गर्न सक्छन्"
-#: src/Navigation.tsx:391
+#: src/Navigation.tsx:411
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:80
+#: src/screens/Settings/LanguageSettings.tsx:87
msgid "App Language"
msgstr "एपको भाषा"
@@ -817,7 +998,7 @@ msgstr "एप पासवर्ड"
#: src/screens/Settings/AppPasswords.tsx:147
msgctxt "toast"
msgid "App password deleted"
-msgstr ""
+msgstr "एप पासवर्ड मेटाइएको छ"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
@@ -836,7 +1017,7 @@ msgstr "एप पासवर्ड नाम कम्तिमा ४ वर
msgid "App passwords"
msgstr "एप पासवर्डहरू"
-#: src/Navigation.tsx:311
+#: src/Navigation.tsx:323
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "एप पासवर्डहरू"
@@ -854,7 +1035,7 @@ msgstr "\"{0}\" लेबलको लागि अपील"
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgctxt "toast"
msgid "Appeal submitted"
-msgstr ""
+msgstr "अपील बुझाइएको छ।"
#: src/screens/Takendown.tsx:111
#: src/screens/Takendown.tsx:144
@@ -872,10 +1053,10 @@ msgstr ""
msgid "Appeal this decision"
msgstr "यो निर्णयको अपील गर्नुहोस्।"
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:363
#: src/screens/Settings/AppearanceSettings.tsx:85
-#: src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
+#: src/screens/Settings/Settings.tsx:193
+#: src/screens/Settings/Settings.tsx:196
msgid "Appearance"
msgstr "रूपरङ्ग"
@@ -884,12 +1065,12 @@ msgstr "रूपरङ्ग"
msgid "Apply default recommended feeds"
msgstr "डिफल्ट सिफारिस गरिएका फिडहरू लागू गर्नुहोस्।"
-#: src/view/com/post-thread/PostThreadItem.tsx:845
+#: src/view/com/post-thread/PostThreadItem.tsx:945
msgid "Archived from {0}"
msgstr "{0} बाट आर्काइभ गरिएको"
-#: src/view/com/post-thread/PostThreadItem.tsx:814
-#: src/view/com/post-thread/PostThreadItem.tsx:853
+#: src/view/com/post-thread/PostThreadItem.tsx:914
+#: src/view/com/post-thread/PostThreadItem.tsx:953
msgid "Archived post"
msgstr "आर्काइभ गरिएको पोस्ट"
@@ -897,15 +1078,15 @@ msgstr "आर्काइभ गरिएको पोस्ट"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "के तपाईं \"{0}\" एप पासवर्ड मेटाउन निश्चित हुनुहुन्छ?"
-#: src/components/dms/MessageMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:189
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:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
msgid "Are you sure you want to delete this starter pack?"
msgstr "के तपाईं यो स्टार्टर प्याक मेटाउन निश्चित हुनुहुन्छ?"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:82
+#: src/screens/Profile/Header/EditProfileDialog.tsx:86
msgid "Are you sure you want to discard your changes?"
msgstr "के तपाईं आफ्ना परिवर्तनहरू हटाउन निश्चित हुनुहुन्छ?"
@@ -921,15 +1102,15 @@ msgstr "के तपाईं यो कुराकानी छोड्न
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "के तपाईं {0} लाई आफ्नो फिडहरूबाट हटाउन निश्चित हुनुहुन्छ?"
-#: src/components/FeedCard.tsx:312
+#: src/components/FeedCard.tsx:340
msgid "Are you sure you want to remove this from your feeds?"
msgstr "के तपाईं यसलाई आफ्नो फिडहरूबाट हटाउन निश्चित हुनुहुन्छ?"
-#: src/view/com/composer/Composer.tsx:694
+#: src/view/com/composer/Composer.tsx:682
msgid "Are you sure you'd like to discard this draft?"
msgstr "के तपाईं यस मस्यौदा हटाउन चाहनुहुन्छ?"
-#: src/view/com/composer/Composer.tsx:868
+#: src/view/com/composer/Composer.tsx:861
msgid "Are you sure you'd like to discard this post?"
msgstr "के तपाईं यस पोस्ट हटाउन चाहनुहुन्छ?"
@@ -937,7 +1118,7 @@ msgstr "के तपाईं यस पोस्ट हटाउन चाह
msgid "Are you sure?"
msgstr "के तपाईं निश्चित हुनुहुन्छ?"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -946,11 +1127,16 @@ msgstr ""
msgid "Art"
msgstr "कला"
-#: src/view/com/composer/labels/LabelsBtn.tsx:172
+#: src/view/com/composer/labels/LabelsBtn.tsx:171
msgid "Artistic or non-erotic nudity."
msgstr "कलात्मक वा गैर-इरोटिक नग्नता।"
-#: src/screens/Signup/StepHandle.tsx:182
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:482
+msgid "Assign topic for algo"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:194
msgid "At least 3 characters"
msgstr "कम्तिमा ३ अक्षरहरू"
@@ -963,12 +1149,12 @@ msgstr ""
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "अटोप्ले विकल्पहरू <0>सामग्री र मिडिया सेटिङ्स0> मा सारिएको छ।"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:107
-#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+#: src/screens/Settings/ContentAndMediaSettings.tsx:116
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
msgid "Autoplay videos and GIFs"
msgstr "भिडियो र GIF हरू अटोप्ले गर्नुहोस्"
-#: src/components/dms/MessagesListHeader.tsx:82
+#: src/components/dms/MessagesListHeader.tsx:84
#: src/components/moderation/LabelsOnMeDialog.tsx:315
#: src/components/moderation/LabelsOnMeDialog.tsx:316
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -981,68 +1167,69 @@ msgstr "भिडियो र GIF हरू अटोप्ले गर्न
#: src/screens/Login/SetNewPasswordForm.tsx:170
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Profile/Header/Shell.tsx:158
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "फिर्ता"
-#: src/screens/Messages/Inbox.tsx:233
+#: src/screens/Messages/Inbox.tsx:238
msgid "Back to Chats"
msgstr ""
-#: src/view/screens/Lists.tsx:81
-#: src/view/screens/ModerationModlists.tsx:81
+#: src/view/screens/Lists.tsx:53
+#: src/view/screens/ModerationModlists.tsx:53
msgid "Before creating a list, you must first verify your email."
msgstr "सूची सिर्जना गर्नु अघि, तपाईंले पहिले आफ्नो इमेल प्रमाणित गर्नुपर्छ।"
-#: src/view/com/composer/Composer.tsx:621
-msgid "Before creating a post, you must first verify your email."
-msgstr "पोस्ट सिर्जना गर्नु अघि, तपाईंले पहिले आफ्नो इमेल प्रमाणित गर्नुपर्छ।"
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:235
+#: src/components/StarterPack/ProfileStarterPacks.tsx:245
msgid "Before creating a starter pack, you must first verify your email."
msgstr "स्टार्टर प्याक सिर्जना गर्नु अघि, तपाईंले पहिले आफ्नो इमेल प्रमाणित गर्नुपर्छ।"
-#: src/components/dms/dialogs/NewChatDialog.tsx:79
-#: src/components/dms/MessageProfileButton.tsx:110
-#: src/screens/Messages/Conversation.tsx:212
-msgid "Before you may message another user, you must first verify your email."
-msgstr "अर्को प्रयोगकर्तालाई सन्देश पठाउनु अघि, तपाईंले पहिले आफ्नो इमेल प्रमाणित गर्नुपर्छ।"
+#: src/screens/Messages/components/RequestButtons.tsx:235
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr ""
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
-msgid "BETA"
+#: src/components/dms/dialogs/NewChatDialog.tsx:54
+#: src/components/dms/MessageProfileButton.tsx:58
+#: src/screens/Messages/ChatList.tsx:332
+#: src/screens/Messages/Conversation.tsx:213
+msgid "Before you can message another user, you must first verify your email."
msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:103
-#: src/screens/Settings/AccountSettings.tsx:109
+#: src/screens/Settings/AccountSettings.tsx:120
msgid "Birthday"
msgstr "जन्मदिन"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:832
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:742
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
msgid "Block"
msgstr "ब्लक गर्नुहोस्"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/screens/Messages/components/RequestButtons.tsx:134
-#: src/screens/Messages/components/RequestButtons.tsx:136
-#: src/view/com/profile/ProfileMenu.tsx:310
-#: src/view/com/profile/ProfileMenu.tsx:317
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:671
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:627
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
+#: src/screens/Messages/components/RequestButtons.tsx:144
+#: src/screens/Messages/components/RequestButtons.tsx:146
+#: src/view/com/profile/ProfileMenu.tsx:384
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Block account"
msgstr "खाता ब्लक गर्नुहोस्"
-#: src/view/com/profile/ProfileMenu.tsx:382
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:827
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/view/com/profile/ProfileMenu.tsx:456
msgid "Block Account?"
msgstr "खाता ब्लक गर्नुहोस्?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:669
msgid "Block accounts"
msgstr "खाताहरू ब्लक गर्नुहोस्"
@@ -1054,7 +1241,7 @@ msgstr ""
msgid "Block and/or delete this conversation"
msgstr ""
-#: src/view/screens/ProfileList.tsx:782
+#: src/view/screens/ProfileList.tsx:789
msgid "Block list"
msgstr "ब्लक सूची"
@@ -1062,7 +1249,7 @@ msgstr "ब्लक सूची"
msgid "Block or report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:777
+#: src/view/screens/ProfileList.tsx:784
msgid "Block these accounts?"
msgstr "यी खाताहरू ब्लक गर्नुहोस्?"
@@ -1079,21 +1266,21 @@ msgstr ""
msgid "Blocked"
msgstr "ब्लक गरियो"
-#: src/screens/Moderation/index.tsx:269
+#: src/screens/Moderation/index.tsx:273
msgid "Blocked accounts"
msgstr "ब्लक गरिएका खाताहरू"
-#: src/Navigation.tsx:160
-#: src/view/screens/ModerationBlockedAccounts.tsx:101
+#: src/Navigation.tsx:164
+#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr "ब्लक गरिएका खाताहरू"
-#: src/view/com/profile/ProfileMenu.tsx:394
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:829
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:468
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "ब्लक गरिएका खाताहरूले तपाईंको थ्रेडहरूमा उत्तर दिन सक्दैनन्, तपाईंलाई उल्लेख गर्न सक्दैनन्, वा अन्यथा तपाईंसँग अन्तरक्रिया गर्न सक्दैनन्।"
-#: src/view/screens/ModerationBlockedAccounts.tsx:112
+#: src/view/screens/ModerationBlockedAccounts.tsx:190
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 "ब्लक गरिएका खाताहरूले तपाईंको थ्रेडहरूमा उत्तर दिन सक्दैनन्, तपाईंलाई उल्लेख गर्न सक्दैनन्, वा अन्यथा तपाईंसँग अन्तरक्रिया गर्न सक्दैनन्। तपाईंले उनीहरूको सामग्री देख्न सक्नुहुन्न र तिनीहरूले तपाईंको सामग्री हेर्नबाट रोकिनेछन्।"
@@ -1101,19 +1288,19 @@ msgstr "ब्लक गरिएका खाताहरूले तपाई
msgid "Blocked post."
msgstr "ब्लक गरिएको पोस्ट।"
-#: src/screens/Profile/Sections/Labels.tsx:173
+#: src/screens/Profile/Sections/Labels.tsx:170
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "ब्लकले यस लेबलकर्ताले तपाईंको खातामा लेबल राख्नबाट रोक्दैन।"
-#: src/view/screens/ProfileList.tsx:779
+#: src/view/screens/ProfileList.tsx:786
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "ब्लक सार्वजनिक हुन्छ। ब्लक गरिएका खाताहरूले तपाईंको थ्रेडहरूमा उत्तर दिन सक्दैनन्, तपाईंलाई उल्लेख गर्न सक्दैनन्, वा अन्यथा तपाईंसँग अन्तरक्रिया गर्न सक्दैनन्।"
-#: src/view/com/profile/ProfileMenu.tsx:391
+#: src/view/com/profile/ProfileMenu.tsx:465
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:173
+#: src/view/com/auth/SplashScreen.web.tsx:175
msgid "Blog"
msgstr "ब्लग"
@@ -1122,7 +1309,7 @@ msgstr "ब्लग"
msgid "Bluesky"
msgstr "ब्लूस्काई"
-#: src/view/com/post-thread/PostThreadItem.tsx:870
+#: src/view/com/post-thread/PostThreadItem.tsx:970
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "ब्लूस्काईले दाबी गरिएको मितिको प्रामाणिकता पुष्टि गर्न सक्दैन।"
@@ -1148,7 +1335,7 @@ msgstr "ब्लूस्काई साथीहरूसँग अझ रा
msgid "Bluesky Social Terms of Service"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:298
+#: src/components/StarterPack/ProfileStarterPacks.tsx:310
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "ब्लूस्काई तपाईंको नेटवर्कका मानिसहरूबाट सिफारिस गरिएका खाताहरूको सेट चयन गर्नेछ।"
@@ -1156,6 +1343,10 @@ msgstr "ब्लूस्काई तपाईंको नेटवर्क
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "ब्लूस्काईले तपाईंको प्रोफाइल र पोस्टहरू लगआउट गरिएका प्रयोगकर्ताहरूलाई देखाउने छैन। अन्य एपहरूले यस अनुरोधको पालना नगर्न सक्छन्। यसले तपाईंको खाता निजी बनाउँदैन।"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr ""
+
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
msgstr ""
@@ -1177,23 +1368,23 @@ msgstr "चित्रहरू धुंधला गर्नुहोस्
msgid "Books"
msgstr "पुस्तकहरू"
-#: src/components/FeedInterstitials.tsx:372
+#: src/components/FeedInterstitials.tsx:373
msgid "Browse more accounts on the Explore page"
msgstr "एक्सप्लोर पृष्ठमा थप खाता ब्राउज गर्नुहोस्"
-#: src/components/FeedInterstitials.tsx:509
+#: src/components/FeedInterstitials.tsx:511
msgid "Browse more feeds on the Explore page"
msgstr "एक्सप्लोर पृष्ठमा थप फिड ब्राउज गर्नुहोस्"
#: src/components/FeedInterstitials.tsx:353
#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
-#: src/components/FeedInterstitials.tsx:493
+#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions"
msgstr "थप सुझावहरू ब्राउज गर्नुहोस्"
-#: src/components/FeedInterstitials.tsx:380
-#: src/components/FeedInterstitials.tsx:518
+#: src/components/FeedInterstitials.tsx:381
+#: src/components/FeedInterstitials.tsx:520
msgid "Browse more suggestions on the Explore page"
msgstr "एक्सप्लोर पृष्ठमा थप सुझावहरू ब्राउज गर्नुहोस्"
@@ -1214,20 +1405,26 @@ msgstr ""
msgid "Browse starter pack {displayName}"
msgstr ""
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+msgid "Browse topic {0}"
+msgstr ""
+
#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:168
+#: src/view/com/auth/SplashScreen.web.tsx:170
msgid "Business"
msgstr "व्यापार"
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:672
+#: src/components/moderation/ReportDialog/index.tsx:680
+#: src/screens/Search/components/StarterPackCard.tsx:106
+#: src/screens/Search/Explore.tsx:934
msgid "By {0}"
msgstr "{0} द्वारा"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:443
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
@@ -1243,44 +1440,51 @@ msgstr "खाता सिर्जना गरेर तपाईं <0>स
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "खाता सिर्जना गरेर तपाईं <0>सेवा सर्तहरू0> सँग सहमत हुनुहुन्छ।"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+#: src/screens/Search/components/StarterPackCard.tsx:105
+msgid "By you"
+msgstr ""
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Camera"
msgstr "क्यामेरा"
-#: src/components/Menu/index.tsx:304
-#: src/components/Prompt.tsx:130
-#: src/components/Prompt.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131
+#: src/components/dialogs/InAppBrowserConsent.tsx:98
+#: src/components/dialogs/InAppBrowserConsent.tsx:104
+#: src/components/live/GoLiveDialog.tsx:247
+#: src/components/live/GoLiveDialog.tsx:253
+#: src/components/Menu/index.tsx:339
+#: src/components/PostControls/RepostButton.tsx:198
+#: src/components/Prompt.tsx:143
+#: src/components/Prompt.tsx:145
#: src/screens/Deactivated.tsx:158
-#: src/screens/Profile/Header/EditProfileDialog.tsx:220
-#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Profile/Header/EditProfileDialog.tsx:225
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Search/Shell.tsx:349
#: src/screens/Settings/AppIconSettings/index.tsx:44
#: src/screens/Settings/AppIconSettings/index.tsx:225
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
-#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:78
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:85
+#: src/screens/Settings/Settings.tsx:270
#: src/screens/Takendown.tsx:99
#: src/screens/Takendown.tsx:102
-#: src/view/com/composer/Composer.tsx:931
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/composer/Composer.tsx:916
+#: src/view/com/composer/Composer.tsx:927
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
-#: src/view/com/modals/CreateOrEditList.tsx:335
+#: src/view/com/modals/CreateOrEditList.tsx:333
#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
+#: src/view/com/modals/EditProfile.tsx:269
#: src/view/com/modals/LinkWarning.tsx:105
#: 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:213
-#: src/view/screens/Search/Search.tsx:890
-#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:213
msgid "Cancel"
msgstr "रद्द गर्नुहोस्"
-#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/CreateOrEditList.tsx:338
#: src/view/com/modals/DeleteAccount.tsx:170
#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
@@ -1296,11 +1500,11 @@ msgstr "खाता मेटाउन रद्द गर्नुहोस्
msgid "Cancel image crop"
msgstr "चित्र काट्ने कार्य रद्द गर्नुहोस्"
-#: src/view/com/modals/EditProfile.tsx:239
+#: src/view/com/modals/EditProfile.tsx:264
msgid "Cancel profile editing"
msgstr "प्रोफाइल सम्पादन रद्द गर्नुहोस्"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+#: src/components/PostControls/RepostButton.tsx:192
msgid "Cancel quote post"
msgstr "कोट पोस्ट रद्द गर्नुहोस्"
@@ -1308,8 +1512,7 @@ msgstr "कोट पोस्ट रद्द गर्नुहोस्"
msgid "Cancel reactivation and sign out"
msgstr "पुनः सक्रियता रद्द गर्नुहोस् र लग आउट गर्नुहोस्"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:882
+#: src/screens/Search/Shell.tsx:341
msgid "Cancel search"
msgstr "खोजी रद्द गर्नुहोस्"
@@ -1317,24 +1520,23 @@ msgstr "खोजी रद्द गर्नुहोस्"
msgid "Cancels opening the linked website"
msgstr "लिङ्क गरिएको वेबसाइट खोल्ने कार्य रद्द गर्नुहोस्"
+#: src/components/PostControls/index.tsx:101
+#: src/components/PostControls/index.tsx:132
+#: src/components/PostControls/index.tsx:160
#: src/state/shell/composer/index.tsx:82
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:118
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:159
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:195
msgid "Cannot interact with a blocked user"
msgstr "ब्लक गरिएको प्रयोगकर्तासँग अन्तरक्रिया गर्न सकिँदैन"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+#: src/view/com/composer/videos/SubtitleDialog.tsx:132
msgid "Captions (.vtt)"
msgstr "उपशीर्षक (.vtt)"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:41
-#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:40
+#: src/view/com/composer/videos/SubtitleDialog.tsx:55
msgid "Captions & alt text"
msgstr "उपशीर्षक र वैकल्पिक पाठ"
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
-#: src/view/com/modals/VerifyEmail.tsx:160
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "परिवर्तन गर्नुहोस्"
@@ -1347,46 +1549,41 @@ msgstr ""
msgid "Change app icon to \"{0}\""
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:97
-#: src/screens/Settings/AccountSettings.tsx:101
-msgid "Change email"
-msgstr "इमेल परिवर्तन गर्नुहोस्"
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:162
-#: src/components/dialogs/VerifyEmailDialog.tsx:187
+#: src/components/dialogs/VerifyEmailDialog.tsx:200
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
msgid "Change email address"
msgstr "इमेल ठेगाना परिवर्तन गर्नुहोस्"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:94
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:98
msgid "Change Handle"
msgstr "ह्यान्डल परिवर्तन गर्नुहोस्"
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:322
msgid "Change moderation service"
msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:155
-msgid "Change my email"
-msgstr "मेरो इमेल परिवर्तन गर्नुहोस्"
-
#: src/view/com/modals/ChangePassword.tsx:153
msgid "Change Password"
msgstr "पासवर्ड परिवर्तन गर्नुहोस्"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:85
msgid "Change post language to {suggestedLanguageName}"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:236
+#: src/components/moderation/ReportDialog/index.tsx:244
msgid "Change report reason"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:104
+#: src/components/dialogs/ChangeEmailDialog.tsx:53
msgid "Change Your Email"
msgstr "तपाईंको इमेल परिवर्तन गर्नुहोस्"
-#: src/components/dialogs/VerifyEmailDialog.tsx:171
+#: src/components/dialogs/VerifyEmailDialog.tsx:209
msgid "Change your email address"
msgstr "तपाईंको इमेल ठेगाना परिवर्तन गर्नुहोस्"
@@ -1394,20 +1591,20 @@ msgstr "तपाईंको इमेल ठेगाना परिवर्
msgid "Changes app icon"
msgstr ""
-#: src/components/forms/HostingProvider.tsx:50
-#: src/components/forms/HostingProvider.tsx:70
+#: src/components/forms/HostingProvider.tsx:49
+#: src/components/forms/HostingProvider.tsx:69
msgid "Changes hosting provider"
msgstr ""
-#: src/Navigation.tsx:408
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:534
-#: src/view/shell/Drawer.tsx:422
+#: src/Navigation.tsx:428
+#: src/view/shell/bottom-bar/BottomBar.tsx:211
+#: src/view/shell/desktop/LeftNav.tsx:553
+#: src/view/shell/Drawer.tsx:441
msgid "Chat"
msgstr "कुराकानी"
-#: src/screens/Messages/components/RequestButtons.tsx:68
-#: src/screens/Messages/components/RequestButtons.tsx:280
+#: src/screens/Messages/components/RequestButtons.tsx:78
+#: src/screens/Messages/components/RequestButtons.tsx:304
msgctxt "toast"
msgid "Chat deleted"
msgstr ""
@@ -1415,22 +1612,21 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:176
msgctxt "toast"
msgid "Chat muted"
-msgstr ""
+msgstr "कुराकानी म्यूट गरियो"
-#: src/Navigation.tsx:418
+#: src/Navigation.tsx:438
#: src/screens/Messages/components/InboxPreview.tsx:24
msgid "Chat request inbox"
msgstr ""
#: src/screens/Messages/components/InboxPreview.tsx:64
-#: src/screens/Messages/Inbox.tsx:72
+#: src/screens/Messages/Inbox.tsx:77
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:75
-#: src/components/dms/MessageMenu.tsx:83
-#: src/Navigation.tsx:413
-#: src/screens/Messages/ChatList.tsx:327
+#: src/Navigation.tsx:433
+#: src/screens/Messages/ChatList.tsx:341
msgid "Chat settings"
msgstr "कुराकानी सेटिङ्स"
@@ -1441,10 +1637,10 @@ msgstr "कुराकानी सेटिङ्स"
#: src/components/dms/ConvoMenu.tsx:178
msgctxt "toast"
msgid "Chat unmuted"
-msgstr ""
+msgstr "कुराकानी अनम्यूट गरियो"
-#: src/screens/Messages/ChatList.tsx:343
-#: src/screens/Messages/ChatList.tsx:367
+#: src/screens/Messages/ChatList.tsx:357
+#: src/screens/Messages/ChatList.tsx:381
msgid "Chats"
msgstr ""
@@ -1461,7 +1657,7 @@ msgstr "तपाईंको इमेलमा लगइन कोड जा
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "तल प्रविष्ट गर्नको लागि पुष्टिकरण कोड भएको इमेलको लागि तपाईंको इनबक्स जाँच गर्नुहोस्:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Choose domain verification method"
msgstr "डोमेन प्रमाणीकरण विधि छान्नुहोस्"
@@ -1469,7 +1665,7 @@ msgstr "डोमेन प्रमाणीकरण विधि छान्
msgid "Choose Feeds"
msgstr "फिडहरू छान्नुहोस्"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:306
+#: src/components/StarterPack/ProfileStarterPacks.tsx:318
msgid "Choose for me"
msgstr "मेरो लागि छान्नुहोस्"
@@ -1477,10 +1673,6 @@ msgstr "मेरो लागि छान्नुहोस्"
msgid "Choose People"
msgstr "व्यक्तिहरू छान्नुहोस्"
-#: src/view/com/composer/labels/LabelsBtn.tsx:115
-msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
-msgstr "तपाईंले पोस्ट गर्न लागेको मिडियाका लागि उपयुक्त स्व-लेबलहरू छान्नुहोस्। यदि कुनै पनि चयन गरिएको छैन भने, यो पोस्ट सबै दर्शकहरूका लागि उपयुक्त छ।"
-
#: src/screens/Onboarding/StepFinished.tsx:298
msgid "Choose the algorithms that power your custom feeds."
msgstr "तपाईंका अनुकूलन फिडहरूलाई सक्षम बनाउने एल्गोरिदम छान्नुहोस्।"
@@ -1493,27 +1685,31 @@ msgstr "यो रंगलाई आफ्नो अवतारको रू
msgid "Choose your account provider"
msgstr ""
-#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Feeds.tsx:731
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:238
+#: src/screens/Signup/StepInfo/index.tsx:241
msgid "Choose your password"
msgstr "तपाईंको पासवर्ड छान्नुहोस्"
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:160
msgid "Choose your username"
msgstr ""
-#: src/screens/Settings/Settings.tsx:351
+#: src/screens/Settings/Settings.tsx:423
msgid "Clear all storage data"
msgstr "सबै भण्डारण डाटा खाली गर्नुहोस्"
-#: src/screens/Settings/Settings.tsx:353
+#: src/screens/Settings/Settings.tsx:425
msgid "Clear all storage data (restart after this)"
msgstr "सबै भण्डारण डाटा खाली गर्नुहोस् (यसपछि पुनः सुरु गर्नुहोस्)"
+#: src/screens/Settings/AboutSettings.tsx:116
+#: src/screens/Settings/AboutSettings.tsx:120
+msgid "Clear image cache"
+msgstr ""
+
#: src/components/forms/SearchInput.tsx:70
msgid "Clear search query"
msgstr "खोज प्रश्न खाली गर्नुहोस्"
@@ -1522,6 +1718,14 @@ msgstr "खोज प्रश्न खाली गर्नुहोस्"
msgid "click here"
msgstr "यहाँ क्लिक गर्नुहोस्"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:371
+msgid "Click here to restart the verification process."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+msgid "Click here to update your email"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to disable quote posts of this post."
msgstr "यो पोस्टको कोट पोस्टहरू अक्षम गर्न क्लिक गर्नुहोस्।"
@@ -1534,7 +1738,7 @@ msgstr "यो पोस्टको कोट पोस्टहरू सक
msgid "Click to open tag menu for {tag}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:241
+#: src/components/dms/MessageItem.tsx:317
msgid "Click to retry failed message"
msgstr "असफल सन्देश पुन: प्रयास गर्न क्लिक गर्नुहोस्"
@@ -1546,24 +1750,34 @@ msgstr "जलवायु"
msgid "Clip 🐴 clop 🐴"
msgstr "क्लिप 🐴 क्लोप 🐴"
+#: src/components/dialogs/ChangeEmailDialog.tsx:244
+#: src/components/dialogs/ChangeEmailDialog.tsx:250
#: src/components/dialogs/GifSelect.tsx:281
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:269
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/SearchablePeopleList.tsx:295
+#: src/components/dialogs/VerifyEmailDialog.tsx:346
+#: src/components/dialogs/VerifyEmailDialog.tsx:352
+#: src/components/dms/EmojiPopup.android.tsx:58
#: src/components/dms/ReportDialog.tsx:381
#: src/components/dms/ReportDialog.tsx:390
+#: src/components/live/EditLiveDialog.tsx:229
+#: src/components/live/EditLiveDialog.tsx:235
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: src/components/ProgressGuide/FollowDialog.tsx:386
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
+#: src/components/verification/VerificationsDialog.tsx:144
+#: src/components/verification/VerifierDialog.tsx:144
#: src/view/com/modals/ChangePassword.tsx:279
#: src/view/com/modals/ChangePassword.tsx:282
#: src/view/com/util/post-embeds/GifEmbed.tsx:197
msgid "Close"
msgstr "बन्द गर्नुहोस्"
-#: src/components/Dialog/index.web.tsx:113
-#: src/components/Dialog/index.web.tsx:261
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:259
msgid "Close active dialog"
msgstr "सक्रिय संवाद बन्द गर्नुहोस्"
@@ -1576,15 +1790,17 @@ msgid "Close bottom drawer"
msgstr "तलको दराज बन्द गर्नुहोस्"
#: src/components/dialogs/GifSelect.tsx:275
+#: src/components/verification/VerificationsDialog.tsx:136
+#: src/components/verification/VerifierDialog.tsx:136
msgid "Close dialog"
msgstr "संवाद बन्द गर्नुहोस्"
-#: src/view/shell/index.web.tsx:83
+#: src/view/shell/index.web.tsx:85
msgid "Close drawer menu"
msgstr ""
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172
msgid "Close emoji picker"
msgstr ""
@@ -1600,7 +1816,13 @@ msgstr "चित्र बन्द गर्नुहोस्"
msgid "Close image viewer"
msgstr "चित्र दर्शक बन्द गर्नुहोस्"
-#: src/components/Menu/index.tsx:298
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+msgid "Close menu"
+msgstr ""
+
+#: src/components/Menu/index.tsx:333
msgid "Close this dialog"
msgstr "यो संवाद बन्द गर्नुहोस्"
@@ -1608,8 +1830,12 @@ msgstr "यो संवाद बन्द गर्नुहोस्"
msgid "Closes password update alert"
msgstr "पासवर्ड अद्यावधिक चेतावनी बन्द गर्नुहोस्"
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+#: src/view/com/composer/Composer.tsx:924
+msgid "Closes post composer and discards post draft"
+msgstr ""
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Closes the emoji picker"
msgstr ""
@@ -1617,11 +1843,11 @@ msgstr ""
msgid "Closes viewer for header image"
msgstr "हेडर चित्रको दर्शक बन्द गर्नुहोस्"
-#: src/view/com/notifications/NotificationFeedItem.tsx:405
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
msgid "Collapse list of users"
msgstr "प्रयोगकर्ताहरूको सूची संक्षेप गर्नुहोस्"
-#: src/view/com/notifications/NotificationFeedItem.tsx:598
+#: src/view/com/notifications/NotificationFeedItem.tsx:748
msgid "Collapses list of users for a given notification"
msgstr "दिइएको सूचना लागि प्रयोगकर्ताहरूको सूची संक्षेप गर्दछ"
@@ -1644,7 +1870,7 @@ msgstr "कमेडी"
msgid "Comics"
msgstr "कमिक्स"
-#: src/Navigation.tsx:301
+#: src/Navigation.tsx:313
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "समुदायका दिशानिर्देशहरू"
@@ -1653,23 +1879,23 @@ msgstr "समुदायका दिशानिर्देशहरू"
msgid "Complete onboarding and start using your account"
msgstr "अनबोर्डिङ पूरा गर्नुहोस् र आफ्नो खाता प्रयोग गर्न सुरु गर्नुहोस्"
-#: src/screens/Signup/index.tsx:148
+#: src/screens/Signup/index.tsx:162
msgid "Complete the challenge"
msgstr "चुनौती पूरा गर्नुहोस्"
-#: src/view/shell/desktop/LeftNav.tsx:499
+#: src/view/shell/desktop/LeftNav.tsx:518
msgid "Compose new post"
msgstr "नयाँ पोस्ट तयार गर्नुहोस्"
-#: src/view/com/composer/Composer.tsx:834
-msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
-msgstr "पोस्टहरू {MAX_GRAPHEME_LENGTH} वर्ण लामोसम्म तयार गर्नुहोस्"
+#: src/view/com/composer/Composer.tsx:825
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr ""
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
msgid "Compose reply"
msgstr "जवाफ तयार गर्नुहोस्"
-#: src/view/com/composer/Composer.tsx:1652
+#: src/view/com/composer/Composer.tsx:1669
msgid "Compressing video..."
msgstr "भिडियो कम्प्रेस गर्दै..."
@@ -1681,23 +1907,17 @@ msgstr "श्रेणी: {name} का लागि सामग्री फ
msgid "Configured in <0>moderation settings0>."
msgstr "<0>मोडरेशन सेटिङ्स0> मा कन्फिगर गरिएको।"
-#: src/components/dialogs/VerifyEmailDialog.tsx:253
-#: src/components/dialogs/VerifyEmailDialog.tsx:260
-#: src/components/dialogs/VerifyEmailDialog.tsx:283
-#: src/components/Prompt.tsx:173
-#: src/components/Prompt.tsx:176
+#: src/components/dialogs/ChangeEmailDialog.tsx:203
+#: src/components/dialogs/ChangeEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:316
+#: src/components/dialogs/VerifyEmailDialog.tsx:323
+#: src/components/Prompt.tsx:186
+#: src/components/Prompt.tsx:189
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "पुष्टि गर्नुहोस्"
-#: src/view/com/modals/ChangeEmail.tsx:188
-#: src/view/com/modals/ChangeEmail.tsx:190
-msgid "Confirm Change"
-msgstr "परिवर्तन पुष्टि गर्नुहोस्"
-
#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
msgid "Confirm content language settings"
msgstr "सामग्री भाषा सेटिङ पुष्टि गर्नुहोस्"
@@ -1706,26 +1926,27 @@ msgstr "सामग्री भाषा सेटिङ पुष्टि
msgid "Confirm delete account"
msgstr "खाता मेटाउने पुष्टि गर्नुहोस्"
-#: src/screens/Moderation/index.tsx:303
+#: src/screens/Moderation/index.tsx:322
msgid "Confirm your age:"
msgstr "तपाईंको उमेर पुष्टि गर्नुहोस्:"
-#: src/screens/Moderation/index.tsx:294
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your birthdate"
msgstr "तपाईंको जन्ममिति पुष्टि गर्नुहोस्"
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/components/dialogs/ChangeEmailDialog.tsx:160
+#: src/components/dialogs/ChangeEmailDialog.tsx:164
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:36
+#: src/components/dialogs/VerifyEmailDialog.tsx:252
#: src/screens/Login/LoginForm.tsx:274
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/view/com/modals/ChangeEmail.tsx:152
#: src/view/com/modals/DeleteAccount.tsx:220
#: src/view/com/modals/DeleteAccount.tsx:226
-#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "पुष्टिकरण कोड"
-#: src/components/dialogs/VerifyEmailDialog.tsx:210
+#: src/components/dialogs/VerifyEmailDialog.tsx:248
msgid "Confirmation Code"
msgstr "पुष्टिकरण कोड"
@@ -1733,22 +1954,22 @@ msgstr "पुष्टिकरण कोड"
msgid "Connecting..."
msgstr "जोड्दैछ..."
-#: src/screens/Signup/index.tsx:179
-#: src/screens/Signup/index.tsx:182
+#: src/screens/Signup/index.tsx:197
+#: src/screens/Signup/index.tsx:200
msgid "Contact support"
msgstr "समर्थन सम्पर्क गर्नुहोस्"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+#: src/screens/Settings/ContentAndMediaSettings.tsx:51
msgid "Content & Media"
msgstr "सामग्री र मिडिया"
#: src/screens/Settings/AccessibilitySettings.tsx:109
-#: src/screens/Settings/Settings.tsx:175
-#: src/screens/Settings/Settings.tsx:178
+#: src/screens/Settings/Settings.tsx:185
+#: src/screens/Settings/Settings.tsx:188
msgid "Content and media"
msgstr "सामग्री र मिडिया"
-#: src/Navigation.tsx:375
+#: src/Navigation.tsx:387
msgid "Content and Media"
msgstr "सामग्री र मिडिया"
@@ -1756,15 +1977,15 @@ msgstr "सामग्री र मिडिया"
msgid "Content Blocked"
msgstr "सामग्री अवरुद्ध गरियो"
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:306
msgid "Content filters"
msgstr "सामग्री फिल्टरहरू"
-#: src/screens/Search/components/ExploreRecommendations.tsx:57
+#: src/screens/Search/modules/ExploreRecommendations.tsx:59
msgid "Content from across the network we think you might like."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:250
+#: src/screens/Settings/LanguageSettings.tsx:153
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr "सामग्री भाषाहरू"
@@ -1785,16 +2006,16 @@ msgstr "सामग्री चेतावनी"
msgid "Content warnings"
msgstr "सामग्री चेतावनीहरू"
-#: src/components/Menu/index.web.tsx:83
+#: src/components/Menu/index.web.tsx:85
msgid "Context menu backdrop, click to close the menu."
msgstr "सन्दर्भ मेनु पृष्ठभूमि, मेनु बन्द गर्न क्लिक गर्नुहोस्।"
#: src/screens/Onboarding/StepInterests/index.tsx:244
-#: src/screens/Onboarding/StepProfile/index.tsx:278
+#: src/screens/Onboarding/StepProfile/index.tsx:276
msgid "Continue"
msgstr "जारी राख्नुहोस्"
-#: src/components/AccountList.tsx:121
+#: src/components/AccountList.tsx:128
msgid "Continue as {0} (currently signed in)"
msgstr "{0} को रूपमा जारी राख्नुहोस् (हाल साइन इन गरिएको)"
@@ -1803,7 +2024,7 @@ msgid "Continue thread..."
msgstr "थ्रेड जारी राख्नुहोस्..."
#: src/screens/Onboarding/StepInterests/index.tsx:241
-#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Onboarding/StepProfile/index.tsx:273
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
msgstr "अर्को चरणमा जारी राख्नुहोस्"
@@ -1814,7 +2035,7 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr "वार्तालाप मेटाइयो"
-#: src/screens/Messages/components/ChatListItem.tsx:189
+#: src/screens/Messages/components/ChatListItem.tsx:196
msgid "Conversation deleted"
msgstr "वार्तालाप मेटाइयो"
@@ -1826,16 +2047,17 @@ msgstr "खाना पकाउने"
msgid "Copied"
msgstr "प्रतिलिपि गरियो"
-#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:151
msgid "Copied build version to clipboard"
msgstr "बिल्ड संस्करण क्लिपबोर्डमा प्रतिलिपि गरियो"
-#: src/components/dms/MessageMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:56
+#: src/components/PostControls/DiscoverDebug.tsx:42
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:233
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:68
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:246
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:394
msgid "Copied to clipboard"
msgstr "क्लिपबोर्डमा प्रतिलिपि गरियो"
@@ -1844,25 +2066,29 @@ msgstr "क्लिपबोर्डमा प्रतिलिपि गर
msgid "Copied!"
msgstr "प्रतिलिपि गरियो!"
-#: src/screens/Settings/AboutSettings.tsx:74
+#: src/screens/Settings/AboutSettings.tsx:127
msgid "Copies build version to clipboard"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
msgid "Copy"
msgstr "प्रतिलिपि गर्नुहोस्"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:186
+msgid "Copy anyway"
+msgstr ""
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr "एप पासवर्ड प्रतिलिपि गर्नुहोस्"
-#: src/view/com/profile/ProfileMenu.tsx:347
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
msgid "Copy at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:731
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:733
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
msgid "Copy author DID"
msgstr ""
@@ -1871,57 +2097,69 @@ msgstr ""
msgid "Copy code"
msgstr "कोड प्रतिलिपि गर्नुहोस्"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:491
+#: src/view/com/profile/ProfileMenu.tsx:430
+#: src/view/com/profile/ProfileMenu.tsx:433
msgid "Copy DID"
msgstr "DID प्रतिलिपि गर्नुहोस्"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:424
msgid "Copy host"
msgstr "होस्ट प्रतिलिपि गर्नुहोस्"
-#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link"
msgstr "लिंक प्रतिलिपि गर्नुहोस्"
-#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Copy Link"
msgstr "लिंक प्रतिलिपि गर्नुहोस्"
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Copy link to list"
msgstr "सूचीको लिंक प्रतिलिपि गर्नुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:139
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:93
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:102
msgid "Copy link to post"
msgstr "पोस्टको लिंक प्रतिलिपि गर्नुहोस्"
-#: src/components/dms/MessageMenu.tsx:112
-#: src/components/dms/MessageMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:254
+msgid "Copy link to profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:610
+msgid "Copy link to starter pack"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:153
msgid "Copy message text"
msgstr "सन्देशको पाठ प्रतिलिपि गर्नुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:726
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
msgid "Copy post at:// URI"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:459
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:443
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:445
msgid "Copy post text"
msgstr "पोस्टको पाठ प्रतिलिपि गर्नुहोस्"
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/components/StarterPack/QrCodeDialog.tsx:176
msgid "Copy QR code"
msgstr "QR कोड प्रतिलिपि गर्नुहोस्"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
msgid "Copy TXT record value"
msgstr "TXT रेकर्ड मान प्रतिलिपि गर्नुहोस्"
-#: src/Navigation.tsx:306
+#: src/Navigation.tsx:318
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "प्रतिलिपि अधिकार नीति"
@@ -1931,11 +2169,11 @@ msgstr "प्रतिलिपि अधिकार नीति"
msgid "Could not leave chat"
msgstr "कुराकानी छोड्न सकिएन"
-#: src/screens/Profile/ProfileFeed/index.tsx:80
+#: src/screens/Profile/ProfileFeed/index.tsx:83
msgid "Could not load feed"
msgstr "फिड लोड गर्न सकिएन"
-#: src/view/screens/ProfileList.tsx:1022
+#: src/view/screens/ProfileList.tsx:1029
msgid "Could not load list"
msgstr "सूची लोड गर्न सकिएन"
@@ -1947,28 +2185,28 @@ msgstr "कुराकानी म्यूट गर्न सकिएन"
msgid "Could not process your video"
msgstr "तपाईंको भिडियो प्रक्रिया गर्न सकिएन"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:288
+#: src/components/StarterPack/ProfileStarterPacks.tsx:300
msgid "Create"
msgstr "सिर्जना गर्नुहोस्"
-#: src/components/StarterPack/QrCodeDialog.tsx:159
+#: src/components/StarterPack/QrCodeDialog.tsx:160
msgid "Create a QR code for a starter pack"
msgstr "स्टार्टर प्याकका लागि QR कोड सिर्जना गर्नुहोस्"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:269
-#: src/Navigation.tsx:443
+#: src/components/StarterPack/ProfileStarterPacks.tsx:178
+#: src/components/StarterPack/ProfileStarterPacks.tsx:287
+#: src/Navigation.tsx:463
msgid "Create a starter pack"
msgstr "स्टार्टर प्याक सिर्जना गर्नुहोस्"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:250
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
msgid "Create a starter pack for me"
msgstr "मेरो लागि स्टार्टर प्याक सिर्जना गर्नुहोस्"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
-#: src/view/shell/bottom-bar/BottomBar.tsx:315
-#: src/view/shell/bottom-bar/BottomBar.tsx:320
+#: src/view/shell/bottom-bar/BottomBar.tsx:335
+#: src/view/shell/bottom-bar/BottomBar.tsx:340
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:199
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204
#: src/view/shell/NavSignupCard.tsx:47
@@ -1976,7 +2214,7 @@ msgstr "मेरो लागि स्टार्टर प्याक स
msgid "Create account"
msgstr "साइन अप गर्नुहोस्"
-#: src/screens/Signup/index.tsx:94
+#: src/screens/Signup/index.tsx:108
msgid "Create Account"
msgstr "खाता सिर्जना गर्नुहोस्"
@@ -1985,11 +2223,16 @@ msgstr "खाता सिर्जना गर्नुहोस्"
msgid "Create an account"
msgstr "खाता बनाउनुहोस्"
-#: src/screens/Onboarding/StepProfile/index.tsx:292
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+msgid "Create an account without using this starter pack"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
msgid "Create an avatar instead"
msgstr "यसको सट्टा एउटा अवतार बनाउनुहोस्"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:180
+#: src/components/StarterPack/ProfileStarterPacks.tsx:185
msgid "Create another"
msgstr "अर्को बनाउनुहोस्"
@@ -1998,7 +2241,7 @@ msgstr "अर्को बनाउनुहोस्"
msgid "Create new account"
msgstr "नयाँ खाता सिर्जना गर्नुहोस्"
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:582
#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "{0} का लागि रिपोर्ट सिर्जना गर्नुहोस्"
@@ -2053,17 +2296,17 @@ msgstr "गाढा मोड"
msgid "Dark theme"
msgstr "गाढा थिम"
-#: src/screens/Signup/StepInfo/index.tsx:266
+#: src/screens/Signup/StepInfo/index.tsx:269
msgid "Date of birth"
msgstr "जन्म मिति"
-#: src/screens/Settings/AccountSettings.tsx:146
-#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:162
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
msgid "Deactivate account"
msgstr "खाता निष्क्रिय गर्नुहोस्"
-#: src/screens/Settings/Settings.tsx:332
+#: src/screens/Settings/Settings.tsx:397
msgid "Debug Moderation"
msgstr "डिबग मोडरेशन"
@@ -2079,19 +2322,19 @@ msgstr "डिफल्ट"
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:191
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:591
-#: src/screens/StarterPack/StarterPackScreen.tsx:669
-#: src/screens/StarterPack/StarterPackScreen.tsx:741
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:750
-#: src/view/screens/ProfileList.tsx:761
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+#: src/screens/StarterPack/StarterPackScreen.tsx:688
+#: src/screens/StarterPack/StarterPackScreen.tsx:760
+#: src/view/screens/ProfileList.tsx:768
msgid "Delete"
msgstr "मेटाउनुहोस्"
-#: src/screens/Settings/AccountSettings.tsx:156
-#: src/screens/Settings/AccountSettings.tsx:161
+#: src/screens/Settings/AccountSettings.tsx:167
+#: src/screens/Settings/AccountSettings.tsx:172
msgid "Delete account"
msgstr "खाता मेटाउनुहोस्"
@@ -2107,19 +2350,19 @@ msgstr "एप पासवर्ड मेटाउनुहोस्"
msgid "Delete app password?"
msgstr "एप पासवर्ड मेटाउनुहोस्?"
-#: src/screens/Messages/components/RequestButtons.tsx:292
-#: src/screens/Messages/components/RequestButtons.tsx:299
+#: src/screens/Messages/components/RequestButtons.tsx:316
+#: src/screens/Messages/components/RequestButtons.tsx:323
msgid "Delete chat"
msgstr ""
-#: src/screens/Settings/Settings.tsx:339
+#: src/screens/Settings/Settings.tsx:404
msgid "Delete chat declaration record"
msgstr "कुराकानी घोषणाको रेकर्ड मेटाउनुहोस्"
#: src/components/dms/ReportDialog.tsx:362
#: src/components/dms/ReportDialog.tsx:365
-#: src/screens/Messages/components/RequestButtons.tsx:126
-#: src/screens/Messages/components/RequestButtons.tsx:129
+#: src/screens/Messages/components/RequestButtons.tsx:136
+#: src/screens/Messages/components/RequestButtons.tsx:139
msgid "Delete conversation"
msgstr ""
@@ -2127,19 +2370,19 @@ msgstr ""
msgid "Delete Conversation"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:126
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete for me"
msgstr "मेरो लागि मेटाउनुहोस्"
-#: src/view/screens/ProfileList.tsx:549
-msgid "Delete List"
-msgstr "सूची मेटाउनुहोस्"
+#: src/view/screens/ProfileList.tsx:556
+msgid "Delete list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:150
+#: src/components/dms/MessageContextMenu.tsx:187
msgid "Delete message"
msgstr "सन्देश मेटाउनुहोस्"
-#: src/components/dms/MessageMenu.tsx:124
+#: src/components/dms/MessageContextMenu.tsx:162
msgid "Delete message for me"
msgstr "मेरो लागि सन्देश मेटाउनुहोस्"
@@ -2147,26 +2390,26 @@ msgstr "मेरो लागि सन्देश मेटाउनुहो
msgid "Delete my account"
msgstr "मेरो खाता मेटाउनुहोस्"
-#: src/view/com/composer/Composer.tsx:842
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:709
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:711
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:667
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
+#: src/view/com/composer/Composer.tsx:835
msgid "Delete post"
msgstr "पोस्ट मेटाउनुहोस्"
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:751
msgid "Delete starter pack"
msgstr "स्टार्टर प्याक मेटाउनुहोस्"
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:654
msgid "Delete starter pack?"
msgstr "स्टार्टर प्याक मेटाउनुहोस्?"
-#: src/view/screens/ProfileList.tsx:756
+#: src/view/screens/ProfileList.tsx:763
msgid "Delete this list?"
msgstr "यो सूची मेटाउनुहोस्?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:681
msgid "Delete this post?"
msgstr "यो पोस्ट मेटाउनुहोस्?"
@@ -2174,8 +2417,8 @@ msgstr "यो पोस्ट मेटाउनुहोस्?"
msgid "Deleted"
msgstr "मेटाइयो"
-#: src/components/dms/MessagesListHeader.tsx:155
-#: src/screens/Messages/components/ChatListItem.tsx:123
+#: src/components/dms/MessagesListHeader.tsx:160
+#: src/screens/Messages/components/ChatListItem.tsx:128
msgid "Deleted Account"
msgstr "मेटाइएको खाता"
@@ -2183,48 +2426,48 @@ msgstr "मेटाइएको खाता"
msgid "Deleted post."
msgstr "मेटाइएको पोस्ट।"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
-#: src/view/com/modals/CreateOrEditList.tsx:280
-#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:369
+#: src/view/com/modals/CreateOrEditList.tsx:278
+#: src/view/com/modals/CreateOrEditList.tsx:299
+#: src/view/com/modals/EditProfile.tsx:218
+#: src/view/com/modals/EditProfile.tsx:230
msgid "Description"
msgstr "विवरण"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:364
+#: src/screens/Profile/Header/EditProfileDialog.tsx:389
msgid "Description is too long"
msgstr "विवरण धेरै लामो छ"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:365
-msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}."
-msgstr "विवरण धेरै लामो छ। अधिकतम अक्षरहरू {DESCRIPTION_MAX_GRAPHEMES} हुन्।"
+#: src/screens/Profile/Header/EditProfileDialog.tsx:390
+msgid "Description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114
msgid "Descriptive alt text"
msgstr "वर्णनात्मक वैकल्पिक पाठ"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:581
msgid "Detach quote"
msgstr "उद्धरण अलग गर्नुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:807
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Detach quote post?"
msgstr "उद्धरण पोस्ट अलग गर्नुहोस्?"
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:140
msgctxt "toast"
msgid "Developer mode disabled"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:81
+#: src/screens/Settings/AboutSettings.tsx:134
msgctxt "toast"
msgid "Developer mode enabled"
msgstr ""
-#: src/screens/Settings/Settings.tsx:242
-#: src/screens/Settings/Settings.tsx:245
+#: src/screens/Settings/Settings.tsx:252
+#: src/screens/Settings/Settings.tsx:255
msgid "Developer options"
msgstr "डेभलपर विकल्पहरू"
@@ -2236,6 +2479,15 @@ msgstr "संवाद: यो पोस्टसँग कसले अन्
msgid "Dim"
msgstr "धूमिल"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242
+msgid "Disable 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157
+msgid "Disable email 2FA"
+msgstr ""
+
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr "इमेल 2FA अक्षम गर्नुहोस्"
@@ -2254,25 +2506,25 @@ msgstr "उपशीर्षक अक्षम गर्नुहोस्"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:345
+#: src/screens/Moderation/index.tsx:364
msgid "Disabled"
msgstr "अक्षम गरियो"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:696
-#: src/view/com/composer/Composer.tsx:875
+#: src/screens/Profile/Header/EditProfileDialog.tsx:88
+#: src/view/com/composer/Composer.tsx:684
+#: src/view/com/composer/Composer.tsx:868
msgid "Discard"
msgstr "त्याग्नुहोस्"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+#: src/screens/Profile/Header/EditProfileDialog.tsx:85
msgid "Discard changes?"
msgstr "परिवर्तनहरू त्याग्नुहोस्?"
-#: src/view/com/composer/Composer.tsx:693
+#: src/view/com/composer/Composer.tsx:681
msgid "Discard draft?"
msgstr "मस्यौदा त्याग्नुहोस्?"
-#: src/view/com/composer/Composer.tsx:867
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard post?"
msgstr "पोस्ट त्याग्नुहोस्?"
@@ -2281,24 +2533,24 @@ msgstr "पोस्ट त्याग्नुहोस्?"
msgid "Discourage apps from showing my account to logged-out users"
msgstr "एपहरूलाई मेरो खाता लगइन नगरेका प्रयोगकर्ताहरूलाई देखाउनबाट हतोत्साहित गर्नुहोस्"
+#: src/screens/Search/Explore.tsx:434
+msgid "Discover Feeds"
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "नयाँ अनुकूलित फिडहरू पत्ता लगाउनुहोस्"
-#: src/view/screens/Search/Explore.tsx:425
-msgid "Discover new feeds"
-msgstr "नयाँ फिडहरू पत्ता लगाउनुहोस्"
-
-#: src/view/screens/Feeds.tsx:725
+#: src/view/screens/Feeds.tsx:728
msgid "Discover New Feeds"
msgstr "नयाँ फिडहरू खोज्नुहोस्"
-#: src/components/Dialog/index.tsx:323
+#: src/components/Dialog/index.tsx:321
msgid "Dismiss"
msgstr "रद्द गर्नुहोस्"
-#: src/view/com/composer/Composer.tsx:1576
+#: src/view/com/composer/Composer.tsx:1593
msgid "Dismiss error"
msgstr "त्रुटि रद्द गर्नुहोस्"
@@ -2306,6 +2558,10 @@ msgstr "त्रुटि रद्द गर्नुहोस्"
msgid "Dismiss getting started guide"
msgstr "गाइडलाई रद्द गर्नुहोस्"
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:43
+msgid "Dismiss interests"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:92
msgid "Dismiss this section"
msgstr ""
@@ -2315,27 +2571,27 @@ msgstr ""
msgid "Display larger alt text badges"
msgstr "ठूलो वैकल्पिक पाठ ब्याज देखाउनुहोस्"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:314
#: src/screens/Profile/Header/EditProfileDialog.tsx:320
-#: src/screens/Profile/Header/EditProfileDialog.tsx:351
-#: src/view/com/modals/EditProfile.tsx:187
+#: src/screens/Profile/Header/EditProfileDialog.tsx:326
+#: src/screens/Profile/Header/EditProfileDialog.tsx:376
+#: src/view/com/modals/EditProfile.tsx:194
msgid "Display name"
msgstr "प्रदर्शन नाम"
-#: src/view/com/modals/EditProfile.tsx:175
+#: src/view/com/modals/EditProfile.tsx:182
msgid "Display Name"
msgstr "प्रदर्शन नाम"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:333
+#: src/screens/Profile/Header/EditProfileDialog.tsx:339
msgid "Display name is too long"
msgstr "प्रदर्शन नाम धेरै लामो छ"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:334
-msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
-msgstr "प्रदर्शन नाम धेरै लामो छ। अधिकतम {DISPLAY_NAME_MAX_GRAPHEMES} वर्णहरू हुन सक्छ।"
+#: src/screens/Profile/Header/EditProfileDialog.tsx:340
+msgid "Display name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:392
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:394
msgid "DNS Panel"
msgstr "DNS प्यानल"
@@ -2347,37 +2603,45 @@ msgstr "यो म्यूट शब्द तपाईंले फलो ग
msgid "Does not include nudity."
msgstr "यसमा नग्नता समावेश छैन।"
-#: src/screens/Signup/StepHandle.tsx:165
+#: src/screens/Signup/StepHandle.tsx:173
msgid "Doesn't begin or end with a hyphen"
msgstr "ड्यासबाट सुरु वा अन्त्य गर्दैन"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
msgid "Domain verified!"
msgstr "डोमेन प्रमाणित गरियो!"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:115
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dms/ReportDialog.tsx:314
-#: src/components/forms/DateField/index.tsx:102
-#: src/components/forms/DateField/index.tsx:108
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/components/forms/DateField/index.tsx:103
+#: src/components/forms/DateField/index.tsx:109
+#: src/components/Select/index.tsx:183
+#: src/components/Select/index.tsx:190
+#: src/screens/Onboarding/StepProfile/index.tsx:328
+#: src/screens/Onboarding/StepProfile/index.tsx:331
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
#: src/view/com/auth/server-input/index.tsx:232
#: src/view/com/auth/server-input/index.tsx:233
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/composer/labels/LabelsBtn.tsx:223
+#: src/view/com/composer/labels/LabelsBtn.tsx:230
+#: src/view/com/composer/videos/SubtitleDialog.tsx:168
+#: src/view/com/composer/videos/SubtitleDialog.tsx:178
#: src/view/com/modals/CropImage.web.tsx:112
#: src/view/com/modals/InviteCodes.tsx:81
#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "सम्पन्न"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/UserAddRemoveLists.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:116
msgctxt "action"
@@ -2388,11 +2652,15 @@ msgstr "सम्पन्न"
msgid "Done{extraText}"
msgstr "सम्पन्न{extraText}"
-#: src/components/Dialog/index.tsx:324
+#: src/components/dms/MessageItem.tsx:161
+msgid "Double tap or long press the message to add a reaction"
+msgstr ""
+
+#: src/components/Dialog/index.tsx:322
msgid "Double tap to close the dialog"
msgstr "संवाद बन्द गर्न डबल ट्याप गर्नुहोस्"
-#: src/screens/VideoFeed/index.tsx:1047
+#: src/screens/VideoFeed/index.tsx:1077
msgid "Double tap to like"
msgstr ""
@@ -2413,23 +2681,23 @@ msgstr "तस्बिरहरू थप्न ड्रप गर्नुह
msgid "Duration:"
msgstr "अवधि:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:230
msgid "e.g. alice"
msgstr "उदा. एलिस"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+#: src/screens/Profile/Header/EditProfileDialog.tsx:327
msgid "e.g. Alice Lastname"
msgstr "उदा. एलिस थर"
-#: src/view/com/modals/EditProfile.tsx:180
+#: src/view/com/modals/EditProfile.tsx:187
msgid "e.g. Alice Roberts"
msgstr "उदा. एलिस रोबर्ट्स"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:376
msgid "e.g. alice.com"
msgstr "उदा. alice.com"
-#: src/view/com/modals/EditProfile.tsx:198
+#: src/view/com/modals/EditProfile.tsx:223
msgid "e.g. Artist, dog-lover, and avid reader."
msgstr "उदा. कलाकार, कुकुरप्रेमी, र पुस्तकप्रेमी।"
@@ -2437,19 +2705,19 @@ msgstr "उदा. कलाकार, कुकुरप्रेमी, र
msgid "E.g. artistic nudes."
msgstr "उदा. कलात्मक नग्न।"
-#: src/view/com/modals/CreateOrEditList.tsx:263
+#: src/view/com/modals/CreateOrEditList.tsx:261
msgid "e.g. Great Posters"
msgstr "उदा. उत्कृष्ट पोस्टरहरू"
-#: src/view/com/modals/CreateOrEditList.tsx:264
+#: src/view/com/modals/CreateOrEditList.tsx:262
msgid "e.g. Spammers"
msgstr "उदा. स्प्यामरहरू"
-#: src/view/com/modals/CreateOrEditList.tsx:292
+#: src/view/com/modals/CreateOrEditList.tsx:290
msgid "e.g. The posters who never miss."
msgstr "उदा. कहिल्यै नचुक्ने पोस्टरहरू।"
-#: src/view/com/modals/CreateOrEditList.tsx:293
+#: src/view/com/modals/CreateOrEditList.tsx:291
msgid "e.g. Users that repeatedly reply with ads."
msgstr "उदा. बारम्बार विज्ञापनहरू सहित उत्तर दिने प्रयोगकर्ताहरू।"
@@ -2457,20 +2725,21 @@ msgstr "उदा. बारम्बार विज्ञापनहरू
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "प्रत्येक कोड एक पटक मात्र प्रयोग गर्न सकिन्छ। तपाईं समय-समयमा थप निमन्त्रणा कोड प्राप्त गर्नुहुनेछ।"
-#: src/screens/Settings/AccountSettings.tsx:112
-#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/Settings/AccountSettings.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:588
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
msgid "Edit"
msgstr "सम्पादन गर्नुहोस्"
-#: src/view/com/lists/ListMembers.tsx:143
+#: src/view/com/lists/ListMembers.tsx:180
+#: src/view/com/lists/ListMembers.tsx:186
msgctxt "action"
msgid "Edit"
msgstr "सम्पादन गर्नुहोस्"
-#: src/view/com/util/UserAvatar.tsx:344
-#: src/view/com/util/UserBanner.tsx:95
+#: src/view/com/util/UserAvatar.tsx:426
+#: src/view/com/util/UserBanner.tsx:119
msgid "Edit avatar"
msgstr "अवतार सम्पादन गर्नुहोस्"
@@ -2478,31 +2747,41 @@ msgstr "अवतार सम्पादन गर्नुहोस्"
msgid "Edit Feeds"
msgstr "फिड सम्पादन गर्नुहोस्"
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:58
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:85
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:89
#: src/view/com/composer/photos/Gallery.tsx:194
msgid "Edit image"
msgstr "चित्र सम्पादन गर्नुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:703
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:648
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:661
msgid "Edit interaction settings"
msgstr "अन्तर्क्रिया सेटिङ्स सम्पादन गर्नुहोस्"
-#: src/view/screens/ProfileList.tsx:537
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:98
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:105
+msgid "Edit interests"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:544
msgid "Edit list details"
msgstr "सूची विवरण सम्पादन गर्नुहोस्"
-#: src/view/com/modals/CreateOrEditList.tsx:230
+#: src/view/com/profile/ProfileMenu.tsx:317
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Edit live status"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:228
msgid "Edit Moderation List"
msgstr "मोडरेशन सूची सम्पादन गर्नुहोस्"
-#: src/Navigation.tsx:316
-#: src/view/screens/Feeds.tsx:515
+#: src/Navigation.tsx:328
+#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr "मेरो फिड सम्पादन गर्नुहोस्"
-#: src/view/com/modals/EditProfile.tsx:147
+#: src/view/com/modals/EditProfile.tsx:154
msgid "Edit my profile"
msgstr "मेरो प्रोफाइल सम्पादन गर्नुहोस्"
@@ -2515,23 +2794,23 @@ msgstr "व्यक्ति सम्पादन गर्नुहोस्"
msgid "Edit post interaction settings"
msgstr "पोस्ट अन्तर्क्रिया सेटिङ्स सम्पादन गर्नुहोस्"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:269
#: src/screens/Profile/Header/EditProfileDialog.tsx:275
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+#: src/screens/Profile/Header/EditProfileDialog.tsx:281
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:172
msgid "Edit profile"
msgstr "प्रोफाइल सम्पादन गर्नुहोस्"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:199
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:175
msgid "Edit Profile"
msgstr "प्रोफाइल सम्पादन गर्नुहोस्"
-#: src/screens/StarterPack/StarterPackScreen.tsx:572
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
msgid "Edit starter pack"
msgstr "स्टार्टर प्याक सम्पादन गर्नुहोस्"
-#: src/view/com/modals/CreateOrEditList.tsx:225
+#: src/view/com/modals/CreateOrEditList.tsx:223
msgid "Edit User List"
msgstr "प्रयोगकर्ता सूची सम्पादन गर्नुहोस्"
@@ -2539,15 +2818,15 @@ msgstr "प्रयोगकर्ता सूची सम्पादन ग
msgid "Edit who can reply"
msgstr "को उत्तर दिन सक्छ सम्पादन गर्नुहोस्"
-#: src/view/com/modals/EditProfile.tsx:188
+#: src/view/com/modals/EditProfile.tsx:195
msgid "Edit your display name"
msgstr "तपाईंको प्रदर्शन नाम सम्पादन गर्नुहोस्"
-#: src/view/com/modals/EditProfile.tsx:206
+#: src/view/com/modals/EditProfile.tsx:231
msgid "Edit your profile description"
msgstr "तपाईंको प्रोफाइल विवरण सम्पादन गर्नुहोस्"
-#: src/Navigation.tsx:448
+#: src/Navigation.tsx:468
msgid "Edit your starter pack"
msgstr "तपाईंको स्टार्टर प्याक सम्पादन गर्नुहोस्"
@@ -2560,16 +2839,15 @@ msgstr "शिक्षा"
msgid "Either the creator of this list has blocked you or you have blocked the creator."
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:190
-#: src/view/com/modals/ChangeEmail.tsx:136
+#: src/screens/Settings/AccountSettings.tsx:63
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Email"
msgstr "इमेल"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
msgctxt "toast"
msgid "Email 2FA disabled"
-msgstr ""
+msgstr "इमेल 2FA अक्षम गरियो"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
msgid "Email 2FA enabled"
@@ -2583,19 +2861,16 @@ msgstr "इमेल ठेगाना"
msgid "Email Resent"
msgstr "इमेल पुनः पठाइयो"
-#: src/view/com/modals/ChangeEmail.tsx:54
-#: src/view/com/modals/ChangeEmail.tsx:83
-msgctxt "toast"
-msgid "Email updated"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:208
+msgid "Email sent!"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:106
-msgid "Email Updated"
-msgstr "इमेल अद्यावधिक गरियो"
+#: src/components/dialogs/ChangeEmailDialog.tsx:63
+msgid "Email Updated!"
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:85
-msgctxt "toast"
-msgid "Email verified"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:182
+msgid "Email verification complete!"
msgstr ""
#: src/components/intents/VerifyEmailIntentDialog.tsx:79
@@ -2608,8 +2883,8 @@ msgstr "HTML कोड समावेश गर्नुहोस्"
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:498
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:500
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:130
msgid "Embed post"
msgstr "पोस्ट समावेश गर्नुहोस्"
@@ -2617,12 +2892,13 @@ msgstr "पोस्ट समावेश गर्नुहोस्"
msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
msgstr "यो पोस्टलाई तपाईंको वेबसाइटमा समावेश गर्नुहोस्। तलको स्निपेट प्रतिलिपि गरी तपाईंको वेबसाइटको HTML कोडमा टाँस्नुहोस्।"
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:58
msgid "Embedded video player"
msgstr "समाविष्ट भिडियो प्लेयर"
-#: src/screens/Settings/components/Email2FAToggle.tsx:56
-#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "सक्षम गर्नुहोस्"
@@ -2630,13 +2906,13 @@ msgstr "सक्षम गर्नुहोस्"
msgid "Enable {0} only"
msgstr "केवल {0} सक्षम गर्नुहोस्"
-#: src/screens/Moderation/index.tsx:332
+#: src/screens/Moderation/index.tsx:351
msgid "Enable adult content"
msgstr "वयस्क सामग्री सक्षम गर्नुहोस्"
-#: src/screens/Settings/components/Email2FAToggle.tsx:53
-msgid "Enable Email 2FA"
-msgstr "इमेल 2FA सक्षम गर्नुहोस्"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92
+msgid "Enable email 2FA"
+msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:81
#: src/components/dialogs/EmbedConsent.tsx:88
@@ -2660,30 +2936,30 @@ msgstr "उपशीर्षकहरू सक्षम गर्नुहो
msgid "Enable this source only"
msgstr "यो स्रोत मात्र सक्षम गर्नुहोस्"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:123
-#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+#: src/screens/Settings/ContentAndMediaSettings.tsx:132
+#: src/screens/Settings/ContentAndMediaSettings.tsx:146
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+#: src/screens/Settings/ContentAndMediaSettings.tsx:167
msgid "Enable trending videos in your Discover feed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+#: src/screens/Settings/ContentAndMediaSettings.tsx:153
msgid "Enable trending videos in your Discover feed."
msgstr ""
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:343
+#: src/screens/Moderation/index.tsx:362
msgid "Enabled"
msgstr "सक्षम गरिएको"
-#: src/screens/Profile/Sections/Feed.tsx:116
+#: src/screens/Profile/Sections/Feed.tsx:113
msgid "End of feed"
msgstr "फिडको अन्त्य"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:159
+#: src/view/com/composer/videos/SubtitleDialog.tsx:158
msgid "Ensure you have selected a language for each subtitle file."
msgstr "प्रत्येक उपशीर्षक फाइलको लागि भाषा चयन गरिएको सुनिश्चित गर्नुहोस्।"
@@ -2696,14 +2972,15 @@ msgstr "पासवर्ड प्रविष्ट गर्नुहोस
msgid "Enter a word or tag"
msgstr "शब्द वा ट्याग प्रविष्ट गर्नुहोस्"
-#: src/components/dialogs/VerifyEmailDialog.tsx:89
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+msgid "Enter code"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:118
msgid "Enter Code"
msgstr "कोड प्रविष्ट गर्नुहोस्"
-#: src/view/com/modals/VerifyEmail.tsx:113
-msgid "Enter Confirmation Code"
-msgstr "पुष्टिकरण कोड प्रविष्ट गर्नुहोस्"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
msgstr "पूर्ण स्क्रीनमा प्रवेश गर्नुहोस्"
@@ -2712,7 +2989,7 @@ msgstr "पूर्ण स्क्रीनमा प्रवेश गर्
msgid "Enter the code you received to change your password."
msgstr "तपाईंले पासवर्ड परिवर्तन गर्न पाएको कोड प्रविष्ट गर्नुहोस्।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Enter the domain you want to use"
msgstr "तपाईं प्रयोग गर्न चाहनुभएको डोमेन प्रविष्ट गर्नुहोस्"
@@ -2720,20 +2997,20 @@ msgstr "तपाईं प्रयोग गर्न चाहनुभएक
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "तपाईंको खाता बनाउन प्रयोग गरेको इमेल प्रविष्ट गर्नुहोस्। हामी तपाईंलाई नयाँ पासवर्ड सेट गर्न \"रिसेट कोड\" पठाउँछौं।"
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr ""
+
#: src/components/dialogs/BirthDateSettings.tsx:104
msgid "Enter your birth date"
msgstr "तपाईंको जन्म मिति प्रविष्ट गर्नुहोस्"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:213
msgid "Enter your email address"
msgstr "तपाईंको इमेल ठेगाना प्रविष्ट गर्नुहोस्"
-#: src/view/com/modals/ChangeEmail.tsx:42
-msgid "Enter your new email above"
-msgstr "तल नयाँ इमेल प्रविष्ट गर्नुहोस्"
-
-#: src/view/com/modals/ChangeEmail.tsx:112
+#: src/components/dialogs/ChangeEmailDialog.tsx:138
msgid "Enter your new email address below."
msgstr "तल तपाईंको नयाँ इमेल ठेगाना प्रविष्ट गर्नुहोस्।"
@@ -2749,7 +3026,11 @@ msgstr "तपाईंको प्रयोगकर्ता नाम र
msgid "Enters full screen"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1661
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:239
+msgid "Entertainment"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "त्रुटि"
@@ -2758,15 +3039,18 @@ msgstr "त्रुटि"
msgid "Error occurred while saving file"
msgstr "फाइल बचत गर्दा त्रुटि भयो"
-#: src/screens/Signup/StepCaptcha/index.tsx:56
+#: src/screens/Signup/StepCaptcha/index.tsx:55
msgid "Error receiving captcha response."
msgstr "क्याप्चा प्रतिक्रिया प्राप्त गर्दा त्रुटि।"
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr "त्रुटि:"
+#: src/screens/Search/SearchResults.tsx:131
+msgid "Error: {error}"
+msgstr ""
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394
msgid "Everybody"
msgstr "सबै"
@@ -2818,30 +3102,22 @@ msgstr "चित्र क्रप प्रक्रिया बन्द
msgid "Exits image view"
msgstr "चित्र दृश्य बन्द गर्नुहोस्"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-msgid "Exits inputting search query"
-msgstr "खोज प्रश्न इनपुट प्रक्रिया बन्द गर्नुहोस्"
-
#: src/view/com/lightbox/Lightbox.web.tsx:184
msgid "Expand alt text"
msgstr "वैकल्पिक पाठ विस्तार गर्नुहोस्"
-#: src/view/com/notifications/NotificationFeedItem.tsx:406
+#: src/view/com/notifications/NotificationFeedItem.tsx:538
msgid "Expand list of users"
msgstr "प्रयोगकर्ताहरूको सूची विस्तार गर्नुहोस्"
-#: src/view/com/composer/ComposerReplyTo.tsx:70
+#: src/view/com/composer/ComposerReplyTo.tsx:84
msgid "Expand or collapse the full post you are replying to"
msgstr "जसमा तपाईं उत्तर दिँदै हुनुहुन्छ, त्यो पोस्ट विस्तार वा सङ्कुचित गर्नुहोस्"
-#: src/screens/VideoFeed/index.tsx:941
+#: src/screens/VideoFeed/index.tsx:962
msgid "Expands or collapses post text"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:73
-msgid "Expands or collapses the full post you are replying to"
-msgstr ""
-
#: src/lib/api/index.ts:406
msgid "Expected uri to resolve to a record"
msgstr "एक रेकर्डमा URI समाधान हुने आशा गरियो"
@@ -2864,6 +3140,10 @@ msgstr "म्याद समाप्त हुन्छ {0}"
msgid "Expires in {0}"
msgstr ""
+#: src/components/live/EditLiveDialog.tsx:131
+msgid "Expires in {0} at {1}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
#: src/lib/moderation/useGlobalLabelStrings.ts:51
msgid "Explicit or potentially disturbing media."
@@ -2873,8 +3153,15 @@ msgstr "स्पष्ट वा सम्भावित रूपमा ब
msgid "Explicit sexual images."
msgstr "स्पष्ट यौन चित्रहरू।"
-#: src/screens/Settings/AccountSettings.tsx:137
-#: src/screens/Settings/AccountSettings.tsx:141
+#: src/Navigation.tsx:652
+#: src/screens/Search/Shell.tsx:307
+#: src/view/shell/desktop/LeftNav.tsx:635
+#: src/view/shell/Drawer.tsx:389
+msgid "Explore"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:148
+#: src/screens/Settings/AccountSettings.tsx:152
msgid "Export my data"
msgstr "मेरो डाटा निर्यात गर्नुहोस्"
@@ -2882,8 +3169,8 @@ msgstr "मेरो डाटा निर्यात गर्नुहोस
msgid "Export My Data"
msgstr "मेरो डाटा निर्यात गर्नुहोस्"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:83
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:84
+#: src/screens/Settings/ContentAndMediaSettings.tsx:87
msgid "External media"
msgstr "बाह्य मिडिया"
@@ -2897,17 +3184,22 @@ msgstr "बाह्य मिडिया"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "बाह्य मिडियाले वेबसाइटहरूलाई तपाईं र तपाईंको उपकरणको जानकारी सङ्कलन गर्न अनुमति दिन सक्छ। \"प्ले\" बटन दबाउनेसम्म कुनै जानकारी पठाइँदैन वा अनुरोध गरिँदैन।"
-#: src/Navigation.tsx:335
+#: src/Navigation.tsx:347
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "बाह्य मिडिया प्राथमिकताहरू"
-#: src/screens/Messages/components/RequestButtons.tsx:208
+#: src/screens/Messages/components/RequestButtons.tsx:220
msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+#: src/components/dms/ActionsWrapper.web.tsx:67
+#: src/components/dms/MessageContextMenu.tsx:104
+msgid "Failed to add emoji reaction"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:587
msgid "Failed to change handle. Please try again."
msgstr "ह्यान्डल परिवर्तन गर्न असफल भयो। कृपया पुन: प्रयास गर्नुहोस्।"
@@ -2915,7 +3207,7 @@ msgstr "ह्यान्डल परिवर्तन गर्न असफ
msgid "Failed to create app password. Please try again."
msgstr "एप पासवर्ड सिर्जना गर्न असफल। कृपया पुन: प्रयास गर्नुहोस्।"
-#: src/components/dms/MessageProfileButton.tsx:39
+#: src/components/dms/MessageProfileButton.tsx:36
msgid "Failed to create conversation"
msgstr ""
@@ -2924,35 +3216,37 @@ msgstr ""
msgid "Failed to create starter pack"
msgstr "स्टार्टर प्याक सिर्जना गर्न असफल"
-#: src/view/com/modals/CreateOrEditList.tsx:186
+#: src/view/com/modals/CreateOrEditList.tsx:184
msgid "Failed to create the list. Check your internet connection and try again."
msgstr "सूची सिर्जना गर्न असफल। कृपया आफ्नो इन्टरनेट जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।"
-#: src/screens/Messages/components/RequestButtons.tsx:54
-#: src/screens/Messages/components/RequestButtons.tsx:267
+#: src/screens/Messages/components/RequestButtons.tsx:64
+#: src/screens/Messages/components/RequestButtons.tsx:291
msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:75
+#: src/components/dms/MessageContextMenu.tsx:84
msgid "Failed to delete message"
msgstr "सन्देश मेटाउन असफल"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:202
msgid "Failed to delete post, please try again"
msgstr "पोस्ट मेटाउन असफल। कृपया पुन: प्रयास गर्नुहोस्।"
-#: src/screens/StarterPack/StarterPackScreen.tsx:703
+#: src/screens/StarterPack/StarterPackScreen.tsx:722
msgid "Failed to delete starter pack"
msgstr "स्टार्टर प्याक मेटाउन असफल"
-#: src/screens/Messages/ChatList.tsx:242
-#: src/screens/Messages/Inbox.tsx:182
+#: src/screens/Messages/ChatList.tsx:244
+#: src/screens/Messages/Inbox.tsx:187
msgid "Failed to load conversations"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:463
-#: src/view/screens/Search/Explore.tsx:491
+#: src/screens/Search/Explore.tsx:470
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr "फिड्स प्राथमिकताहरू लोड गर्न असफल"
@@ -2964,17 +3258,19 @@ msgstr "GIF लोड गर्न असफल"
msgid "Failed to load past messages"
msgstr "पछिल्ला सन्देशहरू लोड गर्न असफल"
-#: src/view/screens/Search/Explore.tsx:456
-#: src/view/screens/Search/Explore.tsx:484
+#: src/screens/Search/Explore.tsx:463
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr "सुझाव गरिएका फिड्स लोड गर्न असफल भयो"
-#: src/view/screens/Search/Explore.tsx:414
+#: src/screens/Search/Explore.tsx:373
msgid "Failed to load suggested follows"
msgstr "सुझाव गरिएका फलोहरू लोड गर्न असफल भयो"
-#: src/screens/Messages/Inbox.tsx:290
-#: src/screens/Messages/Inbox.tsx:313
+#: src/screens/Messages/Inbox.tsx:295
+#: src/screens/Messages/Inbox.tsx:318
msgid "Failed to mark all requests as read"
msgstr ""
@@ -2982,7 +3278,16 @@ msgstr ""
msgid "Failed to pin post"
msgstr "पोस्ट पिन गर्न असफल भयो"
-#: src/view/com/lightbox/Lightbox.tsx:46
+#: src/components/dms/ActionsWrapper.web.tsx:61
+#: src/components/dms/MessageContextMenu.tsx:98
+msgid "Failed to remove emoji reaction"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr ""
+
+#: src/lib/media/save-image.ts:28
msgid "Failed to save image: {0}"
msgstr "तस्बिर सुरक्षित गर्न असफल: {0}"
@@ -2994,20 +3299,39 @@ msgstr "सूचना प्राथमिकताहरू सुरक्
msgid "Failed to save settings. Please try again."
msgstr ""
-#: src/components/dms/MessageItem.tsx:234
+#: src/screens/Settings/SettingsInterests.tsx:133
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:310
msgid "Failed to send"
msgstr "पठाउन असफल"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:136
+msgid "Failed to send email, please try again."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:254
#: src/screens/Messages/components/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "अपील पठाउन असफल भयो, कृपया पुन: प्रयास गर्नुहोस्।"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:222
msgid "Failed to toggle thread mute, please try again"
msgstr "थ्रेड म्यूट टगल गर्न असफल, कृपया पुन: प्रयास गर्नुहोस्"
-#: src/components/FeedCard.tsx:275
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83
+msgid "Failed to update email 2FA settings"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:195
+msgid "Failed to update email, please try again."
+msgstr ""
+
+#: src/components/FeedCard.tsx:285
msgid "Failed to update feeds"
msgstr "फिड्स अद्यावधिक गर्न असफल भयो"
@@ -3022,20 +3346,24 @@ msgstr "सेटिङ्स अद्यावधिक गर्न असफ
msgid "Failed to upload video"
msgstr "भिडियो अपलोड गर्न असफल"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:168
+msgid "Failed to verify email, please try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:360
msgid "Failed to verify handle. Please try again."
msgstr "ह्यान्डल प्रमाणित गर्न असफल भयो। कृपया पुन: प्रयास गर्नुहोस्।"
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:263
msgid "Feed"
msgstr "फिड"
-#: src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:139
#: src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "{0} द्वारा फिड"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:349
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:354
msgid "Feed menu"
msgstr ""
@@ -3043,26 +3371,26 @@ msgstr ""
msgid "Feed toggle"
msgstr "फिड टगल"
-#: src/view/shell/desktop/RightNav.tsx:97
-#: src/view/shell/desktop/RightNav.tsx:98
-#: src/view/shell/Drawer.tsx:324
+#: src/view/shell/desktop/RightNav.tsx:102
+#: src/view/shell/desktop/RightNav.tsx:103
+#: src/view/shell/Drawer.tsx:343
msgid "Feedback"
msgstr "प्रतिक्रिया"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:286
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:288
msgctxt "toast"
msgid "Feedback sent!"
-msgstr ""
+msgstr "प्रतिक्रिया पठाइयो!"
-#: src/Navigation.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:185
-#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:225
+#: src/Navigation.tsx:448
+#: src/screens/Search/SearchResults.tsx:68
+#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/view/screens/Feeds.tsx:511
+#: src/view/screens/Profile.tsx:230
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:531
-#: src/view/shell/desktop/LeftNav.tsx:651
-#: src/view/shell/Drawer.tsx:486
+#: src/view/shell/desktop/LeftNav.tsx:673
+#: src/view/shell/Drawer.tsx:505
msgid "Feeds"
msgstr "फिड्स"
@@ -3070,13 +3398,13 @@ msgstr "फिड्स"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "फिड्स कस्टम एल्गोरिदम हुन्, जसलाई प्रयोगकर्ताहरूले अलिकति कोडिङ ज्ञानको साथ निर्माण गर्छन्। थप जानकारीका लागि <0/>।"
-#: src/components/FeedCard.tsx:272
+#: src/components/FeedCard.tsx:282
#: src/view/screens/SavedFeeds.tsx:82
msgctxt "toast"
msgid "Feeds updated!"
-msgstr ""
+msgstr "फिड्स अद्यावधिक गरियो!"
-#: src/screens/Search/components/ExploreRecommendations.tsx:63
+#: src/screens/Search/modules/ExploreRecommendations.tsx:65
msgid "Feeds we think you might like."
msgstr ""
@@ -3092,11 +3420,11 @@ msgstr "फाइल सफलतापूर्वक सुरक्षित
msgid "Filter from feeds"
msgstr "फिड्सबाट फिल्टर गर्नुहोस्"
-#: src/view/screens/Search/Search.tsx:403
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:97
msgid "Filter search by language"
msgstr ""
-#: src/view/screens/Search/Search.tsx:376
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:70
msgid "Filter search by language (currently: {currentLanguageLabel})"
msgstr ""
@@ -3110,13 +3438,13 @@ msgstr "अन्तिम रूप दिँदै"
msgid "Find accounts to follow"
msgstr "फलो गर्न खाताहरू फेला पार्नुहोस्"
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:88
-#: src/components/ProgressGuide/FollowDialog.tsx:417
+#: src/components/ProgressGuide/FollowDialog.tsx:77
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:374
msgid "Find people to follow"
msgstr ""
-#: src/view/screens/Search/Search.tsx:582
+#: src/screens/Search/Shell.tsx:476
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
@@ -3148,11 +3476,11 @@ msgid "Flexible"
msgstr "लचिलो"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:365
-#: src/components/ProfileHoverCard/index.web.tsx:449
-#: src/components/ProfileHoverCard/index.web.tsx:460
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:829
+#: src/components/ProfileCard.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:226
+#: src/screens/VideoFeed/index.tsx:850
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:131
msgid "Follow"
msgstr "अनुसरण गर्नुहोस्"
@@ -3162,19 +3490,15 @@ msgctxt "action"
msgid "Follow"
msgstr "अनुसरण गर्नुहोस्"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:211
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:113
msgid "Follow {0}"
msgstr "{0} लाई अनुसरण गर्नुहोस्"
-#: src/screens/VideoFeed/index.tsx:806
+#: src/screens/VideoFeed/index.tsx:827
msgid "Follow {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:68
-msgid "Follow {name}"
-msgstr "{name} लाई अनुसरण गर्नुहोस्"
-
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
@@ -3184,17 +3508,17 @@ msgstr ""
msgid "Follow 7 accounts"
msgstr "७ खाताहरू अनुसरण गर्नुहोस्"
-#: src/view/com/profile/ProfileMenu.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:284
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Follow account"
msgstr "खाता अनुसरण गर्नुहोस्"
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
-#: src/screens/StarterPack/StarterPackScreen.tsx:441
+#: src/screens/StarterPack/StarterPackScreen.tsx:438
+#: src/screens/StarterPack/StarterPackScreen.tsx:446
msgid "Follow all"
msgstr "सबैलाई अनुसरण गर्नुहोस्"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:224
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:129
msgid "Follow Back"
msgstr "पछाडि अनुसरण गर्नुहोस्"
@@ -3204,10 +3528,6 @@ msgctxt "action"
msgid "Follow Back"
msgstr "पछाडि अनुसरण गर्नुहोस्"
-#: src/view/screens/Search/Explore.tsx:370
-msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "आफ्नो रुचिसँग जोडिन र आफ्नो नेटवर्क निर्माण गर्न थप खाताहरू अनुसरण गर्नुहोस्।"
-
#: src/components/KnownFollowers.tsx:234
msgid "Followed by <0>{0}0>"
msgstr "<0>{0}0> ले अनुसरण गरेका छन्"
@@ -3224,7 +3544,7 @@ 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} other {# others}} ले अनुसरण गरेका छन्"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:217
msgid "Followers of @{0} that you know"
msgstr "तपाईंले चिनेका @{0} का अनुसरणकर्ताहरू"
@@ -3234,36 +3554,32 @@ msgid "Followers you know"
msgstr "तपाईंले चिनेका अनुसरणकर्ताहरू"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:359
-#: src/components/ProfileHoverCard/index.web.tsx:448
-#: src/components/ProfileHoverCard/index.web.tsx:459
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:827
+#: src/components/ProfileCard.tsx:413
+#: src/components/ProfileHoverCard/index.web.tsx:493
+#: src/components/ProfileHoverCard/index.web.tsx:504
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:222
+#: src/screens/VideoFeed/index.tsx:848
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:134
-#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/Feeds.tsx:602
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "अनुसरण गर्दै"
-#: src/components/ProfileCard.tsx:322
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/components/ProfileCard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89
msgid "Following {0}"
msgstr "{0} लाई अनुसरण गर्दै"
-#: src/screens/VideoFeed/index.tsx:805
+#: src/screens/VideoFeed/index.tsx:826
msgid "Following {handle}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:50
-msgid "Following {name}"
-msgstr "{name} लाई अनुसरण गर्दै"
-
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:76
+#: src/screens/Settings/ContentAndMediaSettings.tsx:79
msgid "Following feed preferences"
msgstr "अनुसरण फिड प्राथमिकताहरू"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:334
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "अनुसरण फिड प्राथमिकताहरू"
@@ -3301,6 +3617,10 @@ msgstr "सुरक्षा कारणहरूको लागि, तप
msgid "For the best experience, we recommend using the theme font."
msgstr "सर्वोत्तम अनुभवको लागि, हामी थिम फन्ट प्रयोग गर्न सिफारिस गर्छौं।"
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:94
+msgid "For You"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
msgstr "सधैंको लागि"
@@ -3327,7 +3647,7 @@ msgstr "बारम्बार अवाञ्छित सामग्री
msgid "From @{sanitizedAuthor}"
msgstr "@{sanitizedAuthor} बाट"
-#: src/view/com/posts/PostFeedItem.tsx:284
+#: src/view/com/posts/PostFeedItem.tsx:326
msgctxt "from-feed"
msgid "From <0/>"
msgstr "<0/> बाट"
@@ -3336,28 +3656,30 @@ msgstr "<0/> बाट"
msgid "Gallery"
msgstr "ग्यालेरी"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Generate a starter pack"
msgstr "स्टार्टर प्याक उत्पन्न गर्नुहोस्"
-#: src/view/shell/Drawer.tsx:328
+#: src/view/shell/Drawer.tsx:347
msgid "Get help"
msgstr "मद्दत प्राप्त गर्नुहोस्"
-#: src/view/com/modals/VerifyEmail.tsx:197
-#: src/view/com/modals/VerifyEmail.tsx:199
-msgid "Get Started"
-msgstr "सुरू गर्नुहोस्"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+#: src/components/dialogs/VerifyEmailDialog.tsx:263
+#: src/components/dialogs/VerifyEmailDialog.tsx:269
+msgid "Get started"
+msgstr ""
#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "सुरू गर्दै"
-#: src/components/MediaPreview.tsx:108
+#: src/components/MediaPreview.tsx:116
msgid "GIF"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:234
+#: src/screens/Onboarding/StepProfile/index.tsx:232
msgid "Give your profile a face"
msgstr "आफ्नो प्रोफाइललाई अनुहार दिनुहोस्"
@@ -3366,17 +3688,17 @@ msgstr "आफ्नो प्रोफाइललाई अनुहार द
msgid "Glaring violations of law or terms of service"
msgstr "कानुन वा सेवा सर्तहरूको स्पष्ट उल्लङ्घन"
-#: src/components/Layout/Header/index.tsx:126
+#: src/components/Layout/Header/index.tsx:127
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Messages/Inbox.tsx:223
-#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Profile/ProfileFeed/index.tsx:92
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1108
-#: src/screens/VideoFeed/index.tsx:1112
+#: src/screens/VideoFeed/index.tsx:1138
+#: src/screens/VideoFeed/index.tsx:1142
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
-#: src/view/screens/ProfileList.tsx:1031
+#: src/view/screens/ProfileList.tsx:1038
msgid "Go back"
msgstr "फर्कनुहोस्"
@@ -3384,10 +3706,10 @@ msgstr "फर्कनुहोस्"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:94
-#: src/screens/StarterPack/StarterPackScreen.tsx:754
+#: src/screens/Profile/ProfileFeed/index.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:773
#: src/view/screens/NotFound.tsx:56
-#: src/view/screens/ProfileList.tsx:1036
+#: src/view/screens/ProfileList.tsx:1043
msgid "Go Back"
msgstr "फर्कनुहोस्"
@@ -3408,7 +3730,27 @@ msgstr "गृहपृष्ठमा जानुहोस्"
msgid "Go Home"
msgstr "गृहपृष्ठमा जानुहोस्"
-#: src/screens/Messages/components/ChatListItem.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:318
+#: src/view/com/profile/ProfileMenu.tsx:325
+msgid "Go live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:93
+#: src/components/live/GoLiveDialog.tsx:98
+#: src/components/live/GoLiveDialog.tsx:232
+#: src/components/live/GoLiveDialog.tsx:241
+msgid "Go Live"
+msgstr ""
+
+#: src/components/live/GoLiveDialog.tsx:174
+msgid "Go live for"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:204
+msgid "Go to {firstAuthorName}'s profile"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:360
msgid "Go to conversation with {0}"
msgstr "{0} सँगको कुराकानीमा जानुहोस्"
@@ -3427,8 +3769,8 @@ msgstr "प्रयोगकर्ताको प्रोफाइलमा
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:202
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#: src/view/com/composer/labels/LabelsBtn.tsx:201
+#: src/view/com/composer/labels/LabelsBtn.tsx:204
msgid "Graphic Media"
msgstr "ग्राफिक मिडिया"
@@ -3437,21 +3779,21 @@ msgstr "ग्राफिक मिडिया"
msgid "Half way there!"
msgstr "मध्यसम्म पुगियो!"
-#: src/screens/Settings/AccountSettings.tsx:126
-#: src/screens/Settings/AccountSettings.tsx:131
+#: src/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:142
msgid "Handle"
msgstr "ह्यान्डल"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:591
msgid "Handle already taken. Please try a different one."
msgstr "ह्यान्डल पहिले नै लिइएको छ। कृपया अर्को प्रयास गर्नुहोस्।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:195
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:344
msgid "Handle changed!"
msgstr "ह्यान्डल परिवर्तन भयो!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:595
msgid "Handle too long. Please try a shorter one."
msgstr "ह्यान्डल धेरै लामो छ। कृपया छोटो प्रयास गर्नुहोस्।"
@@ -3464,7 +3806,7 @@ msgstr "ह्याप्टिक्स"
msgid "Harassment, trolling, or intolerance"
msgstr "उत्पीडन, ट्रोलिङ, वा असहिष्णुता"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:418
msgid "Hashtag"
msgstr "ह्यासट्याग"
@@ -3472,19 +3814,24 @@ msgstr "ह्यासट्याग"
msgid "Hashtag {tag}"
msgstr ""
-#: src/screens/Signup/index.tsx:177
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:315
+msgid "Have a code? <0>Click here.0>"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:195
msgid "Having trouble?"
msgstr "समस्या भइरहेको छ?"
-#: src/screens/Settings/Settings.tsx:207
-#: src/screens/Settings/Settings.tsx:211
-#: src/view/shell/desktop/RightNav.tsx:115
-#: src/view/shell/desktop/RightNav.tsx:116
-#: src/view/shell/Drawer.tsx:337
+#: src/screens/Settings/Settings.tsx:217
+#: src/screens/Settings/Settings.tsx:221
+#: src/view/shell/desktop/RightNav.tsx:120
+#: src/view/shell/desktop/RightNav.tsx:121
+#: src/view/shell/Drawer.tsx:356
msgid "Help"
msgstr "सहयोग"
-#: src/screens/Onboarding/StepProfile/index.tsx:237
+#: src/screens/Onboarding/StepProfile/index.tsx:235
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "फोटो अपलोड गरेर वा अवतार सिर्जना गरेर आफू बोट होइन भनेर देखाउन सहयोग गर्नुहोस्।"
@@ -3497,7 +3844,7 @@ msgstr "यो तपाईंको एप पासवर्ड हो!"
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:607
+#: src/screens/VideoFeed/index.tsx:625
msgid "Hidden by your moderation settings."
msgstr ""
@@ -3509,18 +3856,17 @@ msgstr "लुकेको सूची"
#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:697
#: src/lib/moderation/useLabelBehaviorDescription.ts:15
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "लुकाउनुहोस्"
-#: src/view/com/notifications/NotificationFeedItem.tsx:605
+#: src/view/com/notifications/NotificationFeedItem.tsx:755
msgctxt "action"
msgid "Hide"
msgstr "लुकाउनुहोस्"
@@ -3529,38 +3875,40 @@ msgstr "लुकाउनुहोस्"
msgid "Hide customization options"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:570
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:528
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:534
msgid "Hide post for me"
msgstr "मेरो लागि पोष्ट लुकाउनुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:587
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:597
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
msgid "Hide reply for everyone"
msgstr "सबैका लागि उत्तर लुकाउनुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:569
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Hide reply for me"
msgstr "मेरो लागि उत्तर लुकाउनुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:110
+msgid "Hide this card"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
msgid "Hide this post?"
msgstr "यो पोस्ट लुकाउनुहोस्?"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:817
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Hide this reply?"
msgstr "यो उत्तर लुकाउनुहोस्?"
#: src/components/interstitials/Trending.tsx:113
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr ""
#: src/components/interstitials/Trending.tsx:129
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr ""
@@ -3569,10 +3917,15 @@ msgstr ""
msgid "Hide trending videos?"
msgstr ""
-#: src/view/com/notifications/NotificationFeedItem.tsx:596
+#: src/view/com/notifications/NotificationFeedItem.tsx:746
msgid "Hide user list"
msgstr "प्रयोगकर्ता सूची लुकाउनुहोस्"
+#: src/screens/Moderation/VerificationSettings.tsx:85
+#: src/screens/Moderation/VerificationSettings.tsx:94
+msgid "Hide verification badges"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:151
#: src/components/moderation/PostHider.tsx:79
msgid "Hides the content"
@@ -3598,7 +3951,7 @@ msgstr "हाम्रोमा समस्या छ, फिड सर्भ
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "हाम्रोमा समस्या छ, यो फिड फेला पार्न गाह्रो भइरहेको छ। सम्भवतः यो हटाइएको हुन सक्छ।"
-#: src/screens/Moderation/index.tsx:54
+#: src/screens/Moderation/index.tsx:58
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr "हाम्रोमा समस्या छ, यो डेटा लोड गर्न समस्या भइरहेको देखिन्छ। थप विवरणका लागि तल हेर्नुहोस्। यदि यो समस्या कायम रहन्छ भने, कृपया हामीलाई सम्पर्क गर्नुहोस्।"
@@ -3610,15 +3963,15 @@ msgstr "हाम्रोमा समस्या छ, हामीले त
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "पर्खनुहोस्! हामी बिस्तारै भिडियो पहुँच उपलब्ध गराउँदैछौं, र तपाईं अझै प्रतीक्षामा हुनुहुन्छ। छिट्टै पुनः प्रयास गर्नुहोस्।"
-#: src/Navigation.tsx:627
#: src/Navigation.tsx:647
-#: src/view/shell/bottom-bar/BottomBar.tsx:162
-#: src/view/shell/desktop/LeftNav.tsx:595
-#: src/view/shell/Drawer.tsx:396
+#: src/Navigation.tsx:667
+#: src/view/shell/bottom-bar/BottomBar.tsx:168
+#: src/view/shell/desktop/LeftNav.tsx:617
+#: src/view/shell/Drawer.tsx:415
msgid "Home"
msgstr "गृहपृष्ठ"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:417
msgid "Host:"
msgstr "होस्ट:"
@@ -3627,34 +3980,33 @@ msgstr "होस्ट:"
msgid "Hosting provider"
msgstr "होस्टिंग प्रदायक"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194
+msgid "Hot"
+msgstr ""
+
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
-#: src/view/com/post-thread/PostThread.tsx:656
-#: src/view/com/post-thread/PostThread.tsx:661
+#: src/view/com/post-thread/PostThread.tsx:655
+#: src/view/com/post-thread/PostThread.tsx:660
msgid "Hot replies first"
msgstr "पहिले चर्चित उत्तरहरू"
-#: src/view/com/modals/InAppBrowserConsent.tsx:41
+#: src/components/dialogs/InAppBrowserConsent.tsx:62
+#: src/components/dialogs/InAppBrowserConsent.tsx:66
msgid "How should we open this link?"
msgstr "यो लिंक कसरी खोल्ने?"
+#: src/components/dialogs/ChangeEmailDialog.tsx:189
+#: src/components/dialogs/ChangeEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:302
+#: src/components/dialogs/VerifyEmailDialog.tsx:309
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
-#: src/view/com/modals/VerifyEmail.tsx:222
msgid "I have a code"
msgstr "मसँग कोड छ"
-#: src/components/dialogs/VerifyEmailDialog.tsx:239
-#: src/components/dialogs/VerifyEmailDialog.tsx:246
-msgid "I Have a Code"
-msgstr "मसँग कोड छ"
-
-#: src/view/com/modals/VerifyEmail.tsx:224
-msgid "I have a confirmation code"
-msgstr "मसँग पुष्टि कोड छ"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:280
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:286
msgid "I have my own domain"
msgstr "मसँग मेरो आफ्नै डोमेन छ"
@@ -3667,22 +4019,30 @@ msgstr "म बुझ्छु"
msgid "If alt text is long, toggles alt text expanded state"
msgstr "यदि वैकल्पिक पाठ लामो छ भने, यसको विस्तारित स्थिति परिवर्तन गर्नुहोस्।"
-#: src/screens/Signup/StepInfo/Policies.tsx:110
+#: src/screens/Signup/StepInfo/Policies.tsx:112
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:758
+#: src/view/screens/ProfileList.tsx:765
msgid "If you delete this list, you won't be able to recover it."
msgstr "यदि तपाईं यो सूची हटाउनुहुन्छ भने, तपाईं यसलाई पुनः प्राप्त गर्न सक्नुहुन्न।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:747
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:270
+msgid "If you need to update your email, <0>click here0>."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683
msgid "If you remove this post, you won't be able to recover it."
msgstr "यदि तपाईंले यो पोस्ट हटाउनुभयो भने, तपाईं यसलाई पुनः प्राप्त गर्न सक्नुहुन्न।"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:208
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr ""
+
#: src/view/com/modals/ChangePassword.tsx:160
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "यदि तपाईं आफ्नो पासवर्ड परिवर्तन गर्न चाहनुहुन्छ भने, हामी तपाईंलाई यो खाता हो भनेर प्रमाणित गर्न कोड पठाउनेछौं।"
@@ -3704,9 +4064,22 @@ msgstr "अवैध र अत्यावश्यक"
msgid "Image"
msgstr "चित्र"
-#: src/components/StarterPack/ShareDialog.tsx:76
-msgid "Image saved to your camera roll!"
-msgstr "चित्र तपाईंको क्यामेरा रोलमा सुरक्षित भयो!"
+#: src/screens/Settings/AboutSettings.tsx:64
+msgid "Image cache cleared"
+msgstr ""
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#: src/screens/Settings/AboutSettings.tsx:50
+msgid "Image cache cleared, freed {0}"
+msgstr ""
+
+#: src/lib/media/save-image.ts:26
+msgid "Image saved"
+msgstr ""
+
+#: src/lib/media/save-image.ts:45
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:49
#: src/lib/moderation/useReportOptions.ts:49
@@ -3724,7 +4097,7 @@ msgid "Inappropriate messages or explicit links"
msgstr "अशोभनीय सन्देशहरू वा स्पष्ट लिङ्कहरू"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:203
+#: src/screens/Messages/Inbox.tsx:208
msgid "Inbox zero!"
msgstr ""
@@ -3752,15 +4125,11 @@ msgstr "खाता मेटाउनको लागि पासवर्ड
msgid "Input the code which has been emailed to you"
msgstr "तपाईंलाई इमेल गरिएका कोड प्रविष्ट गर्नुहोस्"
-#: src/screens/Login/LoginForm.tsx:218
-msgid "Input the username or email address you used at signup"
-msgstr "साइनअप गर्दा प्रयोग गरिएको प्रयोगकर्ता नाम वा इमेल ठेगाना प्रविष्ट गर्नुहोस्"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "परस्पर क्रिया सीमित छ"
-#: src/screens/Moderation/index.tsx:209
+#: src/screens/Moderation/index.tsx:213
msgid "Interaction settings"
msgstr ""
@@ -3769,11 +4138,11 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "अमान्य 2FA पुष्टि कोड।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:597
msgid "Invalid handle. Please try a different one."
msgstr "अवैध ह्यान्डल। कृपया अर्को प्रयास गर्नुहोस्।"
-#: src/view/com/post-thread/PostThreadItem.tsx:283
+#: src/view/com/post-thread/PostThreadItem.tsx:339
msgid "Invalid or unsupported post record"
msgstr "अवैध वा असमर्थित पोस्ट रेकर्ड"
@@ -3789,11 +4158,11 @@ msgstr "अवैध प्रमाणिकरण कोड"
msgid "Invite a Friend"
msgstr "एक साथीलाई निमन्त्रणा गर्नुहोस्"
-#: src/screens/Signup/StepInfo/index.tsx:160
+#: src/screens/Signup/StepInfo/index.tsx:163
msgid "Invite code"
msgstr "निमन्त्रणा कोड"
-#: src/screens/Signup/state.ts:276
+#: src/screens/Signup/state.ts:339
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "निमन्त्रणा कोड स्वीकार गरिएन। कृपया यसलाई सहि तरिकाले प्रविष्ट गर्नुभएको छ कि छैन जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।"
@@ -3805,7 +4174,7 @@ msgstr "निमन्त्रणा कोडहरू: {0} उपलब्
msgid "Invite codes: 1 available"
msgstr "निमन्त्रणा कोडहरू: 1 उपलब्ध"
-#: src/components/StarterPack/ShareDialog.tsx:96
+#: src/components/StarterPack/ShareDialog.tsx:77
msgid "Invite people to this starter pack!"
msgstr "यस स्टार्टर प्याकमा मानिसहरूलाई निमन्त्रणा गर्नुहोस्!"
@@ -3817,7 +4186,7 @@ msgstr "आफ्ना साथीहरूलाई तपाईंका म
msgid "Invites, but personal"
msgstr "निमन्त्रणहरू, तर व्यक्तिगत"
-#: src/screens/Signup/StepInfo/index.tsx:286
+#: src/screens/Signup/StepInfo/index.tsx:289
msgid "It's correct"
msgstr "यो सहि छ"
@@ -3825,19 +4194,19 @@ msgstr "यो सहि छ"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "अहिले मात्र तपाईं हुनुहुन्छ! माथि खोजेर आफ्नो स्टार्टर प्याकमा थप मानिसहरू थप्नुहोस्।"
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1612
msgid "Job ID: {0}"
msgstr "जॉब आईडी: {0}"
#. Link to a page with job openings at Bluesky
-#: src/view/com/auth/SplashScreen.web.tsx:178
+#: src/view/com/auth/SplashScreen.web.tsx:180
msgid "Jobs"
msgstr "जॉबहरू"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:205
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:211
-#: src/screens/StarterPack/StarterPackScreen.tsx:461
-#: src/screens/StarterPack/StarterPackScreen.tsx:472
+#: src/screens/StarterPack/StarterPackScreen.tsx:466
+#: src/screens/StarterPack/StarterPackScreen.tsx:477
msgid "Join Bluesky"
msgstr "ब्लूस्काईमा सामेल हुनुहोस्"
@@ -3860,7 +4229,7 @@ msgid "Labeled by the author."
msgstr "लेखकद्वारा लेबल गरिएको।"
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:218
+#: src/view/screens/Profile.tsx:223
msgid "Labels"
msgstr "लेबलहरू"
@@ -3868,7 +4237,7 @@ msgstr "लेबलहरू"
msgid "Labels added"
msgstr "लेबलहरू थपियो"
-#: src/screens/Profile/Sections/Labels.tsx:163
+#: src/screens/Profile/Sections/Labels.tsx:160
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "लेबलहरू प्रयोगकर्ता र सामग्रीमा ट्यागहरू हुन्। ती नेटवर्कलाई लुकाउन, चेतावनी दिन, र वर्गीकृत गर्न प्रयोग गर्न सकिन्छ।"
@@ -3884,13 +4253,13 @@ msgstr "तपाईंको सामग्रीमा लेबलहरू"
msgid "Language selection"
msgstr "भाषा चयन"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:190
msgid "Language Settings"
msgstr "भाषा सेटिङ"
-#: src/screens/Settings/LanguageSettings.tsx:71
-#: src/screens/Settings/Settings.tsx:199
-#: src/screens/Settings/Settings.tsx:202
+#: src/screens/Settings/LanguageSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:209
+#: src/screens/Settings/Settings.tsx:212
msgid "Languages"
msgstr "भाषाहरू"
@@ -3899,20 +4268,29 @@ msgid "Larger"
msgstr "ठूलो"
#: src/screens/Hashtag.tsx:95
+#: src/screens/Search/SearchResults.tsx:52
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:515
msgid "Latest"
msgstr "पछिल्लो"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:271
msgid "learn more"
msgstr "थप जान्नुहोस्"
+#: src/components/verification/VerificationsDialog.tsx:165
+#: src/components/verification/VerifierDialog.tsx:132
+#: src/screens/Moderation/VerificationSettings.tsx:47
+#: src/screens/Profile/Header/EditProfileDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/view/com/modals/EditProfile.tsx:207
+msgid "Learn more"
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:140
msgid "Learn More"
msgstr "थप जान्नुहोस्"
-#: src/view/com/auth/SplashScreen.web.tsx:166
+#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Learn more about Bluesky"
msgstr "ब्लूस्काईबारे थप जान्नुहोस्"
@@ -3933,6 +4311,11 @@ msgstr "यस सामग्रीमा लागू गरिएको म
msgid "Learn more about this warning"
msgstr "यस चेतावनीबारे थप जान्नुहोस्।"
+#: src/components/verification/VerificationsDialog.tsx:150
+#: src/components/verification/VerifierDialog.tsx:117
+msgid "Learn more about verification on Bluesky"
+msgstr ""
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:99
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
msgid "Learn more about what is public on Bluesky."
@@ -3972,7 +4355,7 @@ msgstr "ब्लूस्काई छोड्दै"
msgid "left to go."
msgstr "जान बाँकी।"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "Let me choose"
msgstr "मलाई छान्न दिनुहोस्"
@@ -3996,11 +4379,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "हल्का"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Like"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:312
+#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
+#: src/components/PostControls/index.tsx:246
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -4013,17 +4397,16 @@ msgstr "१० पोस्टहरू मन पराउनुहोस्"
msgid "Like 10 posts to train the Discover feed"
msgstr "डिस्कभर फीडलाई तालिम दिन १० पोस्ट मन पराउनुहोस्।"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:505
msgid "Like this feed"
msgstr "यस फीडलाई मन पराउनुहोस्।"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:272
msgid "Like this labeler"
msgstr ""
-#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:256
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:268
+#: src/Navigation.tsx:273
msgid "Liked by"
msgstr "मन पराउनेहरू"
@@ -4033,43 +4416,43 @@ msgstr "मन पराउनेहरू"
msgid "Liked By"
msgstr "मन पराउनेहरू"
-#: src/components/FeedCard.tsx:213
+#: src/components/FeedCard.tsx:218
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:493
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:306
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
-#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:229
msgid "Likes"
msgstr "रुचिहरू"
-#: src/view/com/post-thread/PostThreadItem.tsx:218
+#: src/view/com/post-thread/PostThreadItem.tsx:232
msgid "Likes on this post"
msgstr "यस पोस्टमा रुचिहरू"
-#: src/view/com/post-thread/PostThread.tsx:630
-#: src/view/com/post-thread/PostThread.tsx:635
+#: src/view/com/post-thread/PostThread.tsx:629
+#: src/view/com/post-thread/PostThread.tsx:634
msgid "Linear"
msgstr ""
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:223
msgid "List"
msgstr "सूची"
-#: src/view/com/modals/CreateOrEditList.tsx:241
+#: src/view/com/modals/CreateOrEditList.tsx:239
msgid "List Avatar"
msgstr "सूची अवतार"
-#: src/view/screens/ProfileList.tsx:431
+#: src/view/screens/ProfileList.tsx:438
msgctxt "toast"
msgid "List blocked"
-msgstr ""
+msgstr "सूची ब्लक गरियो"
#: src/components/ListCard.tsx:150
#: src/view/com/feeds/FeedSourceCard.tsx:255
@@ -4084,44 +4467,44 @@ msgstr ""
msgid "List by you"
msgstr ""
-#: src/view/screens/ProfileList.tsx:478
+#: src/view/screens/ProfileList.tsx:485
msgctxt "toast"
msgid "List deleted"
-msgstr ""
+msgstr "सूची मेटाइयो"
#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
msgstr "सूची लुकाइएको छ"
-#: src/view/screens/ProfileList.tsx:173
+#: src/view/screens/ProfileList.tsx:176
msgid "List Hidden"
msgstr "सूची लुकाइएको"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:402
msgctxt "toast"
msgid "List muted"
-msgstr ""
+msgstr "सूची म्यूट गरियो"
-#: src/view/com/modals/CreateOrEditList.tsx:255
+#: src/view/com/modals/CreateOrEditList.tsx:253
msgid "List Name"
msgstr "सूची नाम"
-#: src/view/screens/ProfileList.tsx:449
+#: src/view/screens/ProfileList.tsx:456
msgctxt "toast"
msgid "List unblocked"
-msgstr ""
+msgstr "सूची अनब्लक गरियो"
-#: src/view/screens/ProfileList.tsx:413
+#: src/view/screens/ProfileList.tsx:420
msgctxt "toast"
msgid "List unmuted"
-msgstr ""
+msgstr "सूची अनम्यूट गरियो"
-#: src/Navigation.tsx:140
-#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:219
-#: src/view/screens/Profile.tsx:227
-#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:501
+#: src/Navigation.tsx:144
+#: src/view/screens/Lists.tsx:65
+#: src/view/screens/Profile.tsx:224
+#: src/view/screens/Profile.tsx:232
+#: src/view/shell/desktop/LeftNav.tsx:691
+#: src/view/shell/Drawer.tsx:520
msgid "Lists"
msgstr "सूचीहरू"
@@ -4129,34 +4512,47 @@ msgstr "सूचीहरू"
msgid "Lists blocking this user:"
msgstr "यस प्रयोगकर्तालाई ब्लक गर्ने सूचीहरू:"
-#: src/view/screens/Search/Explore.tsx:135
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/components/live/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr ""
+
+#: src/components/live/LiveStatusDialog.tsx:215
+msgid "Live feature is in beta testing"
+msgstr ""
+
+#: src/components/live/EditLiveDialog.tsx:148
+#: src/components/live/EditLiveDialog.tsx:152
+#: src/components/live/GoLiveDialog.tsx:124
+#: src/components/live/GoLiveDialog.tsx:128
+msgid "Live link"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:86
msgid "Load more"
msgstr "थप लोड गर्नुहोस्"
-#: src/view/screens/Search/Explore.tsx:224
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr "थप सुझाइएका फीडहरू लोड गर्नुहोस्।"
-#: src/view/screens/Search/Explore.tsx:222
-msgid "Load more suggested follows"
-msgstr "थप सुझाइएका फलोहरू लोड गर्नुहोस्।"
-
#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "नयाँ सूचनाहरू लोड गर्नुहोस्।"
-#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/ProfileFeed/index.tsx:224
#: src/screens/Profile/Sections/Feed.tsx:98
#: src/view/com/feeds/FeedPage.tsx:155
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:878
msgid "Load new posts"
msgstr "नयाँ पोस्टहरू लोड गर्नुहोस्।"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
msgid "Loading..."
msgstr "लोड हुँदैछ..."
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:293
msgid "Log"
msgstr "लग"
@@ -4164,12 +4560,12 @@ msgstr "लग"
msgid "Logged-out visibility"
msgstr "लग आउट गरिएको दृश्यता"
-#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:130
msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
-#: src/view/shell/desktop/RightNav.tsx:122
-#: src/view/shell/Drawer.tsx:639
+#: src/view/shell/desktop/RightNav.tsx:127
+#: src/view/shell/Drawer.tsx:658
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "लोगो द्वारा <0>@sawaratsuki.bsky.social0>"
@@ -4193,7 +4589,11 @@ msgstr "तपाईंले सबै फीडहरू अनपिन ग
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "तपाईंले अनुसरण गर्ने फीड हराएको जस्तो देखिन्छ। <0>यहाँ क्लिक गरेर थप्नुहोस्।0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/dialogs/EmailDialog/index.tsx:41
+msgid "Make adjustments to email settings for your account"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:282
msgid "Make one for me"
msgstr "मेरो लागि एउटा बनाउनुहोस्।"
@@ -4201,18 +4601,22 @@ msgstr "मेरो लागि एउटा बनाउनुहोस्।
msgid "Make sure this is where you intend to go!"
msgstr "तपाईं जहाँ जान चाहनुहुन्छ, यो त्यही हो भनेर सुनिश्चित गर्नुहोस्!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:60
+#: src/screens/Settings/ContentAndMediaSettings.tsx:63
msgid "Manage saved feeds"
msgstr "सुरक्षित फीडहरू व्यवस्थापन गर्नुहोस्"
+#: src/screens/Moderation/index.tsx:283
+msgid "Manage verification settings"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "तपाईंका म्यूट गरिएको शब्द र ट्यागहरू व्यवस्थापन गर्नुहोस्।"
-#: src/screens/Messages/Inbox.tsx:300
-#: src/screens/Messages/Inbox.tsx:319
-#: src/screens/Messages/Inbox.tsx:326
+#: src/screens/Messages/Inbox.tsx:305
+#: src/screens/Messages/Inbox.tsx:324
+#: src/screens/Messages/Inbox.tsx:331
msgid "Mark all as read"
msgstr ""
@@ -4221,16 +4625,23 @@ msgstr ""
msgid "Mark as read"
msgstr "पढिएको रूपमा चिन्ह लगाउनुहोस्।"
-#: src/screens/Messages/Inbox.tsx:287
-#: src/screens/Messages/Inbox.tsx:310
+#: src/screens/Messages/Inbox.tsx:292
+#: src/screens/Messages/Inbox.tsx:315
msgid "Marked all as read"
msgstr ""
-#: src/view/screens/Profile.tsx:222
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97
+#: src/components/dialogs/VerifyEmailDialog.tsx:273
+#: src/components/dialogs/VerifyEmailDialog.tsx:281
+msgid "Maybe later"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:227
msgid "Media"
msgstr "मिडिया"
-#: src/view/com/composer/labels/LabelsBtn.tsx:211
+#: src/view/com/composer/labels/LabelsBtn.tsx:210
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "केही दर्शकहरूको लागि असुविधाजनक वा अनुचित हुन सक्ने मिडिया।"
@@ -4246,23 +4657,27 @@ msgstr "उल्लेख गरिएका प्रयोगकर्ता"
msgid "Mentions"
msgstr ""
-#: src/components/Menu/index.tsx:103
+#: src/components/Menu/index.tsx:105
msgid "Menu"
msgstr "मेनु"
-#: src/components/dms/MessageProfileButton.tsx:103
+#: src/components/dms/MessageProfileButton.tsx:96
msgid "Message {0}"
msgstr "सन्देश {0}"
-#: src/components/dms/MessageMenu.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:82
msgctxt "toast"
msgid "Message deleted"
msgstr "सन्देश मेटाइएको।"
-#: src/screens/Messages/components/ChatListItem.tsx:190
+#: src/screens/Messages/components/ChatListItem.tsx:197
msgid "Message deleted"
msgstr "सन्देश मेटाइएको।"
+#: src/components/dms/MessageContextMenu.tsx:130
+msgid "Message from @{0}: {1}"
+msgstr ""
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "सर्भरबाट सन्देश: {0}"
@@ -4276,7 +4691,11 @@ msgstr "सन्देश इनपुट क्षेत्र"
msgid "Message is too long"
msgstr "सन्देश धेरै लामो छ।"
-#: src/Navigation.tsx:642
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr ""
+
+#: src/Navigation.tsx:662
msgid "Messages"
msgstr "सन्देशहरू"
@@ -4295,10 +4714,10 @@ msgstr "भ्रामक खाता"
msgid "Misleading Post"
msgstr "भ्रामक पोस्ट"
-#: src/Navigation.tsx:145
-#: src/screens/Moderation/index.tsx:89
-#: src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170
+#: src/Navigation.tsx:149
+#: src/screens/Moderation/index.tsx:93
+#: src/screens/Settings/Settings.tsx:177
+#: src/screens/Settings/Settings.tsx:180
msgid "Moderation"
msgstr "मोडरेशन"
@@ -4320,22 +4739,22 @@ msgstr "<0/> द्वारा मोडरेशन सूची"
msgid "Moderation list by you"
msgstr "तपाईं द्वारा मोडरेशन सूची"
-#: src/view/com/modals/CreateOrEditList.tsx:177
+#: src/view/com/modals/CreateOrEditList.tsx:175
msgctxt "toast"
msgid "Moderation list created"
-msgstr ""
+msgstr "मोडरेशन सूची सिर्जना गरियो।"
-#: src/view/com/modals/CreateOrEditList.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:161
msgctxt "toast"
msgid "Moderation list updated"
-msgstr ""
+msgstr "मोडरेशन सूची अपडेट गरियो।"
-#: src/screens/Moderation/index.tsx:239
+#: src/screens/Moderation/index.tsx:243
msgid "Moderation lists"
msgstr "मोडरेशन सूचीहरू"
-#: src/Navigation.tsx:150
-#: src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:154
+#: src/view/screens/ModerationModlists.tsx:65
msgid "Moderation Lists"
msgstr "मोडरेशन सूचीहरू"
@@ -4343,11 +4762,11 @@ msgstr "मोडरेशन सूचीहरू"
msgid "moderation settings"
msgstr "मोडरेशन सेटिङ्स"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:283
msgid "Moderation states"
msgstr "मोडरेशन अवस्थाहरू"
-#: src/screens/Moderation/index.tsx:193
+#: src/screens/Moderation/index.tsx:197
msgid "Moderation tools"
msgstr "मोडरेशन उपकरणहरू"
@@ -4356,7 +4775,7 @@ msgstr "मोडरेशन उपकरणहरू"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "मोडरेटरले सामग्रीमा सामान्य चेतावनी सेट गर्ने निर्णय गरेका छन्।"
-#: src/view/com/post-thread/PostThreadItem.tsx:640
+#: src/view/com/post-thread/PostThreadItem.tsx:721
msgid "More"
msgstr "थप"
@@ -4365,9 +4784,9 @@ msgstr "थप"
msgid "More feeds"
msgstr "थप फीडहरू"
-#: src/view/com/profile/ProfileMenu.tsx:194
-#: src/view/com/profile/ProfileMenu.tsx:200
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/com/profile/ProfileMenu.tsx:220
+#: src/view/com/profile/ProfileMenu.tsx:226
+#: src/view/screens/ProfileList.tsx:750
msgid "More options"
msgstr "थप विकल्पहरू"
@@ -4376,8 +4795,8 @@ msgid "Most-liked first"
msgstr "पहिले धेरै मन पराइएको"
#: src/screens/Settings/ThreadPreferences.tsx:91
-#: src/view/com/post-thread/PostThread.tsx:686
-#: src/view/com/post-thread/PostThread.tsx:691
+#: src/view/com/post-thread/PostThread.tsx:685
+#: src/view/com/post-thread/PostThread.tsx:690
msgid "Most-liked replies first"
msgstr "पहिले धेरै मन पराइएका उत्तरहरू"
@@ -4400,14 +4819,14 @@ msgstr "म्यूट गर्नुहोस्"
msgid "Mute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:289
-#: src/view/com/profile/ProfileMenu.tsx:296
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616
+#: src/view/com/profile/ProfileMenu.tsx:363
+#: src/view/com/profile/ProfileMenu.tsx:370
msgid "Mute account"
msgstr "खाता म्यूट गर्नुहोस्"
-#: src/view/screens/ProfileList.tsx:650
+#: src/view/screens/ProfileList.tsx:657
msgid "Mute accounts"
msgstr "खाता म्यूट गर्नुहोस्"
@@ -4420,11 +4839,11 @@ msgstr "वार्ता म्यूट गर्नुहोस्"
msgid "Mute in:"
msgstr "म्यूट गर्नुहोस्:"
-#: src/view/screens/ProfileList.tsx:772
+#: src/view/screens/ProfileList.tsx:779
msgid "Mute list"
msgstr "सूची म्यूट गर्नुहोस्"
-#: src/view/screens/ProfileList.tsx:767
+#: src/view/screens/ProfileList.tsx:774
msgid "Mute these accounts?"
msgstr "यी खाता म्यूट गर्नुहोस्?"
@@ -4452,26 +4871,26 @@ msgstr "यो शब्द केवल ट्यागहरूमा म्
msgid "Mute this word until you unmute it"
msgstr "तपाईंले अनम्यूट नगरेसम्म यो शब्द म्यूट गर्नुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Mute thread"
msgstr "थ्रेड म्यूट गर्नुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:552
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
msgid "Mute words & tags"
msgstr "शब्दहरू र ट्यागहरू म्यूट गर्नुहोस्"
-#: src/screens/Moderation/index.tsx:254
+#: src/screens/Moderation/index.tsx:258
msgid "Muted accounts"
msgstr "म्यूट गरिएका खाता"
-#: src/Navigation.tsx:155
-#: src/view/screens/ModerationMutedAccounts.tsx:100
+#: src/Navigation.tsx:159
+#: src/view/screens/ModerationMutedAccounts.tsx:118
msgid "Muted Accounts"
msgstr "म्यूट गरिएका खाता"
-#: src/view/screens/ModerationMutedAccounts.tsx:112
+#: src/view/screens/ModerationMutedAccounts.tsx:204
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "म्यूट गरिएका खाताहरूका पोस्टहरू तपाईंको फीड र सूचनाहरूबाट हटाइन्छ। म्यूटहरू पूर्ण रूपमा निजी छन्।"
@@ -4479,11 +4898,11 @@ msgstr "म्यूट गरिएका खाताहरूका पोस
msgid "Muted by \"{0}\""
msgstr "\"{0}\" द्वारा म्यूट गरियो।"
-#: src/screens/Moderation/index.tsx:224
+#: src/screens/Moderation/index.tsx:228
msgid "Muted words & tags"
msgstr "म्यूट गरिएका शब्दहरू र ट्यागहरू"
-#: src/view/screens/ProfileList.tsx:769
+#: src/view/screens/ProfileList.tsx:776
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "म्यूट निजी हुन्छ। म्यूट गरिएका खाताहरू तपाईंसँग अन्तरक्रिया गर्न सक्छन्, तर तपाईंले तिनीहरूको पोस्टहरू देख्नुहुनेछैन वा तिनीहरूबाट सूचना प्राप्त गर्नुहुनेछैन।"
@@ -4492,15 +4911,15 @@ msgstr "म्यूट निजी हुन्छ। म्यूट गर
msgid "My Birthday"
msgstr "मेरो जन्मदिन"
-#: src/view/screens/Feeds.tsx:699
+#: src/view/screens/Feeds.tsx:702
msgid "My Feeds"
msgstr "मेरो फीडहरू"
-#: src/view/com/modals/CreateOrEditList.tsx:270
+#: src/view/com/modals/CreateOrEditList.tsx:268
msgid "Name"
msgstr "नाम"
-#: src/view/com/modals/CreateOrEditList.tsx:135
+#: src/view/com/modals/CreateOrEditList.tsx:133
msgid "Name is required"
msgstr "नाम अनिवार्य छ।"
@@ -4521,24 +4940,29 @@ msgid "Nature"
msgstr "प्रकृति"
#: src/components/StarterPack/StarterPackCard.tsx:130
+#: src/components/StarterPack/StarterPackCard.tsx:161
msgid "Navigate to {0}"
msgstr "{0} मा जानुहोस्"
+#: src/components/StarterPack/StarterPackCard.tsx:131
+msgid "Navigate to starter pack"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:166
#: src/screens/Login/LoginForm.tsx:344
#: src/view/com/modals/ChangePassword.tsx:180
msgid "Navigates to the next screen"
msgstr "अर्को स्क्रिनमा जानुहोस्"
-#: src/view/shell/Drawer.tsx:72
+#: src/view/shell/Drawer.tsx:77
msgid "Navigates to your profile"
msgstr "तपाईंको प्रोफाइलमा जानुहोस्"
-#: src/components/dialogs/VerifyEmailDialog.tsx:196
+#: src/components/dialogs/VerifyEmailDialog.tsx:234
msgid "Need to change it?"
msgstr "यसलाई परिवर्तन गर्न आवश्यक छ?"
-#: src/components/moderation/ReportDialog/index.tsx:280
+#: src/components/moderation/ReportDialog/index.tsx:288
#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "प्रतिलिपि अधिकार उल्लङ्घनको रिपोर्ट गर्न चाहनुहुन्छ?"
@@ -4547,30 +4971,43 @@ msgstr "प्रतिलिपि अधिकार उल्लङ्घन
msgid "Never lose access to your followers or data."
msgstr "कहिल्यै पनि आफ्ना फलोअरहरू वा डेटा गुमाउनु पर्दैन।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
msgid "Nevermind, create a handle for me"
msgstr "केही छैन, मेरो लागि एक हैंडल सिर्जना गर्नुहोस्"
-#: src/view/screens/Lists.tsx:74
-#: src/view/screens/ModerationModlists.tsx:74
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:199
+msgid "New"
+msgstr "नयाँ"
+
+#: src/view/screens/Lists.tsx:77
+#: src/view/screens/ModerationModlists.tsx:77
msgctxt "action"
msgid "New"
msgstr "नयाँ"
-#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:350
-#: src/screens/Messages/ChatList.tsx:357
+#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/screens/Messages/ChatList.tsx:364
+#: src/screens/Messages/ChatList.tsx:371
msgid "New chat"
msgstr "नयाँ कुराकानी"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/components/dialogs/ChangeEmailDialog.tsx:142
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:222
+msgid "New email address"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+msgid "New Feature"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
msgid "New handle"
msgstr "नयाँ हैंडल"
-#: src/view/screens/Lists.tsx:66
-#: src/view/screens/ModerationModlists.tsx:66
+#: src/view/screens/Lists.tsx:69
+#: src/view/screens/ModerationModlists.tsx:69
msgid "New list"
msgstr ""
@@ -4578,7 +5015,7 @@ msgstr ""
msgid "New messages"
msgstr "नयाँ सन्देशहरू"
-#: src/view/com/modals/CreateOrEditList.tsx:232
+#: src/view/com/modals/CreateOrEditList.tsx:230
msgid "New Moderation List"
msgstr "नयाँ मोडरेशन सूची"
@@ -4590,12 +5027,12 @@ msgstr "नयाँ पासवर्ड"
msgid "New Password"
msgstr "नयाँ पासवर्ड"
-#: src/screens/Profile/ProfileFeed/index.tsx:238
-#: src/view/screens/Feeds.tsx:549
+#: src/screens/Profile/ProfileFeed/index.tsx:241
+#: src/view/screens/Feeds.tsx:552
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:505
-#: src/view/screens/ProfileList.tsx:253
-#: src/view/screens/ProfileList.tsx:286
+#: src/view/screens/Profile.tsx:510
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:288
msgid "New post"
msgstr "नयाँ पोस्ट"
@@ -4604,7 +5041,7 @@ msgctxt "action"
msgid "New post"
msgstr "नयाँ पोस्ट"
-#: src/view/shell/desktop/LeftNav.tsx:507
+#: src/view/shell/desktop/LeftNav.tsx:526
msgctxt "action"
msgid "New Post"
msgstr "नयाँ पोस्ट"
@@ -4613,19 +5050,20 @@ msgstr "नयाँ पोस्ट"
msgid "New user info dialog"
msgstr "नयाँ प्रयोगकर्ता जानकारी संवाद"
-#: src/view/com/modals/CreateOrEditList.tsx:227
+#: src/view/com/modals/CreateOrEditList.tsx:225
msgid "New User List"
msgstr "नयाँ प्रयोगकर्ता सूची"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
-#: src/view/com/post-thread/PostThread.tsx:676
-#: src/view/com/post-thread/PostThread.tsx:681
+#: src/view/com/post-thread/PostThread.tsx:675
+#: src/view/com/post-thread/PostThread.tsx:680
msgid "Newest replies first"
msgstr "पहिले सबैभन्दा नयाँ उत्तरहरू"
#: src/screens/Onboarding/index.tsx:20
#: src/screens/Onboarding/state.ts:108
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:241
msgid "News"
msgstr "समाचार"
@@ -4655,11 +5093,15 @@ msgstr "अर्को चित्र"
msgid "No app passwords yet"
msgstr "अहिलेसम्म कुनै एप पासवर्ड छैन"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:399
msgid "No DNS Panel"
msgstr "कुनै DNS प्यानल छैन"
+#: src/components/live/EditLiveDialog.tsx:140
+msgid "No expiry set"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:231
msgid "No featured GIFs found. There may be an issue with Tenor."
msgstr "विशेष GIFहरू फेला परेनन्। Tenorसँग समस्या हुन सक्छ।"
@@ -4668,21 +5110,25 @@ msgstr "विशेष GIFहरू फेला परेनन्। Tenorस
msgid "No feeds found. Try searching for something else."
msgstr "कुनै फीडहरू फेला परेनन्। केहि अरू खोज्ने प्रयास गर्नुहोस्।"
+#: src/components/live/LinkPreview.tsx:63
+msgid "No image"
+msgstr ""
+
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
msgid "No likes yet"
msgstr "अहिलेसम्म कुनै रुचिहरू छैन"
-#: src/components/ProfileCard.tsx:344
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/components/ProfileCard.tsx:398
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:110
msgid "No longer following {0}"
msgstr "{0} लाई अब अनुसरण गरिरहेको छैन"
-#: src/screens/Signup/StepHandle.tsx:176
-msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH} characters"
+#: src/screens/Signup/StepHandle.tsx:184
+msgid "No longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "No messages yet"
msgstr "अहिलेसम्म कुनै सन्देश छैन"
@@ -4711,31 +5157,38 @@ msgstr "अहिलेसम्म कुनै उद्धरण छैन।
msgid "No reposts yet"
msgstr "अहिलेसम्म कुनै पुनःपोस्ट छैन।"
-#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
-#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:172
msgid "No result"
msgstr "कुनै परिणाम छैन"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:204
-#: src/components/ProgressGuide/FollowDialog.tsx:235
+#: src/components/dialogs/SearchablePeopleList.tsx:223
+#: src/components/ProgressGuide/FollowDialog.tsx:212
msgid "No results"
msgstr "कुनै परिणाम छैन"
+#: src/screens/Search/Explore.tsx:786
+msgid "No results for \"{0}\"."
+msgstr ""
+
#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "कुनै परिणाम भेटिएन"
-#: src/view/screens/Feeds.tsx:470
+#: src/view/screens/Feeds.tsx:473
msgid "No results found for \"{query}\""
msgstr "\"{query}\" को लागि कुनै परिणाम भेटिएन"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:231
-#: src/view/screens/Search/Search.tsx:269
-#: src/view/screens/Search/Search.tsx:314
+#: src/screens/Search/SearchResults.tsx:248
+#: src/screens/Search/SearchResults.tsx:284
+#: src/screens/Search/SearchResults.tsx:329
msgid "No results found for {query}"
msgstr "{query} को लागि कुनै परिणाम भेटिएन"
+#: src/screens/Search/Explore.tsx:790
+msgid "No results."
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:229
msgid "No search results found for \"{search}\"."
msgstr "\"{search}\" को लागि कुनै खोज परिणाम भेटिएन।"
@@ -4750,7 +5203,6 @@ msgid "Nobody"
msgstr "कसैले पनि होइन"
#: src/components/LikedByList.tsx:86
-#: src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "अहिलेसम्म कसैले यो मन पराएका छैनन्। सायद तपाई पहिलो हुनु पर्छ!"
@@ -4775,19 +5227,15 @@ msgstr "अ-यौन नग्नता"
msgid "Not followed by anyone you're following"
msgstr ""
-#: src/Navigation.tsx:135
-#: src/view/screens/Profile.tsx:122
+#: src/Navigation.tsx:139
+#: src/view/screens/Profile.tsx:125
msgid "Not Found"
msgstr "फेला परेन"
-#: src/view/com/modals/VerifyEmail.tsx:254
-#: src/view/com/modals/VerifyEmail.tsx:260
-msgid "Not right now"
-msgstr "अहिले होइन"
-
-#: src/view/com/profile/ProfileMenu.tsx:406
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:774
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:358
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:171
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:181
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:165
+#: src/view/com/profile/ProfileMenu.tsx:480
msgid "Note about sharing"
msgstr "साझेदारीको बारेमा नोट"
@@ -4795,7 +5243,7 @@ msgstr "साझेदारीको बारेमा नोट"
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "नोट: Bluesky एक खुला र सार्वजनिक नेटवर्क हो। यो सेटिङले तपाईंको सामग्रीको दृश्यता केवल Bluesky एप र वेबसाइटमा सीमित गर्दछ, र अन्य एपहरूले यो सेटिङलाई सम्मान नगर्न सक्छन्। तपाईंको सामग्री अन्य एपहरू र वेबसाइटहरूले लग आउट प्रयोगकर्ताहरूलाई देखाउन सक्छ।"
-#: src/screens/Messages/ChatList.tsx:263
+#: src/screens/Messages/ChatList.tsx:265
msgid "Nothing here"
msgstr "यहाँ केही छैन"
@@ -4803,7 +5251,7 @@ msgstr "यहाँ केही छैन"
msgid "Notification filters"
msgstr "सूचना फिल्टरहरू"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:443
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "सूचना सेटिङ्स"
@@ -4820,11 +5268,11 @@ msgstr "सूचना ध्वनीहरू"
msgid "Notification Sounds"
msgstr "सूचना ध्वनीहरू"
-#: src/Navigation.tsx:637
+#: src/Navigation.tsx:657
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:236
-#: src/view/shell/desktop/LeftNav.tsx:632
-#: src/view/shell/Drawer.tsx:449
+#: src/view/shell/bottom-bar/BottomBar.tsx:242
+#: src/view/shell/desktop/LeftNav.tsx:654
+#: src/view/shell/Drawer.tsx:468
msgid "Notifications"
msgstr "सूचनाहरू"
@@ -4832,12 +5280,12 @@ msgstr "सूचनाहरू"
msgid "now"
msgstr "अहिले"
-#: src/components/dms/MessageItem.tsx:198
+#: src/components/dms/MessageItem.tsx:274
msgid "Now"
msgstr "अहिले"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:150
+#: src/view/com/composer/labels/LabelsBtn.tsx:153
msgid "Nudity"
msgstr "नग्नता"
@@ -4859,21 +5307,23 @@ msgstr "ओहो!"
msgid "Oh no! Something went wrong."
msgstr "ओहो! केही गडबड भयो।"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:362
+#. Confirm button text.
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:349
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "ठिक छ"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:875
+#: src/view/com/post-thread/PostThreadItem.tsx:975
msgid "Okay"
msgstr "हुन्छ"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
-#: src/view/com/post-thread/PostThread.tsx:666
-#: src/view/com/post-thread/PostThread.tsx:671
+#: src/view/com/post-thread/PostThread.tsx:665
+#: src/view/com/post-thread/PostThread.tsx:670
msgid "Oldest replies first"
msgstr "सबैभन्दा पुराना उत्तर पहिले"
@@ -4881,19 +5331,19 @@ msgstr "सबैभन्दा पुराना उत्तर पहिल
msgid "on<0><1/><2><3/>2>0>"
msgstr "मा<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:304
+#: src/screens/Settings/Settings.tsx:358
msgid "Onboarding reset"
msgstr "अनबोर्डिङ रिसेट"
-#: src/view/com/composer/Composer.tsx:346
+#: src/view/com/composer/Composer.tsx:342
msgid "One or more GIFs is missing alt text."
msgstr "एक वा बढी GIF हरूमा वैकल्पिक पाठ छैन।"
-#: src/view/com/composer/Composer.tsx:343
+#: src/view/com/composer/Composer.tsx:339
msgid "One or more images is missing alt text."
msgstr "एक वा बढी चित्रहरूमा वैकल्पिक पाठ छैन।"
-#: src/view/com/composer/Composer.tsx:353
+#: src/view/com/composer/Composer.tsx:349
msgid "One or more videos is missing alt text."
msgstr "एक वा बढी भिडियोहरूमा वैकल्पिक पाठ छैन।"
@@ -4905,11 +5355,11 @@ msgstr "केवल .jpg र .png फाइलहरू समर्थित
msgid "Only {0} can reply."
msgstr "केवल {0} उत्तर दिन सक्छ।"
-#: src/screens/Signup/StepHandle.tsx:158
+#: src/screens/Signup/StepHandle.tsx:166
msgid "Only contains letters, numbers, and hyphens"
msgstr "केवल अक्षर, संख्या, र हाइफनहरू समावेश गर्दछ"
-#: src/lib/media/picker.shared.ts:29
+#: src/lib/media/picker.shared.ts:32
msgid "Only image files are supported"
msgstr "केवल चित्र फाइलहरू समर्थित छन्"
@@ -4922,12 +5372,12 @@ msgid "Oops, something went wrong!"
msgstr "ओहो, केही गडबड भयो!"
#: src/components/Lists.tsx:173
-#: src/components/StarterPack/ProfileStarterPacks.tsx:320
-#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+#: src/components/StarterPack/ProfileStarterPacks.tsx:341
#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:122
+#: src/view/screens/Profile.tsx:125
msgid "Oops!"
msgstr "ओहो!"
@@ -4935,67 +5385,80 @@ msgstr "ओहो!"
msgid "Open"
msgstr "खोल्नुहोस्"
-#: src/view/com/posts/AviFollowButton.tsx:86
-msgid "Open {name} profile shortcut menu"
-msgstr "{name} प्रोफाइल सर्टकट मेनु खोल्नुहोस्"
-
-#: src/screens/Onboarding/StepProfile/index.tsx:286
+#: src/screens/Onboarding/StepProfile/index.tsx:284
msgid "Open avatar creator"
msgstr "अवतार सिर्जनाकर्ता खोल्नुहोस्"
-#: src/screens/Messages/components/ChatListItem.tsx:302
-#: src/screens/Messages/components/ChatListItem.tsx:303
+#: src/screens/Messages/components/ChatListItem.tsx:368
+#: src/screens/Messages/components/ChatListItem.tsx:369
msgid "Open conversation options"
msgstr "कुराकानी विकल्प खोल्नुहोस्"
-#: src/components/Layout/Header/index.tsx:158
+#: src/components/Layout/Header/index.tsx:159
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1244
+#: src/view/com/composer/Composer.tsx:1272
msgid "Open emoji picker"
msgstr "इमोजी चयनकर्ता खोल्नुहोस्"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:186
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
msgid "Open feed info screen"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:286
#: src/screens/Profile/components/ProfileFeedHeader.tsx:291
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:296
msgid "Open feed options menu"
msgstr "फिड विकल्प मेनु खोल्नुहोस्"
-#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+#: src/components/dms/EmojiPopup.android.tsx:27
+msgid "Open full emoji list"
+msgstr ""
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:79
msgid "Open link to {niceUrl}"
msgstr "{niceUrl} को लिङ्क खोल्नुहोस्"
-#: src/components/dms/ActionsWrapper.tsx:90
+#: src/components/dms/ActionsWrapper.tsx:35
msgid "Open message options"
msgstr "सन्देश विकल्प खोल्नुहोस्"
-#: src/screens/Settings/Settings.tsx:330
+#: src/screens/Settings/Settings.tsx:395
msgid "Open moderation debug page"
msgstr "मोडरेसन डिबग पृष्ठ खोल्नुहोस्"
-#: src/screens/Moderation/index.tsx:220
+#: src/screens/Moderation/index.tsx:224
msgid "Open muted words and tags settings"
msgstr "मुट गरिएका शब्दहरू र ट्यागहरूको सेटिङ खोल्नुहोस्"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+#: src/screens/Search/components/StarterPackCard.tsx:119
+msgid "Open pack"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/index.tsx:62
msgid "Open post options menu"
msgstr "पोस्ट विकल्प मेनु खोल्नुहोस्"
-#: src/screens/StarterPack/StarterPackScreen.tsx:558
+#: src/components/live/LiveStatusDialog.tsx:189
+#: src/components/live/LiveStatusDialog.tsx:203
+msgid "Open profile"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/index.tsx:87
+msgid "Open share menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:566
msgid "Open starter pack menu"
msgstr "स्टार्टर प्याक मेनु खोल्नुहोस्"
-#: src/screens/Settings/Settings.tsx:323
-#: src/screens/Settings/Settings.tsx:337
+#: src/screens/Settings/Settings.tsx:388
+#: src/screens/Settings/Settings.tsx:402
msgid "Open storybook page"
msgstr "स्टोरीबुक पृष्ठ खोल्नुहोस्"
-#: src/screens/Settings/Settings.tsx:316
+#: src/screens/Settings/Settings.tsx:381
msgid "Open system log"
msgstr "प्रणाली लग खोल्नुहोस्"
@@ -5015,19 +5478,19 @@ msgstr "यो थ्रेडमा को उत्तर दिन सक्
msgid "Opens additional details for a debug entry"
msgstr "डिबग प्रविष्टिका लागि थप विवरणहरू खोल्नुहोस्"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
msgid "Opens camera on device"
msgstr "डिभाइसमा क्यामेरा खोल्नुहोस्"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+#: src/view/com/composer/videos/SubtitleDialog.tsx:43
msgid "Opens captions and alt text dialog"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:127
+#: src/screens/Settings/AccountSettings.tsx:138
msgid "Opens change handle dialog"
msgstr ""
@@ -5039,7 +5502,7 @@ msgstr "कम्पोजर खोल्नुहोस्"
msgid "Opens device photo gallery"
msgstr "डिभाइस फोटो ग्यालरी खोल्नुहोस्"
-#: src/view/com/composer/Composer.tsx:1245
+#: src/view/com/composer/Composer.tsx:1273
msgid "Opens emoji picker"
msgstr ""
@@ -5057,7 +5520,7 @@ msgstr "आफ्नो विद्यमान Bluesky खातामा स
msgid "Opens GIF select dialog"
msgstr "GIF चयन संवाद खोल्नुहोस्"
-#: src/screens/Settings/Settings.tsx:208
+#: src/screens/Settings/Settings.tsx:218
msgid "Opens helpdesk in browser"
msgstr ""
@@ -5065,6 +5528,10 @@ msgstr ""
msgid "Opens list of invite codes"
msgstr "आमन्त्रण कोडहरूको सूची खोल्नुहोस्"
+#: src/view/com/util/UserAvatar.tsx:563
+msgid "Opens live status dialog"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:249
msgid "Opens password reset form"
msgstr "पासवर्ड रिसेट फारम खोल्नुहोस्"
@@ -5073,12 +5540,12 @@ msgstr "पासवर्ड रिसेट फारम खोल्नुह
msgid "Opens the linked website"
msgstr "लिङ्क गरिएको वेबसाइट खोल्नुहोस्"
-#: src/view/com/notifications/NotificationFeedItem.tsx:683
-#: src/view/com/util/UserAvatar.tsx:446
+#: src/view/com/notifications/NotificationFeedItem.tsx:849
+#: src/view/com/util/UserAvatar.tsx:581
msgid "Opens this profile"
msgstr "यो प्रोफाइल खोल्नुहोस्"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:103
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
msgid "Opens video picker"
msgstr "भिडियो चयनकर्ता खोल्नुहोस्"
@@ -5121,11 +5588,11 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:27
#: src/lib/moderation/useReportOptions.ts:27
-#: src/view/com/composer/labels/LabelsBtn.tsx:186
+#: src/view/com/composer/labels/LabelsBtn.tsx:185
msgid "Other"
msgstr "अन्य"
-#: src/components/AccountList.tsx:83
+#: src/components/AccountList.tsx:88
msgid "Other account"
msgstr "अन्य खाता"
@@ -5151,9 +5618,9 @@ msgid "Page Not Found"
msgstr "पृष्ठ फेला परेन"
#: src/screens/Login/LoginForm.tsx:228
-#: src/screens/Settings/AccountSettings.tsx:117
-#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Settings/AccountSettings.tsx:128
+#: src/screens/Settings/AccountSettings.tsx:132
+#: src/screens/Signup/StepInfo/index.tsx:228
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5185,26 +5652,23 @@ msgstr "रोक्नुहोस्"
msgid "Pause video"
msgstr "भिडियो रोक्नुहोस्"
-#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Search/Search.tsx:525
+#: src/screens/Search/SearchResults.tsx:62
+#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/view/screens/ProfileList.tsx:170
msgid "People"
msgstr "व्यक्ति"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:210
msgid "People followed by @{0}"
msgstr "@{0} द्वारा अनुसरण गरिएका व्यक्ति"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:203
msgid "People following @{0}"
msgstr "@{0} लाई अनुसरण गर्ने व्यक्ति"
-#: src/view/com/lightbox/Lightbox.tsx:27
-msgid "Permission to access camera roll is required."
-msgstr "क्यामेरा रोल पहुँच गर्न अनुमति आवश्यक छ।"
-
-#: src/view/com/lightbox/Lightbox.tsx:35
-msgid "Permission to access camera roll was denied. Please enable it in your system settings."
-msgstr "क्यामेरा रोल पहुँच अनुमति अस्वीकृत भयो। कृपया यसलाई तपाईंको प्रणाली सेटिङ्समा सक्षम गर्नुहोस्।"
+#: src/lib/media/save-image.ts:51
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr ""
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
@@ -5219,43 +5683,38 @@ msgstr "पाल्तु जनावरहरू"
msgid "Photography"
msgstr "फोटोग्राफी"
-#: src/view/com/composer/labels/LabelsBtn.tsx:170
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
msgid "Pictures meant for adults."
msgstr "वयस्कका लागि बनाइएका तस्वीरहरू।"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
-msgid "Pin"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Pin feed"
msgstr ""
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
-msgid "Pin the trending videos feed to your home screen for easy access"
+#: src/components/FeedCard.tsx:329
+msgid "Pin Feed"
msgstr ""
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Pin to home"
msgstr "होममा पिन गर्नुहोस्"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "होममा पिन गर्नुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:427
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:411
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:418
msgid "Pin to your profile"
msgstr "तपाईंको प्रोफाइलमा पिन गर्नुहोस्"
-#: src/view/com/posts/PostFeedItem.tsx:365
+#: src/view/com/posts/PostFeedItem.tsx:407
msgid "Pinned"
msgstr "पिन गरियो"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:158
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:170
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
msgstr ""
@@ -5263,7 +5722,7 @@ msgstr ""
msgid "Pinned Feeds"
msgstr "पिन गरिएका फिडहरू"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:361
msgid "Pinned to your feeds"
msgstr "तपाईंका फिडहरूमा पिन गरियो"
@@ -5302,24 +5761,28 @@ msgstr "GIF चलाउनुहोस्"
msgid "Plays the video"
msgstr ""
-#: src/screens/Signup/state.ts:235
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr ""
+
+#: src/screens/Signup/state.ts:286
msgid "Please choose your handle."
msgstr "कृपया तपाईंको ह्यान्डल चयन गर्नुहोस्।"
-#: src/screens/Signup/state.ts:228
-#: src/screens/Signup/StepInfo/index.tsx:121
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:120
msgid "Please choose your password."
msgstr "कृपया तपाईंको पासवर्ड चयन गर्नुहोस्।"
-#: src/screens/Signup/state.ts:249
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:290
+msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
+msgstr ""
+
+#: src/screens/Signup/state.ts:301
msgid "Please complete the verification captcha."
msgstr "कृपया प्रमाणीकरण क्याप्चा पूरा गर्नुहोस्।"
-#: src/view/com/modals/ChangeEmail.tsx:65
-msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed."
-msgstr "कृपया आफ्नो इमेल परिवर्तन गर्नु अघि यसको पुष्टि गर्नुहोस्। यो अस्थायी आवश्यकता हो जबसम्म इमेल-अद्यावधिक उपकरणहरू थपिँदै छन्, र यो चाँडै हटाइनेछ।"
-
-#: src/screens/Signup/StepInfo/index.tsx:110
+#: src/screens/Signup/StepInfo/index.tsx:109
msgid "Please double-check that you have entered your email address correctly."
msgstr ""
@@ -5335,19 +5798,41 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "कृपया यस एप पासवर्डको लागि अद्वितीय नाम प्रविष्ट गर्नुहोस् वा हाम्रो स्वचालित रूपमा उत्पन्न गरिएको नाम प्रयोग गर्नुहोस्।"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:135
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:145
+msgid "Please enter a valid code."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:148
+msgid "Please enter a valid email address."
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "कृपया म्यूट गर्नका लागि मान्य शब्द, ट्याग, वा वाक्यांश प्रविष्ट गर्नुहोस्।"
-#: src/screens/Signup/state.ts:214
-#: src/screens/Signup/StepInfo/index.tsx:92
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:257
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:247
+msgid "Please enter the security code we sent to your previous email address."
+msgstr ""
+
+#: src/screens/Signup/state.ts:262
+#: src/screens/Signup/StepInfo/index.tsx:91
msgid "Please enter your email."
msgstr "कृपया तपाईंको इमेल प्रविष्ट गर्नुहोस्।"
-#: src/screens/Signup/StepInfo/index.tsx:85
+#: src/screens/Signup/StepInfo/index.tsx:84
msgid "Please enter your invite code."
msgstr "कृपया तपाईंको आमन्त्रण कोड प्रविष्ट गर्नुहोस्।"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:217
+msgid "Please enter your new email address."
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:99
msgid "Please enter your password"
msgstr ""
@@ -5381,24 +5866,25 @@ msgstr ""
msgid "Please sign in as @{0}"
msgstr "कृपया @{0} को रूपमा साइन इन गर्नुहोस्।"
-#: src/view/com/modals/VerifyEmail.tsx:109
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+msgid "Please verify your email"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:108
msgid "Please Verify Your Email"
msgstr "कृपया तपाईंको इमेल प्रमाणित गर्नुहोस्।"
#: src/screens/Onboarding/index.tsx:34
#: src/screens/Onboarding/state.ts:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "Politics"
msgstr "राजनीति"
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
-msgid "Popular videos in your network."
-msgstr ""
-
-#: src/view/com/composer/labels/LabelsBtn.tsx:157
+#: src/view/com/composer/labels/LabelsBtn.tsx:156
msgid "Porn"
msgstr "पोर्न"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:987
msgctxt "action"
msgid "Post"
msgstr "पोस्ट"
@@ -5408,32 +5894,32 @@ msgctxt "description"
msgid "Post"
msgstr "पोस्ट"
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:985
msgctxt "action"
msgid "Post All"
msgstr "सबै पोस्ट गर्नुहोस्"
-#: src/view/com/post-thread/PostThreadItem.tsx:210
+#: src/view/com/post-thread/PostThreadItem.tsx:224
msgid "Post by {0}"
msgstr "{0} द्वारा पोस्ट"
-#: src/Navigation.tsx:224
-#: src/Navigation.tsx:231
-#: src/Navigation.tsx:238
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:236
+#: src/Navigation.tsx:243
+#: src/Navigation.tsx:250
+#: src/Navigation.tsx:257
msgid "Post by @{0}"
msgstr "@{0} द्वारा पोस्ट"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:182
msgctxt "toast"
msgid "Post deleted"
-msgstr ""
+msgstr "पोस्ट मेटियो"
#: src/lib/api/index.ts:186
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "पोस्ट अपलोड गर्न असफल भयो। कृपया तपाईंको इन्टरनेट कनेक्शन जाँच गर्नुहोस् र पुनः प्रयास गर्नुहोस्।"
-#: src/screens/VideoFeed/index.tsx:512
+#: src/screens/VideoFeed/index.tsx:529
msgid "Post has been deleted"
msgstr ""
@@ -5455,7 +5941,7 @@ msgstr "तपाईं द्वारा पोस्ट लुकाइएक
msgid "Post interaction settings"
msgstr "पोस्ट अन्तरक्रिया सेटिङ्स"
-#: src/Navigation.tsx:166
+#: src/Navigation.tsx:170
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr ""
@@ -5476,15 +5962,16 @@ msgstr "पोस्ट फेला परेन"
#: src/state/queries/pinned-post.ts:59
msgctxt "toast"
msgid "Post pinned"
-msgstr ""
+msgstr "पोस्ट पिन गरियो"
#: src/state/queries/pinned-post.ts:61
msgctxt "toast"
msgid "Post unpinned"
-msgstr ""
+msgstr "पोस्ट अनपिन गरियो"
-#: src/screens/StarterPack/StarterPackScreen.tsx:186
-#: src/view/screens/Profile.tsx:220
+#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/view/screens/Profile.tsx:225
+#: src/view/screens/ProfileList.tsx:170
msgid "Posts"
msgstr "पोस्टहरू"
@@ -5503,7 +5990,7 @@ msgstr "संभवतः भ्रमित गर्ने लिंक।"
#: src/state/queries/notifications/settings.ts:44
msgctxt "toast"
msgid "Preference saved"
-msgstr ""
+msgstr "प्राथमिकता सुरक्षित गरियो।"
#: src/screens/Messages/components/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -5524,7 +6011,7 @@ msgstr "यस खाता का अनुयायीहरू जसला
msgid "Previous image"
msgstr "अघिल्लो चित्र।"
-#: src/screens/Settings/LanguageSettings.tsx:166
+#: src/screens/Settings/LanguageSettings.tsx:120
msgid "Primary Language"
msgstr "प्राथमिक भाषा।"
@@ -5537,31 +6024,31 @@ msgstr "तपाईंको पछ्याउनेहरूलाई प्
msgid "Priority notifications"
msgstr "प्राथमिकता सूचनाहरू।"
-#: src/view/shell/desktop/RightNav.tsx:105
-#: src/view/shell/desktop/RightNav.tsx:106
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/desktop/RightNav.tsx:111
msgid "Privacy"
msgstr "गोपनीयता।"
-#: src/screens/Settings/Settings.tsx:161
-#: src/screens/Settings/Settings.tsx:164
+#: src/screens/Settings/Settings.tsx:171
+#: src/screens/Settings/Settings.tsx:174
msgid "Privacy and security"
msgstr "गोपनीयता र सुरक्षा"
-#: src/Navigation.tsx:367
+#: src/Navigation.tsx:379
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "गोपनीयता र सुरक्षा"
-#: src/Navigation.tsx:291
-#: src/screens/Settings/AboutSettings.tsx:51
-#: src/screens/Settings/AboutSettings.tsx:54
+#: src/Navigation.tsx:303
+#: src/screens/Settings/AboutSettings.tsx:92
+#: src/screens/Settings/AboutSettings.tsx:95
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:634
-#: src/view/shell/Drawer.tsx:635
+#: src/view/shell/Drawer.tsx:653
+#: src/view/shell/Drawer.tsx:654
msgid "Privacy Policy"
msgstr "गोपनीयता नीति"
-#: src/view/com/composer/Composer.tsx:1658
+#: src/view/com/composer/Composer.tsx:1675
msgid "Processing video..."
msgstr "भिडियो प्रशोधन हुँदैछ।"
@@ -5570,23 +6057,23 @@ msgstr "भिडियो प्रशोधन हुँदैछ।"
msgid "Processing..."
msgstr "प्रशोधन हुँदैछ।"
-#: src/view/screens/DebugMod.tsx:920
-#: src/view/screens/Profile.tsx:359
+#: src/view/screens/DebugMod.tsx:927
+#: src/view/screens/Profile.tsx:364
msgid "profile"
msgstr "प्रोफाइल"
-#: src/view/shell/bottom-bar/BottomBar.tsx:286
-#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:526
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/desktop/LeftNav.tsx:709
+#: src/view/shell/Drawer.tsx:76
+#: src/view/shell/Drawer.tsx:545
msgid "Profile"
msgstr "प्रोफाइल"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:191
-#: src/view/com/modals/EditProfile.tsx:124
+#: src/screens/Profile/Header/EditProfileDialog.tsx:196
+#: src/view/com/modals/EditProfile.tsx:128
msgctxt "toast"
msgid "Profile updated"
-msgstr ""
+msgstr "प्रोफाइल अद्यावधिक गरियो।"
#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Public"
@@ -5600,6 +6087,26 @@ msgstr ""
msgid "Public, sharable lists which can be used to drive feeds."
msgstr ""
+#. Accessibility label for button to publish a single post
+#: src/view/com/composer/Composer.tsx:967
+msgid "Publish post"
+msgstr ""
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:960
+msgid "Publish posts"
+msgstr ""
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:945
+msgid "Publish replies"
+msgstr ""
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:952
+msgid "Publish reply"
+msgstr ""
+
#: src/components/StarterPack/QrCodeDialog.tsx:134
msgid "QR code copied to your clipboard!"
msgstr "QR कोड तपाईंको क्लिपबोर्डमा प्रतिलिपि गरियो!"
@@ -5612,25 +6119,25 @@ msgstr "QR कोड डाउनलोड गरियो!"
msgid "QR code saved to your camera roll!"
msgstr "QR कोड तपाईंको क्यामेरा रोलमा सुरक्षित गरियो!"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:178
-#: src/view/com/util/post-ctrls/RepostButton.tsx:201
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+#: src/components/PostControls/RepostButton.tsx:163
+#: src/components/PostControls/RepostButton.tsx:186
+#: src/components/PostControls/RepostButton.web.tsx:78
+#: src/components/PostControls/RepostButton.web.tsx:85
msgid "Quote post"
msgstr "उद्धरण पोस्ट।"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:314
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
msgid "Quote post was re-attached"
msgstr "उद्धरण पोस्ट पुन: संलग्न गरियो।"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:313
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:306
msgid "Quote post was successfully detached"
msgstr "उद्धरण पोस्ट सफलतापूर्वक अलग गरियो।"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:177
-#: src/view/com/util/post-ctrls/RepostButton.tsx:199
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+#: src/components/PostControls/RepostButton.tsx:162
+#: src/components/PostControls/RepostButton.tsx:184
+#: src/components/PostControls/RepostButton.web.tsx:77
+#: src/components/PostControls/RepostButton.web.tsx:84
msgid "Quote posts disabled"
msgstr "उद्धरण पोस्टहरू अक्षम गरिएको छ।"
@@ -5642,39 +6149,48 @@ msgstr "उद्धरण सेटिङ्स"
msgid "Quotes"
msgstr "उद्धरण।"
-#: src/view/com/post-thread/PostThreadItem.tsx:244
+#: src/view/com/post-thread/PostThreadItem.tsx:258
msgid "Quotes of this post"
msgstr "यस पोस्टका उद्धरण।"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
-#: src/view/com/post-thread/PostThread.tsx:696
-#: src/view/com/post-thread/PostThread.tsx:701
+#: src/view/com/post-thread/PostThread.tsx:695
+#: src/view/com/post-thread/PostThread.tsx:700
msgid "Random (aka \"Poster's Roulette\")"
msgstr "अनियमित (जसलाई \"पोस्टरको रूले\" भनिन्छ)।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:600
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "दर सीमा नाघियो – तपाईंले छोटो समयमा धेरै पटक आफ्नो हैंडल परिवर्तन गर्न प्रयास गर्नुभयो। कृपया पुन: प्रयास गर्नु अघि एक मिनेट पर्खनुहोस्।"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:612
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:622
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580
msgid "Re-attach quote"
msgstr "उद्धरण पुनः जोड्नुहोस्"
+#: src/components/dms/EmojiReactionPicker.tsx:85
+msgid "React with {emoji}"
+msgstr ""
+
#: src/screens/Deactivated.tsx:141
msgid "Reactivate your account"
msgstr "तपाईंको खाता पुन: सक्रिय गर्नुहोस्।"
-#: src/screens/VideoFeed/index.tsx:942
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:942
+#: src/screens/VideoFeed/index.tsx:963
msgid "Read more"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:171
+#: src/view/com/auth/SplashScreen.web.tsx:173
msgid "Read the Bluesky blog"
msgstr "ब्लूस्काई ब्लग पढ्नुहोस्।"
@@ -5697,11 +6213,11 @@ msgstr ""
msgid "Reason:"
msgstr "कारण:"
-#: src/view/screens/Search/Search.tsx:1036
+#: src/screens/Search/components/SearchHistory.tsx:49
msgid "Recent Searches"
msgstr "हालको खोजीहरू"
-#: src/screens/Search/components/ExploreRecommendations.tsx:52
+#: src/screens/Search/modules/ExploreRecommendations.tsx:54
msgid "Recommended"
msgstr ""
@@ -5710,26 +6226,26 @@ msgid "Reconnect"
msgstr "पुनः जडान गर्नुहोस्"
#. Reject a chat request, this opens a menu with options
-#: src/screens/Messages/components/RequestButtons.tsx:114
+#: src/screens/Messages/components/RequestButtons.tsx:124
msgid "Reject"
msgstr ""
-#: src/screens/Messages/components/RequestButtons.tsx:102
+#: src/screens/Messages/components/RequestButtons.tsx:112
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:246
-#: src/screens/Messages/Inbox.tsx:186
+#: src/screens/Messages/ChatList.tsx:248
+#: src/screens/Messages/Inbox.tsx:191
msgid "Reload conversations"
msgstr "वार्तालाप पुनः लोड गर्नुहोस्"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:438
-#: src/components/FeedCard.tsx:315
+#: src/components/FeedCard.tsx:343
#: src/components/StarterPack/Wizard/WizardListCard.tsx:102
#: src/components/StarterPack/Wizard/WizardListCard.tsx:109
-#: src/screens/Settings/Settings.tsx:468
+#: src/screens/Settings/Settings.tsx:543
#: src/view/com/feeds/FeedSourceCard.tsx:322
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
@@ -5739,12 +6255,12 @@ msgstr "हटाउनुहोस्"
msgid "Remove {displayName} from starter pack"
msgstr "{displayName} लाई स्टार्टर प्याकबाट हटाउनुहोस्"
-#: src/view/screens/Search/Search.tsx:1110
+#: src/screens/Search/components/SearchHistory.tsx:94
msgid "Remove {historyItem}"
msgstr ""
-#: src/screens/Settings/Settings.tsx:447
-#: src/screens/Settings/Settings.tsx:450
+#: src/screens/Settings/Settings.tsx:522
+#: src/screens/Settings/Settings.tsx:525
msgid "Remove account"
msgstr "खाता हटाउनुहोस्"
@@ -5752,13 +6268,13 @@ msgstr "खाता हटाउनुहोस्"
msgid "Remove attachment"
msgstr "संलग्नक हटाउनुहोस्"
-#: src/view/com/util/UserAvatar.tsx:397
-#: src/view/com/util/UserAvatar.tsx:400
+#: src/view/com/util/UserAvatar.tsx:485
+#: src/view/com/util/UserAvatar.tsx:488
msgid "Remove Avatar"
msgstr "अवतार हटाउनुहोस्"
-#: src/view/com/util/UserBanner.tsx:152
-#: src/view/com/util/UserBanner.tsx:155
+#: src/view/com/util/UserBanner.tsx:186
+#: src/view/com/util/UserBanner.tsx:189
msgid "Remove Banner"
msgstr "ब्यानर हटाउनुहोस्"
@@ -5776,24 +6292,25 @@ msgstr "फिड हटाउनुहोस्"
msgid "Remove feed?"
msgstr "फिड हटाउने?"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
-#: src/view/screens/ProfileList.tsx:521
+#: src/view/screens/ProfileList.tsx:528
#: src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "मेरो फिडबाट हटाउनुहोस्"
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:535
msgid "Remove from quick access?"
msgstr "छिटो पहुँचबाट हटाउने?"
#: src/screens/List/ListHiddenScreen.tsx:170
+#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Remove from saved feeds"
msgstr "सुरक्षित फिडबाट हटाउनुहोस्"
-#: src/components/FeedCard.tsx:310
+#: src/components/FeedCard.tsx:338
#: src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from your feeds?"
msgstr ""
@@ -5802,11 +6319,16 @@ msgstr ""
msgid "Remove image"
msgstr "तस्बिर हटाउनुहोस्"
+#: src/components/live/EditLiveDialog.tsx:240
+#: src/components/live/EditLiveDialog.tsx:247
+msgid "Remove live status"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "तपाईंको सूचीबाट मौन शब्द हटाउनुहोस्"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/screens/Search/components/SearchHistory.tsx:167
msgid "Remove profile"
msgstr "प्रोफाइल हटाउनुहोस्"
@@ -5814,12 +6336,12 @@ msgstr "प्रोफाइल हटाउनुहोस्"
msgid "Remove quote"
msgstr "उद्धरण हटाउनुहोस्"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:155
-#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.tsx:140
+#: src/components/PostControls/RepostButton.tsx:150
msgid "Remove repost"
msgstr "पुनःपोस्ट हटाउनुहोस्"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+#: src/view/com/composer/videos/SubtitleDialog.tsx:261
msgid "Remove subtitle file"
msgstr "उपशीर्षक फाइल हटाउनुहोस्"
@@ -5827,6 +6349,21 @@ msgstr "उपशीर्षक फाइल हटाउनुहोस्"
msgid "Remove this feed from your saved feeds"
msgstr "यस फिडलाई तपाईँको सुरक्षित फिडहरूबाट हटाउनुहोस्"
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157
+msgid "Remove user from list"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+#: src/components/verification/VerificationsDialog.tsx:247
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
+msgid "Remove verification"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:44
+msgid "Remove your verification for this account?"
+msgstr ""
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:110
msgid "Removed by author"
msgstr "लेखकद्वारा हटाइयो"
@@ -5835,7 +6372,7 @@ msgstr "लेखकद्वारा हटाइयो"
msgid "Removed by you"
msgstr "तपाईँद्वारा हटाइयो"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:200
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117
#: src/view/com/modals/UserAddRemoveLists.tsx:170
msgid "Removed from list"
msgstr "सूचीबाट हटाइयो"
@@ -5845,18 +6382,17 @@ msgid "Removed from my feeds"
msgstr "मेरो फिडहरूबाट हटाइयो"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:174
msgid "Removed from saved feeds"
msgstr "सुरक्षित फिडहरूबाट हटाइयो"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
#: src/view/com/posts/FeedShutdownMsg.tsx:44
-#: src/view/screens/ProfileList.tsx:385
+#: src/view/screens/ProfileList.tsx:392
msgid "Removed from your feeds"
msgstr "तपाईँको फिडहरूबाट हटाइयो"
-#: src/view/screens/Search/Search.tsx:1086
-msgid "Removes profile from search history"
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
msgstr ""
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:291
@@ -5868,7 +6404,7 @@ msgstr "उद्धृत पोस्ट हटाउनुहोस्"
msgid "Replace with Discover"
msgstr "डिस्कभरसँग प्रतिस्थापन गर्नुहोस्"
-#: src/view/screens/Profile.tsx:221
+#: src/view/screens/Profile.tsx:226
msgid "Replies"
msgstr "उत्तरहरू"
@@ -5880,12 +6416,13 @@ msgstr "उत्तरहरू निष्क्रिय गरियो"
msgid "Replies to this post are disabled."
msgstr "यो पोस्टका उत्तरहरू निष्क्रिय गरिएका छन्।"
-#: src/view/com/composer/Composer.tsx:955
+#: src/view/com/composer/Composer.tsx:983
msgctxt "action"
msgid "Reply"
msgstr "उत्तर दिनुहोस्"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:264
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#: src/components/PostControls/index.tsx:200
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -5907,86 +6444,86 @@ msgstr "उत्तर सेटिङ्स"
msgid "Reply settings are chosen by the author of the thread"
msgstr "उत्तर सेटिङ्स थ्रेडका लेखकद्वारा चयन गरिन्छ"
-#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:651
msgid "Reply sorting"
msgstr ""
-#: src/view/com/post/Post.tsx:204
-#: src/view/com/posts/PostFeedItem.tsx:559
+#: src/view/com/post/Post.tsx:205
+#: src/view/com/posts/PostFeedItem.tsx:605
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "<0><1/>0> लाई उत्तर दिनुहोस्"
-#: src/view/com/posts/PostFeedItem.tsx:550
+#: src/view/com/posts/PostFeedItem.tsx:596
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "अवरुद्ध पोस्टलाई उत्तर दिनुहोस्"
-#: src/view/com/posts/PostFeedItem.tsx:552
+#: src/view/com/posts/PostFeedItem.tsx:598
msgctxt "description"
msgid "Reply to a post"
msgstr "पोस्टलाई उत्तर दिनुहोस्"
-#: src/view/com/post/Post.tsx:202
-#: src/view/com/posts/PostFeedItem.tsx:556
+#: src/view/com/post/Post.tsx:203
+#: src/view/com/posts/PostFeedItem.tsx:602
msgctxt "description"
msgid "Reply to you"
msgstr "तपाईँलाई उत्तर दिनुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:346
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:338
msgctxt "toast"
msgid "Reply visibility updated"
-msgstr ""
+msgstr "उत्तर दृश्यता अद्यावधिक गरियो"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:337
msgid "Reply was successfully hidden"
msgstr "उत्तर सफलतापूर्वक लुकाइएको"
-#: src/components/dms/MessageMenu.tsx:134
+#: src/components/dms/MessageContextMenu.tsx:172
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
msgid "Report"
msgstr "रिपोर्ट गर्नुहोस्"
-#: src/view/com/profile/ProfileMenu.tsx:329
-#: src/view/com/profile/ProfileMenu.tsx:332
+#: src/view/com/profile/ProfileMenu.tsx:403
+#: src/view/com/profile/ProfileMenu.tsx:406
msgid "Report account"
msgstr "खाता रिपोर्ट गर्नुहोस्"
#: src/components/dms/ConvoMenu.tsx:255
#: src/components/dms/ConvoMenu.tsx:258
#: src/components/dms/ReportConversationPrompt.tsx:17
-#: src/screens/Messages/components/RequestButtons.tsx:145
-#: src/screens/Messages/components/RequestButtons.tsx:148
+#: src/screens/Messages/components/RequestButtons.tsx:155
+#: src/screens/Messages/components/RequestButtons.tsx:158
msgid "Report conversation"
msgstr "वार्ता रिपोर्ट गर्नुहोस्"
#: src/components/moderation/ReportDialog/index.tsx:71
-#: src/components/moderation/ReportDialog/index.tsx:190
+#: src/components/moderation/ReportDialog/index.tsx:198
#: src/components/ReportDialog/index.tsx:44
msgid "Report dialog"
msgstr "रिपोर्ट संवाद"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:544
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:552
msgid "Report feed"
msgstr "फिड रिपोर्ट गर्नुहोस्"
-#: src/view/screens/ProfileList.tsx:563
-msgid "Report List"
-msgstr "सूची रिपोर्ट गर्नुहोस्"
+#: src/view/screens/ProfileList.tsx:570
+msgid "Report list"
+msgstr ""
-#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessageContextMenu.tsx:170
msgid "Report message"
msgstr "सन्देश रिपोर्ट गर्नुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:678
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:680
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
msgid "Report post"
msgstr "पोस्ट रिपोर्ट गर्नुहोस्"
-#: src/screens/StarterPack/StarterPackScreen.tsx:611
-#: src/screens/StarterPack/StarterPackScreen.tsx:614
+#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:633
msgid "Report starter pack"
msgstr "स्टार्टर प्याक रिपोर्ट गर्नुहोस्"
@@ -6030,25 +6567,26 @@ msgstr "यस स्टार्टर प्याकलाई रिपोर
msgid "Report this user"
msgstr "यस प्रयोगकर्तालाई रिपोर्ट गर्नुहोस्"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:156
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+#: src/components/PostControls/RepostButton.tsx:141
+#: src/components/PostControls/RepostButton.tsx:152
msgctxt "action"
msgid "Repost"
msgstr "पुनःपोस्ट गर्नुहोस्"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Repost"
msgstr "पुनःपोस्ट गर्नुहोस्"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#: src/components/PostControls/RepostButton.tsx:65
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:553
-#: src/view/com/util/post-ctrls/RepostButton.tsx:148
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+#: src/components/PostControls/RepostButton.tsx:133
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:561
msgid "Repost or quote post"
msgstr "पुनः पोस्ट गर्नुहोस् वा पोस्टलाई उद्धृत गर्नुहोस्"
@@ -6056,27 +6594,27 @@ msgstr "पुनः पोस्ट गर्नुहोस् वा पो
msgid "Reposted By"
msgstr "पुनःपोस्ट गरियो"
-#: src/view/com/posts/PostFeedItem.tsx:305
+#: src/view/com/posts/PostFeedItem.tsx:347
msgid "Reposted by {0}"
msgstr "{0} द्वारा पुनःपोस्ट गरियो"
-#: src/view/com/posts/PostFeedItem.tsx:324
+#: src/view/com/posts/PostFeedItem.tsx:366
msgid "Reposted by <0><1/>0>"
msgstr "<0><1/>0> द्वारा पुनःपोस्ट गरियो"
-#: src/view/com/posts/PostFeedItem.tsx:303
-#: src/view/com/posts/PostFeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:345
+#: src/view/com/posts/PostFeedItem.tsx:364
msgid "Reposted by you"
msgstr "तपाईँद्वारा पुनःपोस्ट गरियो"
-#: src/view/com/post-thread/PostThreadItem.tsx:223
+#: src/view/com/post-thread/PostThreadItem.tsx:237
msgid "Reposts of this post"
msgstr "यस पोस्टका पुनःपोस्टहरू"
-#: src/view/com/modals/ChangeEmail.tsx:176
-#: src/view/com/modals/ChangeEmail.tsx:178
-msgid "Request Change"
-msgstr "परिवर्तनको अनुरोध गर्नुहोस्"
+#: src/components/dialogs/ChangeEmailDialog.tsx:175
+#: src/components/dialogs/ChangeEmailDialog.tsx:182
+msgid "Request change"
+msgstr ""
#: src/view/com/modals/ChangePassword.tsx:253
#: src/view/com/modals/ChangePassword.tsx:255
@@ -6088,11 +6626,11 @@ msgstr "कोडको अनुरोध गर्नुहोस्"
msgid "Require alt text before posting"
msgstr "पोस्ट गर्नु अघि वैकल्पिक पाठ आवश्यक छ"
-#: src/screens/Settings/components/Email2FAToggle.tsx:54
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96
msgid "Require an email code to sign in to your account."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:174
+#: src/screens/Signup/StepInfo/index.tsx:177
msgid "Required for this provider"
msgstr "यस प्रदायकका लागि आवश्यक छ"
@@ -6100,13 +6638,19 @@ msgstr "यस प्रदायकका लागि आवश्यक छ"
msgid "Required in your region"
msgstr "तपाईँको क्षेत्रमा आवश्यक छ"
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40
+msgid "Resend"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:217
+#: src/components/dialogs/ChangeEmailDialog.tsx:227
+#: src/components/dialogs/VerifyEmailDialog.tsx:330
+#: src/components/dialogs/VerifyEmailDialog.tsx:340
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
msgid "Resend email"
msgstr "ईमेल पुनः पठाउनुहोस्"
-#: src/components/dialogs/VerifyEmailDialog.tsx:267
-#: src/components/dialogs/VerifyEmailDialog.tsx:277
#: src/components/intents/VerifyEmailIntentDialog.tsx:130
msgid "Resend Email"
msgstr "ईमेल पुनः पठाउनुहोस्"
@@ -6123,8 +6667,8 @@ msgstr "कोड रिसेट गर्नुहोस्"
msgid "Reset Code"
msgstr "रिसेट कोड"
-#: src/screens/Settings/Settings.tsx:344
-#: src/screens/Settings/Settings.tsx:346
+#: src/screens/Settings/Settings.tsx:409
+#: src/screens/Settings/Settings.tsx:411
msgid "Reset onboarding state"
msgstr "प्रारम्भिक अवस्थालाई रिसेट गर्नुहोस्"
@@ -6141,16 +6685,16 @@ msgstr ""
msgid "Retries the last action, which errored out"
msgstr "अन्तिम कार्य पुन: प्रयास गर्नुहोस्, जसमा त्रुटि भएको थियो"
-#: src/components/dms/MessageItem.tsx:245
+#: src/components/dms/MessageItem.tsx:321
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:110
-#: src/components/moderation/ReportDialog/index.tsx:221
-#: src/components/StarterPack/ProfileStarterPacks.tsx:334
+#: src/components/moderation/ReportDialog/index.tsx:229
+#: src/components/StarterPack/ProfileStarterPacks.tsx:346
#: src/screens/Login/LoginForm.tsx:323
#: src/screens/Login/LoginForm.tsx:330
-#: src/screens/Messages/ChatList.tsx:252
+#: src/screens/Messages/ChatList.tsx:254
#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Messages/Inbox.tsx:192
+#: src/screens/Messages/Inbox.tsx:197
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
#: src/screens/Signup/BackNextButtons.tsx:53
@@ -6161,13 +6705,13 @@ msgstr "अन्तिम कार्य पुन: प्रयास गर
msgid "Retry"
msgstr "पुन: प्रयास गर्नुहोस्"
-#: src/components/moderation/ReportDialog/index.tsx:218
+#: src/components/moderation/ReportDialog/index.tsx:226
msgid "Retry loading report options"
msgstr ""
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:748
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Return to previous page"
msgstr "अघिल्लो पृष्ठमा फर्कनुहोस्"
@@ -6175,11 +6719,11 @@ msgstr "अघिल्लो पृष्ठमा फर्कनुहोस
msgid "Returns to home page"
msgstr "गृहपृष्ठमा फर्कनुहोस्"
-#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:559
+#: src/screens/VideoFeed/index.tsx:1139
#: src/view/screens/NotFound.tsx:60
-#: src/view/screens/ProfileList.tsx:1032
+#: src/view/screens/ProfileList.tsx:1039
msgid "Returns to previous page"
msgstr "अघिल्लो पृष्ठमा फर्कनुहोस्"
@@ -6190,24 +6734,26 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:121
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:479
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:485
-#: src/components/StarterPack/QrCodeDialog.tsx:191
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/modals/EditProfile.tsx:219
+#: src/components/live/EditLiveDialog.tsx:216
+#: src/components/live/EditLiveDialog.tsx:223
+#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/screens/Profile/Header/EditProfileDialog.tsx:243
+#: src/screens/Profile/Header/EditProfileDialog.tsx:257
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:262
+#: src/view/com/composer/GifAltText.tsx:193
+#: src/view/com/composer/GifAltText.tsx:202
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:62
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:75
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/modals/CreateOrEditList.tsx:315
+#: src/view/com/modals/EditProfile.tsx:244
#: src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "सुरक्षित गर्नुहोस्"
-#: src/view/com/lightbox/ImageViewing/index.tsx:622
-#: src/view/com/modals/CreateOrEditList.tsx:325
+#: src/view/com/lightbox/ImageViewing/index.tsx:610
+#: src/view/com/modals/CreateOrEditList.tsx:323
msgctxt "action"
msgid "Save"
msgstr "सुरक्षित गर्नुहोस्"
@@ -6221,12 +6767,12 @@ msgstr "जन्मदिन सुरक्षित गर्नुहोस
msgid "Save changes"
msgstr "परिवर्तनहरू सुरक्षित गर्नुहोस्"
-#: src/view/com/modals/EditProfile.tsx:227
+#: src/view/com/modals/EditProfile.tsx:252
msgid "Save Changes"
msgstr "परिवर्तनहरू सुरक्षित गर्नुहोस्"
-#: src/components/StarterPack/ShareDialog.tsx:150
-#: src/components/StarterPack/ShareDialog.tsx:157
+#: src/components/StarterPack/ShareDialog.tsx:131
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Save image"
msgstr "चित्र सुरक्षित गर्नुहोस्"
@@ -6234,16 +6780,16 @@ msgstr "चित्र सुरक्षित गर्नुहोस्"
msgid "Save image crop"
msgstr "चित्र काट्ने सेटिङ सुरक्षित गर्नुहोस्"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "Save new handle"
msgstr "नयाँ ह्यान्डल सुरक्षित गर्नुहोस्"
-#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/components/StarterPack/QrCodeDialog.tsx:186
msgid "Save QR code"
msgstr "QR कोड सुरक्षित गर्नुहोस्"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:315
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "मेरो फिडहरूमा सुरक्षित गर्नुहोस्"
@@ -6251,16 +6797,12 @@ msgstr "मेरो फिडहरूमा सुरक्षित गर्
msgid "Saved Feeds"
msgstr "सुरक्षित फिडहरू"
-#: src/view/com/lightbox/Lightbox.tsx:44
-msgid "Saved to your camera roll"
-msgstr "तपाईंको क्यामेरा रोलमा सुरक्षित गरियो"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
-#: src/view/screens/ProfileList.tsx:365
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
+#: src/view/screens/ProfileList.tsx:372
msgid "Saved to your feeds"
msgstr "तपाईंको फिडहरूमा सुरक्षित गरियो"
-#: src/view/com/modals/EditProfile.tsx:220
+#: src/view/com/modals/EditProfile.tsx:245
msgid "Saves any changes to your profile"
msgstr "तपाईंको प्रोफाइलका कुनै पनि परिवर्तन सुरक्षित गर्दछ"
@@ -6270,8 +6812,8 @@ msgstr "चित्र काट्ने सेटिङ सुरक्षि
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/NotificationFeedItem.tsx:544
-#: src/view/com/notifications/NotificationFeedItem.tsx:569
+#: src/view/com/notifications/NotificationFeedItem.tsx:694
+#: src/view/com/notifications/NotificationFeedItem.tsx:719
msgid "Say hello!"
msgstr "नमस्ते भन्नुहोस्!"
@@ -6280,45 +6822,42 @@ msgstr "नमस्ते भन्नुहोस्!"
msgid "Science"
msgstr "विज्ञान"
-#: src/view/screens/ProfileList.tsx:989
+#: src/view/screens/ProfileList.tsx:996
msgid "Scroll to top"
msgstr "माथि स्क्रोल गर्नुहोस्"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:491
+#: src/components/dialogs/SearchablePeopleList.tsx:513
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:632
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:570
-#: src/view/screens/Search/Search.tsx:848
-#: src/view/shell/bottom-bar/BottomBar.tsx:182
-#: src/view/shell/desktop/LeftNav.tsx:613
-#: src/view/shell/Drawer.tsx:370
+#: src/screens/Search/Shell.tsx:307
+#: src/screens/Search/Shell.tsx:464
+#: src/view/shell/bottom-bar/BottomBar.tsx:188
msgid "Search"
msgstr "खोज्नुहोस्"
-#: src/Navigation.tsx:217
-#: src/screens/Profile/ProfileSearch.tsx:34
+#: src/Navigation.tsx:229
+#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:745
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search by name or interest"
msgstr ""
-#: src/view/screens/Feeds.tsx:441
+#: src/view/screens/Feeds.tsx:444
msgid "Search feeds"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:575
+#: src/components/ProgressGuide/FollowDialog.tsx:524
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:135
msgid "Search for \"{interestsDisplayName}\"{activeText}"
msgstr ""
-#: src/view/shell/desktop/Search.tsx:201
+#: src/view/shell/desktop/Search.tsx:131
msgid "Search for \"{query}\""
msgstr "\"{query}\" को लागि खोज्नुहोस्"
-#: src/view/screens/Search/Search.tsx:982
+#: src/screens/Search/components/AutocompleteResults.tsx:45
msgid "Search for \"{searchText}\""
msgstr "“{searchText}” को लागि खोज्नुहोस्"
@@ -6326,29 +6865,33 @@ msgstr "“{searchText}” को लागि खोज्नुहोस्"
msgid "Search for feeds that you want to suggest to others."
msgstr "अरूलाई सिफारिस गर्न चाहिने फिडहरूको लागि खोज्नुहोस्।"
-#: src/view/screens/Search/Search.tsx:875
-msgid "Search for posts, users, or feeds"
+#: src/screens/Search/Explore.tsx:360
+msgid "Search for more accounts"
msgstr ""
-#: src/view/com/modals/ListAddRemoveUsers.tsx:71
-msgid "Search for users"
-msgstr "प्रयोगकर्ताहरूको लागि खोज्नुहोस्।"
+#: src/screens/Search/Explore.tsx:437
+msgid "Search for more feeds"
+msgstr ""
+
+#: src/screens/Search/Shell.tsx:334
+msgid "Search for posts, users, or feeds"
+msgstr ""
#: src/components/dialogs/GifSelect.tsx:177
msgid "Search GIFs"
msgstr "GIF हरूको लागि खोज्नुहोस्।"
-#: src/screens/Profile/ProfileSearch.tsx:33
+#: src/screens/Profile/ProfileSearch.tsx:36
msgid "Search my posts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:231
-#: src/view/com/profile/ProfileMenu.tsx:234
+#: src/view/com/profile/ProfileMenu.tsx:263
+#: src/view/com/profile/ProfileMenu.tsx:266
msgid "Search posts"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:511
-#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/dialogs/SearchablePeopleList.tsx:533
+#: src/components/ProgressGuide/FollowDialog.tsx:702
msgid "Search profiles"
msgstr "प्रोफाइलहरूको लागि खोज्नुहोस्।"
@@ -6356,16 +6899,20 @@ msgstr "प्रोफाइलहरूको लागि खोज्नु
msgid "Search Tenor"
msgstr "टेनरमा खोज्नुहोस्।"
-#: src/screens/Profile/ProfileSearch.tsx:35
+#: src/screens/Profile/ProfileSearch.tsx:38
msgid "Search..."
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:512
-#: src/components/ProgressGuide/FollowDialog.tsx:765
+#: src/components/dialogs/SearchablePeopleList.tsx:534
+#: src/components/ProgressGuide/FollowDialog.tsx:703
msgid "Searches for profiles"
msgstr ""
-#: src/view/com/modals/ChangeEmail.tsx:105
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:243
+msgid "Security step required"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:57
msgid "Security Step Required"
msgstr "सुरक्षा चरण आवश्यक।"
@@ -6385,7 +6932,7 @@ msgstr ""
msgid "See #{tag} posts by user"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:176
+#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "See jobs at Bluesky"
msgstr "Bluesky मा जागिरहरू हेर्नुहोस्।"
@@ -6405,6 +6952,10 @@ msgstr "रंग चयन गर्नुहोस्।"
msgid "Select account"
msgstr "खाता चयन गर्नुहोस्।"
+#: src/components/AppLanguageDropdown.tsx:60
+msgid "Select an app language"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
msgid "Select an avatar"
msgstr "एभाटार चयन गर्नुहोस्।"
@@ -6413,10 +6964,22 @@ msgstr "एभाटार चयन गर्नुहोस्।"
msgid "Select an emoji"
msgstr "इमोजी चयन गर्नुहोस्।"
-#: src/screens/Settings/LanguageSettings.tsx:261
+#: src/components/Select/index.tsx:204
+msgid "Select an option"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+msgid "Select app language"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:164
msgid "Select content languages"
msgstr "सामग्री भाषाहरू चयन गर्नुहोस्।"
+#: src/components/live/GoLiveDialog.tsx:179
+msgid "Select duration"
+msgstr ""
+
#: src/screens/Login/index.tsx:144
msgid "Select from an existing account"
msgstr "अस्तित्वमा रहेको खाताबाट चयन गर्नुहोस्।"
@@ -6433,15 +6996,15 @@ msgstr "GIF \"{0}\" चयन गर्नुहोस्।"
msgid "Select how long to mute this word for."
msgstr "यो शब्द कति समयसम्म म्यूट गर्ने चयन गर्नुहोस्।"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:245
+#: src/view/com/composer/videos/SubtitleDialog.tsx:248
msgid "Select language..."
msgstr "भाषा चयन गर्नुहोस्..."
-#: src/screens/Settings/LanguageSettings.tsx:275
+#: src/screens/Settings/LanguageSettings.tsx:178
msgid "Select languages"
msgstr "भाषाहरू चयन गर्नुहोस्।"
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:307
msgid "Select moderation service"
msgstr ""
@@ -6449,6 +7012,10 @@ msgstr ""
msgid "Select moderator"
msgstr "मोडरेटर चयन गर्नुहोस्।"
+#: src/screens/Settings/LanguageSettings.tsx:131
+msgid "Select primary language"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:59
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
@@ -6462,7 +7029,7 @@ msgstr "{emojiName} इमोजीलाई आफ्नो अवतारक
msgid "Select the moderation service(s) to report to"
msgstr "प्रतिवेदन गर्नका लागि मध्यस्थता सेवा(हरू) चयन गर्नुहोस्"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:102
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:74
msgid "Select video"
msgstr "भिडियो चयन गर्नुहोस्"
@@ -6470,23 +7037,24 @@ msgstr "भिडियो चयन गर्नुहोस्"
msgid "Select what content this mute word should apply to."
msgstr "यो मौन शब्दलाई कुन सामग्रीमा लागू गर्नु पर्ने हो चयन गर्नुहोस्।"
-#: src/screens/Settings/LanguageSettings.tsx:84
+#: src/screens/Settings/LanguageSettings.tsx:91
msgid "Select which language to use for the app's user interface."
msgstr ""
-#: src/screens/Settings/LanguageSettings.tsx:254
+#: src/screens/Settings/LanguageSettings.tsx:157
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "तपाईंको सदस्यता प्राप्त फिडहरूले समेट्ने भाषाहरू चयन गर्नुहोस्। केही पनि चयन नगरिएमा, सबै भाषाहरू देखाइनेछ।"
-#: src/screens/Signup/StepInfo/index.tsx:267
+#: src/screens/Signup/StepInfo/index.tsx:270
msgid "Select your date of birth"
msgstr "आफ्नो जन्म मिति चयन गर्नुहोस्"
#: src/screens/Onboarding/StepInterests/index.tsx:192
+#: src/screens/Settings/SettingsInterests.tsx:162
msgid "Select your interests from the options below"
msgstr "तलका विकल्पहरूबाट आफ्नो रुचिहरू चयन गर्नुहोस्"
-#: src/screens/Settings/LanguageSettings.tsx:170
+#: src/screens/Settings/LanguageSettings.tsx:124
msgid "Select your preferred language for translations in your feed."
msgstr "आफ्नो फिडमा अनुवादका लागि मनपर्ने भाषा चयन गर्नुहोस्।"
@@ -6498,19 +7066,17 @@ msgstr ""
msgid "Send a neat website!"
msgstr "सुन्दर वेबसाइट पठाउनुहोस्!"
-#: src/components/dialogs/VerifyEmailDialog.tsx:232
-msgid "Send Confirmation"
-msgstr "पुष्टिकरण पठाउनुहोस्"
+#: src/components/dialogs/VerifyEmailDialog.tsx:295
+msgid "Send confirmation"
+msgstr ""
-#: src/components/dialogs/VerifyEmailDialog.tsx:225
+#: src/components/dialogs/VerifyEmailDialog.tsx:288
msgid "Send confirmation email"
msgstr "पुष्टिकरण इमेल पठाउनुहोस्"
-#: src/view/com/modals/VerifyEmail.tsx:210
-#: src/view/com/modals/VerifyEmail.tsx:212
-msgid "Send Confirmation Email"
-msgstr "पुष्टिकरण इमेल पठाउनुहोस्"
-
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:300
#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "इमेल पठाउनुहोस्"
@@ -6520,15 +7086,19 @@ msgctxt "action"
msgid "Send Email"
msgstr "इमेल पठाउनुहोस्"
-#: src/view/shell/Drawer.tsx:317
+#: src/view/shell/Drawer.tsx:336
msgid "Send feedback"
msgstr "प्रतिक्रिया पठाउनुहोस्"
-#: src/screens/Messages/components/MessageInput.tsx:191
+#: src/screens/Messages/components/MessageInput.tsx:192
#: src/screens/Messages/components/MessageInput.web.tsx:235
msgid "Send message"
msgstr "सन्देश पठाउनुहोस्"
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:111
+msgid "Send post to {name}"
+msgstr ""
+
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
msgid "Send post to..."
msgstr "पोष्ट पठाउनुहोस्..."
@@ -6544,17 +7114,20 @@ msgstr "रिपोर्ट पठाउनुहोस्"
msgid "Send report to {0}"
msgstr "रिपोर्ट पठाउनुहोस् {0}"
-#: src/components/moderation/ReportDialog/index.tsx:638
+#: src/components/moderation/ReportDialog/index.tsx:646
msgid "Send report to {title}"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:293
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
msgid "Send verification email"
msgstr "सत्यापन इमेल पठाउनुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:470
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:98
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:116
msgid "Send via direct message"
msgstr "प्रत्यक्ष सन्देश मार्फत पठाउनुहोस्"
@@ -6570,7 +7143,7 @@ msgstr "सर्भर ठेगाना"
msgid "Set app icon to {0}"
msgstr ""
-#: src/screens/Moderation/index.tsx:306
+#: src/screens/Moderation/index.tsx:325
msgid "Set birthdate"
msgstr "जन्म मिति सेट गर्नुहोस्"
@@ -6586,10 +7159,10 @@ msgstr "तपाईंको खाता सेट गर्नुहोस्
msgid "Sets email for password reset"
msgstr "पासवर्ड रीसेटको लागि इमेल सेट गर्दछ"
-#: src/Navigation.tsx:173
-#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:705
-#: src/view/shell/Drawer.tsx:539
+#: src/Navigation.tsx:185
+#: src/screens/Settings/Settings.tsx:90
+#: src/view/shell/desktop/LeftNav.tsx:727
+#: src/view/shell/Drawer.tsx:558
msgid "Settings"
msgstr "सेटिङ्स"
@@ -6598,7 +7171,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:174
+#: src/view/com/composer/labels/LabelsBtn.tsx:173
msgid "Sexual activity or erotic nudity."
msgstr "यौन क्रियाकलाप वा कामोत्तेजक नग्नता।"
@@ -6606,21 +7179,15 @@ msgstr "यौन क्रियाकलाप वा कामोत्ते
msgid "Sexually Suggestive"
msgstr "यौन रूपले प्रस्तावनात्मक"
-#: src/components/StarterPack/QrCodeDialog.tsx:181
+#: src/components/StarterPack/QrCodeDialog.tsx:182
#: src/screens/Hashtag.tsx:126
-#: src/screens/StarterPack/StarterPackScreen.tsx:428
-#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:433
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:216
-#: src/view/com/profile/ProfileMenu.tsx:225
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:481
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:490
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:347
-#: src/view/screens/ProfileList.tsx:506
+#: src/view/screens/ProfileList.tsx:513
msgid "Share"
msgstr "साझा गर्नुहोस्"
-#: src/view/com/lightbox/ImageViewing/index.tsx:631
+#: src/view/com/lightbox/ImageViewing/index.tsx:619
msgctxt "action"
msgid "Share"
msgstr "साझा गर्नुहोस्"
@@ -6633,15 +7200,19 @@ msgstr "एक शानदार कथा साझा गर्नुहो
msgid "Share a fun fact!"
msgstr "एक रमाइलो तथ्य साझा गर्नुहोस्!"
-#: src/view/com/profile/ProfileMenu.tsx:411
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:779
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:363
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:170
+#: src/view/com/profile/ProfileMenu.tsx:485
msgid "Share anyway"
msgstr "तथापि साझा गर्नुहोस्"
-#: src/components/StarterPack/ShareDialog.tsx:123
-#: src/components/StarterPack/ShareDialog.tsx:130
-#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
+msgid "Share author DID"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:104
+#: src/components/StarterPack/ShareDialog.tsx:111
msgid "Share link"
msgstr "लिङ्क साझा गर्नुहोस्"
@@ -6650,32 +7221,46 @@ msgstr "लिङ्क साझा गर्नुहोस्"
msgid "Share Link"
msgstr "लिङ्क साझा गर्नुहोस्"
-#: src/components/StarterPack/ShareDialog.tsx:87
+#: src/components/StarterPack/ShareDialog.tsx:68
msgid "Share link dialog"
msgstr "लिङ्क साझा संवाद"
-#: src/components/StarterPack/ShareDialog.tsx:134
-#: src/components/StarterPack/ShareDialog.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:149
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
+msgid "Share post at:// URI"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:126
msgid "Share QR code"
msgstr "QR कोड साझा गर्नुहोस्"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:466
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:474
msgid "Share this feed"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:421
+#: src/screens/StarterPack/StarterPackScreen.tsx:426
msgid "Share this starter pack"
msgstr "यस स्टार्टर प्याकलाई साझा गर्नुहोस्"
-#: src/components/StarterPack/ShareDialog.tsx:99
+#: src/components/StarterPack/ShareDialog.tsx:80
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr "यस स्टार्टर प्याकलाई साझा गर्नुहोस् र तपाईंको समुदायमा मानिसहरूलाई ब्लूस्काईमा सामेल हुन मद्दत गर्नुहोस्।"
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:123
+#: src/screens/StarterPack/StarterPackScreen.tsx:611
+#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:256
+msgid "Share via..."
+msgstr ""
+
#: src/components/dms/ChatEmptyPill.tsx:34
msgid "Share your favorite feed!"
msgstr "तपाईंको मनपर्ने फीड साझा गर्नुहोस्!"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:288
msgid "Shared Preferences Tester"
msgstr "साझा गरिएको प्राथमिकता परीक्षक"
@@ -6685,7 +7270,7 @@ msgstr "लिङ्क गरिएका वेबसाइटलाई सा
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:137
-#: src/components/moderation/PostHider.tsx:122
+#: src/components/moderation/PostHider.tsx:124
msgid "Show"
msgstr "देखाउनुहोस्"
@@ -6696,8 +7281,8 @@ msgstr "विकल्पात्मक पाठ देखाउनुहो
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:190
-#: src/screens/VideoFeed/index.tsx:610
-#: src/screens/VideoFeed/index.tsx:616
+#: src/screens/VideoFeed/index.tsx:628
+#: src/screens/VideoFeed/index.tsx:634
msgid "Show anyway"
msgstr "तथापि देखाउनुहोस्"
@@ -6718,8 +7303,8 @@ msgstr ""
msgid "Show hidden replies"
msgstr "लुकेका उत्तरहरू देखाउनुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:520
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:466
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:468
msgid "Show less like this"
msgstr "यसको जस्तो कम देखाउनुहोस्"
@@ -6727,14 +7312,14 @@ msgstr "यसको जस्तो कम देखाउनुहोस्"
msgid "Show list anyway"
msgstr "सूचीलाई यथास्थिति देखाउनुहोस्"
-#: src/view/com/post-thread/PostThreadItem.tsx:600
-#: src/view/com/post/Post.tsx:243
-#: src/view/com/posts/PostFeedItem.tsx:515
+#: src/view/com/post-thread/PostThreadItem.tsx:681
+#: src/view/com/post/Post.tsx:244
+#: src/view/com/posts/PostFeedItem.tsx:561
msgid "Show More"
msgstr "थप देखाउनुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:512
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:458
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:460
msgid "Show more like this"
msgstr "यसको जस्तो थप देखाउनुहोस्"
@@ -6752,7 +7337,7 @@ msgstr "उद्धरण पोस्टहरू देखाउनुहो
msgid "Show replies"
msgstr "उत्तरहरू देखाउनुहोस्"
-#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:625
msgid "Show replies as"
msgstr ""
@@ -6764,8 +7349,8 @@ msgstr ""
msgid "Show replies by people you follow before all other replies"
msgstr "तपाईंले अनुसरण गर्ने व्यक्तिहरूको उत्तरहरू सबै अन्य उत्तरहरूभन्दा पहिले देखाउनुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:596
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
msgid "Show reply for everyone"
msgstr "सबैको लागि उत्तर देखाउनुहोस्"
@@ -6787,11 +7372,11 @@ msgstr "चेतावनी देखाउनुहोस्"
msgid "Show warning and filter from feeds"
msgstr "चेतावनी देखाउनुहोस् र फीडबाट फिल्टर गर्नुहोस्"
-#: src/view/com/post-thread/PostThreadItem.tsx:816
+#: src/view/com/post-thread/PostThreadItem.tsx:916
msgid "Shows information about when this post was created"
msgstr ""
-#: src/screens/Settings/Settings.tsx:104
+#: src/screens/Settings/Settings.tsx:114
msgid "Shows other accounts you can switch to"
msgstr ""
@@ -6809,8 +7394,8 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:325
-#: src/view/shell/bottom-bar/BottomBar.tsx:330
+#: src/view/shell/bottom-bar/BottomBar.tsx:345
+#: src/view/shell/bottom-bar/BottomBar.tsx:350
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:209
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:214
#: src/view/shell/NavSignupCard.tsx:57
@@ -6818,7 +7403,7 @@ msgstr ""
msgid "Sign in"
msgstr "साइन इन गर्नुहोस्"
-#: src/components/AccountList.tsx:122
+#: src/components/AccountList.tsx:129
msgid "Sign in as {0}"
msgstr "को रूपमा साइन इन गर्नुहोस् {0}"
@@ -6826,16 +7411,16 @@ msgstr "को रूपमा साइन इन गर्नुहोस् {
msgid "Sign in as..."
msgstr "को रूपमा साइन इन गर्नुहोस्..."
+#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:209
+msgid "Sign in or create an account"
+msgstr ""
+
#: src/components/dialogs/Signin.tsx:75
msgid "Sign in or create your account to join the conversation!"
msgstr "चर्चामा सामेल हुन साइन इन गर्नुहोस् वा आफ्नो खाता सिर्जना गर्नुहोस्!"
-#: src/screens/Deactivated.tsx:203
-#: src/screens/Deactivated.tsx:209
-msgid "Sign in or sign up"
-msgstr "लग इन गर्नुहोस् वा साइन अप गर्नुहोस्।"
-
-#: src/components/AccountList.tsx:65
+#: src/components/AccountList.tsx:68
msgid "Sign in to account that is not listed"
msgstr "सूचीबद्ध नभएको खातामा लगइन गर्नुहोस्।"
@@ -6843,15 +7428,15 @@ msgstr "सूचीबद्ध नभएको खातामा लगइन
msgid "Sign in to Bluesky or create a new account"
msgstr "ब्लूस्काईमा साइन इन गर्नुहोस् वा नयाँ खाता सिर्जना गर्नुहोस्"
-#: src/screens/Settings/Settings.tsx:225
-#: src/screens/Settings/Settings.tsx:227
-#: src/screens/Settings/Settings.tsx:259
+#: src/screens/Settings/Settings.tsx:235
+#: src/screens/Settings/Settings.tsx:237
+#: src/screens/Settings/Settings.tsx:269
#: src/screens/SignupQueued.tsx:93
#: src/screens/SignupQueued.tsx:96
#: src/screens/Takendown.tsx:85
-#: src/view/shell/desktop/LeftNav.tsx:207
-#: src/view/shell/desktop/LeftNav.tsx:287
-#: src/view/shell/desktop/LeftNav.tsx:290
+#: src/view/shell/desktop/LeftNav.tsx:212
+#: src/view/shell/desktop/LeftNav.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:270
msgid "Sign out"
msgstr "साइन आउट गर्नुहोस्"
@@ -6859,8 +7444,8 @@ msgstr "साइन आउट गर्नुहोस्"
msgid "Sign Out"
msgstr "साइन आउट गर्नुहोस्"
-#: src/screens/Settings/Settings.tsx:256
-#: src/view/shell/desktop/LeftNav.tsx:204
+#: src/screens/Settings/Settings.tsx:266
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Sign out?"
msgstr "साइन आउट गर्नुहोस्?"
@@ -6874,11 +7459,6 @@ msgstr "साइन इन आवश्यक छ"
msgid "Signed in as @{0}"
msgstr "को रूपमा साइन इन गरिएको छ @{0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
-msgid "Signup without a starter pack"
-msgstr "स्टार्टर प्याक बिना साइन अप गर्नुहोस्"
-
#: src/components/FeedInterstitials.tsx:337
msgid "Similar accounts"
msgstr "समान खाता"
@@ -6896,12 +7476,21 @@ msgstr "यो प्रवाह छोड्नुहोस्"
msgid "Smaller"
msgstr "सानो"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
+#: src/components/dialogs/VerifyEmailDialog.tsx:274
+msgid "Snoozes the reminder"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:37
#: src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "सॉफ़्टवेयर विकासकर्ता"
-#: src/components/FeedInterstitials.tsx:472
+#: src/components/verification/VerificationsDialog.tsx:120
+msgid "Some of your verifications are invalid."
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:474
msgid "Some other feeds you might like"
msgstr "तपाईंलाई मन पर्ने अन्य फीडहरू"
@@ -6909,23 +7498,31 @@ msgstr "तपाईंलाई मन पर्ने अन्य फीड
msgid "Some people can reply"
msgstr "केही व्यक्तिहरू उत्तर दिन सक्छन्"
+#: src/components/dms/MessageItem.tsx:148
+msgid "Someone reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:241
+msgid "Someone reacted {0} to {1}"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:76
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:117
+#: src/screens/Messages/Conversation.tsx:129
msgid "Something went wrong"
msgstr "केहि गलत भयो"
-#: src/components/moderation/ReportDialog/index.tsx:215
+#: src/components/moderation/ReportDialog/index.tsx:223
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
msgstr "केहि गलत भयो, कृपया पुन: प्रयास गर्नुहोस्"
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:97
-#: src/screens/Profile/Sections/Labels.tsx:87
+#: src/screens/Moderation/index.tsx:101
+#: src/screens/Profile/Sections/Labels.tsx:121
msgid "Something went wrong, please try again."
msgstr "केहि गलत भयो, कृपया पुन: प्रयास गर्नुहोस्।"
@@ -6934,16 +7531,16 @@ msgstr "केहि गलत भयो, कृपया पुन: प्र
msgid "Something went wrong!"
msgstr "केहि गलत भयो!"
-#: src/components/moderation/ReportDialog/index.tsx:174
+#: src/components/moderation/ReportDialog/index.tsx:178
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Something wrong? Let us know."
msgstr ""
-#: src/App.native.tsx:121
-#: src/App.web.tsx:97
+#: src/App.native.tsx:122
+#: src/App.web.tsx:99
msgid "Sorry! Your session expired. Please sign in again."
msgstr ""
@@ -6978,34 +7575,39 @@ msgstr "स्प्याम; अत्यधिक उल्लेखहरू
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Sports"
msgstr "खेलकुद"
-#: src/components/dms/dialogs/NewChatDialog.tsx:72
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:196
+msgid "Start a conversation, and it will appear here."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:74
msgid "Start a new chat"
msgstr "नयाँ च्याट सुरु गर्नुहोस्"
-#: src/view/screens/ProfileList.tsx:839
-#: src/view/screens/ProfileList.tsx:960
+#: src/view/screens/ProfileList.tsx:846
+#: src/view/screens/ProfileList.tsx:967
msgid "Start adding people"
msgstr ""
-#: src/view/screens/ProfileList.tsx:846
-#: src/view/screens/ProfileList.tsx:967
+#: src/view/screens/ProfileList.tsx:853
+#: src/view/screens/ProfileList.tsx:974
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:357
+#: src/components/dialogs/SearchablePeopleList.tsx:382
msgid "Start chat with {displayName}"
msgstr "{displayName} सँग च्याट सुरु गर्नुहोस्"
-#: src/Navigation.tsx:433
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:453
+#: src/Navigation.tsx:458
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "स्टार्टर प्याक"
-#: src/components/StarterPack/StarterPackCard.tsx:87
+#: src/components/StarterPack/StarterPackCard.tsx:90
msgid "Starter pack by {0}"
msgstr "{0} द्वारा स्टार्टर प्याक"
@@ -7013,38 +7615,39 @@ msgstr "{0} द्वारा स्टार्टर प्याक"
msgid "Starter pack by <0/>"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:86
+#: src/components/StarterPack/StarterPackCard.tsx:89
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "तपाईंको द्वारा स्टार्टर प्याक"
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:731
msgid "Starter pack is invalid"
msgstr "स्टार्टर प्याक अवैध छ"
-#: src/view/screens/Profile.tsx:226
+#: src/screens/Search/Explore.tsx:628
+#: src/view/screens/Profile.tsx:231
msgid "Starter Packs"
msgstr "स्टार्टर प्याकहरू"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:242
+#: src/components/StarterPack/ProfileStarterPacks.tsx:266
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "स्टार्टर प्याकहरूले तपाईंलाई तपाईंका मनपर्ने फीडहरू र मानिसहरू सजिलैसँग तपाईंका साथीहरूसँग साझा गर्न दिन्छ।"
-#: src/screens/Settings/AboutSettings.tsx:59
-#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:100
+#: src/screens/Settings/AboutSettings.tsx:103
msgid "Status Page"
msgstr "स्थिति पृष्ठ"
-#: src/screens/Signup/index.tsx:134
+#: src/screens/Signup/index.tsx:148
msgid "Step {0} of {1}"
msgstr "चरण {0} को {1}"
-#: src/screens/Settings/Settings.tsx:309
+#: src/screens/Settings/Settings.tsx:363
msgid "Storage cleared, you need to restart the app now."
msgstr "भण्डारण मेटिएको छ, अब तपाईंले अनुप्रयोग पुनः सुरु गर्न आवश्यक छ।"
-#: src/Navigation.tsx:266
-#: src/screens/Settings/Settings.tsx:325
+#: src/Navigation.tsx:278
+#: src/screens/Settings/Settings.tsx:390
msgid "Storybook"
msgstr "स्टोरीबुक"
@@ -7063,46 +7666,51 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:376
-#: src/components/moderation/ReportDialog/index.tsx:433
-#: src/components/moderation/ReportDialog/index.tsx:440
+#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:441
+#: src/components/moderation/ReportDialog/index.tsx:448
msgid "Submit report"
msgstr ""
-#: src/view/screens/ProfileList.tsx:734
+#: src/view/screens/ProfileList.tsx:741
msgid "Subscribe"
msgstr "सदस्यता लिनुहोस्"
-#: src/screens/Profile/Sections/Labels.tsx:201
+#: src/screens/Profile/Sections/Labels.tsx:198
msgid "Subscribe to @{0} to use these labels:"
msgstr "यी लेबलहरू प्रयोग गर्न @{0} लाई सदस्यता लिनुहोस्:"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:248
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:235
msgid "Subscribe to Labeler"
msgstr "लेबलरलाई सदस्यता लिनुहोस्"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:214
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:201
msgid "Subscribe to this labeler"
msgstr "यस लेबलरलाई सदस्यता लिनुहोस्"
-#: src/view/screens/ProfileList.tsx:730
+#: src/view/screens/ProfileList.tsx:737
msgid "Subscribe to this list"
msgstr "यस सूचीलाई सदस्यता लिनुहोस्"
-#: src/components/dialogs/VerifyEmailDialog.tsx:95
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+#: src/components/dialogs/VerifyEmailDialog.tsx:124
msgid "Success!"
msgstr "सफलता!"
-#: src/view/screens/Search/Explore.tsx:368
-msgid "Suggested accounts"
-msgstr "सुझाव गरिएको खाता"
+#: src/components/verification/VerificationCreatePrompt.tsx:36
+msgid "Successfully verified"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:357
+msgid "Suggested Accounts"
+msgstr ""
#: src/components/FeedInterstitials.tsx:339
msgid "Suggested for you"
msgstr "तपाईंका लागि सुझाव गरिएको"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:147
msgid "Suggestive"
msgstr "सुझावात्मक"
@@ -7116,16 +7724,16 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:298
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "सहयोग"
-#: src/screens/Settings/Settings.tsx:102
-#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:412
-#: src/view/shell/desktop/LeftNav.tsx:242
+#: src/screens/Settings/Settings.tsx:112
+#: src/screens/Settings/Settings.tsx:126
+#: src/screens/Settings/Settings.tsx:485
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr "खाता स्विच गर्नुहोस्"
@@ -7134,11 +7742,11 @@ msgstr "खाता स्विच गर्नुहोस्"
msgid "Switch Account"
msgstr "खाता स्विच गर्नुहोस्"
-#: src/view/shell/desktop/LeftNav.tsx:106
+#: src/view/shell/desktop/LeftNav.tsx:110
msgid "Switch accounts"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:250
+#: src/view/shell/desktop/LeftNav.tsx:294
msgid "Switch to {0}"
msgstr ""
@@ -7149,9 +7757,9 @@ msgstr ""
msgid "System"
msgstr "सिस्टम"
-#: src/screens/Settings/AboutSettings.tsx:66
-#: src/screens/Settings/AboutSettings.tsx:69
-#: src/screens/Settings/Settings.tsx:318
+#: src/screens/Settings/AboutSettings.tsx:107
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/Settings.tsx:383
msgid "System log"
msgstr "सिस्टम लग"
@@ -7159,6 +7767,12 @@ msgstr "सिस्टम लग"
msgid "Tags only"
msgstr "केवल टैगहरू"
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "हटाउनका लागि ट्याप गर्नुहोस्"
@@ -7184,7 +7798,7 @@ msgstr "प्रविधि"
msgid "Tell a joke!"
msgstr "जोकर भन्नुहोस्!"
-#: src/screens/Profile/Header/EditProfileDialog.tsx:352
+#: src/screens/Profile/Header/EditProfileDialog.tsx:377
msgid "Tell us a bit about yourself"
msgstr "हाम्रोलाई तपाईंको बारेमा केही भन्नुहोस्"
@@ -7192,17 +7806,17 @@ msgstr "हाम्रोलाई तपाईंको बारेमा क
msgid "Tell us a little more"
msgstr "हाम्रोलाई थोरै बढी बताउनुहोस्"
-#: src/view/shell/desktop/RightNav.tsx:111
-#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/desktop/RightNav.tsx:116
+#: src/view/shell/desktop/RightNav.tsx:117
msgid "Terms"
msgstr "नियमहरू"
-#: src/Navigation.tsx:296
-#: src/screens/Settings/AboutSettings.tsx:43
-#: src/screens/Settings/AboutSettings.tsx:46
+#: src/Navigation.tsx:308
+#: src/screens/Settings/AboutSettings.tsx:84
+#: src/screens/Settings/AboutSettings.tsx:87
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:627
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:646
+#: src/view/shell/Drawer.tsx:648
msgid "Terms of Service"
msgstr "सेवाका नियमहरू"
@@ -7230,7 +7844,11 @@ msgstr ""
msgid "Text input field"
msgstr "पाठ इनपुट क्षेत्र"
-#: src/components/dialogs/VerifyEmailDialog.tsx:96
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:125
msgid "Thank you! Your email has been successfully verified."
msgstr "धन्यवाद! तपाईंको ईमेल सफलतापूर्वक प्रमाणित गरिएको छ।"
@@ -7242,7 +7860,7 @@ msgstr "धन्यवाद। तपाईंको रिपोर्ट प
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "धन्यवाद, तपाईंले तपाईंको ईमेल ठेगाना सफलतापूर्वक प्रमाणित गर्नुभयो। तपाईं यो संवाद बन्द गर्न सक्नुहुन्छ।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
msgid "That contains the following:"
msgstr "यसमा तलका सामग्रीहरू छन्:"
@@ -7250,10 +7868,10 @@ msgstr "यसमा तलका सामग्रीहरू छन्:"
msgid "That handle is already taken."
msgstr "त्यो हैंडल पहिले नै लिइएको छ।"
-#: src/screens/StarterPack/StarterPackScreen.tsx:105
-#: src/screens/StarterPack/StarterPackScreen.tsx:106
-#: src/screens/StarterPack/StarterPackScreen.tsx:150
-#: src/screens/StarterPack/StarterPackScreen.tsx:151
+#: src/screens/StarterPack/StarterPackScreen.tsx:110
+#: src/screens/StarterPack/StarterPackScreen.tsx:111
+#: src/screens/StarterPack/StarterPackScreen.tsx:155
+#: src/screens/StarterPack/StarterPackScreen.tsx:156
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
@@ -7263,12 +7881,12 @@ msgstr "त्यो स्टार्टर प्याक फेला प
msgid "That's all, folks!"
msgstr "त्यति हो, साथीहरू!"
-#: src/screens/VideoFeed/index.tsx:1081
+#: src/screens/VideoFeed/index.tsx:1111
msgid "That's everything!"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:296
+#: src/view/com/profile/ProfileMenu.tsx:461
msgid "The account will be able to interact with you after unblocking."
msgstr "खाता अनब्लक गरेपछि तपाईं सँग अन्तर्क्रिया गर्न सक्षम हुनेछ।"
@@ -7282,7 +7900,7 @@ msgstr ""
msgid "The author of this thread has hidden this reply."
msgstr "यस थ्रेडका लेखकले यस उत्तरलाई लुकेको छ।"
-#: src/screens/Moderation/index.tsx:358
+#: src/screens/Moderation/index.tsx:377
msgid "The Bluesky web application"
msgstr "ब्लूस्काई वेब अनुप्रयोग"
@@ -7302,6 +7920,10 @@ msgstr "डिस्कभर फीड"
msgid "The Discover feed now knows what you like"
msgstr "डिस्कभर फीडले अब तपाईंलाई के मनपर्छ थाहा पाएको छ।"
+#: src/components/dialogs/ChangeEmailDialog.tsx:74
+msgid "The email address you entered is the same as your current email address."
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "अनुप्रयोगमा अनुभव राम्रो छ। अब ब्लूस्काई डाउनलोड गर्नुहोस् र हामी तपाईंको स्थानबाट पुनः सुरु गर्नेछौं।"
@@ -7332,17 +7954,22 @@ msgid "The Privacy Policy has been moved to <0/>"
msgstr "गोपनीयता नीति <0/> मा सारिएको छ।"
#: src/view/com/composer/state/video.ts:395
-msgid "The selected video is larger than 50MB."
-msgstr "चयन गरिएको भिडियो ५०MB भन्दा ठूलो छ।"
+msgid "The selected video is larger than 100 MB."
+msgstr ""
+#: src/lib/hooks/useCleanError.ts:40
#: src/lib/strings/errors.ts:18
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "सर्भर समस्यामा देखिनु भएको छ। कृपया केही समय पछि पुन: प्रयास गर्नुहोस्।"
-#: src/screens/StarterPack/StarterPackScreen.tsx:722
+#: src/screens/StarterPack/StarterPackScreen.tsx:741
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "तपाईं जसलाई हेर्न चाहनुहुन्छ त्यो स्टार्टर प्याक अमान्य छ। तपाईं यस स्टार्टर प्याकलाई मेट्न सक्नुहुन्छ।"
+#: src/components/ContextMenu/index.tsx:433
+msgid "The subject of the context menu"
+msgstr ""
+
#: src/view/screens/Support.tsx:37
msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
msgstr "सहायता फारम सारिएको छ। यदि तपाईंलाई मद्दत चाहिन्छ भने, कृपया <0/> मा जानुहोस् वा {HELP_DESK_URL} मा भ्रमण गर्नुहोस्।"
@@ -7367,15 +7994,15 @@ msgstr "खाता निष्क्रिय गर्नको लागि
msgid "There was an issue connecting to Tenor."
msgstr "टेणरमा जडान गर्न समस्या आयो।"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
-#: src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/view/screens/ProfileList.tsx:375
+#: src/view/screens/ProfileList.tsx:394
#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "सर्भरलाई सम्पर्क गर्न समस्या आयो।"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:411
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:418
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "सर्भरलाई सम्पर्क गर्न समस्या आयो, कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।"
@@ -7388,11 +8015,12 @@ msgstr "तपाईंको सर्भरलाई सम्पर्क ग
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "सूचनाहरू प्राप्त गर्न समस्या आयो। पुन: प्रयास गर्न यहाँ ट्याप गर्नुहोस्।"
-#: src/view/com/posts/PostFeed.tsx:592
+#: src/screens/Search/Explore.tsx:990
+#: src/view/com/posts/PostFeed.tsx:657
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "पोस्टहरू प्राप्त गर्न समस्या आयो। पुन: प्रयास गर्न यहाँ ट्याप गर्नुहोस्।"
-#: src/view/com/lists/ListMembers.tsx:166
+#: src/view/com/lists/ListMembers.tsx:151
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "सूची प्राप्त गर्न समस्या आयो। पुन: प्रयास गर्न यहाँ ट्याप गर्नुहोस्।"
@@ -7400,12 +8028,12 @@ msgstr "सूची प्राप्त गर्न समस्या आ
msgid "There was an issue fetching your app passwords"
msgstr "तपाईंका एप पासवर्ड प्राप्त गर्न समस्या आयो।"
-#: src/view/com/feeds/ProfileFeedgens.tsx:155
-#: src/view/com/lists/ProfileLists.tsx:154
+#: src/view/com/feeds/ProfileFeedgens.tsx:151
+#: src/view/com/lists/ProfileLists.tsx:150
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "तपाईंका सूची प्राप्त गर्न समस्या आयो। पुन: प्रयास गर्न यहाँ ट्याप गर्नुहोस्।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:107
msgid "There was an issue fetching your service info"
msgstr "तपाईंको सेवा जानकारी प्राप्त गर्न समस्या आयो।"
@@ -7418,26 +8046,26 @@ msgstr "यो फीड मेटाउन समस्या आयो। क
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "तपाईंको रिपोर्ट पठाउन समस्या आयो। कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस्।"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "तपाईंको फीडहरू अपडेट गर्न समस्या आयो, कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:364
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:132
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:90
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:101
-#: src/view/com/profile/ProfileMenu.tsx:111
-#: src/view/com/profile/ProfileMenu.tsx:121
-#: src/view/com/profile/ProfileMenu.tsx:135
-#: src/view/com/profile/ProfileMenu.tsx:145
-#: src/view/com/profile/ProfileMenu.tsx:158
-#: src/view/com/profile/ProfileMenu.tsx:170
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:392
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:402
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:175
+#: src/view/com/profile/ProfileMenu.tsx:187
msgid "There was an issue! {0}"
msgstr "समस्या आयो! {0}"
@@ -7445,10 +8073,10 @@ msgstr "समस्या आयो! {0}"
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/view/screens/ProfileList.tsx:404
-#: src/view/screens/ProfileList.tsx:422
-#: src/view/screens/ProfileList.tsx:440
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/screens/ProfileList.tsx:411
+#: src/view/screens/ProfileList.tsx:429
+#: src/view/screens/ProfileList.tsx:447
+#: src/view/screens/ProfileList.tsx:465
msgid "There was an issue. Please check your internet connection and try again."
msgstr "समस्या आयो। कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।"
@@ -7469,6 +8097,14 @@ msgstr "यी सेटिङ्स केवल फलोइङ फीडम
msgid "This {screenDescription} has been flagged:"
msgstr "यस {screenDescription} लाई चिह्नित गरिएको छ:"
+#: src/components/verification/VerificationsDialog.tsx:87
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:92
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr ""
+
#: src/components/moderation/ScreenHider.tsx:106
msgid "This account has requested that users sign in to view their profile."
msgstr "यस खाताले प्रयोगकर्ताहरूलाई आफ्नो प्रोफाइल हेर्न साइन इन गर्न अनुरोध गरेको छ।"
@@ -7477,6 +8113,10 @@ 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/verification/VerificationCreatePrompt.tsx:55
+msgid "This action can be undone at any time."
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:271
msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "यो अपील <0>{sourceName}0> मा पठाइनेछ।"
@@ -7510,14 +8150,22 @@ msgstr "यो सामग्री उपलब्ध छैन किनक
msgid "This content is not viewable without a Bluesky account."
msgstr "यो सामग्री बिना Bluesky खाता प्रयोग नगरी हेर्न सकिँदैन।"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:362
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
+msgid "This email is already associated with your account."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
msgstr "यो सुविधा बेटामा छ। तपाईं <0>यो ब्लगपोस्ट0> मा रिपोजिटरी निर्यातहरूको बारेमा थप पढ्न सक्नुहुन्छ।"
+#: src/lib/hooks/useCleanError.ts:49
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr ""
+
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "यो सुविधा App पासवर्ड प्रयोग गर्दा उपलब्ध छैन। कृपया आफ्नो मुख्य पासवर्ड सँग साइन इन गर्नुहोस्।"
@@ -7531,8 +8179,8 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "यो फिड खाली छ! तपाईंलाई अझ धेरै प्रयोगकर्ताहरूलाई अनुसरण गर्न आवश्यक पर्न सक्छ या आफ्नो भाषा सेटिङलाई अनुकूलन गर्नुपर्छ।"
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:189
-#: src/view/screens/ProfileList.tsx:836
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/view/screens/ProfileList.tsx:843
msgid "This feed is empty."
msgstr "यो फिड खाली छ।"
@@ -7540,7 +8188,7 @@ msgstr "यो फिड खाली छ।"
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "यो फिड अब अनलाइन छैन। हामी <0>Discover0> देखाउँदै छौं।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:593
msgid "This handle is reserved. Please try a different one."
msgstr "यो ह्यान्डल आरक्षित छ। कृपया अर्को प्रयास गर्नुहोस्।"
@@ -7548,9 +8196,10 @@ msgstr "यो ह्यान्डल आरक्षित छ। कृप
msgid "This information is not shared with other users."
msgstr "यो जानकारी अन्य प्रयोगकर्तासँग साझा गरिँदैन।"
-#: src/view/com/modals/VerifyEmail.tsx:127
-msgid "This is important in case you ever need to change your email or reset your password."
-msgstr "यो महत्त्वपूर्ण छ यदि तपाईंलाई कहिले पनि आफ्नो इमेल परिवर्तन गर्न वा पासवर्ड रिसेट गर्न आवश्यक पर्छ भने।"
+#: src/components/live/EditLiveDialog.tsx:189
+#: src/components/live/GoLiveDialog.tsx:160
+msgid "This is not a valid link"
+msgstr ""
#: src/components/moderation/ModerationDetailsDialog.tsx:168
msgid "This label was applied by the author."
@@ -7560,7 +8209,7 @@ msgstr "यो लेबल लेखक द्वारा लागू गर
msgid "This label was applied by you."
msgstr "यो लेबल तपाईं द्वारा लागू गरियो।"
-#: src/screens/Profile/Sections/Labels.tsx:188
+#: src/screens/Profile/Sections/Labels.tsx:185
msgid "This labeler hasn't declared what labels it publishes, and may not be active."
msgstr "यस लेबलरले कुन लेबलहरू प्रकाशित गर्छ भन्ने घोषणा गरेको छैन, र यो सक्रिय नहुन सक्छ।"
@@ -7576,7 +8225,7 @@ msgstr ""
msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
msgstr ""
-#: src/view/screens/ProfileList.tsx:955
+#: src/view/screens/ProfileList.tsx:962
msgid "This list is empty."
msgstr ""
@@ -7584,7 +8233,7 @@ msgstr ""
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "यो मोडरेशन सेवा उपलब्ध छैन। थप विवरणको लागि तल हेर्नुहोस्। यदि यो समस्या जारी रहन्छ भने, हामीलाई सम्पर्क गर्नुहोस्।"
-#: src/view/com/post-thread/PostThreadItem.tsx:856
+#: src/view/com/post-thread/PostThreadItem.tsx:956
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "यो पोस्ट <0>{0}0> मा सिर्जना गरिएको दावी गर्दछ, तर पहिलो पटक Bluesky द्वारा <1>{1}1> मा देखिएको थियो।"
@@ -7592,28 +8241,29 @@ msgstr "यो पोस्ट <0>{0}0> मा सिर्जना गरि
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:153
+#: src/view/com/post-thread/PostThreadItem.tsx:163
msgid "This post has been deleted."
msgstr "यो पोस्ट हटाइयो।"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:360
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:173
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:183
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:167
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:758
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "यो पोस्ट फिड र थ्रेडहरूबाट लुकेको हुनेछ। यसलाई उल्टाउन सकिँदैन।"
-#: src/view/com/composer/Composer.tsx:428
+#: src/view/com/composer/Composer.tsx:424
msgid "This post's author has disabled quote posts."
msgstr "यस पोस्टको लेखकले उद्धरण पोस्टहरू निष्क्रिय गरेको छ।"
-#: src/view/com/profile/ProfileMenu.tsx:408
+#: src/view/com/profile/ProfileMenu.tsx:482
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:819
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr "यो जवाफ तपाईंको थ्रेडको तल लुकेको सेक्सनमा क्रमबद्ध गरिनेछ र subsequent जवाफहरूको लागि - तपाईं र अरूसँग - अधिसूचनाहरू म्यूट गरिनेछ।"
@@ -7621,10 +8271,14 @@ msgstr "यो जवाफ तपाईंको थ्रेडको तल
msgid "This service has not provided terms of service or a privacy policy."
msgstr "यस सेवाले सेवा सर्तहरू वा गोपनीयता नीति प्रदान गरेको छैन।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:456
msgid "This should create a domain record at:"
msgstr "यसले निम्न स्थानमा एक डोमेन रेकर्ड सिर्जना गर्नु पर्छ:"
+#: src/components/verification/VerificationCreatePrompt.tsx:93
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr ""
+
#: src/view/com/profile/ProfileFollowers.tsx:95
msgid "This user doesn't have any followers."
msgstr "यस प्रयोगकर्तासँग कुनै फलोअर छैन।"
@@ -7662,21 +8316,21 @@ msgstr "यो प्रयोगकर्ता कसैलाई पनि
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "यसले \"{0}\"लाई तपाईंको म्यूटेड शब्दहरूबाट मेटाउनेछ। तपाईं यसलाई पछि पुनः थप्न सक्नुहुन्छ।"
-#: src/screens/Settings/Settings.tsx:462
+#: src/screens/Settings/Settings.tsx:537
msgid "This will remove @{0} from the quick access list."
msgstr "यसले @{0}लाई क्विक एक्सेस सूचीबाट हटाउनेछ।"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:809
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:719
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "यसले तपाईंको पोस्टलाई यो उद्धरण पोस्टबाट सबै प्रयोगकर्ताहरूको लागि हटाउनेछ र यसलाई एक स्थानधारक सँग प्रतिस्थापित गर्नेछ।"
-#: src/view/com/post-thread/PostThread.tsx:610
-#: src/view/com/post-thread/PostThread.tsx:613
+#: src/view/com/post-thread/PostThread.tsx:609
+#: src/view/com/post-thread/PostThread.tsx:612
msgid "Thread options"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:71
msgid "Thread preferences"
msgstr "थ्रेड प्राथमिकताहरू"
@@ -7684,8 +8338,8 @@ msgstr "थ्रेड प्राथमिकताहरू"
msgid "Thread Preferences"
msgstr "थ्रेड प्राथमिकताहरू"
-#: src/view/com/post-thread/PostThread.tsx:640
-#: src/view/com/post-thread/PostThread.tsx:645
+#: src/view/com/post-thread/PostThread.tsx:639
+#: src/view/com/post-thread/PostThread.tsx:644
msgid "Threaded"
msgstr ""
@@ -7693,7 +8347,7 @@ msgstr ""
msgid "Threaded mode"
msgstr "थ्रेडेड मोड"
-#: src/Navigation.tsx:329
+#: src/Navigation.tsx:341
msgid "Threads Preferences"
msgstr "थ्रेड प्राथमिकताहरू"
@@ -7705,14 +8359,15 @@ msgstr ""
msgid "To disable the email 2FA method, please verify your access to the email address."
msgstr "इमेल 2FA विधि बन्द गर्नका लागि कृपया आफ्नो इमेल ठेगानामा पहुँच प्रमाणित गर्नुहोस्।"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr ""
+
#: src/components/dms/ReportConversationPrompt.tsx:19
msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
msgstr "एक संवाद रिपोर्ट गर्नको लागि, कृपया यसको एक सन्देशलाई संवाद स्क्रिन मार्फत रिपोर्ट गर्नुहोस्। यसले हाम्रो मोडरेटरलाई तपाईंको समस्याको सन्दर्भ बुझ्न मद्दत पुर्याउँछ।"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
-msgid "To upload videos to Bluesky, you must first verify your email."
-msgstr "Bluesky मा भिडियोहरू अपलोड गर्नका लागि, तपाईंलाई पहिलो पटक आफ्नो इमेल प्रमाणित गर्न आवश्यक छ।"
-
#: src/components/ReportDialog/SelectLabelerView.tsx:31
msgid "To whom would you like to send this report?"
msgstr "यो रिपोर्ट तपाईं कुनलाई पठाउन चाहनुहुन्छ?"
@@ -7725,7 +8380,7 @@ msgstr "आज"
msgid "Toggle dropdown"
msgstr "ड्रपडाउन टगल गर्नुहोस्"
-#: src/screens/Moderation/index.tsx:335
+#: src/screens/Moderation/index.tsx:354
msgid "Toggle to enable or disable adult content"
msgstr "वयस्क सामग्री सक्षम वा असक्षम गर्न टगल गर्नुहोस्"
@@ -7734,34 +8389,36 @@ msgid "Toggles the sound"
msgstr ""
#: src/screens/Hashtag.tsx:84
+#: src/screens/Search/SearchResults.tsx:42
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:505
msgid "Top"
msgstr "शीर्ष"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:423
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:105
-#: src/components/dms/MessageMenu.tsx:107
-#: src/view/com/post-thread/PostThreadItem.tsx:778
-#: src/view/com/post-thread/PostThreadItem.tsx:781
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/components/dms/MessageContextMenu.tsx:143
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:435
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:437
+#: src/view/com/post-thread/PostThreadItem.tsx:878
+#: src/view/com/post-thread/PostThreadItem.tsx:881
msgid "Translate"
msgstr "अनुवाद गर्नुहोस्"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
msgstr ""
#: src/components/interstitials/TrendingVideos.tsx:88
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
msgid "Trending Videos"
msgstr ""
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr ""
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7775,7 +8432,7 @@ msgstr "टीभी"
msgid "Two-factor authentication (2FA)"
msgstr "दुई-कारक प्रमाणीकरण (2FA)"
-#: src/screens/Signup/StepHandle.tsx:118
+#: src/screens/Signup/StepHandle.tsx:126
msgid "Type your desired username"
msgstr ""
@@ -7783,18 +8440,11 @@ msgstr ""
msgid "Type your message here"
msgstr "यहाँ तपाईंको सन्देश टाइप गर्नुहोस्"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:432
msgid "Type:"
msgstr "प्रकार:"
-#: src/view/screens/ProfileList.tsx:613
-msgid "Un-block list"
-msgstr "ब्लक लिस्ट हटाउनुहोस्"
-
-#: src/view/screens/ProfileList.tsx:598
-msgid "Un-mute list"
-msgstr "म्यूट लिस्ट हटाउनुहोस्"
-
+#: src/lib/hooks/useCleanError.ts:27
#: src/lib/strings/errors.ts:11
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "जडान गर्न असमर्थ। कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् र पुनः प्रयास गर्नुहोस्।"
@@ -7809,7 +8459,7 @@ msgstr "जडान गर्न असमर्थ। कृपया आफ
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "तपाईंको सेवा सम्पर्क गर्न असमर्थ। कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस्।"
-#: src/screens/StarterPack/StarterPackScreen.tsx:654
+#: src/screens/StarterPack/StarterPackScreen.tsx:673
msgid "Unable to delete"
msgstr "हटाउन असमर्थ"
@@ -7817,36 +8467,41 @@ msgstr "हटाउन असमर्थ"
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:399
-#: src/view/screens/ProfileList.tsx:716
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300
+#: src/view/com/profile/ProfileMenu.tsx:473
+#: src/view/screens/ProfileList.tsx:723
msgid "Unblock"
msgstr "ब्लक हटाउनुहोस्"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195
msgctxt "action"
msgid "Unblock"
msgstr "ब्लक हटाउनुहोस्"
#: src/components/dms/ConvoMenu.tsx:247
#: src/components/dms/ConvoMenu.tsx:250
-#: src/view/com/profile/ProfileMenu.tsx:309
-#: src/view/com/profile/ProfileMenu.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/profile/ProfileMenu.tsx:389
msgid "Unblock account"
msgstr "खाता ब्लक हटाउनुहोस्"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:381
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:455
msgid "Unblock Account?"
msgstr "खाता ब्लक हटाउन चाहानुहुन्छ?"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+#: src/view/screens/ProfileList.tsx:620
+msgid "Unblock list"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.web.tsx:65
+#: src/components/PostControls/RepostButton.web.tsx:69
msgid "Undo repost"
msgstr "पुनःपोस्टलाई रद्द गर्नुहोस्"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#: src/components/PostControls/RepostButton.tsx:55
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
@@ -7855,28 +8510,33 @@ msgctxt "action"
msgid "Unfollow"
msgstr "अनफोलो गर्नुहोस्"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210
msgid "Unfollow {0}"
msgstr "{0} लाई अनफोलो गर्नुहोस्"
-#: src/view/com/profile/ProfileMenu.tsx:251
-#: src/view/com/profile/ProfileMenu.tsx:261
+#: src/view/com/profile/ProfileMenu.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:293
msgid "Unfollow account"
msgstr "खाता अनफोलो गर्नुहोस्"
-#: src/screens/VideoFeed/index.tsx:810
+#: src/screens/VideoFeed/index.tsx:831
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:361
+#: src/components/moderation/ReportDialog/index.tsx:369
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:510
+#: src/components/verification/VerificationsDialog.tsx:206
+msgid "Unknown verifier"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:518
msgid "Unlike"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:306
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#: src/components/PostControls/index.tsx:236
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -7886,7 +8546,7 @@ msgctxt "video"
msgid "Unmute"
msgstr ""
-#: src/view/screens/ProfileList.tsx:723
+#: src/view/screens/ProfileList.tsx:730
msgid "Unmute"
msgstr "म्यूट हटाउनुहोस्"
@@ -7895,10 +8555,10 @@ msgstr "म्यूट हटाउनुहोस्"
msgid "Unmute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:288
-#: src/view/com/profile/ProfileMenu.tsx:294
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:651
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:615
+#: src/view/com/profile/ProfileMenu.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:368
msgid "Unmute account"
msgstr "खाता म्यूट हटाउनुहोस्"
@@ -7906,8 +8566,12 @@ msgstr "खाता म्यूट हटाउनुहोस्"
msgid "Unmute conversation"
msgstr "वार्तालाप म्यूट हटाउनुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:536
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/screens/ProfileList.tsx:605
+msgid "Unmute list"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:494
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:498
msgid "Unmute thread"
msgstr "थ्रेड म्यूट हटाउनुहोस्"
@@ -7915,38 +8579,47 @@ msgstr "थ्रेड म्यूट हटाउनुहोस्"
msgid "Unmute video"
msgstr "भिडियो म्यूट हटाउनुहोस्"
-#: src/view/screens/ProfileList.tsx:707
+#: src/view/screens/ProfileList.tsx:714
msgid "Unpin"
msgstr "अनपिन गर्नुहोस्"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:530
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:305
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:307
+#: src/components/FeedCard.tsx:320
+msgid "Unpin Feed"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:310
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
msgid "Unpin from home"
msgstr "होमबाट अनपिन गर्नुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:410
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:417
msgid "Unpin from profile"
msgstr "प्रोफाइलबाट अनपिन गर्नुहोस्"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:585
msgid "Unpin moderation list"
msgstr "मोडरेशन सूची अनपिन गर्नुहोस्"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
msgid "Unpinned {0} from Home"
msgstr ""
-#: src/view/screens/ProfileList.tsx:355
+#: src/view/screens/ProfileList.tsx:362
msgid "Unpinned from your feeds"
msgstr "तपाईंको फिडहरूबाट अनपिन गरिएको"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:246
+#: src/screens/Settings/Settings.tsx:416
+#: src/screens/Settings/Settings.tsx:418
+msgid "Unsnooze email reminder"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:233
msgid "Unsubscribe"
msgstr "सदस्यता समाप्त गर्नुहोस्"
@@ -7955,7 +8628,7 @@ msgstr "सदस्यता समाप्त गर्नुहोस्"
msgid "Unsubscribe from list"
msgstr "सूचीबाट सदस्यता समाप्त गर्नुहोस्"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:213
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:200
msgid "Unsubscribe from this labeler"
msgstr "यस लेबलरबाट सदस्यता समाप्त गर्नुहोस्"
@@ -7963,11 +8636,11 @@ msgstr "यस लेबलरबाट सदस्यता समाप्त
msgid "Unsubscribed from list"
msgstr "सूचीबाट सदस्यता समाप्त गरिएको"
-#: src/view/com/composer/Composer.tsx:781
+#: src/view/com/composer/Composer.tsx:769
msgid "Unsupported video type"
msgstr "समर्थन नगर्ने भिडियो प्रकार"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:68
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:48
msgid "Unsupported video type: {0}"
msgstr "समर्थन नगर्ने भिडियो प्रकार: {0}"
@@ -7987,49 +8660,60 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "सूचीहरूमा <0>{displayName}0> अपडेट गर्नुहोस्"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:300
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:312
+#: src/screens/Settings/AccountSettings.tsx:104
+#: src/screens/Settings/AccountSettings.tsx:112
+msgid "Update email"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:526
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
msgid "Update to {domain}"
msgstr "{domain} मा अपडेट गर्नुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:318
-msgctxt "toast"
-msgid "Updating quote attachment failed"
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:203
+msgid "Update your email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:311
+msgctxt "toast"
+msgid "Updating quote attachment failed"
+msgstr "कोट अट्याचमेन्ट अपडेट गर्न असफल"
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:342
msgctxt "toast"
msgid "Updating reply visibility failed"
-msgstr ""
+msgstr "उत्तर दृश्यता अपडेट गर्न असफल"
#: src/screens/Login/SetNewPasswordForm.tsx:190
msgid "Updating..."
msgstr "अपडेट गर्दै..."
-#: src/screens/Onboarding/StepProfile/index.tsx:290
+#: src/screens/Onboarding/StepProfile/index.tsx:288
msgid "Upload a photo instead"
msgstr "फोटो अपलोड गर्नुहोस्"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Upload a text file to:"
msgstr "टेक्स्ट फाइल अपलोड गर्नुहोस्:"
-#: src/view/com/util/UserAvatar.tsx:368
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserBanner.tsx:123
-#: src/view/com/util/UserBanner.tsx:126
+#: src/view/com/util/UserAvatar.tsx:456
+#: src/view/com/util/UserAvatar.tsx:459
+#: src/view/com/util/UserBanner.tsx:157
+#: src/view/com/util/UserBanner.tsx:160
msgid "Upload from Camera"
msgstr "क्यामेरा बाट अपलोड गर्नुहोस्"
-#: src/view/com/util/UserAvatar.tsx:385
-#: src/view/com/util/UserBanner.tsx:140
+#: src/view/com/util/UserAvatar.tsx:473
+#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Files"
msgstr "फाइल बाट अपलोड गर्नुहोस्"
-#: src/view/com/util/UserAvatar.tsx:379
-#: src/view/com/util/UserAvatar.tsx:383
-#: src/view/com/util/UserBanner.tsx:134
-#: src/view/com/util/UserBanner.tsx:138
+#: src/view/com/util/UserAvatar.tsx:467
+#: src/view/com/util/UserAvatar.tsx:471
+#: src/view/com/util/UserBanner.tsx:168
+#: src/view/com/util/UserBanner.tsx:172
msgid "Upload from Library"
msgstr "लाइब्रेरी बाट अपलोड गर्नुहोस्"
@@ -8042,7 +8726,7 @@ msgstr "तस्विरहरू अपलोड गर्दै..."
msgid "Uploading link thumbnail..."
msgstr "लिंक थम्बनेल अपलोड गर्दै..."
-#: src/view/com/composer/Composer.tsx:1655
+#: src/view/com/composer/Composer.tsx:1672
msgid "Uploading video..."
msgstr "भिडियो अपलोड गर्दै..."
@@ -8050,22 +8734,22 @@ msgstr "भिडियो अपलोड गर्दै..."
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "अन्य Bluesky क्लाइन्टहरूमा साइन इन गर्नका लागि एप पासवर्डको प्रयोग गर्नुहोस् बिना तपाईंको खाता वा पासवर्डको पूर्ण पहुँच दिनुहोस्।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
msgid "Use default provider"
msgstr "डिफल्ट प्रदायक प्रयोग गर्नुहोस्"
-#: src/view/com/modals/InAppBrowserConsent.tsx:53
-#: src/view/com/modals/InAppBrowserConsent.tsx:55
+#: src/components/dialogs/InAppBrowserConsent.tsx:77
+#: src/components/dialogs/InAppBrowserConsent.tsx:83
msgid "Use in-app browser"
msgstr "एप भित्र ब्राउजर प्रयोग गर्नुहोस्"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:93
-#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:108
msgid "Use in-app browser to open links"
msgstr "लिंक खोल्नको लागि एप भित्र ब्राउजर प्रयोग गर्नुहोस्"
-#: src/view/com/modals/InAppBrowserConsent.tsx:63
-#: src/view/com/modals/InAppBrowserConsent.tsx:65
+#: src/components/dialogs/InAppBrowserConsent.tsx:87
+#: src/components/dialogs/InAppBrowserConsent.tsx:93
msgid "Use my default browser"
msgstr "मेरो डिफल्ट ब्राउजर प्रयोग गर्नुहोस्"
@@ -8119,15 +8803,15 @@ msgstr "{0} द्वारा प्रयोगकर्ता सूची"
msgid "User list by you"
msgstr "तपाईं द्वारा प्रयोगकर्ता सूची"
-#: src/view/com/modals/CreateOrEditList.tsx:176
+#: src/view/com/modals/CreateOrEditList.tsx:174
msgctxt "toast"
msgid "User list created"
-msgstr ""
+msgstr "प्रयोगकर्ता सूची सिर्जना गरियो"
-#: src/view/com/modals/CreateOrEditList.tsx:162
+#: src/view/com/modals/CreateOrEditList.tsx:160
msgctxt "toast"
msgid "User list updated"
-msgstr ""
+msgstr "प्रयोगकर्ता सूची अद्यावधिक गरियो"
#: src/screens/Login/LoginForm.tsx:201
msgid "Username or email address"
@@ -8150,58 +8834,88 @@ msgstr "मैले फलो गरेका प्रयोगकर्ता
msgid "Users in \"{0}\""
msgstr "\"{0}\" मा रहेका प्रयोगकर्ताहरू"
-#: src/components/LikesDialog.tsx:83
-msgid "Users that have liked this content or profile"
-msgstr "जसले यो सामग्री वा प्रोफाइललाई लाइक गरेका छन्"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:433
msgid "Users you follow"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:438
msgid "Value:"
msgstr "मूल्य:"
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
-msgid "Verified email required"
-msgstr "प्रमाणित ईमेल आवश्यक"
+#: src/components/verification/VerificationCreatePrompt.tsx:39
+msgid "Verification failed, please try again."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Moderation/index.tsx:288
+msgid "Verification settings"
+msgstr ""
+
+#: src/Navigation.tsx:178
+#: src/screens/Moderation/VerificationSettings.tsx:32
+msgid "Verification Settings"
+msgstr ""
+
+#: src/screens/Moderation/VerificationSettings.tsx:41
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:103
+msgid "Verified by:"
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:84
+#: src/components/verification/VerificationCreatePrompt.tsx:86
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Verify account"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:348
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:359
+msgid "Verify code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:549
msgid "Verify DNS Record"
msgstr "DNS रेकर्ड प्रमाणित गर्नुहोस्"
-#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/dialogs/ChangeEmailDialog.tsx:234
+#: src/components/dialogs/ChangeEmailDialog.tsx:240
+msgid "Verify email"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:214
+msgid "Verify email code"
+msgstr ""
+
+#: src/components/dialogs/ChangeEmailDialog.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:163
#: src/components/intents/VerifyEmailIntentDialog.tsx:67
msgid "Verify email dialog"
msgstr "ईमेल प्रमाणिकरण संवाद"
-#: src/view/com/modals/ChangeEmail.tsx:200
-#: src/view/com/modals/ChangeEmail.tsx:202
-msgid "Verify New Email"
-msgstr "नयाँ ईमेल प्रमाणित गर्नुहोस्"
-
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:131
-msgid "Verify now"
-msgstr "अब प्रमाणित गर्नुहोस्"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:529
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:551
msgid "Verify Text File"
msgstr "पाठ फाइल प्रमाणित गर्नुहोस्"
-#: src/screens/Settings/AccountSettings.tsx:75
-#: src/screens/Settings/AccountSettings.tsx:91
+#: src/components/verification/VerificationCreatePrompt.tsx:51
+msgid "Verify this account?"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:211
+#: src/screens/Settings/AccountSettings.tsx:78
+#: src/screens/Settings/AccountSettings.tsx:98
msgid "Verify your email"
msgstr "तपाईंको ईमेल प्रमाणित गर्नुहोस्"
-#: src/components/dialogs/VerifyEmailDialog.tsx:85
-#: src/view/com/modals/VerifyEmail.tsx:111
+#: src/components/dialogs/VerifyEmailDialog.tsx:114
msgid "Verify Your Email"
msgstr "तपाईंको ईमेल प्रमाणित गर्नुहोस्"
-#: src/screens/Settings/AboutSettings.tsx:73
-#: src/screens/Settings/AboutSettings.tsx:102
+#: src/screens/Settings/AboutSettings.tsx:126
+#: src/screens/Settings/AboutSettings.tsx:155
msgid "Version {appVersion}"
msgstr "संस्करण {appVersion}"
@@ -8214,7 +8928,7 @@ msgstr "भिडियो"
msgid "Video failed to process"
msgstr "भिडियो प्रोसेस गर्न असफल"
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:474
msgid "Video Feed"
msgstr ""
@@ -8224,14 +8938,15 @@ msgstr ""
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:237
msgid "Video Games"
msgstr "भिडियो खेल"
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1039
+#: src/screens/VideoFeed/index.tsx:1069
msgid "Video is playing"
msgstr ""
@@ -8239,11 +8954,11 @@ msgstr ""
msgid "Video not found."
msgstr "भिडियो फेला पारिएन।"
-#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+#: src/view/com/composer/videos/SubtitleDialog.tsx:98
msgid "Video settings"
msgstr "भिडियो सेटिङ्गहरू"
-#: src/view/com/composer/Composer.tsx:1665
+#: src/view/com/composer/Composer.tsx:1682
msgid "Video uploaded"
msgstr "भिडियो अपलोड गरियो"
@@ -8251,31 +8966,32 @@ msgstr "भिडियो अपलोड गरियो"
msgid "Video: {0}"
msgstr "भिडियो: {0}"
-#: src/view/screens/Profile.tsx:223
+#: src/view/screens/Profile.tsx:228
msgid "Videos"
msgstr ""
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:60
-#: src/view/com/composer/videos/SelectVideoBtn.tsx:75
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:42
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:55
msgid "Videos must be less than 3 minutes long"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:168
+#: src/screens/Profile/Header/Shell.tsx:211
msgid "View {0}'s avatar"
msgstr "{0} को अवतार हेर्नुहोस्"
-#: src/components/ProfileCard.tsx:110
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:446
-#: src/screens/VideoFeed/index.tsx:769
-#: src/view/com/notifications/NotificationFeedItem.tsx:413
+#: src/components/ProfileCard.tsx:116
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:790
+#: src/view/com/notifications/NotificationFeedItem.tsx:545
msgid "View {0}'s profile"
msgstr "{0} को प्रोफाइल हेर्नुहोस्"
-#: src/components/dms/MessagesListHeader.tsx:176
+#: src/components/dms/MessagesListHeader.tsx:181
msgid "View {displayName}'s profile"
msgstr "{displayName} को प्रोफाइल हेर्नुहोस्"
-#: src/components/ProfileHoverCard/index.web.tsx:433
+#: src/components/ProfileHoverCard/index.web.tsx:478
msgid "View blocked user's profile"
msgstr "अवरोधित प्रयोगकर्ताको प्रोफाइल हेर्नुहोस्"
@@ -8288,17 +9004,17 @@ msgid "View debug entry"
msgstr "डिबग प्रविष्टि हेर्नुहोस्"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
-#: src/screens/VideoFeed/index.tsx:638
#: src/screens/VideoFeed/index.tsx:656
+#: src/screens/VideoFeed/index.tsx:674
msgid "View details"
msgstr "विवरण हेर्नुहोस्"
-#: src/components/moderation/ReportDialog/index.tsx:263
+#: src/components/moderation/ReportDialog/index.tsx:271
#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "कपिराइट उल्लङ्घन रिपोर्ट गर्नका लागि विवरण हेर्नुहोस्"
-#: src/view/com/posts/ViewFullThread.tsx:56
+#: src/view/com/posts/ViewFullThread.tsx:59
msgid "View full thread"
msgstr "पूरा थ्रेड हेर्नुहोस्"
@@ -8308,18 +9024,17 @@ msgstr "यी लेबलहरूको जानकारी हेर्न
#: src/components/interstitials/TrendingVideos.tsx:191
#: src/components/interstitials/TrendingVideos.tsx:210
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:194
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:213
msgid "View more"
msgstr ""
-#: src/components/ProfileHoverCard/index.web.tsx:419
-#: src/components/ProfileHoverCard/index.web.tsx:439
-#: src/components/ProfileHoverCard/index.web.tsx:466
-#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/components/ProfileHoverCard/index.web.tsx:464
+#: src/components/ProfileHoverCard/index.web.tsx:484
+#: src/components/ProfileHoverCard/index.web.tsx:511
#: src/view/com/posts/PostFeedErrorMessage.tsx:175
-#: src/view/com/util/PostMeta.tsx:78
-#: src/view/com/util/PostMeta.tsx:93
+#: src/view/com/util/PostMeta.tsx:91
+#: src/view/com/util/PostMeta.tsx:126
msgid "View profile"
msgstr "प्रोफाइल हेर्नुहोस्"
@@ -8331,7 +9046,11 @@ msgstr "अवतार हेर्नुहोस्"
msgid "View the labeling service provided by @{0}"
msgstr "@{0} द्वारा प्रदान गरिएको लेबलिङ सेवा हेर्नुहोस्"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:481
+#: src/components/verification/VerificationCheckButton.tsx:99
+msgid "View this user's verifications"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
msgid "View users who like this feed"
msgstr "यो फिड मन पराउने प्रयोगकर्ताहरू हेर्नुहोस्"
@@ -8339,11 +9058,11 @@ msgstr "यो फिड मन पराउने प्रयोगकर्
msgid "View video"
msgstr ""
-#: src/screens/Moderation/index.tsx:264
+#: src/screens/Moderation/index.tsx:268
msgid "View your blocked accounts"
msgstr "तपाईंको अवरोधित खाता हेर्नुहोस्"
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:208
msgid "View your default post interaction settings"
msgstr ""
@@ -8352,14 +9071,18 @@ msgstr ""
msgid "View your feeds and explore more"
msgstr "तपाईंका फिडहरू हेर्नुहोस् र अझ बढी अन्वेषण गर्नुहोस्"
-#: src/screens/Moderation/index.tsx:234
+#: src/screens/Moderation/index.tsx:238
msgid "View your moderation lists"
msgstr "तपाईंका मोडरेशन सूचीहरू हेर्नुहोस्"
-#: src/screens/Moderation/index.tsx:249
+#: src/screens/Moderation/index.tsx:253
msgid "View your muted accounts"
msgstr "तपाईंका म्युट गरिएको खाता हेर्नुहोस्"
+#: src/components/verification/VerificationCheckButton.tsx:98
+msgid "View your verifications"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:199
#: src/view/com/util/images/AutoSizedImage.tsx:221
msgid "Views full image"
@@ -8392,6 +9115,11 @@ msgstr "सामग्रीलाई चेतावनी दिनुहो
msgid "Warn content and filter from feeds"
msgstr "सामग्रीलाई चेतावनी दिनुहोस् र फीडहरूबाट फिल्टर गर्नुहोस्"
+#: src/components/live/LiveStatusDialog.tsx:156
+#: src/components/live/LiveStatusDialog.tsx:169
+msgid "Watch now"
+msgstr ""
+
#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "हाम्रो द्वारा त्यहाँ कुनै परिणाम फेला पारेन।"
@@ -8400,7 +9128,7 @@ msgstr "हाम्रो द्वारा त्यहाँ कुनै
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:118
+#: src/screens/Messages/Conversation.tsx:130
msgid "We couldn't load this conversation"
msgstr "हामी यो कुराकानी लोड गर्न असमर्थ भयौं।"
@@ -8420,6 +9148,14 @@ msgstr "हामी आशा गर्छौं कि तपाईंला
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "हामी तपाईंको पछ्याउनेहरूबाट पोस्टहरू समाप्त गर्यौं। यहाँ <0/> बाट नवीनतम पोस्ट छ।"
+#: src/screens/Settings/SettingsInterests.tsx:155
+msgid "We recommend selecting at least two interests."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:238
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:417
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "हामी यो निर्धारण गर्न असमर्थ भयौं कि तपाईंलाई भिडियो अपलोड गर्न अनुमति छ कि छैन। कृपया पुन: प्रयास गर्नुहोस्।"
@@ -8428,7 +9164,7 @@ 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:428
msgid "We were unable to load your configured labelers at this time."
msgstr "हामी अहिले तपाईंका कन्फिगर गरिएका लेबलरहरू लोड गर्न असमर्थ भयौं।"
@@ -8440,20 +9176,28 @@ msgstr "हामी जडान गर्न असमर्थ भयौं
msgid "We will let you know when your account is ready."
msgstr "हामी तपाईंलाई तपाईंको खाता तयार भएपछि जानकारी दिनेछौं।"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:247
+msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
#: src/screens/Onboarding/StepInterests/index.tsx:134
msgid "We'll use this to help customize your experience."
msgstr "हामी यसलाई तपाईंको अनुभव अनुकूलित गर्न प्रयोग गर्नेछौं।"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:92
-#: src/components/ProgressGuide/FollowDialog.tsx:157
+#: src/components/dialogs/SearchablePeopleList.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:172
msgid "We're having network issues, try again"
msgstr "हामी नेटवर्क समस्या भोगिरहेका छौं, कृपया पुनः प्रयास गर्नुहोस्।"
-#: src/screens/Signup/index.tsx:95
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr ""
+
+#: src/screens/Signup/index.tsx:109
msgid "We're so excited to have you join us!"
msgstr "हामी तपाईंलाई हाम्रो सँग सामेल गर्न पाउँदा धेरै उत्साहित छौं!"
-#: src/view/screens/ProfileList.tsx:115
+#: src/view/screens/ProfileList.tsx:117
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "हामीलाई खेद छ, तर हामी यो सूची समाधान गर्न असमर्थ भयौं। यदि यो जारी रहन्छ भने, कृपया सूची निर्माता @{handleOrDid} सँग सम्पर्क गर्नुहोस्।"
@@ -8461,11 +9205,11 @@ msgstr "हामीलाई खेद छ, तर हामी यो सू
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "हामीलाई खेद छ, तर हामी तपाईंका म्यूट गरिएका शब्दहरू लोड गर्न असमर्थ भयौं। कृपया पुन: प्रयास गर्नुहोस्।"
-#: src/view/screens/Search/Search.tsx:205
+#: src/screens/Search/SearchResults.tsx:222
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:425
+#: src/view/com/composer/Composer.tsx:421
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "हामीलाई खेद छ! तपाईंले जवाफ दिइरहेको पोस्ट मेटाइ सकेको छ।"
@@ -8474,7 +9218,7 @@ msgstr "हामीलाई खेद छ! तपाईंले जवाफ
msgid "We're sorry! We can't find the page you were looking for."
msgstr "हामीलाई खेद छ! हामी तपाईंले खोजेको पृष्ठ फेला पार्न सक्दैनौं।"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "हामीलाई खेद छ! तपाईं केवल बाइसवटा लेबलरहरूमा सदस्यता लिन सक्नुहुन्छ, र तपाईंले आफ्नो बाइसवटाको सीमा पुगेको छ।"
@@ -8494,16 +9238,16 @@ msgstr "तपाईंका चासोहरू के छन्?"
msgid "What do you want to call your starter pack?"
msgstr "तपाईंको स्टार्टर प्याकलाई के भन्न चाहनुहुन्छ?"
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
-msgid "What people are posting about."
-msgstr ""
-
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:744
+#: src/view/com/composer/Composer.tsx:732
msgid "What's up?"
msgstr "के भइरहेको छ?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr ""
+
#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr "यस पोस्टमा कुन भाषाहरू प्रयोग गरिएको छ?"
@@ -8520,14 +9264,18 @@ msgstr "यस पोस्टसँग को को अन्तरक्र
msgid "Who can reply"
msgstr "को को जवाफ दिन सक्छ?"
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+msgid "Who can verify?"
+msgstr ""
+
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:230
-#: src/screens/Messages/Inbox.tsx:171
+#: src/screens/Messages/ChatList.tsx:232
+#: src/screens/Messages/Inbox.tsx:176
msgid "Whoops!"
msgstr "वोप्स!"
#: src/components/interstitials/TrendingVideos.tsx:127
-#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
msgid "Whoops! Trending videos failed to load."
msgstr ""
@@ -8574,11 +9322,11 @@ msgstr "यो प्रयोगकर्ता किन समीक्षा
msgid "Write a message"
msgstr "सन्देश लेख्नुहोस्"
-#: src/view/com/composer/Composer.tsx:832
+#: src/view/com/composer/Composer.tsx:823
msgid "Write post"
msgstr "पोस्ट लेख्नुहोस्"
-#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/composer/Composer.tsx:730
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "तपाईंको जवाफ लेख्नुहोस्"
@@ -8588,11 +9336,16 @@ msgstr "तपाईंको जवाफ लेख्नुहोस्"
msgid "Writers"
msgstr "लेखकहरू"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "Wrong DID returned from server. Received: {0}"
msgstr "सर्भरबाट गलत DID प्राप्त भयो। प्राप्त: {0}"
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+#: src/components/live/EditLiveDialog.tsx:153
+#: src/components/live/GoLiveDialog.tsx:129
+msgid "www.mylivestream.tv"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:87
msgid "Yes"
msgstr "हो"
@@ -8601,15 +9354,15 @@ msgstr "हो"
msgid "Yes, deactivate"
msgstr "हो, निष्क्रिय गर्नुहोस्"
-#: src/screens/StarterPack/StarterPackScreen.tsx:666
+#: src/screens/StarterPack/StarterPackScreen.tsx:685
msgid "Yes, delete this starter pack"
msgstr "हो, यो स्टार्टर प्याक मेटाउनुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:812
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
msgid "Yes, detach"
msgstr "हो, अलग गर्नुहोस्"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:822
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
msgid "Yes, hide"
msgstr "हो, लुकेको राख्नुहोस्"
@@ -8625,7 +9378,11 @@ msgstr "हिजो"
msgid "You"
msgstr "तपाईं"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/verification/VerifierDialog.tsx:59
+msgid "You are a trusted verifier"
+msgstr ""
+
+#: src/components/forms/HostingProvider.tsx:45
msgid "You are creating an account on"
msgstr ""
@@ -8633,6 +9390,19 @@ msgstr ""
msgid "You are in line."
msgstr "तपाईं पंक्तिमा हुनुहुन्छ।"
+#: src/components/live/EditLiveDialog.tsx:119
+#: src/components/live/EditLiveDialog.tsx:124
+msgid "You are Live"
+msgstr ""
+
+#: src/components/live/queries.ts:211
+msgid "You are no longer live"
+msgstr ""
+
+#: src/components/live/queries.ts:35
+msgid "You are not allowed to go live"
+msgstr ""
+
#: src/view/com/composer/state/video.ts:410
msgid "You are not allowed to upload videos."
msgstr "तपाईंलाई भिडियो अपलोड गर्न अनुमति छैन।"
@@ -8641,6 +9411,27 @@ msgstr "तपाईंलाई भिडियो अपलोड गर्न
msgid "You are not following anyone."
msgstr "तपाईं कसैलाई पनि पछ्याइरहनु भएको छैन।"
+#: src/components/live/queries.ts:156
+msgid "You are now live!"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:64
+msgid "You are verified"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:355
+#: src/view/com/modals/EditProfile.tsx:203
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:45
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr ""
+
#: src/view/com/posts/FollowingEmptyState.tsx:63
#: src/view/com/posts/FollowingEndOfFeed.tsx:64
msgid "You can also discover new Custom Feeds to follow."
@@ -8669,7 +9460,6 @@ msgstr ""
#: src/components/interstitials/Trending.tsx:130
#: src/components/interstitials/TrendingVideos.tsx:139
-#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
msgstr ""
@@ -8682,7 +9472,7 @@ msgstr "तपाईंको कुनै पनि फलोअर्स छ
msgid "You don't follow any users who follow @{name}."
msgstr "तपाईं @{name} लाई फलो गर्ने कुनै पनि प्रयोगकर्तालाई फलो गर्नुभएको छैन।"
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:220
msgid "You don't have any chat requests at the moment."
msgstr ""
@@ -8736,24 +9526,24 @@ msgstr "तपाईंले यो खाता म्यूट गर्न
msgid "You have muted this user"
msgstr "तपाईंले यो प्रयोगकर्तालाई म्यूट गर्नुभएको छ।"
-#: src/screens/Messages/ChatList.tsx:273
+#: src/screens/Messages/ChatList.tsx:275
msgid "You have no conversations yet. Start one!"
msgstr "तपाईंको कुनै पनि वार्तालाप छैन। एक सुरु गर्नुहोस्!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:143
+#: src/view/com/feeds/ProfileFeedgens.tsx:139
msgid "You have no feeds."
msgstr "तपाईंको कुनै फीडहरू छैन।"
#: src/view/com/lists/MyLists.tsx:81
-#: src/view/com/lists/ProfileLists.tsx:139
+#: src/view/com/lists/ProfileLists.tsx:135
msgid "You have no lists."
msgstr "तपाईंको कुनै सूची छैन।"
-#: src/view/screens/ModerationBlockedAccounts.tsx:129
+#: src/view/screens/ModerationBlockedAccounts.tsx:164
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "तपाईंले कुनै खाता ब्लक गर्नुभएको छैन। एक खाता ब्लक गर्नको लागि, तिनीहरूको प्रोफाइलमा जानुहोस् र तिनीहरूको खाता मेनूबाट \"खाता अवरुद्ध गर्नुहोस्\" चयन गर्नुहोस्।"
-#: src/view/screens/ModerationMutedAccounts.tsx:128
+#: src/view/screens/ModerationMutedAccounts.tsx:179
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "तपाईंले कुनै खाता म्यूट गर्नुभएको छैन। एक खाता म्यूट गर्नको लागि, तिनीहरूको प्रोफाइलमा जानुहोस् र तिनीहरूको खाता मेनूबाट \"खाता म्यूट गर्नुहोस्\" चयन गर्नुहोस्।"
@@ -8761,11 +9551,15 @@ msgstr "तपाईंले कुनै खाता म्यूट गर
msgid "You have reached the end"
msgstr "तपाईंले अन्त्यमा पुग्नुभयो"
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:187
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr ""
+
#: src/lib/media/video/upload.shared.ts:56
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "तपाईंले भिडियो अपलोडको लागि अस्थायी रूपमा सीमा पार गर्नुभयो। कृपया पछि पुनः प्रयास गर्नुहोस्।"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:239
+#: src/components/StarterPack/ProfileStarterPacks.tsx:263
msgid "You haven't created a starter pack yet!"
msgstr "तपाईंले अझै starter pack सिर्जना गर्नुभएको छैन!"
@@ -8787,22 +9581,22 @@ msgid "You may appeal these labels if you feel they were placed in error."
msgstr "यदि तपाईंलाई लाग्छ कि यी लेबलहरू गल्तीले राखिएका छन् भने, तपाईं तिनीहरूको विरोध गर्न सक्नुहुन्छ।"
#: src/screens/StarterPack/Wizard/State.tsx:76
-msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
-msgstr "तपाईं केवल {STARTER_PACK_MAX_SIZE} प्रोफाइलहरू मात्र थप्न सक्नुहुन्छ।"
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:94
+#: src/screens/StarterPack/Wizard/State.tsx:95
msgid "You may only add up to 3 feeds"
msgstr "तपाईं केवल ३ फीडहरू मात्र थप्न सक्नुहुन्छ।"
-#: src/lib/media/picker.shared.ts:22
+#: src/lib/media/picker.shared.ts:25
msgid "You may only select up to 4 images"
msgstr "तपाईं केवल ४ चित्रहरू मात्र चयन गर्न सक्नुहुन्छ।"
#: src/screens/Signup/StepInfo/Policies.tsx:106
-msgid "You must be 13 years of age or older to sign up."
-msgstr "तपाईंलाई साइन अप गर्नको लागि १३ वर्ष वा सो भन्दा बढी उमेर हुनुपर्छ।"
+msgid "You must be 13 years of age or older to create an account."
+msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
+#: src/components/StarterPack/ProfileStarterPacks.tsx:334
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "तपाईंलाई कम्तिमा सात अन्य व्यक्तिहरूलाई फलो गर्नुपर्छ ताकि starter pack सिर्जना गर्न सकिन्छ।"
@@ -8810,28 +9604,40 @@ msgstr "तपाईंलाई कम्तिमा सात अन्य
msgid "You must grant access to your photo library to save a QR code"
msgstr "QR कोड बचत गर्नको लागि तपाईंलाई आफ्नो फोटो लाइब्रेरीमा पहुँच दिनु पर्छ।"
-#: src/components/StarterPack/ShareDialog.tsx:68
-msgid "You must grant access to your photo library to save the image."
-msgstr "चित्र बचत गर्नको लागि तपाईंलाई आफ्नो फोटो लाइब्रेरीमा पहुँच दिनु पर्छ।"
-
#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "तपाईंलाई रिपोर्टको लागि कम्तीमा एक लेबलर चयन गर्नु पर्छ।"
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr ""
+
#: src/screens/Deactivated.tsx:128
msgid "You previously deactivated @{0}."
msgstr "तपाईंले पहिले @{0} निष्क्रिय गर्नुभएको थियो।"
-#: src/screens/Settings/Settings.tsx:257
-#: src/view/shell/desktop/LeftNav.tsx:205
+#: src/screens/Settings/Settings.tsx:374
+msgid "You probably want to restart the app now."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:135
+msgid "You reacted {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:218
+msgid "You reacted {0} to {1}"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:267
+#: src/view/shell/desktop/LeftNav.tsx:210
msgid "You will be signed out of all your accounts."
msgstr "तपाईंलाई तपाईंका सबै खाता हरुबाट साइन आउट गरिनेछ।"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:228
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:215
msgid "You will no longer receive notifications for this thread"
msgstr "तपाईं अब यस थ्रेडको लागि सूचनाहरू प्राप्त गर्न सक्नुहुन्न।"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:211
msgid "You will now receive notifications for this thread"
msgstr "तपाईं अब यस थ्रेडको लागि सूचनाहरू प्राप्त गर्नुहुनेछ।"
@@ -8839,23 +9645,23 @@ msgstr "तपाईं अब यस थ्रेडको लागि सू
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "तपाईंलाई एक इमेल प्राप्त हुनेछ जसमा \"रीसेट कोड\" हुनेछ। त्यो कोड यहाँ प्रविष्ट गर्नुहोस्, त्यसपछि तपाईंको नयाँ पासवर्ड प्रविष्ट गर्नुहोस्।"
-#: src/screens/Messages/components/ChatListItem.tsx:149
+#: src/screens/Messages/components/ChatListItem.tsx:154
msgid "You: {0}"
msgstr "तपाईं: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:183
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "तपाईं: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:171
+#: src/screens/Messages/components/ChatListItem.tsx:176
msgid "You: {short}"
msgstr "तपाईं: {short}"
-#: src/screens/Signup/index.tsx:111
+#: src/screens/Signup/index.tsx:125
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "तपाईंले आफ्नो खाता सिर्जना गरेपछि सल्लाह दिइएका प्रयोगकर्ताहरू र फीडहरूलाई फलो गर्नुहुनेछ!"
-#: src/screens/Signup/index.tsx:116
+#: src/screens/Signup/index.tsx:130
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "तपाईंले आफ्नो खाता सिर्जना गरेपछि सल्लाह दिइएका प्रयोगकर्ताहरूलाई फलो गर्नुहुनेछ!"
@@ -8867,7 +9673,7 @@ msgstr "तपाईंले यी व्यक्तिहरू र {0} अ
msgid "You'll follow these people right away"
msgstr "तपाईंले यी व्यक्तिहरूलाई तुरुन्तै फलो गर्नुहुनेछ।"
-#: src/components/dialogs/VerifyEmailDialog.tsx:178
+#: src/components/dialogs/VerifyEmailDialog.tsx:216
msgid "You'll receive an email at <0>{0}0> to verify it's you."
msgstr "तपाईंलाई <0>{0}0> मा एक इमेल प्राप्त हुनेछ जसले प्रमाणित गर्नेछ कि यो तपाईं हो।"
@@ -8901,6 +9707,10 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "तपाईंले आफ्नो फीडको अन्त्यमा पुग्नुभयो! थप खाता फलो गर्नको लागि खोजी गर्नुहोस्।"
+#: src/lib/hooks/useCleanError.ts:58
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr ""
+
#: src/view/com/composer/state/video.ts:421
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "तपाईंले भिडियो अपलोडको लागि आफ्नो दैनिक सीमा पुग्नुभयो (धेरै बाइट्स)"
@@ -8909,11 +9719,11 @@ msgstr "तपाईंले भिडियो अपलोडको लाग
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "तपाईंले भिडियो अपलोडको लागि आफ्नो दैनिक सीमा पुग्नुभयो (धेरै भिडियो)"
-#: src/screens/VideoFeed/index.tsx:1090
+#: src/screens/VideoFeed/index.tsx:1120
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
-#: src/screens/Signup/index.tsx:144
+#: src/screens/Signup/index.tsx:158
msgid "Your account"
msgstr "तपाईंको खाता"
@@ -8941,7 +9751,7 @@ msgstr ""
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:254
+#: src/screens/Signup/StepInfo/index.tsx:257
msgid "Your birth date"
msgstr "तपाईंको जन्म मिति"
@@ -8953,26 +9763,30 @@ msgstr "तपाईंको ब्राउजर भिडियो ढाँ
msgid "Your chats have been disabled"
msgstr "तपाईंको च्याटहरू अक्षम गरिएको छ"
-#: src/view/com/modals/InAppBrowserConsent.tsx:44
-msgid "Your choice will be saved, but can be changed later in settings."
-msgstr "तपाईंको चयन बचत हुनेछ, तर पछि सेटिङमा परिवर्तन गर्न सकिन्छ।"
+#: src/components/dialogs/InAppBrowserConsent.tsx:69
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:513
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr ""
+#: src/components/dialogs/ChangeEmailDialog.tsx:65
+msgid "Your email address has been updated but it is not yet verified. As a next step, please verify your new email."
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:51
-#: src/screens/Signup/state.ts:221
-#: src/screens/Signup/StepInfo/index.tsx:99
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:98
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "तपाईंको ईमेल अमान्य देखिन्छ।"
-#: src/view/com/modals/ChangeEmail.tsx:120
-msgid "Your email has been updated but not verified. As a next step, please verify your new email."
-msgstr "तपाईंको ईमेल अपडेट गरिएको छ तर प्रमाणित गरिएको छैन। अर्को कदमको रूपमा, कृपया तपाईंको नयाँ ईमेल प्रमाणित गर्नुहोस्।"
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65
+msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
+msgstr ""
-#: src/view/com/modals/VerifyEmail.tsx:122
+#: src/components/dialogs/VerifyEmailDialog.tsx:110
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "तपाईंको ईमेल अझै प्रमाणित गरिएको छैन। यो एक महत्त्वपूर्ण सुरक्षा कदम हो जुन हामी सिफारिस गर्छौं।"
@@ -8988,14 +9802,31 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "तपाईंको फलोइङ फीड खाली छ! के भइरहेको छ भन्ने हेर्नको लागि थप प्रयोगकर्ताहरूलाई फलो गर्नुहोस्।"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:240
msgid "Your full handle will be <0>@{0}0>"
msgstr "तपाईंको पूर्ण ह्याण्डल हुनेछ <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:129
+#: src/screens/Signup/StepHandle.tsx:137
msgid "Your full username will be <0>@{0}0>"
msgstr ""
+#: src/Navigation.tsx:395
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:95
+#: src/screens/Settings/SettingsInterests.tsx:39
+msgid "Your interests"
+msgstr ""
+
+#: src/screens/Settings/SettingsInterests.tsx:124
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:94
+msgid "Your interests help us find what you like!"
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "तपाईंका म्यूट शब्दहरू"
@@ -9004,15 +9835,15 @@ msgstr "तपाईंका म्यूट शब्दहरू"
msgid "Your password has been changed successfully!"
msgstr "तपाईंको पासवर्ड सफलतापूर्वक परिवर्तन गरिएको छ!"
-#: src/screens/Signup/StepInfo/index.tsx:128
+#: src/screens/Signup/StepInfo/index.tsx:127
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:485
+#: src/view/com/composer/Composer.tsx:481
msgid "Your post has been published"
msgstr "तपाईंको पोष्ट प्रकाशित गरिएको छ"
-#: src/view/com/composer/Composer.tsx:482
+#: src/view/com/composer/Composer.tsx:478
msgid "Your posts have been published"
msgstr "तपाईंका पोष्टहरू प्रकाशित गरिएको छ"
@@ -9024,14 +9855,22 @@ 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:484
+#: src/view/com/composer/Composer.tsx:480
msgid "Your reply has been published"
msgstr "तपाईंको उत्तर प्रकाशित गरिएको छ"
-#: src/components/moderation/ReportDialog/index.tsx:383
+#: src/components/moderation/ReportDialog/index.tsx:391
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
#: src/components/dms/ReportDialog.tsx:200
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "तपाईंको रिपोर्ट ब्लूस्की मोडरेसन सेवामा पठाइनेछ"
+
+#: src/screens/Settings/SettingsInterests.tsx:53
+msgid "Your selected interests help us serve you content you care about."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:65
+msgid "Your verifications"
+msgstr ""
diff --git a/src/locale/locales/nl/messages.po b/src/locale/locales/nl/messages.po
index bf773848f5..c442a5f0cf 100644
--- a/src/locale/locales/nl/messages.po
+++ b/src/locale/locales/nl/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: nl\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-07 16:40\n"
+"PO-Revision-Date: 2025-05-30 23:40\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -18,16 +18,16 @@ msgstr ""
"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
"X-Crowdin-File-ID: 11\n"
-#: src/components/ProgressGuide/FollowDialog.tsx:567
+#: src/components/ProgressGuide/FollowDialog.tsx:516
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:127
msgid "(active)"
msgstr "(actief)"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:160
msgid "(contains embedded content)"
msgstr "(bevat ingesloten inhoud)"
-#: src/screens/Settings/AccountSettings.tsx:65
-#: src/view/com/modals/VerifyEmail.tsx:150
+#: src/screens/Settings/AccountSettings.tsx:68
msgid "(no email)"
msgstr "(geen e-mailadres)"
@@ -57,7 +57,7 @@ msgstr "{0, plural, one {# label is} other {# labels zijn}} op deze inhoud gepla
#: src/screens/Post/PostLikedBy.tsx:41
msgid "{0, plural, one {# like} other {# likes}}"
-msgstr ""
+msgstr "{0, plural, one {# vind-ik-leuk} other {# vind-ik-leuks}}"
#: src/lib/hooks/useTimeAgo.ts:149
msgid "{0, plural, one {# minute} other {# minutes}}"
@@ -69,7 +69,7 @@ msgstr "{0, plural, one {# maand} other {# maanden}}"
#: src/screens/Post/PostQuotes.tsx:41
msgid "{0, plural, one {# quote} other {# quotes}}"
-msgstr ""
+msgstr "{0, plural, one {# citaat} other {# citaten}}"
#: src/screens/Post/PostRepostedBy.tsx:41
msgid "{0, plural, one {# repost} other {# reposts}}"
@@ -79,28 +79,28 @@ msgstr "{0, plural, one {# herplaatsing} other {# herplaatsingen}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# seconde} other {# seconden}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:209
-#: src/view/shell/bottom-bar/BottomBar.tsx:241
-#: src/view/shell/Drawer.tsx:454
+#: src/view/shell/bottom-bar/BottomBar.tsx:215
+#: src/view/shell/bottom-bar/BottomBar.tsx:247
+#: src/view/shell/Drawer.tsx:473
msgid "{0, plural, one {# unread item} other {# unread items}}"
-msgstr ""
+msgstr "{0, plural, one {# ongelezen item} other {# ongelezen items}}"
#. How many months have passed, displayed in a narrow form
#: src/lib/hooks/useTimeAgo.ts:182
msgid "{0, plural, one {#mo} other {#mo}}"
-msgstr ""
+msgstr "{0, plural, one {#ma} other {#ma}}"
-#: src/components/ProfileHoverCard/index.web.tsx:398
+#: src/components/ProfileHoverCard/index.web.tsx:442
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
msgstr "{0, plural, one {volger} other {volgers}}"
-#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/screens/Profile/Header/Metrics.tsx:26
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {volgend} other {volgend}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:454
+#: src/view/com/post-thread/PostThreadItem.tsx:529
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {vind-ik-leuk} other {vind-ik-leuks}}"
@@ -108,24 +108,41 @@ msgstr "{0, plural, one {vind-ik-leuk} other {vind-ik-leuks}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {bericht} other {berichten}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:438
+#: src/view/com/post-thread/PostThreadItem.tsx:513
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citaat} other {citaten}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:420
+#: src/view/com/post-thread/PostThreadItem.tsx:495
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {herplaatsing} other {herplaatsingen}}"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+msgid "{0, plural, other {{1} posts}}"
+msgstr "{0, plural, other {{1} berichten}}"
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#: src/screens/StarterPack/StarterPackScreen.tsx:490
+msgid "{0, plural, other {# people have}} used this starter pack!"
+msgstr "{0, plural, other {# personen hebben}} dit startpakket gebruikt!"
+
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
-msgstr ""
+msgstr "{0} <0>in <1>tags1>0>"
#. Pattern: {wordValue} in text, tags
#: src/components/dialogs/MutedWords.tsx:465
msgid "{0} <0>in <1>text & tags1>0>"
msgstr "{0} <0>in <1>tekst en tags1>0>"
+#: src/components/live/LiveStatusDialog.tsx:68
+msgid "{0} is live"
+msgstr "{0} is live"
+
+#: src/components/live/queries.ts:39
+msgid "{0} is not a valid URL"
+msgstr "{0} is geen geldige URL"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
msgid "{0} joined this week"
msgstr "{0} deze week lid geworden"
@@ -137,13 +154,18 @@ msgstr "{0} van {1}"
#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
#: src/screens/StarterPack/Wizard/StepDetails.tsx:55
msgid "{0} out of 50"
-msgstr ""
+msgstr "{0} van 50"
-#: src/screens/StarterPack/StarterPackScreen.tsx:485
-msgid "{0} people have used this starter pack!"
-msgstr "{0} personen hebben dit startpakket gebruikt!"
+#: src/components/dms/MessageItem.tsx:143
+msgid "{0} reacted {1}"
+msgstr "{0} heeft gereageerd met {1}"
-#: src/view/com/util/UserAvatar.tsx:445
+#: src/screens/Messages/components/ChatListItem.tsx:231
+msgid "{0} reacted {1} to {2}"
+msgstr "{0} heeft gereageerd met {1} op {2}"
+
+#: src/view/com/util/UserAvatar.tsx:559
+#: src/view/com/util/UserAvatar.tsx:577
msgid "{0}'s avatar"
msgstr "Avatar van {0}"
@@ -175,9 +197,9 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}s"
-#: src/view/shell/desktop/LeftNav.tsx:382
+#: src/view/shell/desktop/LeftNav.tsx:401
msgid "{count, plural, one {# unread item} other {# unread items}}"
-msgstr ""
+msgstr "{count, plural, one {# ongelezen item} other {# ongelezen items}}"
#: src/lib/generate-starterpack.ts:111
#: src/screens/StarterPack/Wizard/index.tsx:178
@@ -192,114 +214,223 @@ msgstr "{estimatedTimeHrs, plural, one {uur} other {uur}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {minuut} other {minuten}}"
-#: src/view/com/notifications/NotificationFeedItem.tsx:305
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}}0> hebben je gevolgd"
-#: src/view/com/notifications/NotificationFeedItem.tsx:331
+#: src/view/com/notifications/NotificationFeedItem.tsx:361
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}}0> vonden je gepersonaliseerde feed leuk"
-#: src/view/com/notifications/NotificationFeedItem.tsx:224
+#: src/view/com/notifications/NotificationFeedItem.tsx:254
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}}0> vonden je bericht leuk"
-#: src/view/com/notifications/NotificationFeedItem.tsx:248
+#: src/view/com/notifications/NotificationFeedItem.tsx:466
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:439
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:278
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}}0> hebben je bericht opnieuw geplaatst"
-#: src/view/com/notifications/NotificationFeedItem.tsx:355
+#: src/view/com/notifications/NotificationFeedItem.tsx:490
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:385
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}}0> hebben zich geregistreerd met je startpakket"
-#: src/view/com/notifications/NotificationFeedItem.tsx:317
+#: src/view/com/notifications/NotificationFeedItem.tsx:414
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:347
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} volgde je"
-#: src/view/com/notifications/NotificationFeedItem.tsx:294
+#: src/view/com/notifications/NotificationFeedItem.tsx:324
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} volgde je terug"
-#: src/view/com/notifications/NotificationFeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
msgid "{firstAuthorLink} liked your custom feed"
msgstr "{firstAuthorLink} vond je gepersonaliseerde feed leuk"
-#: src/view/com/notifications/NotificationFeedItem.tsx:236
+#: src/view/com/notifications/NotificationFeedItem.tsx:266
msgid "{firstAuthorLink} liked your post"
msgstr "{firstAuthorLink} vond je bericht leuk"
-#: src/view/com/notifications/NotificationFeedItem.tsx:260
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr "{firstAuthorLink} heeft zijn/haar verificatie van je account verwijderd"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} heeft je bericht opnieuw geplaatst"
-#: src/view/com/notifications/NotificationFeedItem.tsx:367
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} registreerde zich met je startpakket"
-#: src/view/com/notifications/NotificationFeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorLink} verified you"
+msgstr "{firstAuthorLink} heeft jou geverifieerd"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:328
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} volgden je"
-#: src/view/com/notifications/NotificationFeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:354
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} vonden je gepersonaliseerde feed leuk"
-#: src/view/com/notifications/NotificationFeedItem.tsx:217
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} vonden je bericht leuk"
-#: src/view/com/notifications/NotificationFeedItem.tsx:241
+#: src/view/com/notifications/NotificationFeedItem.tsx:459
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:432
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:271
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} hebben je bericht opnieuw geplaatst"
-#: src/view/com/notifications/NotificationFeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} hebben zich geregistreerd met je startpakket"
-#: src/view/com/notifications/NotificationFeedItem.tsx:303
+#: src/view/com/notifications/NotificationFeedItem.tsx:407
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:333
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} volgde je"
-#: src/view/com/notifications/NotificationFeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:323
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} volgde je terug"
-#: src/view/com/notifications/NotificationFeedItem.tsx:329
+#: src/view/com/notifications/NotificationFeedItem.tsx:359
msgid "{firstAuthorName} liked your custom feed"
msgstr "{firstAuthorName} vond je gepersonaliseerde feed leuk"
-#: src/view/com/notifications/NotificationFeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:252
msgid "{firstAuthorName} liked your post"
msgstr "{firstAuthorName} vond je bericht leuk"
-#: src/view/com/notifications/NotificationFeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:464
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:437
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr "{firstAuthorName} heeft zijn/haar verificatie van je account verwijderd"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:276
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} heeft je bericht opnieuw geplaatst"
-#: src/view/com/notifications/NotificationFeedItem.tsx:353
+#: src/view/com/notifications/NotificationFeedItem.tsx:488
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:383
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} heeft zich geregistreerd met je startpakket"
-#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/view/com/notifications/NotificationFeedItem.tsx:412
+msgid "{firstAuthorName} verified you"
+msgstr "{firstAuthorName} heeft jou geverifieerd"
+
+#: src/components/ProfileHoverCard/index.web.tsx:570
#: src/screens/Profile/Header/Metrics.tsx:49
msgid "{following} following"
msgstr "{following} volgend"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:392
+#: src/components/dialogs/SearchablePeopleList.tsx:412
msgid "{handle} can't be messaged"
msgstr "{handle} kan geen privébericht ontvangen"
+#: src/components/live/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr "{hours, plural, one {# uur {minutesString}} other {# uur {minutesString}}}"
+
+#: src/components/live/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr "{hours, plural, one {# uur} other {# uur}}"
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:101
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr "{joinedAllTimeCount, plural, one {}other {# gebruikers zijn}} lid geworden!"
+
+#: src/components/live/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr "{minutes, plural, one {# minuut} other {# minuten}}"
+
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:270
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
-msgstr ""
+msgstr "{notificationCount, plural, one {# ongelezen item} other {# ongelezen items}}"
#: src/components/NewskieDialog.tsx:116
msgid "{profileName} joined Bluesky {0} ago"
-msgstr "{profileName} is {0} geleden lid geworden van Bluesky"
+msgstr "{profileName} bent {0} geleden lid geworden van Bluesky"
#: src/components/NewskieDialog.tsx:111
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
-msgstr "{profileName} is {0} geleden lid geworden van Bluesky met een startpakket"
+msgstr "{profileName} bent {0} geleden lid geworden van Bluesky met een startpakket"
+
+#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+msgid "{rank}."
+msgstr "{rank}."
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:206
+msgid "{type}h ago"
+msgstr "{type}u geleden"
+
+#: src/components/verification/VerifierDialog.tsx:60
+msgid "{userName} is a trusted verifier"
+msgstr "{userName} is een vertrouwde verifieerder"
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "{userName} is verified"
+msgstr "{userName} is geverifieerd"
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName}'s verifications"
+msgstr "Verificaties van {userName}"
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:249
+msgid "+{computedTotal}"
+msgstr "+{computedTotal}"
#: src/screens/StarterPack/Wizard/index.tsx:449
msgctxt "profiles"
@@ -311,11 +442,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>en {2, plural, one {# ander} other {# anderen}} zijn inbegrepen in je startpakket"
-#: src/view/shell/Drawer.tsx:97
+#: src/view/shell/Drawer.tsx:116
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {volger} other {volgers}}"
-#: src/view/shell/Drawer.tsx:108
+#: src/view/shell/Drawer.tsx:127
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {volgend} other {volgend}}"
@@ -343,7 +474,7 @@ msgstr "<0>Experimenteel:0> u ontvangt alleen antwoord- en citaatmeldingen van
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr "<0>Jij0> en<1> 1><2>{0} 2>zijn inbegrepen in je startpakket"
-#: src/screens/Profile/Header/Handle.tsx:52
+#: src/screens/Profile/Header/Handle.tsx:53
msgid "⚠Invalid Handle"
msgstr "⚠Ongeldige handle"
@@ -363,62 +494,71 @@ msgstr "30 dagen"
msgid "7 days"
msgstr "7 dagen"
-#: src/Navigation.tsx:383
-#: src/screens/Settings/AboutSettings.tsx:34
-#: src/screens/Settings/Settings.tsx:215
-#: src/screens/Settings/Settings.tsx:218
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/screens/Messages/components/ChatListItem.tsx:210
+msgid "a message"
+msgstr "een bericht"
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+msgid "A new form of verification"
+msgstr "Een nieuwe vorm van verificatie"
+
+#: src/Navigation.tsx:403
+#: src/screens/Settings/AboutSettings.tsx:75
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
msgid "About"
msgstr "Over"
#. Accept a chat request
-#: src/screens/Messages/